.user-panel img {
    height: 40px;
    width: 40px;
}

.required:after {
    content: " *";
    color: red;
}

.select2-container {
    width: 100% !important;
}

/* tool tip css*/
.custom-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
    background-color: #f9f9f9;
    color: black;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    padding: 5px;
    font-size: 0.9rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, margin-bottom 0.3s;
}

.custom-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    margin-bottom: 20px;
}

.unread-notification {
    font-weight: bold !important;
    color: #080808 !important;
    background-color: #a7a5a5 !important;
}


.dataTables_processing {
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 100px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 2px;
    z-index: 10;
}