﻿:root {
    --blauw-donker: rgb(22, 65, 148);
    --blauw-licht: rgb(167, 210, 251);
    --geel: rgb(255, 182, 18);
    --groen: rgb(118,210,182);
    --grijs: 152, 148, 148;
    --grijsrgb: rgb(var(--grijs));
    --grijs-licht: rgb(245, 244, 244);

    --fontWeightRegular: 400;
    --fontWeightMedium: 500;
    --fontWeightSemiBold: 600;
    --fontWeightBold: 700;
    --fullHeightHackPx: 47px; /*50px*/
}

@font-face {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html, body {
    min-height: calc(100vh - var(--fullHeightHackPx));
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    font-size: 16px;
}

body {
    background-color: #ffffff;
    color: #000000;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    flex-direction: column;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: var(--fontWeightSemiBold);
    font-size: 1rem;
    position: relative;
}

a {
    color: var(--blauw-donker);
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}

.button:hover, .button:focus,
a:hover, a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: var(--fontWeightBold);
    margin: 0px;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
    line-height: 2.5rem;
}

h3, .h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 2rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.75rem;
}

.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mt-0{
    margin-top: 0px;
}
.mt-16 {
    margin-top: 1rem;
}
.mb-0 {
    margin-bottom: 0px !important;
}

.mb-16 {
    margin-bottom: 1rem;
}

.mb-24 {
    margin-bottom: 1.5rem;
}

.ml-auto {
    margin-left: auto !important;
}

pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.text-blauw-donker {
    color: var(--blauw-donker);
}

.align-content {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    align-items: center;
}

.background--primary {
    background-color: var(--blauw-donker);
    border-color: var(--blauw-donker);
}

#content{
    margin-bottom: 3rem;
}

#content.page .wrap > .row.mx-0 {
    border-top: solid 3px var(--geel);
}

.wrap {
    margin: 0 auto;
    max-width: 1322px;
    padding: 0 2rem;
    width: 100%;
}

.page-header-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.logo-global {
    display: block;
    position: relative;
    width: 10rem;
    z-index: 502;
}

@media (min-width: 768px){
    .logo-global {
        width: 15rem;
    }    
}

@media (min-width: 768px) {
    .logo-global {
        width: 15rem;
    }
}

