/* Anim */

.fade-out {
    opacity: 0;
    transform: translateY(20px);  /* Зменшуємо вертикальне відстань для ефекту зникнення */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Анімація для плавного появи елемента */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Початкові стилі для прихованого елементу */
.thank-you-popup__wrapper {
    display: none;
}

/* Anim */


.thank-you-popup {
    overflow: hidden;
}

.thank-you-popup__wrapper {
    gap: 50px;
    align-items: center;
}

.thank-you-popup__form-heading {
    margin-bottom: 10px;
}

.thank-you-popup__form-text {
    margin-bottom: 40px;
    max-width: 539px;
}

.wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
    margin-top: 34px;
}

.thank-you-popup__content {
 flex-basis: 390px;
}

.thank-you-popup__img-wrapper {
    flex-basis: 470px;
    display: flex;
}

.thank-you-popup__image {
    width: 100%;
    height: 100%;
}

.thank-you-popup__btn {
    margin-top: 40px;
}

.thank-you-popup__img-wrapper {
    margin: -30px -30px -30px 0;
    position: relative;
}

.thank-you-popup__image {
    clip-path: polygon(0% 0%, 80% 0%, 100% 20%, 100% 100%, 20% 100%, 0% 80%);
}

.thank-you-popup__img-wrapper svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    height: 62px;
}

.thank-you-popup__heading {
    margin-bottom: 10px;
}
@media screen and (min-width: 1600px) {
    .thank-you-popup__content,
    .thank-you-popup__img-wrapper {
        flex-grow: 1;
    }


}

@media screen and (max-width: 1199.98px) {
    .thank-you-popup__wrapper {
        gap: 40px;
    }

}

@media screen and (max-width: 1024.98px) {
    .thank-you-popup__wrapper {
       flex-direction: column-reverse;
        gap: 30px;
        align-items: flex-start;
    }

    .thank-you-popup__form-text {
        margin-bottom: 30px;
    }

    .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
        margin-top: 30px;
    }


    .thank-you-popup__content,
    .thank-you-popup__img-wrapper {
        flex-basis: 100%;
    }

    .thank-you-popup__img-wrapper {
        margin: -10px -10px 0 -10px;
    }

    .thank-you-popup__btn {
        margin-top: 30px;
    }


    .thank-you-popup__img-wrapper svg {
        width: 43px;
        height: 43px;
    }
}

@media screen and (max-width: 599.98px) {
    .thank-you-popup__text {
        max-width: 300px;
    }
}