#preloader::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255);
    filter: grayscale(100%);
    z-index: 9998;
    pointer-events: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease-out;
}

#loader {
    border-top: 4px solid #1d5dbf;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    z-index: 10000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.notification-header {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.notification-body {
    display: flex;
    align-items: center;
}

.notification-body i {
    margin-right: 10px;
}

.notification-preview {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.notification-preview i {
    margin-right: 10px;
}

.cursor-pointer{
  cursor: pointer;
}

.required-label::after {
    content: ' *';
    color: red;
}

.profile-picture {
    max-width: 200px;
}