.nav {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/* BUTTON */
.button {
    background-color: var(--geel);
    border: solid 1px var(--geel);
    border-radius: 1.5rem;
    cursor: pointer;
    color: var(--blauw-donker);
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    flex-grow: 0;
    font-weight: var(--fontWeightBold);
    line-height: 1rem;
    margin: 0;
    padding: 1rem;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: fit-content;
}

.button svg {
    margin-left: .75rem;
}

.button:hover, .button:active {
    background-color: var(--blauw-donker);
    border: solid 1px var(--blauw-donker);
    color: var(--geel);
}

.button:hover svg path, .button:active svg path {
    fill: var(--geel);
}

.button--secondary {
    background-color: #ffffff;
}

.button.button--secondary:hover, .button.button--secondary:active {
    background-color: var(--geel);
    border: solid 1px var(--geel);
    color: var(--blauw-donker);
}

.button.button--secondary:hover svg path, .button.button--secondary:active svg path {
    fill: var(--blauw-donker);
}

.button--tertiary {
    background-color: var(--blauw-licht);
    border-color: var(--blauw-licht);
}

.button.button--tertiary:hover, .button.button--tertiary:active {
    background-color: var(--blauw-donker);
    border: solid 1px var(--blauw-donker);
    color: var(--blauw-licht);
}

.button.button--tertiary:hover svg path, .button.button--tertiary:active svg path {
    fill: var(--blauw-licht);
}

button.vorige svg {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: .75rem;
}

/* LANDINGSPAGINA */
.masthead {
    margin-top: -2rem;
    position: relative;
    overflow: hidden;
}

.masthead__image.masthead--large {
    max-height: 600px;
    margin-right: -3rem;
}

@media (min-width: 1200px) {
    .masthead__image.masthead--large {
        margin-left: -5.5rem;
    }
}

@media (min-width: 1560px) {
    .masthead__image.masthead--large {
        margin-right: -14rem;
    }
}

.masthead__image {
    position: relative;
    margin-top: 2rem;
    margin-left: -3rem;
}

@media (min-width: 1200px) {
    .masthead__image {
        margin-top: 3rem;
    }
}

.masthead__teaser.flex {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    align-items: center;
}

.timeIcon {
    margin-right: 15px;
    font-size: 2rem;
}

.masthead__image{
    min-height: 600px;
}

.masthead__image__container {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.masthead__image__container .hero-img {
    background-image: url("/images/onderwijsregioLDB/landingspagina-hero.png");
    background-size: cover;
    background-position-y: 35%;
    background-repeat: no-repeat;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: .3s ease-in-out;
    transition-delay: 300ms;
    width: 100%;
    z-index: 1;
}

.masthead__image__container .hero-img__element {
    background-image: url("/images/onderwijsregioLDB/landingspagina-hero3.png");
    transition-delay: 800ms;
    z-index: 2;
}

@media (max-width: 768px) {
    .masthead__image__container {
        overflow: auto;
    }
}

.masthead__image.masthead--large .masthead__bg {
    background-color: var(--geel);
    position: absolute;
    bottom: unset;
    right: unset;
    top: -15px;
    left: -15px;
    z-index: -1;
    width: 90%;
    height: calc(50% + 15px);
    opacity: 1;
    transition: top .3s ease-in-out 800ms, left .3s ease-in-out 800ms;
}

@media (min-width: 1200px) {
    .masthead__image.masthead--large .masthead__bg {
        top: 0px;
        left: 0px;
        height: calc(65% + 15px);
    }
}

.masthead__overlay {
    background-color: rgba(255, 255, 255, 0.80);
    border-radius: 1.5rem;
    bottom: 3rem;
    color: var(--blauw-donker); 
    left: 3rem;
    max-width: 560px;
    opacity: 0;
    padding: 1.5rem;
    position: absolute;
    right: 3rem;
    transition: .3s ease-in-out;
    transition-delay: 800ms;
    z-index: 23;
}

@media (min-width: 992px) {
    .masthead__overlay {
        min-width: 300px;
        width: auto;
        right: 7rem;
        top: 6rem;
        bottom: unset;
        left: inherit;
    }
}

.masthead__image.ready .masthead__bg {
    top: -15px;
    left: -95px;
}

.masthead__image.ready .masthead__overlay, 
.masthead__image.ready .hero-img,
.masthead__image.ready .hero-img__element
{
    opacity: 1;
}

/* FOOTER */
footer {
    background-color: var(--blauw-donker);
    margin-top: auto;
    position: relative;
    top: var(--fullHeightHackPx);
    width: 100%;
}

footer .wrap {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    gap: 1rem;
    padding: 10px 3rem;
}

footer .voorwaarden {
    flex: 1;
}

footer a{
    margin-right: 15px;
    color: #FFF;
    display: inline-block;
    text-decoration: underline;
    /*line-height: var(--fullHeightHackPx);*/
}

footer a:hover, footer a:focus {
    color:#FFF;
    text-decoration: none;
}

footer .copyright {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    footer .wrap {
        display: block;
        padding: 10px 3rem;
    }

    footer a, footer .copyright {
        line-height: inherit;
    }

    footer .copyright {
        margin-top: 10px;
    }
}
/* ------------ */

/* TEST  */
ol, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ol {
    list-style-position: inside;
}

#vraagcontainer, #proclaimer > div {
    position: relative;
    margin: 2rem 0 10px 0;
    text-align: left;
}

@media (max-width: 1200px) {
    #vraagcontainer, #proclaimer > div {
        margin: 4.5rem 0 10px 0;
    }

    .question-text {
        font-size: 2rem;
    }

    .background--primary h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #vraagcontainer, #proclaimer > div {
        margin: 2rem 0 10px 0;
    }
}

#proclaimer h3 {
    margin-bottom: .5rem;
    margin-top: 2rem;
}

#proclaimer ul {
    list-style-type: disc;
    padding-left: 1rem;
    margin-top: -1rem;
}

#proclaimer ::marker {
    color: var(--geel);
}

