.question_form_sect {
    line-height: 1.5;
}
.question_form_sect .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.question_form_sect .form {
    box-sizing: border-box;
    border: 1px solid #D7E8FE;
    border-radius: 1.125em;
    width: 100%;
    padding: 1em;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.question_form_sect .form.disabled {
    opacity: 0.5;
}
.question_form_sect .image_wrap {
    display: none;
}
.question_form_sect .image {
    display: block;
    max-width: 100%;
}
.question_form_sect .title {
    line-height: 1.5;
    margin-bottom: 0.5em;
    font-size: 1em;
}
.question_form_sect .desc {
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 1em;
    font-size: 1em;
}
.question_form_sect .fields {
    margin-bottom: 1.5em;
}
.question_form_sect .field {
    display: block;
}
.question_form_sect .field:not(:last-child) {
    margin-bottom: 1.5em;
}
.question_form_sect .field_title {
    font-size: 0.875em;
    color: #53627C;
}
.question_form_sect .field_input {
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    height: 2em;
    font-family: inherit;
    padding: 0;
    border: none;
    border-bottom: 1px solid #EAF1FC;
}
.question_form_sect .field_input::placeholder {
    font-weight: 300;
    color: #53627C;
}
.question_form_sect .butt_wrap {
    margin-bottom: 1.5em;
}
.question_form_sect .butt_wrap .butt {
    min-width: 12.5em;
}
.question_form_sect .privacy_policy {
    display: flex;
}
.question_form_sect .privacy_policy_checkbox {
    margin-right: 0.5em;
    margin-top: 0.25em;
}
.question_form_sect .privacy_policy_text {
    font-weight: 300;
    color: #53627C;
    font-size: 0.875em;
    letter-spacing: -0.07px;
    line-height: 1.5;
    width: calc(100% - 1.75em);
}
.question_form_sect .success_msg {
    box-sizing: border-box;
    padding: 1em 2em;
    color: #ffffff;
    background-color: #68BA8B;
    font-weight: 500;
    border-radius: 0.25em;
    display: none;
    margin: 1em 0 0;
}