
.error_field {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #FD515F;
    margin-top: 4px;
    /*position: absolute;*/
    /*display: none;*/
    visibility: hidden;
    margin-bottom: 0;
}
.form_field.error .input {
    border-bottom: 1px solid #FD515F;
}
.form_field.error .formItem__label {
    color: #757B8A;
}

.form_field.error .textarea {
    border: 1px solid #FD515F;
}

.form_field.error .error_field {
   visibility: visible;
}

.delete-file {
    width: 14px;
    height: 14px;
    background: url('img/close_24px.svg') no-repeat;
    background-size: 14px 14px;
    background-position: center;
    margin-left: auto;
    margin-bottom: 14px;
}
#popup1,
.popup1 {
    border: 1px solid #EAEAE9;
    position: fixed;
    bottom: 8px;
    right: 8px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 16px 12px 44px;
    display: none;
}
#popup1 .popup_close:after,
.popup1 .popup_close:after{
    background: url('img/close_24px.svg');
    background-size: 9px 9px;
    width: 9px;
    height: 9px;
    content: '';
    position: absolute;
    right: 19px;
    top: 19px;
    cursor: pointer;
    z-index: 10001;
}
#popup1 .title_popup:before,
.popup1 .title_popup:before{
    content: '';
    background: url('img/info_24px.png');
    background-size: 20px 20px;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -25px;
}
#popup1 .title_popup,
.popup1 .title_popup{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}
#popup1 .popup_text,
.popup1 .popup_text{
    font-size: 12px;
    line-height: 16px;
}