/*.great-shadow {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.692);*/
/*    backdrop-filter: blur(3px);*/
/*    z-index: 100;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: var(--great-transition);*/

/*    &.show {*/
/*        opacity: 1;*/
/*        visibility: visible;*/
/*    }*/
/*}*/
.fader{
    overflow: hidden;
}
.modal {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: calc(100% -  40px);
    height: calc(100% - 20px);
    background-color: #ffffff;
    padding: 80px 16px 20px 80px;
    box-sizing: border-box;
    transform: translateX(-50%) translateY(100%);
    transition: var(--great-transition);
}
.modal.show {

    transform: translateX(-50%) translateY(0);
}

 .modal__close-btn{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    background: transparent;
    z-index: 2;
}
.modal__close-btn::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #999999;
    width: 15px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close-btn::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #999999;
    width: 15px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__inner {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}


.modal__title{
    margin-top: 45px;
    margin-bottom: 48px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}
#modal-compare-programs{
    max-width: 1340px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
#modal-compare-programs .modal__inner{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}
#modal-compare-programs .price-list-body{
    padding-bottom: 40px;
}
.bubble-blurry{
    position: absolute;
    background-image: url(../img/bubble-blurry.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(5px);
}



.bubble-blurry--little{
    width: 115px;
    height: 116px;
    left: -10px;
    top: 100px;
    filter: blur(8px);
}
.bubble-blurry--middle{
    width: 130px;
    height: 131px;
    top: 235px;
    left: 110px;
}
.bubble-blurry--large{
    width: 185px;
    height: 186px;
    top: 380px;
    left: -15px;
}
.great-shadow .modal{
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0, 0);
    height: auto;
}
.modal--middle-east-alert{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 20px;
    padding: 30px;
    border-radius: 16px;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: all 200ms ease;
}
.modal--middle-east-alert .modal__title{
    margin-top: 0;
    margin-bottom: 0;
}


/*#modal-compare-programs{*/
.great-shadow--middle-east-alert-hide{
    display: none !important;
}
/*}*/
/* ==========================================================*/

@media screen and (max-height: 1000px) {
    .modal {
        padding: 40px 16px;
    }
}
@media screen and (max-width: 1200px){
    .modal .modal__title {
        margin-top: 0;
        margin-bottom: 40px;
        font-size: 28px;
    }
}
@media screen and (max-width: 999px) {
    .modal {
        h2 {
            margin-bottom: 16px;
            font-size: 2.8rem;
            font-weight: 500;
        }

        h3 {
            margin-bottom: 16px;
            font-size: 2rem;
            font-weight: 500;
        }

        .big-contact {
            gap: 4px;

            .big-contact__label {
                font-size: 1.6rem;
            }

            .big-contact__value {
                font-size: 2.4rem;
                line-height: 1;
            }
        }

    }
}
@media screen and (max-width: 800px){
    .modal .modal__title {
        width: calc(100% - 24px);
        margin-bottom: 18px;
        font-size: 20px;
        font-weight: 500;
    }
    .modal--middle-east-alert .modal__title{
        margin-top: 0;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .modal {
        padding: 16px;

        h2 {
            margin-bottom: 16px;
            font-size: 2.4rem;
            font-weight: 500;
        }

        h3 {
            margin-bottom: 16px;
            font-size: 1.6rem;
            font-weight: 500;
        }

        &--vacancy {
            &__inner {
                gap: 24px;
            }
        }

        .big-contact {
            .big-contact__value {
                font-size: 1.6rem;
                line-height: 1;
            }
        }
    }


}
