.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_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;
    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-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;
}

@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;
    }
}