body {
    padding-top: 80px;
}

.quiz-box {
    width: 100%;
    color: #fff;
    display: flex;
    padding: 30px 0;
    image-rendering: pixelated;
    background: url(/wp-content/themes/interstride/img/bg/quiz-bg.png) -166px / 100% 100% no-repeat;
    overflow-x: hidden;
}
.quiz-box:has(.step-11.show),
.quiz-box:has(.step-0.show) {
    background: #1152F7;
}



.quiz-box .nrow {
    width: 100%;
    align-items: center;
    padding: 0 20px;
    min-height: 500px;
    height: calc( 100vh - 140px );
}

.quiz {
    position: relative;
    z-index: 20;
    align-items: center;
    height: calc( 100vh - 199px);
    width: 100%;
    display: none;
}
.quiz.show {
    display: flex;
}

.quiz.step-11{
    align-items: flex-start;
}


.btn-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 30px 0 0;
}

.btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1152F7;
    font-size: 22px;
    font-weight: 500;
    height: 54px;
    padding: 3px 18px;
    border-radius: 43px;
    background: #fff;
    min-width: 77px;
    line-height: 53px;
    cursor: pointer;
}

.btn2-arrow-blue {
    padding-right: 8px;
}

.btn2-arrow-blue::after {
    background: url('/wp-content/themes/interstride/img/icons/circle-blue-arrow.svg') no-repeat;
    width: 41px;
    height: 41px;
    content: "";
    margin-left: 10px;
}

.btn2-transp {
    background: transparent;
    color: #FFF;
    outline-offset: -2px;
    outline: 2px solid #fff;
}

.quiz h2 {
    font-size: 52px;
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 60px;
}

.quiz h5 {
    font-size: 27px;
    font-weight: 500;
    margin: 0;
    line-height: 28px;
}

.quiz p {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 16px;
    line-height: 33px;
}


.two-columns{}

.two-columns .left {
    width: 475px;
    padding: 0 25px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    max-height: 570px;
    min-height: 410px;
    flex-shrink: 0;
    
}

.two-columns .right{
    position: relative;
    padding: 100px 0 0 100px;
    min-height: 350px;
    color: #000;
    width: 100%;
    flex-shrink: 1;
}

.step-11.two-columns .left {
    width: 388px;
    padding-top: 140px;
}


.step-11.two-columns .right{
    padding-left: 65px;
    padding-top: 0;
}


/* .two-columns .right .white-bg{
    position: absolute;
    top: -1000px;
    left: 0;
    background: #fff;
    width: 1000vw;
    height: 1000vh;
    z-index: -1;
} */

.two-columns .left .navigation{
    background-color:#4591FF;
    color:#1152f7;
    height:36px;
    line-height:36px;
    border-radius: 45px;
    font-size: 22px;
    font-weight: 600;
    padding: 0 15px;
    display: inline-block;
    margin: 0;
    margin-bottom: auto;
}

.quiz.two-columns .left .text h5{
    margin: 0 0 25px;
}
.quiz.two-columns .left .text h2{
    margin: 0 0 25px;
}
.quiz.two-columns .left .text .btn-box{
    
}

.two-columns .left .skip{
    font-size: 27px;
    font-weight: 500;
    margin: 0;
    line-height: 28px;
    margin-top: auto;
    color:#fff;
}

.two-columns .left .skip:hover{
    text-decoration: underline;
}


