.t-form-success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    transition: .3s;
}


.t-form-success-popup_show {
    opacity: 1;
    visibility: visible;
}


.t-form-success-popup__wrapper {
    position: relative;
    width: 420px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}


.t-form-success-popup__close-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.t-form-success-popup__content-icon {
    margin-bottom: 20px;
}

.t-form-success-popup__title {
    font-size: 32px;
    margin-bottom: 15px;
}

.t-form-success-popup__text {
    font-size: 18px;
    margin-bottom: 30px;
}

.t-form-success-popup__button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    cursor: pointer;
}