/* 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;
}

.intro-container, .intro-container-invalid, .intro-container-succes {
    margin:auto;
}

 .intro-container-invalid, .intro-container-succes {
    display:none;
}

.intro-text {
    font-size: 25px;
    margin-top: 50px;
    font-weight: bold;
    text-align:center;
}


.pin-container {
    text-align:center;
}

.pin-container input {
    height: 100px;
    font-size: 60px;
    letter-spacing: 15px;
    width: 215px;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    color: #0E6181;
    font-weight: bold;
}

.pin-container input:focus{
    outline: none;
}

.pin-error {
    display:none;
}

.pin-code {
    display:flex;
    align-items:center;
    justify-content: center;
}

.pin-number {
    display:none;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50px;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    line-height: 100px;
    margin: 15px;
    color:black;
    mix-blend-mode: screen;
}

.pin-input-error {
    border: 15px solid orange;
}


/* CONTROLS */
.control-left {
    left: 0px;
    height: 100%;
    width: 50px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0px;
}

.control-left-icon {
    background: url(/svg/duo/previous.svg) no-repeat !important;
    background-size: cover;
    height: 15px;
    width: 10px;
}

.control-right {
    right: 0px;
    height: 100%;
    width: 50px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0px;
}

.control-right-icon {
    background: url(/svg/duo/next.svg) no-repeat !important;
    background-size: cover;
    height: 15px;
    width: 10px;
}

.store-locator {
    background:url('/svg/duo/store_locator.svg')!important;
    background-size:cover;
    background-repeat:no-repeat;
    height:25px;
    right:35px!important;
    width: 25px;
    display:none;
    position:absolute;
    outline:0px;
}

.scroll-icon {
    position: absolute;
    bottom: 37px;
    height: 70px;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background: url(/svg/duo/scroll.svg) bottom center no-repeat;
    display:none;
}

.slide-controls {
    position:absolute;

}
.slide-controls:hover {
    cursor:pointer;
}

.filler {
    flex:1;
}

.control-bar {
    height: 37.5px;
    position: fixed;
    padding-top:12.5px;
    display:none;
    bottom: 0px;
    border-top: 1px solid white;
    width: 100vw;
    z-index: 10;
}

/* 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: calc(100vh - 60px);
    display:flex;
    flex-direction:column;
    color:white;
    align-content: center;
    padding-left:25px;
    padding-right:25px;
    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;
}

.question-text{
    padding-bottom:30px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 16px;
    display:none;
    font-weight: 600;
}

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

.answers {
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 25px;
}


/**
 *
 *
 *  Impact scrollbar Firefox
 *
 */

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.25);
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.40);
}

 @-moz-document url-prefix() {
    .answers {
        scrollbar-color: #85a095 #9ab79f;
        scrollbar-width: 14px;
     }
 }





/* ANSWERS */
.answers-button {
    width:140px;
    margin: 12px 12px;
    cursor:pointer;
    max-width:35vw;
}

.answers-button-big {
    width:325px!important;
    max-width:80vw!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) {
  }



    .range-slider {
        margin: auto;
        outline: none;
        padding: 0;
        width: 200px;
        height: 5px;
        background-color: #dedede;
        background-size: 50% 100%;
        background-repeat: no-repeat;
        border-radius: 10px;
        cursor: pointer;
        -webkit-appearance: none;
    }

    .schermgebruik-slider {
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3B7AEA), color-stop(100%, #3B7AEA));

    }

    .verkeersdeelname-slider {
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #DE6A4C), color-stop(100%, #DE6A4C));

    }

    .buitenactiviteiten-slider {
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51E780), color-stop(100%, #51E780));

    }

    .binnenactiviteiten-slider {
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #B433D3), color-stop(100%, #B433D3));

    }

    .range-slider::-webkit-slider-thumb {
        height: 28px;
        width: 28px;
        border: 0;
        background: #fff;
        border: 2px solid gray;
        border-radius: 14px;
        box-shadow: 0 0 0 2px #fff;
        -webkit-appearance: none;
    }
    .range-slider:focus {
        outline: none;
    }

    .range-slider::-webkit-slider-runnable-track {
        box-shadow: none;
        border: none;
        background: transparent;
        -webkit-appearance: 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;
    }






/* MULTIPLE SLIDER */
.multiple-option {
    display:flex;
    flex-direction:column;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    align-items: center;
}

.multiple-text {
   min-width:200px;
   text-align:left;
   margin-bottom:25px;
}

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


.multiple-slider {
    margin: auto;
    outline: none;
    padding: 0;
    width: 200px;
    height: 5px;
    background-color: #dedede;

    background-size: 50% 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    cursor: pointer;
    -webkit-appearance: none;
}

.multiple-slider::-webkit-slider-thumb {
    height: 28px;
    width: 28px;
    border: 0;
    background: #fff;
    border: 2px solid gray;
    border-radius: 14px;
    box-shadow: 0 0 0 2px #fff;
    -webkit-appearance: none;
}
.multiple-slider:focus {
    outline: none;
}

.multiple-slider::-webkit-slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none;
}

.multiple-slider-line {
   display:none;
}

.multiple-slider-bg1 {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51E780), color-stop(100%, #51E780));

}

.multiple-slider-bg2 {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #B433D3), color-stop(100%, #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: 325px;
    height: 240px;
    max-width:85vw;
    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-question.question-text {
    display:block!important;
}

.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: -80px;
    transform: scale(0.5);
}
.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:20px;
    text-align: center;
    font-weight:200;
    margin-bottom: -90px;
}

.result_header2 {
    color:white;
    font-size:24px;
    margin-top:20px;
    text-align: center;
    font-weight:200;
}

.result-columns {
    display:flex;
    align-items:stretch;
    margin: auto;
    font-weight:200;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}

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

.result-title {
    padding-bottom:10px;
    font-weight:200;
    font-size:16px;
}

.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;
    flex-direction: column;
    margin-top: 30px;
}

.result-product {
    margin-bottom:20px;
}

.result-product-img {
    width: 200px;
    height: 200px;
    margin: auto;
    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;
    flex-direction:column;
}

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

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

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

.result-button-home, .result-button-app {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.result-button-home: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;
}