#proclaimer .pane-title-wrap {
    margin-top: 1rem;
}

.container header.question, .container header.question-header-multiple {
    float: left;
    width: 100%;
    margin-bottom: 70px;
}

.question-header-multiple {
    margin-bottom: 50px !important;
}

.vraag {
    margin: 0 0 10px 0;
}

#vraagcontainer .intro .vraag .question-text {
/*    position: relative;
    display: inline-block;*/
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    /*color: #33393A;*/
}

.vraag h1 {
    margin-bottom: 5rem;
}

@media (max-width:768px){
    .vraag h1{
        margin: 0 0 20px;
    }
}

.vraag .question-number {
    color: #BDBDBD;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.question {
    margin-top: 10px;
    border: 1px solid #1dc7cd;
    padding: 5px;
    height: 100%;
}

header.question h3, header.question-header-multiple {
    float: left;
    height: auto;
    width: 100%;
}

#vraagnummer {
    text-align: center;
}

.container header.sub-question {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.container header.sub-question h3 {
    font-size: 18px;
    margin-top: 0;
}

.graph-section :first-of-type.graph-color-green.graph-block {
    margin-top: 0px;
}

.graph-section .graph-color-green .graph-bg {
    background-color: rgba(var(--grijs), 0.75);
}

.graph-section ol li span.graph-bg .graph-percentage {
    right: 0px;
    z-index: 10;
    padding-right: 5px;
}

.graph-section ol li span.graph-bg .graph-bar {
    top: 0px;
    bottom: 0px;
}

.graph-section .graph-color-green .graph-bar {
    background-color: #a6ce39;
}

.graph-section ol li {
    position: relative;
    padding: .33333em 0;
    border-bottom: dotted .08333em #c9d1d4;
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 479px) {
    #content {
        margin-bottom: 0rem;
    }

    span {
        line-height: 20px;
    }

    #slider {
        position: relative;
        height: 50px;
    }

    #sliderlabels label, #sliderlabelssmall label, #question-multiple-labels label, #question-multiple-labelssmall label, .question-error {
        font-size: 1rem;
        font-weight: normal;
    }

    .question-text, h2.pane-title {
        font-size: 1.5rem;
    }

    .multiplechoice .question-text {
        font-size: 1rem;
    }

    h2.pane-title {
        line-height: 2rem;
    }

    #main-content:not(.panel-wrapper) {
        min-height: 441px; /* dit is toegespitst op de vraagstelling met de meeste tekens en dus heel specifiek ~ MJV */
    }

    #vraagcontainer .intro .vraag .question-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    #sliderlabels, #question-multiple-labels {
        display: none !important;
    }

    #question-multiple-labels #slider-underbound, #question-multiple-labels #slider-upperbound {
        display: inline-block;
        width: 90px;
    }

    #question-multiple-labels #slider-upperbound {
        text-align: right;
    }

    .graph-section ol li div.graph-label {
        width: 100%;
        vertical-align: middle;
        display: block;
    }

    .graph-section ol li span.graph-bg {
        display: block;
        position: absolute;
        width: 100%;
        top: 8px;
        right: 0px;
        height: 20px;
        line-height: 20px;
    }

    .framed-content {
        padding: 2rem 2rem 2rem 2rem !important;
    }

    #resultaat h1.title {
        font-size: 2rem;
    }

    #resultaat .introduction {
        font-size: 1rem;
    }

    #resultaat h2, #uitgebreidescore h2, #uitgebreidescore .dontShowUitslag .showAll h2 {
        font-size: 1.5rem;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) and (max-width: 767px) {
    #main-content {
        padding-left: 0px;
        padding-left: 0px;
    }

    #slider {
        position: relative;
        height: 100px;
    }

    #sliderlabelssmall, #question-multiple-labelssmall {
        display: none;
    }

    .graph-section ol li div.graph-label {
        width: 100%;
        vertical-align: middle;
        display: block;
    }

    .graph-section ol li span.graph-bg {
        display: block;
        position: absolute;
        width: 100%;
        top: 8px;
        right: 0px;
        height: 20px;
        line-height: 20px;
    }

    .single-chart svg {
        max-height: 10rem;
    }

    .framed-content {
        padding: 2rem 2rem 2rem 2rem !important;
    }

    #resultaat h1.title {
        font-size: 2rem;
    }

    #resultaat .introduction {
        font-size: 1rem;
    }

    #resultaat h2, #uitgebreidescore h2, #uitgebreidescore .dontShowUitslag .showAll h2 {
        font-size: 1.5rem;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width: 991px) {
    #main-content {
        padding-left: 0px;
        padding-left: 0px;
    }

    #slider {
        position: relative;
        height: 100px;
    }

    #sliderlabelssmall, #question-multiple-labelssmall {
        display: none;
    }

    .graph-section ol li div.graph-label {
        width: 100%;
        vertical-align: middle;
        display: block;
    }

    .graph-section ol li span.graph-bg {
        display: block;
        position: absolute;
        width: 100%;
        top: 8px;
        right: 0px;
        height: 20px;
        line-height: 20px;
    }

    .single-chart svg {
        max-height: 12rem;
    }

    .framed-content {
        padding: 2rem 2rem 2rem 2rem !important;
    }

    #resultaat h1.title {
        font-size: 2rem;
    }

    #resultaat .introduction {
        font-size: 1rem;
    }

    #resultaat h2, #uitgebreidescore h2, #uitgebreidescore .dontShowUitslag .showAll h2 {
        font-size: 1.5rem;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width: 1199px) {
    #main-content {
        padding-left: 0px;
        padding-left: 0px;
    }
    
    #slider {
        position: relative;
        height: 100px;
    }

    #sliderlabelssmall, #question-multiple-labelssmall {
        display: none;
    }

    .graph-section ol li div.graph-label {
        width: 29%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        display: inline-block;
        white-space: nowrap;
    }

    .graph-section ol li span.graph-bg {
        position: absolute;
        width: 65%;
        top: 8px;
        right: 0px;
        height: 20px;
        line-height: 20px;
    }

    .single-chart svg {
        max-height: 13rem;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    #slider {
        position: relative;
        height: 70px;
    }

    #sliderlabelssmall, #question-multiple-labelssmall {
        display: none;
    }

    .graph-section ol li div.graph-label {
        width: 29%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        display: inline-block;
        white-space: nowrap;
    }

    .graph-section ol li span.graph-bg {
        position: absolute;
        width: 65%;
        top: 8px;
        right: 0px;
        height: 20px;
        line-height: 20px;
    }
}

