/* GLOBAL */
body, html, .swiper-slide {
    width:100vw;
    height:100vh;
    margin:0px;
    font-family: 'Montserrat', sans-serif;
    -webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
 -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none;
 -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}

div {
    box-sizing:border-box;
}

img {
    -webkit-user-drag: none;
}

/* NAVBAR */
.navbar {
    position:absolute;
    height: 70px;
    width: 100vw;
    margin: 0px;
    z-index:2;
}

.navbar-white {
 background:white;
 width: 100vw;
 height:15px;
}

.navbar-gradient {
  background: linear-gradient(to right,  rgba(0, 147, 208, 0.0),rgba(0, 147, 208,1));
  width: 100vw;
  height:55px;
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
  font-weight:bold;
  line-height: 55px;
}

.essilor-logo {
    position:absolute;
    right:60px;
    top:0px;
    z-index:3;
    background:url('/svg/logo_essilor.svg');
    background-size:cover;
    width: 110px;
    height: 84px;
}

.navbar-text {
    color:white;
    z-index:3;
    font-size:14px;
    position:absolute;
    right:195px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* CONTROLS */
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background:url('/svg/previous.svg')!important;
    background-size:cover;
    background-repeat:no-repeat;
    height:90px;
    left:0px!important;
    width:58px;
    outline:0px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background:url('/svg/next.svg')!important;
    background-size:cover;
    background-repeat:no-repeat;
    height:90px;
    right:0px!important;
    width:58px;
    outline:0px;
}

.slide-controls {
    display:none;
}


/* PROGRESS ELEMENT */
.progress-element {
    position:absolute;
    top:32px;
    left:20px;
    color:white;
    opacity:0;
    display:flex;
    z-index:3;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress-text {
    margin-left:12px;
}

#progress-theme-title:first-letter, #progress-theme-description:first-letter{
    text-transform: capitalize;
}

#progress-theme-title {
    font-size:36px;
    margin-top:10px;
}

#progress-theme-description {
    font-size:18px;
    margin-top:4px;
}

#progress-theme-title, #progress-theme-description {
    font-weight:100;

}

/* SLIDES */
.slide-content {
    width:100vw;
    height:100vh;
    display:flex;
    flex-direction:column;
    color:white;
    align-content: center;
    justify-content:center;

}

/* First load */
.intro {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.question {
    text-align:center;
    letter-spacing:3px;
    font-size: 22px;
    font-weight: 600;
    padding-bottom:70px;

}

.slide-content .question {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.answers {
    text-align:center;
}

/* ANSWERS */
.answers-button {
    width:175px;
    margin: 12px 12px;
    cursor:pointer;
}

.answers-button-big {
    width:400px!important;
}

/* COLUMNS */
.rij {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/*INTERMEDIATE*/
.inter-icon {
    width:175px;
    margin-bottom:25px;
}

/*Single Slider */
.answer-slider {
    margin-left:auto;
    margin-right:auto;
}

.single-slider-question {
    margin-bottom: 20px;
}

.answer-slider-circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@supports (-webkit-overflow-scrolling: touch) {
    .answers-button {
        width:135px!important;
    }
    .range-slider {
        height:10px;
    }

    img.answers-button.answers-button-big.control {
        width:400px!important;
    }

    .multiple-text {
        min-width: 190px!important;
    }
  }

    .range-slider {
        margin: auto;
        -webkit-appearance: none;
        position: relative;
        overflow: hidden;
        height: 5px;
        width: 200px;
        cursor: pointer;
        z-index:500;
        border-radius: 5px; /* iOS */
    }

    ::-webkit-slider-thumb {
        width:0px!important;
    }
    .range-slider:focus {
        outline: none;
    }

    .range-slider::-webkit-slider-runnable-track {
        background: #ddd;
        opacity:1;
        outline: none;
    }

     .schermgebruik-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 0px; /* 1 */
        height: 5px;
        opacity:1;
        background: #fff;
        box-shadow: -100vw 0 0 100vw #3B7AEA;
        outline: none;
    }

    .single-theme-text {
        margin-top: 30px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        max-width: 160px;
        margin-right: auto;
        margin-left: auto;
        line-height: 25px;
    }

    .verkeersdeelname-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 0px; /* 1 */
        height: 5px;
        opacity:1;
        background: #fff;
        box-shadow: -100vw 0 0 100vw #DE6A4C;
        outline: none;
    }

    .buitenactiviteiten-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 0px; /* 1 */
        height: 5px;
        opacity:1;
        background: #fff;
        box-shadow: -100vw 0 0 100vw #51E780;
        outline: none;
    }

    .binnenactiviteiten-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 0px; /* 1 */
        height: 5px;
        opacity:1;
        background: #fff;
        box-shadow: -100vw 0 0 100vw #B433D3;
        outline: none;
    }




/* MULTIPLE SLIDER */
.multiple-option {
    display:flex;
    font-size:12px;
    font-weight:400;
    margin-bottom:30px;
}

.multiple-text {
   min-width:200px;
   text-align:right;
}

.multiple-slider-container {
    width: 250px;
    margin-left:25px;
}

.multiple-slider {
    z-index:2;
    overflow: hidden;
    height: 20px;
    cursor: pointer;
    border:none;
    background: none;
    margin: auto;
    -webkit-appearance: none;
    position: relative;
    width: 250px;
    border-radius: 0;
}

.multiple-slider::-webkit-slider-runnable-track {
    background: transparent;
}
.multiple-slider:focus {
    outline:0;
}

.multiple-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 40px;
    border:0;
}

