.popup-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popup {
    display: block;
    justify-content: center;
    z-index: 999999999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
}

.popup-holder {
    display: flex;
    flex-flow: row wrap;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;

    max-width: 920px;
    width: max-content;
    position: relative;
}

.popup-close {
    position: absolute;
    right: 24px;
    top: 24px;
    height: 38px;
    cursor: pointer;
    transition: 300ms;
}

.popup-close svg {
    transition: 300ms;
}

.popup-close:hover svg {
    transition: 300ms;
    fill: #fff;
}

.popup-holder {
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    justify-content: space-between;
}

.popup-holder__left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
}

.popup-holder__left span {
    border-radius: 40px;
    background: #EEF9F1;
    padding: 8px 12px;
    color: #0F4F1E;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.popup-holder__left h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.popup-holder__left p {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 8px;
}

.popup-holder__left p:last-of-type {
    margin-bottom: 40px;
}

.popup__subscribe input:focus {
    outline: none;
}

.popup__subscribe input::placeholder,
.popup__subscribe input {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.popup-holder__left p.popup__coupon-code {
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #000;
    margin-bottom: 20px;
    display: none;
}

.copy-clipboard-close,
.popup__subscribe-button {
    background: #FC6A5D;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    height: 48px;
    width: 100%;
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #fff;
    border: 0;
    text-decoration: none;
}

.copy-clipboard-close {
    display: none;
}

.popup__subscribe input {
    border: 1px solid #c8c8c8;
    background-color: #fff;
    height: 40px;
    width: 100%;
    border-radius: 8px;
    padding: 8px 12px;
}

.popup-holder__left p span {
    color: #FC6A5D;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px;
    padding: 0;
    background: transparent;
}

/*.popup-holder__left a {*/
/*    display: flex;*/
/*    flex-flow: row wrap;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #FFF;*/
/*    font-family: 'Figtree', sans-serif;*/
/*    font-size: 14px;*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    line-height: normal;*/
/*    letter-spacing: 1.12px;*/
/*    text-transform: uppercase;*/
/*    padding: 18px;*/
/*    text-decoration: none;*/

/*    border-radius: 8px;*/
/*    background: #FC6A5D;*/
/*}*/

.popup-spring .popup-holder__left a {
    background: #0F4F1E;
    cursor: pointer;
}

.popup-holder__left-black h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    margin: 16px 0;
}

.popup-holder__left-black h3 {
    color: #FC6A5D;
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 16px;
}

.popup-holder__left-black p {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.popup-holder__right {
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 50%;
    max-width: 50%;
}

.popup-holder .popup-holder__right-black img {
    max-height: 386px;
}

.popup-holder__right img {
    max-width: 100%;
    border-radius: 0 16px 16px 0;
    object-fit: cover;
    height: 100%;
}

.popup-spring .popup-holder__right img {
    border-radius: 0 16px 16px 0;
    max-height: 500px;
    height: 100%;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
    .popup-holder {
        max-width: 760px;
    }

    .popup-holder__right img {
        max-height: fit-content;
    }

    .popup-holder .popup-holder__right-black img {
        max-height: unset;
    }

    .popup-spring .popup-holder__right img {
        max-height: unset;
    }
}

@media only screen and (max-width: 768px) {
    .popup-holder {
        max-width: 76%;
        margin-left: 12%;
    }

    .popup-close {
        right: 20px;
        top: 20px;
    }

    .popup-holder__left {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
        padding: 24px;
    }

    .popup-holder__left h2 {
        font-size: 24px;
    }

    .popup-holder__left p {
        font-size: 14px;
        line-height: 20px;
    }

    .popup-holder__left p:last-of-type {
        margin-bottom: 24px;
    }

    .popup-holder__right {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }

    .popup-holder__right img {
        max-width: 100%;
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
    }

    .popup-holder__left-black h2 {
        margin: 12px 0 16px;
    }

    .popup-spring {
        width: 100%
    }

    .popup-spring .popup-holder__right img {
        max-height: 300px;
        border-radius: 16px 16px 0 0;
    }
}

@media only screen and (max-width: 575px) {
    .popup-holder {
        max-width: 335px;
        margin: auto;
    }

    .popup-holder__left-black h2 {
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .popup-holder__left-black .activeAction {
        height: 48px;
        padding: 0;
    }

    .popup-spring .popup-holder__right img {
        height: 160px;
    }

    .popup-spring .popup-holder__left h2 {
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }
}

@media only screen and (max-width: 350px) {
    .popup-holder {
        max-width: 290px;
    }
}