#slider{
    width: 100%;
    margin-top: 2.5rem;
}

@media (max-width: 768px){
    #slider{
        margin: 30px 0px;
    }
}

#slider .slider-container .back-bar {
    position: relative;
    height: 10px;
    background-image: none;
    background-color: #DBDEE2;
}

#slider .slider-container .back-bar .selected-bar{
    background-color: transparent;
    background-image: none;
}

#slider .slider-container .back-bar .pointer {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    top: -8px;
    background: var(--blauw-donker);
    cursor: pointer;
    z-index: 1000;
    border-radius: 0px;
    border: none;
}

#slider .slider-container .back-bar .pointer.animate:not(.last-active) {
    position: relative;
    animation-name: hoverPointer;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

#slider .slider-container .back-bar .pointer.animate:not(.last-active)::before,
#slider .slider-container .back-bar .pointer.animate:not(.last-active)::after {
    bottom: 0;
    background-image: url(/images/onderwijsregioLDB/pijl.svg);
    background-repeat: no-repeat;
    content: "";
    height: 20px;
    line-height: 20px;
    margin: auto;
    position: absolute;
    right: 40px;
    top: 0;
    transform: rotate(180deg);
    width: 100%;
}

#slider .slider-container .back-bar .pointer.animate:not(.last-active)::before {
    transform: rotate(0deg);
    right: unset;
    left: 40px;
    animation-name: hoverPointerBefore;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

#slider .slider-container .back-bar .pointer.animate:not(.last-active)::after {
    animation-name: hoverPointerAfter;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes hoverPointer {
    0% {
        left: 50%;
    }
    50% {
        left: calc(50% - 25px);
    }
    100% {
        left: 50%;
    }
}

