.callback-form {
    margin-top: 50px;
    margin-bottom: 50px;
}

.callback-form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.callback-form_container {
    display: flex;
    background: #F3F5F8

}

.callback-form_form {
    padding: 42px 22px 53px 180px;
    flex: 1 0 auto;
    background-image: url('../../front/img/callback-form-img.png');
    background-position: left bottom;
    background-repeat: no-repeat;
}

.news-column .callback-form_form,
.articles-column .callback-form_form {
    background-position: -10px bottom;
    background-size: 15%;
}

.callback-form_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 14px;
    color: #000;
}

.callback-form_form-row {
    display: flex;
    gap: 9px;
    margin-bottom: 22px;
}

.callback-form_form-row > div,
.callback-form_form-consent {
    position: relative;
}

.callback-form_img img {
    display: block;
    object-fit: cover;
    height: 100%;
}

.callback-form_info {
    font-size: 12px;
    line-height: 100%;
    color: #000;
    margin-bottom: 22px;
}

.callback-form_form form input[type=text] {
    background: #FFF;
    height: 100%;
    border-radius: 3px;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 10px 18px;
    font-size: 18px;
    max-width: 250px;
}

.callback-form_form form input[type=text]:focus {
    border: solid 1px #C6C6C6;
}

.callback-form_form form input[type=submit] {
    background: #4BB933;
    border-radius: 0;
    font-size: 18px;
    line-height: 30px;
    color: #FFF;
    padding: 10px 22px;
}

.callback-form_form form input[type=submit]:hover {
    background: #4fda2f;
}

.callback-form_form-consent a {
    color: #000;
}

.callback-form_form-consent a:hover {
    color: #4fda2f;
}

.callback-form_form-consent span {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    opacity: 0.5;
    margin-left: 9px;
    margin-top: 2px;
}

.callback-form_form-consent > label {
    display: flex;
}

.callback-form_form [type='checkbox']:not(:checked) + label,
.callback-form_form [type='checkbox']:checked + label {
    position: relative;
}

.callback-form_form [type='checkbox']:not(:checked) + label:before,
.callback-form_form [type='checkbox']:checked + label:before {
    width: 20px;
    height: 20px;
    border: solid 1px #ACACAC;
    background: #FFF;
    border-radius: 3px;
}

.callback-form_form [type='checkbox']:checked + label:before {
    background: #4BB933;
}

.callback-form_form [type='checkbox']:not(:checked) + label:after,
.callback-form_form [type='checkbox']:checked + label:after {
    content: url('data:image/svg+xml,<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.95831 10.4998L0.208313 5.74984L1.39581 4.56234L4.95831 8.12484L12.6041 0.479004L13.7916 1.6665L4.95831 10.4998Z" fill="white"/></svg>');
    top: 2px;
    left: 4px;
}

.articles-center-column .callback-form_form,
.news-center-column .callback-form_form {
    padding: 42px 22px 53px 105px;
}

.callback-form_form .validation-error {
    font-size: 13px;
    position: absolute;
    bottom: -20px;
    padding: 2px 5px;
    color: #ffffff;
    border: 1px solid #bbb;
    transition: all 240ms ease-out;
    border-radius: 4px;
    background: #202e31;
    box-shadow: 3px 4px 14px -2px rgba(0, 0, 0, 0.32);
    opacity: 0;
}

.callback-form_form .validation-error:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 4px solid #202e31;
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    top: -4px;
    left: 6px;
}

.callback-form_form .validation-error.-visible {
    opacity: 1;
}

.callback-form_form-consent .validation-error {
    bottom: -30px;
}

@media (max-width: 1140px) {
    .callback-form_form,
    .articles-center-column .callback-form_form,
    .news-center-column .callback-form_form {
        padding: 42px 22px 53px 100px;
        flex: 0 1 auto;
    }

    .callback-form_form form input[type=text] {
        max-width: unset;
    }

    .callback-form_form-row {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .callback-form_img {
        flex: 1 0 auto;
    }

    .feedback-form {
        flex: 0 1 auto;
    }
}

@media (max-width: 780px) {
    .callback-form_container {
        flex-direction: column;
    }
    .callback-form_img img {
        height: 260px;
        width: 100%;
    }

    .callback-form_title {
        font-size: 20px;
    }

    .callback-form_form form input[type=text] {
        line-height: 30px;
    }

    .callback-form_form-consent > label {
        display: flex;
    }

    .callback-form_form,
    .articles-center-column .callback-form_form,
    .news-center-column .callback-form_form {
        padding: 27px 15px 28px;
        background-image: none;
    }

    .callback-form {
        margin-bottom: 60px;
    }
}