.ellipsis-content {
    white-space: nowrap;
    width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification {
    top: 0px;
    left: 0px;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

.notification .overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;

}

.notification .popup {
    position: absolute;
    /* width: 1200px;
    max-height: 673px; */
    width: 800px;
    height: 448px;

    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.notification .popup .noti-main {
    padding: 20px;
    position: relative;

}

.notification .popup .noti-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("/public/images/noti-background-3.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    opacity: 0.5;
}

.notification .popup .noti-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: right;
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid #eee;
}

.notification .popup .noti-header .btn-cancel {
    cursor: pointer;
    font-size: 30px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification .popup .noti-header .noti-title {
    font-weight: bold;
}

.notification .popup .noti-content {
    overflow-y: auto;
    height: 300px;
}

.notification .popup .noti-footer {
    width: 100%;
    margin-top: 35px;
    padding-right: 15px;
    text-align: right;
    color: red;
}



@media screen and (max-width: 1200px) {
    .notification {
        position: absolute;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .notification .popup {
        width: 95%;
        height: auto;
        max-height: 90vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 16px;
        padding: 15px 0;
    }

    .notification .popup .noti-main {
        padding: 10px;
        max-height: 75vh;
    }

    .notification .popup .noti-header .btn-cancel {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}

.notification-preview {
    position: relative;
}

.notification-preview .popup {
    position: relative;
    /* width: 1200px;
    max-height: 673px; */
    width: 800px;
    height: auto;
    background-color: #fff;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 20px;
}

.notification-preview .popup .noti-main {
    padding: 20px;
    position: relative;
}

.notification-preview .popup .noti-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("/public/images/noti-background-3.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    opacity: 0.5;
}

.notification-preview .popup .noti-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: right;
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid #eee;
}

.notification-preview .popup .noti-header .btn-cancel {
    cursor: pointer;
    font-size: 30px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-preview .popup .noti-header .noti-title {
    font-weight: bold;
}

.notification-preview .popup .noti-content {
    overflow-y: auto;
    height: 300px;
}

.notification-preview .popup .noti-footer {
    width: 100%;
    margin-top: 35px;
    padding-right: 15px;
    text-align: right;
    color: red;
}

.multiselect-container {
    width: 360px;
}

.multiselect-option,
.multiselect-all {
    width: 100%;
    text-align: left;
    background-color: #fff !important;
}

.multiselect-option {
    border: none;
}

.multiselect-all {
    border: none;
    border-bottom: 1px solid #d3d3d3;
}

.multiselect-option .form-check-input,
.multiselect-all .form-check-input {
    margin-right: 5px;
}