

/* Start:/local/templates/DoctorSmile_2022/components/bitrix/voting.form/main.case.history/style.css?17557649765628*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.quiz-table {
    font-family: "Roboto";
    position: relative;
}

.quiz-table__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    row-gap: 20px;
    margin-bottom: 40px;
}

.quiz-table__input {
    width: 100%;
}

.quiz-table__caution {
    font-size: 15px;
    line-height: 140%;
    color: #4f6ecb;
}

.quiz-table__body {
    margin-top: 55px;
}

.quiz-table__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.quiz-table__sign {
    min-height: 40px;
    font-size: 15px;
    line-height: 140%;
    color: #7e7e89;
    position: relative;
    width: 225px;
    border-bottom: 1px solid #7e7e89;
}

.quiz-table__sign span {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    text-align: center;
}

.quiz-table__answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.quiz-table__table {
    border-collapse: collapse;
    width: 100%;
    margin: 30px 0;
}

.quiz-table td {
    padding: 24px 30px;
}

.quiz-table td:first-child {
    padding: 24px 11px;
    border-right: 1px solid #7e7e89;
    text-align: center;
}

.quiz-table tr {
    border: 1px solid #7e7e89;
}

.quiz-table caption {
    color: #213570;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
    caption-side: top;
}

.quiz-table__label .quiz-table__checkmark:after {
    display: block;
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 9px;
    height: 9px;
    background: #4f6ecb;
    opacity: 0;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    border-radius: 50%;
}

.quiz-table__label {
    display: block;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.quiz-table__label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.quiz-table__checkmark {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    height: 15px;
    width: 15px;
    border: 1px solid #4f6ecb;
    border-radius: 50%;
}

.quiz-table__label input:checked ~ .quiz-table__checkmark:after {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .quiz-table__input {
        max-width: none !important;
    }
}

@media screen and (max-width: 570px) {
    .quiz-table td {
        padding: 20px 10px;
    }
    .quiz-table td:first-child {
        padding: 20px 4px;
    }
    .quiz-table__answer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
    .quiz-table__body {
        margin-top: 30px;
    }
}

input[type="text"], input[type="tel"], textarea {
    /* width: 100%; */
    border: none;
    min-width: 180px;
    font-size: 15px;
    line-height: 1.4;
    background-color: transparent;
    border-bottom: 1px solid #4b4b57;
    padding: 10px 2px;
}

[data-required] {
    transition: .3s;
}

.res_error input[type="text"],
.res_error textarea {
    border-color: #d51919;
}

.res_error input[type="text"]::placeholder,
.res_error textarea::placeholder {
    color: rgba(255,0,0,.6);
}

tr.res_error {
    color: #d51919 !important;
    background: rgba(255, 200, 200, .06);
}

tr.res_error,
tr.res_error td,
tr.res_error .quiz-table__checkmark {
    border-color: #d51919 !important;
}

.quizModal {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}

.quizModalBackground {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
}

.quizModalWindow {
    max-width: 520px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    z-index: 2;
    transition: .4s;

    transform: translateY(-40px);
    opacity: 0;
    visibility: hidden;
}

.quizModalWindow .h1 {
    color: #222;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.quizModalWindow p {
    text-align: center;
}

.quizModalFooter {
    text-align: center;
    margin-top: 40px;
}

.quizModal.thisActive {
    visibility: visible;
    opacity: 1;
}

.quizModal.thisActive .quizModalWindow {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.loader {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
    display: none;
}
/* End */
/* /local/templates/DoctorSmile_2022/components/bitrix/voting.form/main.case.history/style.css?17557649765628 */
