@font-face {
    font-family: Als Schlange Sans;
    font-display: auto;
    src: url(../fonts/ALSSchlange_sans_bld.otf) format("opentype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Zet;
    font-display: auto;
    src: url(../fonts/zet_light.otf) format("opentype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Zet Exp;
    font-display: auto;
    src: url(../fonts/zet_light_expanded.otf) format("opentype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Als Schlange Sans;
    font-display: auto;
    src: url(../fonts/ALSSchlange_sans_reg.otf) format("opentype");
    font-weight: 400;
    font-style: normal
}

*{
    outline: none!important;
}

html{
    font-size: 21px;
}

body{
    background: #ececee;
    font-family: Als Schlange Sans, sans-serif;
    color: #231f20;
    font-size: 1rem;
    line-height: 1.125rem;
    padding-top: 120px;
}

.font--zet{
    font-family: Zet;
}


header{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 7px 27px 0;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header.is-scroll{
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 25px rgba(0,0,0,.05);
}
.header-inner{
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO */
.logo{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}
.logo-text {
    display: flex;
    width: 10rem;
    padding-left: 8px;
    float: left;
    align-items: center;
    color: #231f20;
    font-size: .75rem;
    line-height: .9375rem;
    letter-spacing: -.26px;
}

/* NAV */
.nav-menu{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.nav-menu--link,
.header-cta--phone{
    margin-right: 2px;
    margin-left: 2px;
    padding: 4px 10px;
    border: 2px solid transparent;
    border-radius: 20px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    color: #231f20;
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: -.13px;
    text-decoration: none;
}
.nav-menu--link:hover,
.nav-menu--link:focus,
.header-cta--phone:hover,
.header-cta--phone:focus{
    color: #e17d24;
}

.nav-menu--dropdown{
    position: relative;
}
.nav-menu--dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}
.nav-menu--dropdown-menu ul{
    margin: 0;
    z-index: 10;
    background-color: #FFF;
    width: 220px;
    padding: 12px;
    text-align: left;
    border: 2px solid rgb(242, 101, 40);
    border-radius: 5px;
    list-style: none;
}
.nav-menu--dropdown-menu ul > li{
    margin-bottom: 7px;
    font-size: 1.125rem;
    line-height: 1;
}
.nav-menu--dropdown-menu ul > li > a{
    font-size: 14px;
    line-height: 1;
    color: #20a8e0;
    text-decoration: none;
}
.nav-menu--dropdown-menu ul > li > a:hover,
.nav-menu--dropdown-menu ul > li > a:focus{
    color: #e17d24;
}
.nav-menu--dropdown:hover > .nav-menu--dropdown-menu{
    display: block;
}

/* CTA */
.header-cta{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}
.header-cta--btn{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding: 0 20px;
    border-radius: 30px;
    background-color: #20a8e0;
    transition: all .35s ease;
    font-size: 1.1rem;
    line-height: 1.575rem;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
.header-cta--btn:hover,
.header-cta--btn:focus{
    background-color: #00b0f9;
    color: #fff;
}


/* PAGE */
.page-wrap{
    max-width: 1200px;
    background: #ffffff;
    border-radius: 8px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.page-inner{
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.01em;
    min-height: 80vh;
    overflow: hidden;
}

.page-content{
    z-index: 2;
}

.page-text{
    padding: 0 150px 60px 150px;
}
.wide-start{
    padding-left: 300px;
}
.wide-end{
    padding-right: 300px;
}



/* TEXT */
.page-inner p{
    margin: 0 0 10px;
}
.page-inner ul{
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}
.page-inner ul > li{
    position: relative;
    padding-left: 28px;
}
.page-inner ul > li::before{
    content: "—";
    position: absolute;
    left: 0;
}
.page-inner h1{
    font-family: Zet;
    margin-top: 90px;
    margin-bottom: 40px;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: .01em;
}

.page-content > *:last-child{
    margin-bottom: 0;
}

.page-action,
.form-action{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 70px;
}
.page-action a,
.form-action button{
    position: relative;
    display: inline-block;
    padding: 13px 33px;
    border-radius: 22px;
    background-color: #f8cf47;
    transition: opacity .2s ease;
    color: #231f20;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: none;
}
.page-action a:hover,
.form-action button:hover{
    color: #e17d24;
}
.page-action button{
    background: none;
    border: none;
    border-bottom: 1px dashed #cfcece;
    font-size: 18px;
    line-height: 1;
    color: rgba(0,0,0,.7);
    padding: 8px 0 4px;
}
.page-action button:hover{
    color: #e17d24;
    border-bottom-color: transparent;
}
.page-action > * + *{
    margin-left: 45px;
}


/* FORM */
.form-group{
    margin-bottom: 15px;
}
.form-control{
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid #ececee;
    border-radius: 0;
    line-height: 1em;
}
.form-control:focus{
    box-shadow: none;
    boorder-bottom-color: #20a8e0;
}
.form-control,
.form-check{
    font-size: 22px;
}
.form-check-inline{
    margin-bottom: 5px;
    min-height: auto;
    padding-top: 5px;
}
.form-check-input{
    margin-top: 0.15em;
    line-height: 1;
}

.form-legend{
    padding-top: 35px;
}


/* QUESTION */
.question{}
.question-header{
    padding: 26px 75px 40px;
}
.question-header--legend{
    font-size: 18px;
}
.question-category{
    margin-right: 85px;
    font-weight: 700;
}
.question-number{
    font-size: 14px;
    color: rgba(0,0,0,.6);
}
.question-current{
    font-size: 18px;
    font-weight: 700;
    color: #FF7A00;
}

.question-howto{
    display: block;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    color: rgba(0,0,0,.6);
    font-size: 14px;
}
.question-howto:hover,
.question-howto:focus{
    color: #e17d24;
}
.question-header--progress{
    margin-top: 22px;
}
.question-header--progress .progress{
    height: 3px;
    background-color: #f7f7f7;
    border-radius: 1px;
}
.question-header--progress .progress-bar{
    background-color: #fac012;
}


.question--photo .question-body{
    text-align: center;
}
.question--photo .question-body img{
    width: auto;
    max-height: 340px;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(0,0,0,.05);
}
.question--photo .question-body p{
    font-size: 19px;
    line-height: 28px;
    max-width: 60%;
    margin: 20px auto 0;
}

.question--text .question-body,
.question--classic .question-body{
    position: relative;
    display: flex;
    text-align: left;
    min-height: 240px;
    align-items: center;
    font-size: 24px;
    line-height: 36px;
    padding: 0 230px 0 230px;
}

.question--complex .question-body{
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 36px;
    padding: 0 230px 40px 230px;
}



.question-answers{
    position: relative;
    padding: 30px 75px 0;
}
.answers-sliders{
    padding: 71px 100px 80px 150px;
}
.answers-radios{
    padding: 0 230px 125px;
}
.answers-groups{
    padding: 0 75px 40px;
}

.answers-sliders .answer{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.answers-sliders .answer + .answer{
    margin-top: 18px;
}
.answers-sliders .answer-text{
    font-size: 18px;
    line-height: 24px;
    padding-right: 20px;
    width: 180px;
}
.answers-sliders .answer-slider{
    width: 580px;
}

.answer-slider {
    position: relative;
    width: 100%;
}
.rule{
    position: relative;
    width: 624px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: .025em;
    opacity: .7;
    padding: 0;
    top: -21px;
    left: 158px;
    margin: 0;
}
.rule span{
    text-align: center;
    flex: 1;
    padding: 0 15px;
}
.rule span:first-child{
    margin-left: -48px
}
.rule span:last-child{
    margin-right: -48px
}
input[type="range"] {
    margin: auto;
    outline: none;
    padding: 0;
    width: 100%;
    height: 3px;
    background-color: #ececee;
    background-image: linear-gradient(#20a8e0, #20a8e0);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    border-radius: 3px;
    cursor: pointer;
    -webkit-appearance: none;
    vertical-align: middle;
}

input[type="range"]::-webkit-slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none;
}

input[type="range"]::-moz-range-track {
    box-shadow: none;
    border: none;
    background: transparent;
}

input[type="range"]::-moz-focus-outer {
    border: 0;
}

input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    border: 0;
    background: #20a8e0;
    border-radius: 100%;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 0;
    background: #20a8e0;
    border-radius: 100%;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.answers-sliders .answer-answer{
    position: absolute;
    right: 0;
    font-size: 15px;
    line-height: 18px;
    opacity: .7;
    max-width: 250px;
    color: red;
}


/**/
.answer-slider--pseudo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    background-color: #ececee;
    background-image: linear-gradient(#20a8e0, #20a8e0);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    height: 3px;
    border-radius: 3px;
    top: 10px;
    transition: background-size .3s ease;
}
.answer-slider--pseudo .radio-wrap{
    position: relative;
    display: flex;
    flex: 2;
    justify-content: center;
    z-index: 2;
}
.answer-slider--pseudo .radio-wrap:first-child,
.answer-slider--pseudo .radio-wrap:last-child{
    flex: 1;
}
.answer-slider--pseudo .radio-wrap:first-child{
    justify-content: flex-start;
}
.answer-slider--pseudo .radio-wrap:last-child{
    justify-content: flex-end;
}
.answer-slider--pseudo .radio-wrap:first-child input{
    margin-left: -12px;
}
.answer-slider--pseudo .radio-wrap:last-child input{
    margin-right: -12px;
}
.answer-slider--pseudo label{
    position: absolute;
    top: -14px;
    height: 32px;
    width: 100%;
    text-align: center;
}
.answer-slider--pseudo .radio-wrap:first-child label{
    text-align: left;
}
.answer-slider--pseudo .radio-wrap:last-child label{
    text-align: right;
}
.answer-slider--pseudo input{
    width: 24px;
    height: 24px;
    vertical-align: top;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 3px solid #ececee;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    margin-top: -10px;
}
.answer-slider--pseudo input:checked,
.is-pdeudo-checked input{
    background-color: #FF7A00;
    border-color: #FF7A00;
    transition: all .2s ease-out;
}

/**/




.answers-radios .answer + .answer{
    margin-top: 10px;
    border-top: 1px solid #f7f7f7;
    padding-top: 10px;
}
.answers-radios label{
    position: relative;
    width: 100%;
    font-size: 18px;
    text-align: left;
    padding: 6px 15px;
}
.answers-radios label:after{
    position: absolute;
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #ececee;
    border-radius: 50%;
    right: 0;
    top: 8px;
}

.answers-radios label:hover{
    color: rgba(0,0,0,.5)
}
.answers-radios label:focus,
.btn-check:focus + label.btn{
    box-shadow: none;
}
.answers-radios input:checked ~ label{
    color: #FF7A00;
}
.answers-radios input:checked ~ label:after{
    border-color: #FF7A00;
    background: #FF7A00;
}
.answers-groups .answer{
    border: 1px solid #ececee;
    border-radius: 4px;
    padding: 25px 75px;
}
.answers-groups .answer + .answer{
    margin-top: 10px;
}
.answers-groups .answer p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}
.answers-groups .answer-controls{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.answers-groups .answer-controls > div{
    flex: 1;
}
.answers-groups .answer-controls > div + div{
    margin-left: 30px;
}
.answers-groups label{
    position: relative;
    display: flex;
    font-size: 14px;
    line-height: 18px;
    padding: 6px 0 6px 36px;
    text-align: left;
    align-items: center;
}
.answers-groups label:hover{
    color:  rgba(0,0,0,.5);
}
.answers-groups label:before{
    display: block;
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #ececee;
    left: 0;
    border-radius: 50%;
}
.answers-groups input:checked ~ label{
    color: #FF7A00;
}
.answers-groups input:checked ~ label:before{
    background: #FF7A00;
    border-color: #FF7A00;
}
.answers-groups .answer-error{
    font-size: 15px;
    line-height: 18px;
    opacity: .7;
    color: red;
    margin-top: 10px;
}


.question-footer{
    padding: 23px 75px 23px;
    background: #f7f7f7;
}
.question-footer button{
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}
.question-footer button:hover,
.question-footer button:focus{
    color: #e17d24;
}
.question-footer .question-footer--next{
    text-align: right;
}
.question-footer .question-footer--back button{
    color: rgba(0,0,0,.6);
    font-size: 14px;
    padding: 5px 20px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 30px;
}
.question-footer .question-footer--next button{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding: 0 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    background: #00B49E;
    border: 1px solid #00B49E;
    color: #ffffff;
}


/* RESULTS */
#page-result h1{
    color: #00B49E;
    margin-bottom: 30px;
}
.h2-subtitle{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #00B49E;
    font-size: 22px;
    line-height: 32px;
    margin-top: -10px;
    margin-bottom: 40px;
    font-weight: 700;
}
.h3-subtitle{
    font-family: Zet;
    font-size: 60px;
    line-height: 1em;
    margin-bottom: 40px;
}
.result--user-info h3{
    margin: 0;
}
.result--user-info p{
    font-size: 36px;
    line-height: 1.5em;
    margin: 0;
}
.result-section{
    margin-bottom: 80px;
}
.result-section:last-of-type{
    margin-bottom: 0;
}
.result-text{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.result-text p{
    font-size: 22px;
    line-height: 1.5em;
    margin: 0 0 20px;
}
.result-text img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.result--user-info{
    font-family: Zet;
    margin-top: 50px;
    margin-bottom: 30px;
}

.result-main{
    position: relative;
    display: flex;
    max-width: 550px;
    margin: 0 auto 40px;
}
.result-main svg{
    width: 100%;
    height: auto;
}
.result-values{
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .01em;
}
.result-values--title{
    font-family: Zet;
    font-size: 24px;
}
.result-values--title span{
    display: block;
    font-size: 18px;
}
.result-values--values{
    margin-top: 20px;
}
.result-values--values .value-current{
    font-size:48px;
    line-height: 48px;
}
.result-values--values .value-total{
    font-size: 24px;
    line-height: 24px;
}

.result-partitials{
    padding-top: 30px;
}
.result-partitials .col{
    position: relative;
}
.result-partitials .col + .col::before{
    position: absolute;
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: -18%;
    background: #ECECE0;
}

.result-item{
    padding-bottom: 10px;
}
.result-item + .result-item{
    margin-top: 40px;
}

.result-legend{
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    letter-spacing: .01em;
    padding-top: 10px;
}

.result-legend--title{
    font-size: 24px;
    text-transform: uppercase;
}
.result-legend--title span{
    display: block;
    font-size: 14px;
}
.result-legend--values{
    position: relative;
}
.legend-values--values{
    position: absolute;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .01em;
    color: #ffffff;
}
.legend-values--values .value-current{
    font-size:24px;
    line-height: 24px;
}
.legend-values--values .value-total{
    font-size: 13px;
    line-height: 13px;
}

.result-progress{
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}
.result-progress--legend{
    position: relative;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    letter-spacing: .01em;
    margin-bottom: 5px;
}
.result-progress--title{
    font-size: 20px;
}

.result-progress--values .value-current{
    font-size: 28px;
}
.result-progress svg{
    width: 100%;
    height: auto;
    max-height: 50px;
}

.result-progress--scale{
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    letter-spacing: .02em;
    line-height: 15px;
    margin-top: 10px;
    opacity: .5;
}
.result-progress--scale > div{
    text-align: center;
}
.scale-low{
    flex: 0 0 44%;
}
.scale-average{
    flex: 0 0 23%;
    border-left: 1px solid #231f20;
    border-right: 1px solid #231f20;
}
.scale-high{
    flex: 0 0 33%;
}

.result-section--img .result-progress--title{
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.result-section--img .result-progress--values{
    position: absolute;
    right: 0;
    bottom: -45px;
}


.result-addititional{
    text-align: left;
    border-radius: 30px;
    background: #EBEBDE;
    padding: 30px 34px;
}
.result-addititional + .result-addititional{
    margin-top: 30px;
}
.result-addititional p,
.result-addititional ul,
.result-addititional ol{
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 15px;
}
.result-addititional p,
.result-addititional ul,
.result-addititional ol{
    max-height: 140px;
    overflow: hidden;
    transition: all .3s ease-out;
}
.result-addititional .collapsed{
    max-height: 5000px;
    overflow: visible;
}
.result-more{
    cursor: pointer;
}
.result-more:hover{
    opacity: .7
}


.result-section .result-images{
    margin: 0 -120px;
}
.result-section .result-item{
    padding-bottom: 0;
}
.result-section .result-item + .result-item{
    margin-top: 0;
}
.result-section .result-legend{
    padding: 0 20px;
    text-align: left;
    margin-top: 20px;
    font-size: 20px;
}
.result-images .result-progress {
    padding: 20px 100px 20px 25px;
    background: #ffffff;
    border-radius: 20px;
    margin-top: 15px;
    /* .grayscale */
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}
.result-images .result-progress.featured{
    background: #EBEBDE;
    /* !.grayscale */
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
}
.result-images .result-progress.featured:before{
    content: '';
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    right: 15px;
    top: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.result-images .result-progress.featured circle{
    fill: #ffffff;
}
.result-progress--values{
    position: absolute;
    bottom: -41px;
    right: -80px;
}
.result-progress--values{
    font-size: 15px;
}
.result-progress--values .value-current{
    font-size: 20px;
}

.result-section .btn{
    position: relative;
    display: inline-block;
    padding: 13px 33px;
    border-radius: 22px;
    background-color: #00B49E;
    transition: opacity .2s ease;
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: none;
}


.card-image{
    padding: 1rem 0;
}
.card-versus--item + .card-versus--item{
    margin-top: 30px;
}


.card-result--values{
    margin-bottom: 60px;
}
.card-result--current{
    font-size: 120px;
    line-height: 120px;
}
.card-result--text{
    font-size: 32px;
    line-height: 1.2em;
    margin-top: -10px;
    margin-bottom: 20px;
}
.card-result--all{
    font-size: 16px;
    line-height: 1.2em;
    opacity: .4;
}
.card-image svg{
    width: 100%;
    max-width: 100%;
    height: auto;
}





.modal-dialog{}
.modal-content{
    border: none;
    border-radius: 20px;
    background-color: #fac012;
}
.modal-header{
    padding: 2rem 1rem 1rem;
    border-bottom: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.modal-title{
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 300;
    text-align: center;
    width: 100%;
    padding: 0 50px;
}
.modal-header .btn-close{
    position: absolute;
    right: 30px;
}
.modal-body{
    padding: 1rem 3rem 2rem;
}
.modal-body .form-control{
    width: 100%;
    border: 1px solid #7b5300;
    padding: 6px 20px;
    color: #000;
    font-size: 18px;
    background-clip: border-box;
}
.modal-body .form-text{
    font-size: .75em;
    color: #000;
}
.modal-body label,
.modal-body .form-check label{
    font-size: 18px;
}
.form-check-input{
    background-color: transparent;
    border-color: #7b5300;
    border-radius: 3px;
    display: block;
    width: 20px;
    height: 20px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    box-shadow: none;
}
.form-check-input:focus{
    border-color: #7b5300;
    box-shadow: none;
}
.form-check-input:checked[type=checkbox]{
    background-color: transparent;
    border-color: #7b5300;
    background-image: url(https://ei-kids.ru/assets/img/checkbox-trg.svg);
    box-shadow: none;
}
.modal-body button[type="submit"] {
    position: relative;
    display: inline-block;
    padding: 13px 33px;
    border-radius: 22px;
    background-color: #e17d24;
    transition: opacity .2s ease;
    color: #ffffff;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: none;
}
.form-amount{
    font-size: 2rem;
    line-height: 2.75rem;
    font-weight: 300;
}


.bg-image{
    position: absolute;
    max-width: 100%;
    height: auto;
    z-index: 1;
}

.bg-image-01{
    top: 35%;
    left: -25%;
}
.bg-image-02{
    top: 45%;
    right: -50%;
}
.bg-image-03{
    top: 75%;
    right: 0;
}

.copyright {
    font-size: 12px;
    line-height: 14px;
    opacity: .7;
}

@media (min-width: 1499px){
    .header-inner{
        max-width: 90rem;
        margin: 0 auto;
    }
}
@media (max-width: 1600px){
    html {
        font-size: 18px;
    }
}
@media (max-width: 1100px){
    body{
        padding-top: 0;
    }
    .logo-text,
    .nav-menu,
    .header-cta{display: none;}

    .logo{
        flex: auto;
    }
    .logo img{
        width: 45px;
        height: auto;
    }
}
@media (min-width: 1100px) and (max-width: 1300px){
    .logo{flex: auto;}
    .nav-menu{flex: auto;}
    .header-cta{flex: auto;}
}
@media (min-width: 768px) and (max-width: 1199px){
    .answers-sliders .answer-answer{
        font-size: 13px;
        left: 0;
        top: 22px;
        padding-left: 0;
        letter-spacing: .04em
    }
}
@media (min-width: 768px) and (max-width: 1100px){
    header{
        padding: 2px 20px 0;
    }
    .page-wrap{
        max-width: calc(100vw - 80px);
    }
    #page-welcome,
    #page-test-results,
    #page-form,
    #page-result{
        padding: 0 75px 40px 75px;
    }

    .page-inner h1{
        margin-top: 45px;
    }

    .question--photo .question-body p{
        max-width: 80%;
    }
    .answers-sliders{
        padding: 70px 20px 40px 75px;
    }


    .question--text .question-body, .question--classic .question-body{
        padding: 60px 75px 60px 75px;
        height: auto;
    }

    .answers-radios{
        padding: 0 75px 40px 75px;
    }
    .question--complex .question-body{
        padding: 0 75px 40px 75px;
    }
    .answers-groups{
        padding: 0;
        text-align: center;
    }
    .answers-groups .answer{
        padding: 25px;
        border: none;
        border-top: 1px solid #ececee;
    }
    .answers-groups .answer-controls > div + div{
        margin-left: 10px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .question-header{
        padding: 26px 40px 20px;
    }
    .page-inner{
        min-height: 50vh;
    }
    .form-legend{
        padding-top: 25px;
    }
    .question--photo .question-body{
        padding: 0 40px;
    }
    .question--photo .question-body img{
        max-width: 100%;
    }
    .question--photo .question-body p{
        max-width: 100%;
    }
    .answers-sliders{
        padding: 70px 20px 20px 40px;
    }
    .answers-sliders .answer-text{
        width: 160px;
    }
    .rule{
        width: 100%;
        padding: 0;
        right: 0;
        left: 0;
        font-size: 14px;
        padding-left: 160px;
    }
    .rule span{
        padding: 0 5px;
    }
    .rule span:first-child{
        margin-left: -50px;
    }
    .rule span:last-child{
        margin-right: -20px;
    }
    .answers-sliders .answer-slider{
        width: calc(100% - 185px);
    }
    .answers-sliders .answer-answer{
        font-size: 13px;
        left: 0;
        top: 22px;
        padding-left: 0;
        letter-spacing: .04em;
    }
    .question--text .question-body,
    .question--classic .question-body{
        padding: 60px 40px 60px;
    }
    .answers-radios{
        padding: 0 40px 20px;
    }
    .question--complex .question-body{
        padding: 0 40px 40px 40px
    }
    .answers-groups label{
        display: flex;
        align-items: center;
        line-height: 16px;
        min-height: 46px;
    }

    .result-partitials .col + .col::before{
        display: none;
    }
    .result-legend{
        flex-direction: column;
        justify-content: center;
    }
    .result-legend--title{
        text-align: center;
    }
    .result-progress--legend{
        flex-direction: column;
    }
    .question-footer{
        padding: 23px 45px 23px;
    }
}
@media (max-width: 767px){
    html{
        font-size: 14px;
    }
    body{
        padding-top: 54px;
    }
    header{
        border-color: rgba(0, 0, 0, 0.05);
        background-color: rgb(255, 255, 255);
        padding: 4px 20px;
    }

    .page-wrap{
        margin-bottom: 0;
    }
    .page-inner{
        padding: 0 20px 0!important;
    }
    #page-result{
        padding-bottom: 40px;
    }
    .page-inner h1{
        margin-bottom: 18px;
        font-size: 4rem;
        line-height: 4.5rem;
        margin-top: 30px;
    }
    .page-action,
    .form-action{
        flex-direction: column;
        align-items: center;
    }
    .page-action,
    .form-legend{
        padding-bottom: 40px;
    }

    .page-action > * + *{
        margin-left: 0;
        margin-top: 20px;
    }

    .question-header {
        padding: 16px 0 30px;
    }
    .question-category{
        margin-right: 0
    }

    .question--photo .question-body img{
        max-width: 100%;
    }
    .question--photo .question-body p{
        max-width: 100%;
    }

    .answers-sliders{
        padding: 30px 0 20px;
        margin: 0 -20px 0;
    }
    .answers-sliders .answer-text{
        position: relative;
        width: 100%;
        padding-right: 0;
        font-weight: 700;
        text-align: left;
        margin: 0 0 20px;
        font-size: 18px;
        line-height: 24px;
    }
    .answers-sliders .answer{
        flex-direction: column;
        padding: 40px 20px;
        border: 1px solid #ececee;
    }
    .answers-sliders .answer + .answer {
        margin-top: -1px;
    }
    .answers-sliders .answer-slider{
        width: 100%;
        margin-bottom: 0;
        flex-direction: column;
    }
    .rule{
        display: none;
    }
    .answer-slider--pseudo{
        height: auto;
        background: none;
    }
    .answer-slider--pseudo .radio-wrap{
        padding: 0;
    }
    .answer-slider--pseudo .radio-wrap + .radio-wrap {
        margin-left: 0;
        margin-top: 10px;
        border-top: 1px solid #f7f7f7;
        padding-top: 10px;
    }
    .answer-slider--pseudo input{
        display: none;
        margin: 0!important;
    }
    .answer-slider--pseudo label{
        position: relative;
        display: flex;
        text-align: left;
        width: 100%;
        padding: 2px 44px 2px 0;
        font-size: 18px;
        line-height: 1.5;
        top: 0;
    }
    .answer-slider--pseudo label:before{
        display: block;
        content: attr(data-text);
    }
    .answer-slider--pseudo label:after {
        display: block;
        position: absolute;
        content: '';
        width: 24px;
        height: 24px;
        border: 3px solid #ececee;
        right: 0;
        border-radius: 50%;
    }
    .answer-slider--pseudo input:checked ~ label{
        color: #FF7A00;
    }
    .answer-slider--pseudo input:checked ~ label:after{
        background: #FF7A00;
        border-color: #FF7A00;
    }
    .answers-sliders .answer-answer{
        position: relative;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        top: 0;
        margin-top: 20px;
        text-align: left;
        font-weight: 700;
    }
    .question--text .question-body,
    .question--classic .question-body,
    .question--complex .question-body{
        height: auto;
        padding: 0;
        font-size: 18px;
        line-height: 1.5;
    }
    .answers-radios{
        padding: 20px 0 20px;
    }
    .answers-radios label{
        padding: 2px 44px 2px 0;
    }
    .question--complex .question-body{
        padding: 0
    }
    .answers-groups{
        padding: 30px 0 20px;
        margin: 0 -20px 0;
    }
    .answers-groups .answer{
        padding: 40px 20px;
    }
    .answers-groups .answer + .answer{
        margin-top: -1px;
    }
    .answers-groups .answer p{
        margin: 0 0 20px;
    }
    .answers-groups .answer-controls{
        flex-direction: column;
    }
    .answers-groups .answer-controls > div{
        width: 100%;
    }
    .answers-groups .answer-controls > div + div {
        margin-left: 0;
        margin-top: 10px;
        border-top: 1px solid #f7f7f7;
        padding-top: 10px;
    }
    .answers-groups label{
        width: 100%;
        padding: 2px 44px 2px 0;
        font-size: 18px;
        line-height: 1.5;
    }
    .answers-groups label:before{
        left: auto;
        right: 0;
    }
    .answers-groups .answer-error{
        font-weight: 700;
    }

    .question-footer{
        padding: 23px 20px 23px;
        margin: 0 -20px;
    }
    .question-footer .question-footer--next{
        text-align: right;
    }

    .result-text{
        margin-bottom: 40px;
    }
    .result-values--title{
        font-size: 18px;
    }
    .result-values--title span {
        font-size: 13px;
    }
    .result-values--values{
        margin-top: 0;
    }
    .result-values--values .value-current{
        font-size: 38px;
        line-height: 48px;
    }
    .result-values--values .value-total {
        font-size: 20px;
        line-height: 20px;
    }
    #result-0201{
        padding-top: 60px;
    }

    .h3-subtitle{
        font-size: 48px;
    }

    .result-text p{
        text-align: left;
        font-size: 19px;
    }
    .result-section .result-legend,
    .result-progress--legend{
        flex-direction: column;
        text-align: center;
    }
    .result-progress--values,
    .result-section--img .result-progress--values{
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
    }
    .result-section--img .result-progress--title{
        width: auto;
    }
    .result-section .result-images{
        margin: 0;
    }
    .result-images .result-progress{
        padding: 15px;
    }

    .bg-image{
        display: none;
    }


    .card-image{
        padding: 1rem;
    }
    .card-result--values{
        margin-bottom: 1rem;
        padding-top: 2rem
    }
    .card-result--current {
        font-size: 90px;
        line-height: 90px;
    }

    .modal-body{
        padding: 1rem 1rem 2rem;
    }
}

@media print{
    header{
        display: none;
    }
    .page-inner h1{
        margin-top: 0;
        font-size: 32px;
        line-height: 32px;
    }

    .result-main {
        max-width: 450px;
    }
    .result-item + .result-item {
        margin-top: 20px;
    }
}