.quiz.two-columns .right p{
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

/*select*/

.custom-dropdown {
    position: relative;
    width: 220px;
    width: fit-content;
}

.quiz-box button.dropdown-btn {
    padding: 0 25px 0 30px;
    border-radius: 28px;
    background: #fff;
    color: #333;
    cursor: pointer;
    outline: none;
    text-align: center;
    box-shadow: 0px 1px 12px 0px #000C3D1A;
    transition: all 0.3s ease-in-out;
    position: relative;
    border: none;
    height: 68px;
    line-height: 68px;
    font-weight: 500;
    font-size: 16px;
    width: fit-content;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.quiz-box button.dropdown-btn > span{
    display: block;
    max-width: 89%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quiz-box button.dropdown-btn.big {
    width: 320px;
}

.quiz-box button.dropdown-btn::after {
    content: "";
    background: url(/wp-content/themes/interstride/img/icons/dropdown-btn.png) center / 100% no-repeat;
    width: 10px;
    height: 4px;
}

.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 1px 12px 0px #000C3D1A;
    padding: 0;
    margin: 5px 0;
    list-style: none;
    border: none;
    z-index: 1000;
    padding: 7px 0;
    overflow: hidden;
    max-height: 280px;
    overflow-y: scroll;
}

.dropdown-list li {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    font-size: 22px;
    text-align: center;
    margin: 0;
}

.dropdown-list li::before{
    display: none;
}

.dropdown-list li:hover {
    background: #3498db;
    color: #fff;
}

.custom-dropdown.active .dropdown-list {
    display: block;
}

.fields{
    display: flex;
    gap: 12px;
}
.fields.margin-bottom{
    margin-bottom: 20px;
}

.multiple{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.multiple-item {
    height: 94px;
    box-shadow: 0px 1px 12px 0px #000C3D1A;
    border: 1px solid #ebf1f7;
    color: #000c3d;
    font-size: 22px;
    border-radius: 28px;
    min-width: 90px;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.multiple-item i{
    font-weight: 400;
}
.multiple-item.active{
    background: #1152F7;
    color:#fff;
}
input.single{
    height: 68px;
    box-shadow: 0px 1px 12px 0px #000C3D1A;
    border: 1px solid #EBF1F7;
    color:#000C3D;
    font-size: 22px;
    line-height: 25px;
    width: 140px;
}

.form-two{
    display: flex;
    gap: 10px;
}
.form-two > div{
    width: 50%;
}

.info{
    font-size: 20px;
    line-height: 21px;
    font-weight: 500;
    background: #dae9ff;
    position: relative;
    padding: 35px 35px 35px;
    border-radius: 20px;
}
.info-shorter{
    max-width: 510px;
    margin: 60px 0 0;
}
.info::before{
    content: "";
    position: absolute;
    top: -8px;
    right: 56px;
    width: 24px;
    background: url(/wp-content/uploads/2024/04/info-star.svg) no-repeat;
    height: 24px;
}
.info::after{
    content: "";
    position: absolute;
    bottom: -11px;: -8px;
    left: 43px;
    width: 24px;
    background: url(/wp-content/uploads/2024/04/info-star.svg) no-repeat;
    height: 24px;
}
.info b{
    font-weight: 600;
}

.colresults {
    font-size: 20px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 100px;
}
.colresults-showmore{
    margin: -20px auto 100px;
    display: none;
    max-width: 220px;
    text-align: center;
    cursor: pointer;
}
.colresults-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 15px 15px #000485;
    border: 3px solid #000485;
}
.colresults-item.hide {
    display: none;
}
.colresults-item-top {
    display: flex;
    gap: 23px;
    align-items: center;
}
.colresults-item-img {
    width: 196px;
    flex-shrink: 0;
    height: 196px;
    border-radius: 500px;
    overflow: hidden;
    background: #eee;
}
.colresults-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.colresults-item-info {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-grow: 1;
}
.colresults-item-info .title {
    font-size: 30px;
    line-height: 33px;
    font-weight: 500;
}
.colresults-item-info .address {
    font-size: 20px;
    font-weight: 500;
}
.colresults-item-info .description {
    margin: 4px 0 7px;
    line-height: 22px;
}
.colresults-item-info .why {
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    color:#1152F7;
    display: flex;
    align-items: center;
    gap: 7px;
}

.colresults-item-info .why:after {
    content: "";
    width: 12px;
    height: 6px;
    margin: 4px 0 0;
    background: url(/wp-content/themes/interstride/img/icons/icon-blue-down-arrow.svg) 100% no-repeat;
    flex-shrink: 0;
}
.colresults-item-info .why.active:after {
    transform: rotate(180deg);
}
.colresults-item-info .why:hover {
    text-decoration: underline;
}
.colresults-item-btns {
    flex-shrink: 0;
    width: 188px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.colresults-item-btns > .btn-solid-blue-external{
    width: auto;
    justify-content: center;
}

.colresults-item-btm {
    margin: 16px 0 0;
    display: none;
}
.colresults-item-btm h5 {
    font-size: 30px;
    line-height: 33px;
    font-weight: 500;
    margin: 0 0 15px 15px;
}
.colresults-item-btm-why {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.colresults-item-btm-why div {
    background: #dae9ff;
    display: flex;
    gap: 10px;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    align-items: center;
    line-height: 27px;
}
.colresults-item-btm-why div::after {
    content:"";
    width: 31px;
    height: 31px;
    background: url(/wp-content/themes/interstride/img/icons/blue-checkbox-round-icon.svg) 100% no-repeat;
}

.form .tab{
    display: none;
}

.no-results{
        display: flex;
    height: 78vh;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #fff;
    text-align: center;
}

.step-10.two-columns .left {
    min-height: 200px;
    height: 200px;
}

.action-results{
    background: #1152F7;
    color: #fff;
    width: 220px;
    margin-top: 55px;
}

@media screen and (max-width: 1350px) {

    .quiz-box {
        background-position: -152px;
    }

    .two-columns .right {
        padding: 100px 0 0 30px;
    }

}

@media screen and (max-width: 1300px) {

    .quiz-box {
        background-position: -132px;
    }

}


@media screen and (max-width: 1300px) {

    .quiz-box {
        background-position: -105px;
    }

}


@media screen and (max-width: 1200px) {

    .no-results{
        font-size: 36px;
        color: #1152f7;
        width: calc(100vw - 49px);
        height: 300px;
    }

    .quiz-box {
        background: none;
        margin: 0;
        padding: 0;
    }

    .quiz-box .nrow {
        height: auto;
        min-height: auto;
    }

    .two-columns {
        flex-direction: column;
    }

    .two-columns .left{
        background: #1152f7;
        padding: 45px 25px;
        width: calc(100% - 50px);
        min-height: auto;
        height: auto;
        gap: 50px;
    }
    
    .two-columns .right{
        background: #FFF;
        width: calc(100% - 50px);
        padding: 45px 25px;
    }

    .quiz-box .nrow{
        padding: 0;
    }


    .form-two{
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
    .form-two > div{
        width: 100%;
    }

    .step-11.two-columns .left {
        width: auto;
        padding: 40px 22px;
    }

    .step-11.two-columns .right {
        width: auto;
        padding: 40px 22px;
        min-height: fit-content;
    }


    .colresults-item-btns {
        
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
    }

    .colresults-item-info {
        width: calc(100% - 140px);
    }
    .colresults-item-img {
        width: 110px;
        height: 110px;
    }
    .colresults-item-top {
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .colresults-item {
        padding: 18px 15px;
    }
    .colresults {
        font-size: 16px;
    }

    .colresults-item-info .title {
        font-size: 22px;
    }
    .colresults-item-info .address {
        font-size: 18px;

    }
    .colresults-item-info .why {
        font-size: 16px;
    }
    .colresults-item-btm h5 {
        font-size: 22px;
        line-height: 1.2;

        margin: 0 0 15px;
    }


}

@media screen and (max-width: 1024px) {

    .quiz h2 {
        font-size: 38px;
        font-weight: 600;
        margin: 0 0 15px;
        line-height: 1;
    }

    .quiz p {
        font-size: 20px;
        line-height: 1.2;
    }

    .btn-box {
        margin: 25px 0 0;
    }

    .btn2 {
        font-size: 18px;
        height: 42px;
    }

    .btn2-arrow-blue::after {
        width: 32px;
        height: 32px;
        background-size: 100%;
    }


}


@media screen and (max-width: 430px) {

    .colresults-item-top {
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .colresults-item-info {
        width: 100%;
    }

    .colresults-item-btns>.btn-solid-blue-external {
        width: auto;
        justify-content: center;
        font-size: 18px;
        padding: 0 20px;
        height: 52px;
    }

    .colresults-item-btm h5 {
        font-size: 16px;

    }

    .colresults-item-btns > .btn-solid-blue-external {
        height: 48px;
    }
    .colresults-item-btm-why div {
        padding: 7px 7px 7px 16px;
    }

}


/*step-0*/


.quiz-box:has(.step-0.show){
    overflow: hidden;
}
.step-0 {}

.step-0 .box {
    max-width: 440px;
    margin-left: 111px;
}

.step-0-img {
    position: absolute;
    top: -94px;
    left: 471px;
    z-index: -1;
}

.step-0 .box {
    z-index: 10;
    position: relative;
}

@media screen and (max-width: 1024px) {

    .step-0 {
        padding: 0 20px;
    }

    .step-0 .box {
        max-width: 320px;
        margin-left: 0;
    }

    .step-0-img {
        position: absolute;
        top: -172px;
        left: 215px;
        z-index: -1;
    }

}


/*step-1*/

.step-1 {}

