@import url('https://fonts.googleapis.com/css2?family=Lato&family=Oswald:wght@400;500&display=swap');

* {-webkit-print-color-adjust:exact!important}

.questions-wrap {
    font-family: 'Lato', sans-serif !important;
}

.question-title {
    font-weight: 500 !important;
    font-size: 48px !important;
    line-height: 48px !important;
    color: #353535;
    position: relative;
    padding-left: 35px;
    margin-bottom: 60px;
    font-family: 'Oswald', sans-serif;
}

.question-title:before {
    content: '';
    position: absolute;
    width: 11px;
    height: 100%;
    background: #0160A7;
    left: 0;
    top: 0
}

.question-sub-title {
    font-weight: 500 !important;
    font-size: 28px !important;
    line-height: 34px !important;
    font-family: 'Oswald', sans-serif !important;
    color: #353535;
    margin-bottom: 40px;
}

.answer-wrap ol {
    padding-left: 0;
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0;
}

.answer-wrap ol li {
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 26px; !important
    color: #353535;
    padding: 24px 78px 24px 28px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: block;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
}

.answer-wrap ol li:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 24px;
    right: 35px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: url("../img/arrow.svg") no-repeat;
}

.answer-wrap ol li:hover:after {
    -webkit-transform: translate(15px, -50%);
    -moz-transform: translate(15px, -50%);
    -ms-transform: translate(15px, -50%);
    -o-transform: translate(15px, -50%);
    transform: translate(15px, -50%);
}


.answer-wrap ol li:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.question-description {
    background: #F1F8FF;
    border-radius: 24px;
    padding: 48px;
    -webkit-print-color-adjust:exact;
}

.description-title {
    font-weight: bold !important;
    font-size: 18px !important;
    line-height: 150% !important;
    color: #054377;
    margin-bottom: 40px;
}

.description-attention {
    font-size: 18px !important;
    line-height: 150% !important;
    color: #0160A7;
    padding-left: 44px;
    background: url("../img/attention.svg") no-repeat;
    background-position: left 4px!important;
}

.buttons-wrap {
    margin-top: 30px;
}

.button-back {
    border:none;
    border-radius: 5px;
    padding: 12px 20px 12px 56px;
    background: url("../img/back-button-arrow.svg") no-repeat, #E4F1FE;
    background-position: 25px center!important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 150% !important;
    text-align: center;
    color: #1B89EF;
    cursor: pointer;
    margin-right: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.buttons-wrap > button:last-child {
    margin-right: 0;
}

.button-back:hover {
    color: #fff !important;
    background: url("../img/back-button-arrow-hover.svg") no-repeat, #044678;
    background-position: 25px center!important;
}


.answer-button-input-question {
    color: white;
    padding: 12px 56px 12px 20px;
    background: url("../img/next-arrow.svg") no-repeat, #0160A7;
    background-position: right 25px center!important;
    border:none;
    border-radius: 5px;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 150% !important;
    text-align: center;
    cursor: pointer;
    margin-right: 30px;
}

.input_question {
    height: 77px;
    width: 100%;
    background: #F7F7F7;
    border-radius: 16px;
    border: 1px solid transparent;
    padding-left: 24px;
    padding-right: 125px;
    font-size: 20px !important;
    line-height: 28px !important;
    color: #353535;
}

.input_question:focus {
    background: #F1F8FF;
    outline: none;
}

.input-wrap {
    position: relative;
}

.right-placeholder {
    position: absolute;
    font-size: 20px !important;
    line-height: 28px !important;
    color: #BDBDBD;
    top: 25px;
    right: 24px;
}

.input_question.error {
    border: 1px solid red
}

.custom-error-message {
    color: red;
    font-size: 12px !important;
}

::-webkit-input-placeholder { /* Edge */
    color: #BDBDBD;
    font-size: 20px !important;
    font-weight: normal !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #BDBDBD;
    font-size: 20px !important;
    font-weight: normal !important;
}

::placeholder {
    color: #BDBDBD;
    font-size: 20px !important;
    font-weight: normal !important;
}

.question-sub-title-3 {
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 28px !important;
    color: #353535;
    font-family: 'Oswald', sans-serif !important;
    margin-bottom: 24px;
}

.question-content {
    font-size: 20px !important;
    line-height: 28px !important;
    color: #353535;
    margin-bottom: 48px;
}

.description-content {
    font-size: 18px !important;
    line-height: 150% !important;
    color: #054377;
    margin-bottom: 40px;
}

.description-content span {
    text-decoration: underline;
    font-size: 18px !important;
    line-height: 28px !important;
    color: #054377;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.description-content span:hover {
    color: #228DEF;
}

.questions-wrap .question div.table {
    width: 100%;
    overflow-x: auto;
}

.questions-wrap .question div.table table {
    width: 100%;
    border: 1px solid #333333;
    border-collapse: collapse;
    border-spacing: 0;
}

.questions-wrap .question div.table table th,
.questions-wrap .question div.table table td {
    text-align: center;
    vertical-align: middle;
    color: #353535;
    font-size: 18px !important;
    line-height: 150% !important;
    padding-top: 18px;
    padding-bottom: 18px;
    border: 1px solid #333333;
}

.questions-wrap .question div.table table th {
    background: #F9F9F9;
    font-weight: bold !important;
}

.question-table-notice {
    font-size: 18px !important;
    line-height: 150% !important;
    color: #0160A7;
}

.ul-results li {
    font-size: 16px !important;
}

.printing-div {
    margin-top: 15px;
}

.printing-button {
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 150% !important;
    text-align: center;
    color: black;
    cursor: pointer;
    margin-right: 30px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid black;
    display: inline-block;
}

.question-description-printing {
    padding-bottom: 30px;
}

.question-description-printing .description-content {
    margin-bottom: 0;
}

.top-print-text {
    display: none;
    margin-bottom: 50px;
}


@media all and (max-width: 991px) {
   .question-title {
       font-size: 30px !important;
   }

    .question-sub-title {
        font-size: 26px !important;
        line-height: 32px !important;
    }

    .question-sub-title-3 {
        font-size: 22px !important;
        line-height: 26px !important;
    }

    .questions-wrap .question div.table table {
        width: 900px;
    }

}

@media all and (max-width: 768px) {
    .question-description {
        padding: 20px;
    }
}

@media print {
    .button-back,
    .printing-button {
        visibility: hidden;
    }

    .top-print-text {
        display: block;
        margin-bottom: 50px;
    }

    .question {
        display: none;
    }

    .question.active {
        display: block;
        position: static;
        height: auto;
        opacity: 1!important;
    }


}
#blockForChat .input_question{
	box-sizing: border-box;
}