.jfullsms-mod-form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000052;
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.jfullsms-mod-form-popup.active {
    display: flex;
}

.jfullsms-mod-form-popup-content {
    background: white;
    padding: 2rem;
    width: 30%;
    border-radius: 1rem;
    max-height: 80%;
    overflow-y: auto;
}

a.jfullsms-mod-form-popup-close {
    font-size: 1.5rem;
}

.jfullsms-mod-form-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.jfullsms-mod-form-popup .JFSMSSubmitFormContainer {
    width: 100% !important;
}

.jfullsms-mod-form-logout-btn-items {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    z-index: 111;
    background: white;
    display: none;
    transition: all 222ms ease;
    padding: 1rem;
}

.jfullsms-mod-form-logout-btn:hover .jfullsms-mod-form-logout-btn-items {
    display: block;
    top: 100%;
}

.jfullsms-mod-form-logout-btn-items ul > li > a {
    color: var(--bs-gray-900) !important;
}


@media (max-width: 990px) {
    .jfullsms-mod-form-popup-content {
        width: 90%;
    }
}