.adoras-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none; /* Controlled by JS */

    max-height: 100%!important;
    max-width: 100%!important;
    margin: 0!important;
    align-items: center;
    justify-content: center;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 11, 65, 0.85); /* Your Midnight Blue with alpha */
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    background: #F2F2F2;
    width: 90%;
    max-height: 80vh;
    max-width: 39.6875rem;
    padding: 3.5625rem 4rem;


    border-radius: 10px;

    z-index: 10;
}

@media (max-width:768px){
    .popup-content {
        padding:1rem;
    }

    .adoras-popup .popup-content{

        max-height:90vh;
    }
    .adoras-popup .popup-inner{
        overflow-y:scroll;
        max-height:80vh;
    }
}


.popup-close {
    position: absolute;
    background-color:transparent!important;

    border: none!important;

    cursor: pointer;
    line-height: 1;

}