#call.popup__modal {
    max-width: 560px;
    width: 94%;
}

.feedback_form {
    max-width: 560px;
    margin: 20px 0 30px;
    padding: 36px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    box-sizing: border-box;
}

[class^="feedback_form_param"] {
    margin-bottom: 18px;
}

.infofield {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.infofield span[style*="color:red"] {
    color: #d32f2f !important;
    margin-left: 2px;
}

.feedback_form input[type='text'],
.feedback_form input[type='email'],
.feedback_form input[type='tel'],
.feedback_form input[type='number'],
.feedback_form select,
.feedback_form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.feedback_form input[type='text']:hover,
.feedback_form input[type='email']:hover,
.feedback_form input[type='tel']:hover,
.feedback_form input[type='number']:hover,
.feedback_form select:hover,
.feedback_form textarea:hover {
    border-color: #0d74ad;
}

.feedback_form input[type='text']:focus,
.feedback_form input[type='email']:focus,
.feedback_form input[type='tel']:focus,
.feedback_form input[type='number']:focus,
.feedback_form select:focus,
.feedback_form textarea:focus {
    border-color: #0d74ad;
    box-shadow: 0 0 0 3px rgba(13,116,173,.12);
}

.feedback_form textarea {
    min-height: 100px;
    resize: vertical;
}

.feedback_form input::placeholder,
.feedback_form textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.feedback_form .inpattachment {
    display: inline-flex;
    align-items: center;
    margin: 0 6px 6px 0;
    vertical-align: middle;
}

.feedback_form .inpattachment input[type='file'] {
    display: none;
}

.feedback_form .inpattachment label {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #0d74ad;
    background: #fff;
    border: 2px solid #0d74ad;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background .2s, color .2s;
    user-select: none;
    margin: 0;
}

.feedback_form .inpattachment label:hover {
    background: #0d74ad;
    color: #fff;
}

.feedback_form .inpattachment_delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #d32f2f;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .2s;
}

.feedback_form .inpattachment_delete:hover {
    background: #b71c1c;
}

.feedback_form .attachment_extensions {
    margin-top: 4px;
    font-size: 12px;
    color: #888;
}

.feedback_form .feedback_form_param_text {
    margin-top: 4px;
    font-size: 12px;
    color: #888;
}

.feedback_form .feedback_form_param_text p {
    margin: 0;
    font-size: 12px;
}

.feedback_form input[type='submit'].button.solid,
.feedback_form input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background: #0d74ad;
    border: none;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.feedback_form input[type='submit'].button.solid:hover,
.feedback_form input[type='submit']:hover {
    background: #0a5f8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13,116,173,.3);
}

.feedback_form input[type='submit'].button.solid:active,
.feedback_form input[type='submit']:active {
    background: #094e76;
    transform: translateY(0);
    box-shadow: none;
}

.feedback_form .privacy_field {
    margin-top: 14px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.feedback_form .privacy_field a {
    color: #0d74ad;
    text-decoration: underline;
}

.feedback_form .privacy_field a:hover {
    color: #0a5f8f;
}

.feedback_form .required_field {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

.feedback_form .required_field span {
    color: #d32f2f;
}

.feedback_form .errors {
    display: block;
    margin-top: 5px;
    padding: 7px 11px;
    font-size: 13px;
    color: #d32f2f;
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 4px;
    line-height: 1.4;
}

.feedback_form .errors:empty,
.feedback_form .errors[style*="display:none"] {
    display: none !important;
}

.feedback_form .hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .feedback_form {
        padding: 24px 18px;
        margin: 12px 0 20px;
    }
    .feedback_form input[type='submit'] {
        width: 100%;
    }
}
