.field {
    width: 100%;
    position: relative;
}

.field__input {
    width: 100%;
    padding: 15px;
    font-family: inherit;
    font-size: 1.2rem;
    line-height: 24px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #e6ebf1;
    background-color: #ffffff;
}

.field__input_area {
    height: 167px;
    resize: none;
}

.field__placeholder {
    position: absolute;
    top: 16px;
    left: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #6c757d;
    pointer-events: none;
}

.field__error {
    display: none;
    color: #dd1e31;
    font-size: 0.7rem;
    margin-top: 2px;
}

.field_error .field__error {
    display: block;
}

.field_error .field__input {
    border-color: #dd1e31;
}

.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
}

.form__row:last-child {
    margin-bottom: 0;
}

.form__row .form__item {
    width: 49%;
}

.form__fields {
    margin-bottom: 24px;
}

.form__item {
    width: 100%;
    margin-right: 16px;
}

.form__item:last-child {
    margin-right: 0;
}
.section__form span.error {
	color: #DD1E31;
    font-size: 12px;
}

.section__col_form.sent .feedback-modal__sent-text {
    text-align: left;
}
.section__col_form.sent  .feedback-modal__sent .feedback-modal__sent-text:before {
    margin: 0 0 32px;
}

@media screen and (min-width: 1920px) {
    .field__placeholder {
        top: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .section__col_form.sent .feedback-modal__sent-text {
        text-align: center;
    }
    .section__col_form.sent  .feedback-modal__sent .feedback-modal__sent-text:before {
        margin: 0 auto 32px;
    }
}