body.show-modal {
    overflow-y: clip;
 /*margin-right: 15px;*/

}

body.show-modal .backdrop {
      opacity: 1;
      visibility: visible;
      pointer-events: initial;
  }

.backdrop {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
/*background-color: rgba(255, 255, 255, 0.5);*/
    background-color: rgba(24, 24, 24, 0.5);
/*background: linear-gradient(136.86deg, rgba(239, 239, 248, 0.3) 4.54%, rgba(223, 223, 241, 0.3) 97.97%);*/
    backdrop-filter: blur(6px);
    transition: all 0.6s;
    z-index: 10;
}

.pop-up__wrapper {
    position: relative;
    padding: 50px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    max-width: 500px;
    height: 450px;
    background: #fff;
    border-radius: 30px;
}

.pop-up__wrapper.visible {
    display: flex;
}

.pop-up__wrapper > img {
    display: none;
}

.pop-up__wrapper[data-popup="1"] {
    width: 100%;
    max-width: 440px;
    height: fit-content;

}


.pop-up {
    display: flex;
    flex-direction: column;
    grid-row-gap: 40px;
    width: 100%;
    padding: 0 10px;
}



.pop-up__inner{
    display: grid;
    grid-row-gap: 10px;

}

.pop-up__inner p{
    font-size: 18px;
    line-height: 24px;
}

.pop-up__title {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.55;
    text-transform: uppercase;
    text-align: center;
    color: black;
}

.pop-up__content {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #181818;
}

.pop-up__content span {
    font-weight: 700;
}

.btn--close {
    position: absolute;
    top: 35px;
    right: 10px;
    transform: translateY(-50%);
    width: 60px;
    height: 55px;
    background: initial;
    border: none;
    z-index: 10;
}

@media screen and (min-width: 992px){
    .pop-up__wrapper {
        padding: 50px;
        width: 850px;
        height: 650px;
    }
    .pop-up__wrapper > img {
        display: block;
        position: absolute;
        left: 0;
        bottom: 100px;
    }
    .pop-up__wrapper[data-popup="1"] {
        padding: 80px;
        max-width: 650px;
    }
    .pop-up {
        padding: 0;
        grid-row-gap: 60px;
        max-width: 500px;
    }
    .pop-up__title {
        font-weight: 700;
        font-size: 35px;
    }
    .pop-up__content {
        font-size: 24px;
        line-height: 29px;
    }
    .btn--close {

        top: 55px;
        right: 20px;
    }
}

/*.h_min--50{*/
/*    min-height: 25px;*/
/*}*/