@keyframes hoverPointerAfter {
    0% {
        opacity: .3;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }

    100% {
        opacity: .3;
    }
}

@keyframes hoverPointerBefore {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
    60%{
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

#slider .slider-container .back-bar .pointer-label {
    display: none;
}

#slider .slider-container .scale {
    top: -14px;
    left: 0px;
    background-color: transparent;
    opacity: 1;
}

#slider .slider-container .scale span{
    height: 0px;
}

#slider .slider-container .scale span:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 5px;
    top: 0px;
    left: -3px;
    background-color: #dbdee2;
}

#slider .slider-container .scale span ins {
    top: 30px;
    font-size: 16px !important;
}

.graph-section ol li span.graph-bg .graph-percentage, .graph-section ol li span.graph-bg .graph-bar {
    position: absolute;
}

.question-multiple li label {
    width: 100%;
    text-align: center;
}

#slider-no-answer {
    float: left;
    margin-left: -15px;
}

#sliderlabels, .question-container > .question-footer, #question-multiple-labels {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: space-between;
}

.question-container > .question-footer.justify-end {
    justify-content: flex-end;
}

#sliderlabels label {
    margin-bottom: 0;
    line-height: 1rem;
}

#slider-underboundsmall {
    margin-bottom: 10px;
}

#slider-upperboundsmall {
    margin-bottom: 10px;
}

#question-error {
    float: left;
    width: 100%;
    color: #DE3438;
    margin-top: 50px;
}

.question-footer {
    margin: 30px 0 0;
}

.slider-values {
    float: left;
    width: 100%;
}

.slider-values ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.slider-values ul li {
    display: inline-block;
}

.slider-container .clickable-dummy {
    position: absolute;
    top: -5px;
    height: 50px !important;
}

#btn-continue {
    position: relative;
    top: 0px;
    right: 100px;
    float: right;
}

.multiplechoice:not(.intro) {
    margin-bottom: 30px;
    padding: 30px;
    border: 3px solid #DBDEE2;
}

#question-multiple-labels {
    margin-bottom: 10px;
}


.question-multiple {
    width: 100%;
    display: inline-block;
}

.question-value {
    margin-bottom: 10px;
}

.question-multiple ul {
    float: left;
    width: 100%;
}

.question-multiple ul li {
    display: inline-block;
    float: left;
    width: 10%;
    height: 50px;
        
}

.question-multiple ul li input[type=radio] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.question-multiple ul li label {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question-multiple ul li label[for] {
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.question-error {
    float: left;
    width: 100%;
    color: #DE3438;
    margin: 0px;
}

.has-error {
    font-weight: normal;
}

a.info-button i.fa-question-circle {
    font-size: 18px;
}

.bar {
    width: 100%;
    height: 10px;
    position: relative;
}
.scale {
    width: 100%;
    height: 10px;
    position: relative;
    top: 0px;
    background-color: #F3F4F5;
    opacity: 0.2;
}
.progress {
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #FFF;
    z-index: 1;
    border-radius: 0px;
}

.bar-wrapper p {
    line-height: 1rem;
    margin-top: 1rem;
}

.dialog-button {
    float: right;
}

.resultaatmargin {
    margin: 30px 0 30px 0;
    background: rgba(1,192,216,1);
    color: #000000;
    padding: 20px;
}

.circle {
    width: 100px;
    margin: 6px 6px 20px;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1.2;
}

.circle canvas {
    vertical-align: top;
}

.circle strong {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
}

.circle strong i {
    font-style: normal;
    font-size: 0.6em;
    font-weight: normal;
}

.circle span {
    display: block;
    color: #aaa;
    margin-top: 12px;
}

.dI {
    display: inline;
}

.taC {
    text-align: center;
}
.mT10 {
    margin-top: 10px;
}
.mT20 {
    margin-top: 20px;
}

.mT40 {
    margin-top: 40px;
}

.mR5 {
    margin-right: 5px;
}

.mB20 {
    margin-bottom: 20px;
}

.cursor {
    cursor: pointer;
}

.tdU {
    text-decoration: underline;
}

.tdN {
    text-decoration: none;
}

.tCBlack {
    color: #000000;
}

#resultButtons a img {
    margin-left: auto;
    margin-right: auto;
}

.btn-hanroze {
    color: #fff;
    background-color: #e50056;
    border-color: #e50056;
}

.w100 {
    width: 100px;
}

input[type='range'] {
}

input[type=range] {
    background-color: #DBDEE2;
    height: 10px;
    cursor: pointer;
}


.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 0px;
    background: #DBDEE2;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--blauw-donker);
    cursor: pointer;
    z-index: 1000;
}

.slider::-moz-range-thumb {
    position: relative;
    width: 25px;
    height: 25px;
    background: var(--blauw-donker);
    cursor: pointer;
    z-index: 1000;
}

.sticky {
    position: sticky;
    height: 100%;
    top: 20px;
}

@media (max-width: 1200px) {
    .sticky {
        position: relative;
        height: unset;
        top: unset;
    }
}

aside.sidebar-first, aside.sidebar-last {
    margin-top: 3.5rem;
}

@media (min-width: 1200px) {
    aside:first-child {
        padding-right: 4rem;
    }
}

@media (min-width: 768px) {
    aside.sidebar-first, aside.sidebar-last {
        margin-top: 4.5rem;
    }
}

.background--primary h2,
.background--primary p {
    color: #fff;
}

.background--primary h2 {
    margin-bottom: 1.5rem;
}

.background--primary p {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .background--primary h2 {
        margin-bottom: 1.5rem;
    }
    
    .background--primary p {
        margin-bottom: 2rem;
    }
}

.background--backdrop:before {
    background-color: var(--groen);
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    top: -30px;
    left: -15px;
    z-index: -1;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px){
    .background--backdrop:before {
        top: -40px;
        left: -25px;
    }
}

.background--backdrop {
    position: relative;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .background--backdrop {
        margin-top: 45px;
    }
}

.calltoaction-text {
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .calltoaction-text {
        padding: 3rem;
        margin-bottom: 2rem;
    }
}

.scores {
    position: relative;
    width: calc(100% + 60px);
    height: 20px;
    top: 20px;
    left: -30px;
}

.scores span {
    position: relative;
    width: 9.09%;
    float: left;
    display: inline-block;
    text-align: center;
    color: #929292;
    font-size: 1.6rem;
}

.scores span:before {
    content: "";
    position: absolute;
    top: -33px;
    right: 0;
    left: 0;
    width: 3px;
    height: 16px;
    margin: auto;
    background-color: #DBDEE2;
    pointer-events: none;
}

.resultaat {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 25px solid #fff;
    margin: auto;
}

.circle-wrap {
    margin: auto;
    width: 200px;
    height: 200px;
    background: #e6e2e7;
    border-radius: 50%;
}
.circle-wrap .circle .mask,
.circle-wrap .circle .fill {
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 50%;
}
.circle-wrap .circle .mask {
    clip: rect(0px, 200px, 200px, 75px);
}

.circle-wrap .circle .mask .fill {
    clip: rect(0px,50px, 200px, 0px);
    background-color: #9e00b1;
}

.circle-wrap .circle .mask.full,
.circle-wrap .circle .fill {
    animation: fill ease-in-out 3s;
    transform: rotate(126deg);
}

@keyframes fill {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(126deg);
    }
}

.circle-wrap .inside-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #fff;
    line-height: 180px;
    text-align: center;
    margin-top: 10px;
    margin-left: 10px;
    position: absolute;
    z-index: 100;
    font-weight: 700;
    font-size: 2em;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}
.circle {
    fill: none;
    stroke-width: 2.8;
}
.circle.active {
    animation: progress 1000ms forwards;
    animation-timing-function: linear;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.orange .circle {
    stroke: var(--groen);
}

.percentage {
    fill: #fff;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

div.graph-label {
    width: 60%;
    position: relative;
}

span.graph-percentage {
    line-height: 2rem;
    margin-right: .5rem;
    position: absolute;
    right: 0;
    width: max-content;
    z-index: 1;
}
.graph-bg {
    position: relative;
    width: 40%;
    height: 32px;
    display: inline-block;
    background-color: rgba(var(--grijs), .3);
    text-align: right;
}
span.graph-bar {
    background-color: var(--groen);
    position: absolute;
    height: 100%;
    min-height: 32px;
    left: 0px;
}

.subject-result {
    padding: 1rem 1.5rem;
    border: 3px solid #DBDEE2;
    position: relative;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.subject-result > .graph-bg > .graph-bar {
    background-color: var(--blauw-donker);
}
.subject-result > .graph-bg > .graph-percentage {
    font-weight: 900;
}
.subject-result ol {
    margin-left: 0%;
    width: 100%;
}
.subject-result ol li {
    position: relative;
    width: 100%;
    border: none !important;
    margin-top: .5rem;
}
.subject-result > .graph-label {
    font-size: 1.25rem;
}
#poDetails {
    margin: 30px 0px 75px;
    display: inline-block;
}
#poDetails > ol {
    display: inline-block;
}
li.subject-result > span:first-child {
    margin-bottom: 20px;
}

label.lblcontainer{
    position: relative;
}

label.lblcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

#targetmailform label{
    color: #000;
}
#targetmailform label .form-required {
    color: #DE3438;
}
#targetmailform input[type="text"],
#targetmailform input[type="email"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .5rem;
    background-color: #ffffff;
    border: 2px solid rgba(var(--grijs), 0.4);
    margin-bottom: 20px;
    padding: 12px 18px;
    outline: 0;
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
}
#targetmailform input[type="text"]:focus,
#targetmailform input[type="email"]:focus {
    border-color: var(--blauw-donker);
    outline: 0;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-user-modify: read-write-plaintext-only;
    box-shadow: none;
}
#targetmailform .optininput {
    position: relative;
    margin-bottom: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}

#targetmailform .optininput {
    padding-left: 30px;
}

label.lblcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

label.lblcontainer input:checked ~ .checkmark {
    background-color: var(--blauw-donker);
}

.checkmark {
    position: absolute;
    top: .25rem;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #eee;
    border-radius: 50%;
    margin: auto;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

label.lblcontainer input:checked ~ .checkmark:after {
    display: block;
}

label.lblcontainer .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.optininput .checkmark {
    width: 20px;
    height: 20px;
    right: unset;
    border: 2px solid rgba(var(--grijs), 0.4);
    background-color: transparent;
    transition: .15s ease-in-out;
    border-radius: .25rem;
}

.optininput .checkmark:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0px;
    height: 0px;
    border-radius: 0%;
    background: var(--blauw-donker);
    display: block;
    transition: .1s;
}

.optininput input:checked ~ .checkmark:after {
    width: 12px;
    height: 12px;
}

#targetmailform .optininput input {
    opacity: 0;
}

.optininput:hover input ~ .checkmark,
.optininput input:checked ~ .checkmark {
    border-color: var(--blauw-donker);
}

#targetregioldbmailform button {
    margin-left: auto;
}

#targetregioldbmailform > div:last-child {
    color: var(--grijsrgb);
}

.framed-content {
    position: relative;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    margin-top: 4.5rem;
    border: 3px solid var(--blauw-donker);
}

@media (max-width: 768px){
    .framed-content {
        margin-top: 30px;
        padding: 7rem 2.5rem 3rem;
    }
}

@media (max-width: 1200px) {
    .framed-content {
        margin-top: 4.5rem;
    }
}

.framed-content__title {
    font-weight: bold;
    font-size: 1.13rem;
    color: var(--blauw-donker);
    padding: 0 1rem;
    background: #ffffff;
    margin-top: -3rem;
    margin-bottom: 1.25rem;
    width: fit-content;
}

#resultaat h1.title {
    margin-top: 3rem;
}

#resultaat h2 {
    margin-bottom: 1.5rem;
}

.introduction {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

#uitgebreidescore {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem;
}

#uitgebreidescore h2 {
    margin-bottom: 4rem;
}