.multiple-slider-line {
    height: 10px;
    z-index: 0;
    border-bottom: 1px solid white;
    position: absolute;
    width: 250px;
}

.multiple-slider-bg1::-webkit-slider-thumb { background: #51E780;box-shadow: -100vw 0 0 100vw #51E780; }
.multiple-slider-bg2::-webkit-slider-thumb { background: #B433D3;box-shadow: -100vw 0 0 100vw #B433D3; }

.multiple-range-text {
    font-size:12px;
    font-weight:400;
    width:250px;
    display:flex;
}

.multiple-range-text-right {
    margin-left:auto;
}

.multiple-range-text-second {
    position: relative;
    left: 25px;
}

/* CAR */
.car-popup {
    width: 350px;
    height: 240px;
    border-radius: 15px;
    padding-top: 25px;
    font-size: 25px;
    line-height: 35px;
    flex-direction: column;
    display:flex;
    font-weight: 200;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    letter-spacing:1px;
    background: rgba(0,147,208,0.8);

}

.car-buttons {
    display: flex;
    margin-top: auto;
}

.car-answer {
    border: 1px solid white;
    padding: 10px 0px;
    width: 50%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.car-answer-left {
    margin-right:5px;
}

.car-answer-right {
    margin-left:5px;
}

.car-answer:hover, .car-answer.clicked {
    color: rgba(112, 181, 211,1);
    background:white;
    cursor:pointer;
    font-weight:600;
}

/* CAR Multiple */
.car-popup-multiple {
    border-radius: 15px;
    padding-top: 25px;
    font-size: 25px;
    line-height: 35px;
    flex-direction: column;
    display:flex;
    font-weight: 200;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto auto 50px auto;
    letter-spacing:1px;
    background: rgba(0,147,208,0.8);
}

.push-down {
    flex-grow: 1;
}

.car-question-multiple {
   margin-bottom: 50px;
}

/* Result */
.nested_circles {
    position:relative;
    height:380px;
    width:380px;
    margin-bottom:20px;
}
.nested_circles>div {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items:center;
}
.nested_circles svg {
    transform: rotate(-90deg);
}

.result_container {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.result_header {
    color:white;
    font-size:24px;
    margin-top:150px;
    margin-bottom:25px;
    font-weight:200;
}

.result-columns {
    display:flex;
    align-items:stretch;
    width: 90%;
    margin: auto;
    font-weight:200;
}

.result-column {
    flex:1;
    color:white;
    font-size:20px;
    text-align:center;
}

.result-title {
    padding-bottom:10px;
    font-weight:200;
    font-size: 24px;
    border-bottom:1px solid white;
}

.result-icon {
    margin-top:10px;
}

.result-percent {
    font-size:36px;
}

.result-cat {
    border-bottom:1px solid white;
    padding-bottom:20px;
}

.result-dot {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin-top: 4px;
    margin-right: 6px;
}

.result-bullets {
    font-size:16px;
    text-align:left;
    margin-top:20px;
}

.result-bullet {
    display:flex;
    margin-bottom:20px;
}

.result-scherm .result-dot {
    background-color:#3B7AEA;
}

.result-verkeer .result-dot {
    background-color:#DE6A4C;
}

.result-buiten .result-dot {
    background-color:#51E780;
}

.result-binnen .result-dot {
    background-color:#B433D3;
}

.overflow-scroll {
    overflow-y:scroll;
}

.overflow-scroll::-webkit-scrollbar {
    display:none;
}

/*Result Second Page */
.result-products {
    display:flex;
    margin-top: 30px;
}

.result-product {
    margin-left: 35px;
    margin-right: 35px;
}
.result-product-img {
    width: 250px;
    height: 250px;
    border: 1px solid #fff;
    border-radius: 100%;
    background-size: contain !important;
}
.result-product-title {
    font-size:30px;
    color:white;
    font-weight:200;
    text-align:center;
    margin-top: 20px;
    border-bottom:1px solid white;
}
.result-product-svg {
    padding-top:10px;
    font-size: 28px;
    font-weight: 200;
    color: white;
    text-align: center;
}

.result-extra {
    display: flex;
}

.result-extra-header {
    color:white;
    font-size:24px;
    margin-top:75px;
    margin-bottom:25px;
    font-weight:200;
}

.result-extra-img {
    width: 330px;
    height: 140px;
    border-radius: 20px;
    margin-bottom:20px;
}

.result-extra-block {
    margin-left: 25px;
    margin-right: 25px;
}

.result-button-home, .result-button-app {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 10;
}

.result-button-refresh {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 30px;
    bottom: 130px;
}

.result-button-home:hover, .result-button-refresh:hover, .result-button-app:hover {
    cursor:pointer;
}

.progression_schermgebruik {
    stroke: #3185ff;
}

.progression_binnenactiviteiten {
    stroke: #aa118d;
}

.progression_buitenactiviteiten {
    stroke: #33ff85;
}

.progression_verkeersdeelname {
    stroke: #ff6845;
}

.result-extra-svg {
    max-width:330px;
    margin-left:auto;
    margin-right:auto;
}

.result-product-svg {
    max-width:250px;
    margin-right:auto;
    margin-left:auto;
}

.result-extra-svg > img{
    max-width:330px;
    margin-left:auto;
    margin-right:auto;
}

.result-product-svg  > img{
    max-width:250px;
    margin-right:auto;
    margin-left:auto;
}

/* PROGRESS BAR BOTTOM */
.progress_container {
    width: 100%;
    background: rgba(0,0,0,0.4);
    position: absolute;
    bottom: 0;
    height: 10px;
    z-index: 1;
}

.progress_bar {
    background:purple;
    height:10px;
    width:0%;

}
