.feedback-form {
font-family: "Arial", sans-serif;
margin: 30px 0;
}

.feedback-form__status {
border-radius: 6px;
padding: 16px 24px;
margin-bottom: 15px;
font-size: 14px;
color: rgba(0, 0, 0, 0.6);
background: rgba(24, 193, 57, 0.1);
display: none;
}

.feedback-form__status > b {
color: #00a220;
display: block;
margin-bottom: -8px;
}

.feedback-form__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}

.feedback-form__title {
font-size: 20px;
line-height: 150%;
margin-right: 12px;
white-space: normal;
}

.feedback-form__subtitle {
font-size: 14px;
color: #454D54;
margin-top: 4px;
}

.feedback-form__form {
position: relative;
border-radius: 5px;
background: #ebeaea;
padding: 16px 24px !important;
max-height: 1500px;
overflow: hidden;
transition: max-height 0.5s 0s ease, overflow 0s 0.5s ease;
}

.feedback-form.feedback-form_collapsed .feedback-form__form {
max-height: 47px;
overflow: hidden;
}

.feedback-form.feedback-form_collapsed .feedback-form__form {
max-height: 56px;
}

.feedback-form.feedback-form_collapsed .feedback-form__form::after {
opacity: 1;
}

.feedback-form__body {

}

@media screen and (min-width: 1000px) {
.feedback-form.feedback-form_wide .feedback-form__body {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
}

.feedback-form__fieldset {
border-width: 0;
padding: 0;
margin: 0;
box-sizing: border-box;
}

.feedback-form__label {
display: block;
margin-bottom: 8px;
}

.feedback-form__label.feedback-form__label_required::after {
content: '*';
font-size: 25px;
position: absolute;
margin-left: 5px;
margin-top: -2px;
color: #af0e17;
}

.feedback-form.feedback-form_wide .feedback-form__fieldset {
width: 100%;
margin-top: 0 !important;
}

@media screen and (min-width: 1000px) {
.feedback-form.feedback-form_wide .feedback-form__fieldset.feedback-form__fieldset_name,
.feedback-form.feedback-form_wide .feedback-form__fieldset.feedback-form__fieldset_phone,
.feedback-form.feedback-form_wide .feedback-form__fieldset.feedback-form__fieldset_email,
.feedback-form.feedback-form_wide .feedback-form__fieldset.feedback-form__fieldset_city {
    width: calc(100% / 3 - 16px / 3 * 2);
}
}

.feedback-form__fieldset + .feedback-form__fieldset {
margin-top: 16px;
}

.feedback-form__input,
.feedback-form__textarea {
display: block;
width: 100%;
font-size: 13px;
background: #fff;
height: 53px;
font-family: Arial;
padding: 0 12px !important;
border: 1px solid #D9D9D9;
border-radius: 6px;
outline: none;
box-sizing: border-box;
}

.feedback-form__input::placeholder,
.feedback-form__textarea::placeholder {
color: #9CA3AA;
}

.feedback-form__input:focus,
.feedback-form__textarea:focus {
border-color: white;
box-shadow: 0 0 0 2px #015fcc;
}

.feedback-form__input:focus::placeholder,
.feedback-form__textarea:focus::placeholder {
color: rgba(255, 255, 255, 0);
}

.feedback-form__input {

}

.feedback-form__textarea {
resize: none;
height: 106px;
padding-top: 16px !important;
padding-bottom: 16px !important;
}

.feedback-form__select {
display: block;
width: 100%;
font-size: 14px;
background: #fff;
height: 53px;
padding: 0 24px !important;
border: 1px solid #D9D9D9;
background: white;
border-radius: 6px;
outline: none;
box-sizing: border-box;
}

.feedback-form__checkbox {
display: inline-block;
white-space: nowrap;
vertical-align: top;
height: 30px;
line-height: 30px;
position: relative;
padding-left: 26px;
}

.feedback-form__checkbox + .feedback-form__checkbox {
margin-left: 24px;
}

.feedback-form__checkbox > input {
display: none;
}

.feedback-form__checkbox > span {
position: absolute;
left: 0;
top: 0;
}

.feedback-form__checkbox > span::before,
.feedback-form__checkbox > span::after {
content: "";
display: block;
position: absolute;
transition: all 0.2s ease;
}

.feedback-form__checkbox > span::before {
width: 14px;
height: 14px;
top: 6px;
left: 0;
background: transparent;
border: 1px solid #D9D9D9;
border-radius: 2px;
}

.feedback-form__checkbox > span::after {
top: 10px;
left: 4px;
width: 7px;
height: 3px;
border-bottom: 2px solid #ffffff;
border-left: 2px solid #ffffff;
transform: rotate(-45deg);
opacity: 0;
}

.feedback-form__checkbox > div {
height: 30px;
line-height: 30px;
font-size: 14px;
cursor: pointer;
transition: all 0.2s ease;
}

.feedback-form__checkbox > div:hover {
opacity: 0.9;
}

.feedback-form__checkbox > input:checked ~ div {
opacity: 1;
}

.feedback-form__checkbox > input:checked ~ span::before {
background: #af0f16;
border-color: #af0f16;
}

.feedback-form__checkbox > input:checked ~ span::after {
opacity: 1;
}

.feedback-form__footer {
margin-top: 24px;
}

@media screen and (min-width: 1000px) {
.feedback-form.feedback-form_wide .feedback-form__footer {
    display: flex;
    gap: 16px;
}
}

.feedback-form__button {
order: 1;
display: inline-block;
width: auto;
min-width: 200px;
padding: 0 30px;
font: 300 14px 'Arial', sans-serif;
font-size: 14px;
height: 47px;
line-height: 45px;
border: 1px solid transparent;
border-radius: 2px;
flex-grow: 0;
cursor: pointer;
white-space: nowrap;
-webkit-appearance: none;
}

.feedback-form__required {
order: 2;
margin-left: 16px;
line-height: 47px;
}

.feedback-form__button.feedback-form__button_accent {
color: white;
background: #af0f16;
border-color: #af0f16;
}

.feedback-form__button.feedback-form__button_linear {
color: #9CA3AA;
background: transparent;
border-color: #9CA3AA;
}

.feedback-form__button.feedback-form__button_accent:active {
background: #bf1f26;
}

.feedback-form__header .feedback-form__button.feedback-form__button_collapse {
display: none;
}

.feedback-form__button.feedback-form__button_submit {

}

.feedback-form.feedback-form_collapsed .feedback-form__header .feedback-form__button.feedback-form__button_collapse {
display: block;
width: auto;
max-width: 250px;
}

.feedback-form.feedback-form_narrow .feedback-form__button {
width: 100%;
}

.feedback-form.feedback-form_narrow .feedback-form__button + .feedback-form__button {
margin-top: 16px;
}

.feedback-form.feedback-form_narrow .feedback-form__required {
margin-bottom: 16px;
line-height: 1;
}

.feedback-form__privacy {
margin-top: 16px;
color: #555;
font-size: 13px;
}

.feedback-form.feedback-form_narrow .feedback-form__privacy {
text-align: center;
}

.feedback-form__privacy a {
color: #af0f16;
}