
/* @group Popup-thanks
------------------------------------ */
.popup-thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .7s;
}
.active-popup.popup-thanks {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.popup-thanks .col-content {
    text-align: center;
    width: 100%;
    background: #233725;
    box-shadow: 2px 2px 35px 0px rgba(43, 35, 29, 0.10);
    flex: 0 1 95%;
    max-width: 95%;
    height: auto;
    padding: 10rem 0 20rem;
    margin: 10rem 0 0;
    transform: translateY(4rem);
    transition: transform .7s;
}
.active-popup.popup-thanks .col-content {
    transform: translateY(0);
}
.popup-thanks .col-content::before {
    content: "";
    width: 100%;
    height: 12rem;
    background-image: url('../../img/layout/frontpage/shapes-popup-thanks.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
.popup-thanks .col-content h2,
.popup-thanks .col-content p {
    color: var(--beige);
}
.popup-thanks .col-content h2 {
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: var(--playfair-font);
}
.popup-thanks .icon-close {
    color: var(--beige);
    font-size: 3.4vh;
    position: absolute;
    top: 3.13vh;
    right: 3.13vh;
    cursor: pointer;
}
@media only screen
and (min-width : 961px) {
    .popup-thanks .row {
        height: 100%;
    }
    .popup-thanks .col-content {
        flex: 0 1 115vh;
        max-width: 115vh;
        height: 82vh;
        padding: 24.7vh 0 0;
        margin: 0;
    }
    .popup-thanks .col-content::before {
        height: 26.8vh;
    }
    .popup-thanks .col-content h2 {
        font-size: 7.16vh;
        max-width: 46vh;
        margin: 0 auto 2.5vh;
    }
    .popup-thanks .col-content p {
        font-size: 1.7vh;
        line-height: 1.3em;
        letter-spacing: .1em;
        max-width: 46vh;
        margin: 0 auto;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */