.form-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(37, 44, 50, 0.58);
}
.form-feedback-modal.is-open {
    display: flex;
}
.form-feedback-dialog {
    width: min(420px, 100%);
    position: relative;
    padding: 34px 30px 28px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(37, 44, 50, 0.28);
    color: #252C32;
    text-align: center;
}
.form-feedback-mark {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    background: #49A302;
}
.form-feedback-modal.is-error .form-feedback-mark {
    background: #E4322B;
}
.form-feedback-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}
.form-feedback-text {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #5F6264;
}
.form-feedback-close,
.form-feedback-action {
    cursor: pointer;
}
.form-feedback-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #F1F4FB;
    color: #252C32;
    font-size: 26px;
    line-height: 30px;
}
.form-feedback-action {
    min-width: 160px;
    height: 46px;
    padding: 0 24px;
    border: 1px solid #E4322B;
    border-radius: 4px;
    background: #E4322B;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}
.form-feedback-action:hover {
    background: #ffffff;
    color: #E4322B;
}
.formResponsive.is-sending button[type="submit"] {
    opacity: 0.72;
    pointer-events: none;
}
@media (max-width: 480px) {
    .form-feedback-dialog {
        padding: 30px 22px 24px;
    }
    .form-feedback-title {
        font-size: 21px;
    }
}
