.form-faq{
    display: block;
    width: 500px;
    margin: 0 auto;
}

.form-faq .form-faq__items{
    background: url("/images/page_bg.png");
    padding: 5px;
}

.form-faq .form-faq__item{
    display: flex;
    justify-content: space-between;
}

.form-faq__label{
    font: bold 12px tahoma, arial, helvetica, sans-serif;
}

.form-faq__textarea{
    width: calc(100% - 150px);
    min-height: 30px;
    height: 90px;
    max-height: 200px;
    font: normal 12px tahoma, arial, helvetica, sans-serif;
}

.form-faq .form-faq__textarea_invalid{
    background-color: #fee;
    border-color: #ff7870;
    background-image: none;
}

.form-faq__hr{
    margin: 20px 0;
}

.form-faq .form-faq__item div#rcptch,
.form-faq .form-faq__item button{
    margin-right: auto;
    margin-left: auto;
}

.form-faq__button_submit{
    display: none;
    margin-top: 20px !important;
}

@media screen and (max-width: 600px)  {
    .form-faq{
        width: 100%;
    }

    .form-faq .form-faq__item{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .form-faq__textarea{
        width: 100%;
        min-height: 30px;
        height: 90px;
        box-sizing: border-box;
    }
}