.info-button {
    display: inline;
}
.info-button:hover {
    cursor: help;
}
.info-button:hover .fa-question-circle{
    color: var(--blauw-donker);
}
.info-button .fa-question-circle {
    font-size: 1.25rem;
    color: var(--geel);
    vertical-align: text-bottom;
}
.info-button .q-tooltip {
    position: absolute;
    width: 400px;
    height: auto;
    left: -40px;
    bottom: 0px;
    padding: 1.5rem 2rem;
    background-color: var(--grijs-licht);
    transition: .15s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
.info-button:hover .q-tooltip {
    bottom: 40px;
    opacity: 1;
    display: block;
}
@media (max-width: 768px) {
    .info-button .q-tooltip {
        width: 300px;
    }
}

@media (max-width: 768px) {

    #verstuurresultaten {
        margin-top: 30px;
    }
}

.question-container {
    display: inline-block;
    width: 100%;
}

.share{
    margin-top: 3rem;
}

.shareButtons {
    margin-left: 1rem;
    column-gap: .75rem;
}

@media (min-width: 1200px) {
    .shareText {
        margin-right: 1rem;
    }

    .shareButtons {
        column-gap: .75rem;
        flex-grow: 1;
        margin-left: unset;
        justify-content: end;
    }
}

.shareButtons a > div {
    width: 35px;
    height: 40px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shareButtons a > div:after {
    font-family: NhlStenden;
    font-size: 24px;
    color: #FFF;
} 
.share .whatsapp:after {
    content: "\E909";
}
.share .facebook:after {
    content: "\E91A";
}
.share .linkedin:after {
    content: "\E91C";
}

.d-flex {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
}
.flex-grow-1 {
    flex-grow: 1;
}
.d-inline-block {
    display: inline-block;
}
.align-items-center {
    align-items: center;
}
justify-content-end {
    justify-content: end;
}
.shareText{
    color: #FFF;
}

#data-disclaimer {
    line-height: 1.2rem;
    font-size: .85rem;
}

.pl-2 {
    padding-left: .5rem;
}
.fill-success {
    fill: #3c763d;
    top: 2px;
    position: relative;
}
.fill-warning {
    fill: #ffc107;
    top: 1px;
    position: relative;
}

.showAll{
    display: none;
}

.dontShowUitslag {
    position: relative;
}

.dontShowUitslag .graph-percentage,
.dontShowUitslag .graph-bar {
    display: none;
}

.dontShowUitslag .showAll {
    background-color: rgba(255, 255, 255, .75);
    box-shadow: 0px 0px 15px 10px rgb(var(--grijs), .25);
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    flex-direction: column;
    height: calc(100% - 2rem);
    justify-content: center;
    margin-top: 1rem;
    position: absolute;
    right: 24px;
    top: 0px;
    width: calc(40% - 1rem);
    z-index: 1001;
}

#uitgebreidescore .dontShowUitslag .showAll h2 { margin-bottom: 1.5rem; }
#uitgebreidescore .dontShowUitslag .showAll p { margin-bottom: 2.5rem; }
#uitgebreidescore .dontShowUitslag .showAll a { margin-left: auto; }

@media (max-width: 768px) {
    .dontShowUitslag .showAll {
        position: relative;
        width: 100%;
        height: auto;
        top: 0px;
        right: 0px;
        margin-top: 0px;
        padding: 2rem 1.5rem;
        background-color: rgba(255, 255, 255, .9);
    }
}

@media (max-width: 480px) {
    .subject-result, .subject-result > ol > li {
        display: block;
    }
    .subject-result > .graph-label, 
    .subject-result > .graph-bg,
    .subject-result > ol > li .graph-label,
    .subject-result > ol > li .graph-bg {
        width: 100%;
    }
    .subject-result > .graph-label,  .subject-result > ol > li .graph-label{
        margin-bottom: .25rem;
    }
}

.multi-content h2 {
    margin-bottom: 2rem;
}
.multi-content__image {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.multi-content__image img {
    height: auto;
    max-width: 100%;
}
.multi-content__text-wrapper {
    background-color: #ffffff;
    margin: -2rem 2rem 0;
    padding: 2.5rem 2rem;
    position: relative;
    filter: drop-shadow(0 4px 11px rgba(0, 0, 0, 0.25));
}

@media (min-width: 768px) {
    .multi-content__text-wrapper {
        margin-top: -15rem;
        margin-left: auto;
        margin-right: 0px;
        width: 40%;
    }
}