html {
    overflow-y: scroll;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Titillium Web,sans-serif;
}

h1 {
    font-size: 5.5em !important;
    line-height: normal;
}

h2,
.counter {
    font-size: 3.5em !important;
    font-weight: 900 !important;
    /*color: #00427a !important;*/
    line-height: 1em;
}

p strong {
    color: #3d3d40 !important;
}

h3 {
    color: #00427a !important;
}

h4,
h5 {
    color: #00427a !important;
}

.border-danger {
    border-color: tomato !important;
}

.text-danger {
    color: tomato !important;
}

.help-block {
    font-size: 1.5em;
    margin-top: -10px;
}

#actions h5 {
    font-size: 1em !important;
}

/* --- NIEUWE STYLING VOOR FIETS & RAD --- */

/* 1. De sectie die alles centreert */
#customer-spin-the-wheel-game .wheel-title-margin{
    margin-bottom: 100px !important;
}

#customer-spin-the-wheel-game .tab-pane#step3SpinthewheelGame {
    min-height: 60vh; /* Zorgt voor genoeg hoogte */
    align-items: center;
    justify-content: center;
    position: relative;
}

#customer-spin-the-wheel-game .game-container {

    border-radius: 0;
    /*overflow: hidden;*/
    width: 100%;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    /*box-shadow: 0 5px 20px -5px rgba(0,0,0,0.2); */
}

.game-container form .bwx-card {
    backdrop-filter: blur(2px);
    background-color: rgba(242, 249, 253, 0.75);
    border-radius: 0 !important;
    box-shadow: none; 
    margin-bottom: 30px;
}

/* 2. Het Ankerpunt (Het denkbeeldige vierkantje in het midden van het scherm) */
.wheel-anchor {
    position: relative;
    width: 35vw;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    z-index: 10;
    margin: 0 auto;
    max-height: 66vh;

}

/* 3. De Fietsafbeelding (Zweeft over het ankerpunt heen) */
.bike-image {
    position: absolute;
    z-index: 20;             /* Ligt BOVEN het rad */
    pointer-events: none;    /* Je klikt dwars door de fiets heen */
    
    /* GROOTTE: De fiets is veel groter dan het rad */
    width: 175%;             
    height: auto;
    max-width: none !important; /* Bootstrap override */

    /* POSITIE: Zet linkerbovenhoek in het midden */
    top: 50%;
    left: 47%;

    /* UITLIJNING: Schuif terug zodat de as op het midden valt */
    /* Pas deze percentages aan als het niet 100% past */
    transform: translate(-92%, -76%); 
}

/* 4. Het Rad Container */
.wheel-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    animation-name: spin;
    animation-delay: 0.6s;
    animation-duration: 1s;
    animation-iteration-count: 1;
    
}

.wheel-container.backwheel {
    position: absolute;
    right: 159%;
}

.no-delayed-animation {
    animation-delay: 0s !important;
}
.languages-container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.spin-the-wheel, .wheel-bg {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    
}

.wheel-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



/* 5. De Pointer */
.pointer {
    position: absolute;
    bottom: 8% !important;
    right: 15% !important;
    top: auto !important;
    left: auto !important;
    transform: translateX(-50%);
    rotate: 135deg !important;
    width: 27px !important;
    /* height: 60px; */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 30;
    aspect-ratio: 1 / 3;
}

#won {
    display: none; /* Standaard verborgen, JS zet dit op block */
    position: absolute; /* Losmaken van de layout */
    
    /* Exact centreren (Horizontaal & Verticaal) */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Zorg dat hij BOVEN de fiets (z-index 20) en pointer (z-index 30) ligt */
    z-index: 1000; 
    width: 90%;             
    max-width: 450px;
    margin: auto;
}

.won-popup-container {
    /* Uiterlijk */
    background-color: rgba(242, 249, 253, 1);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4); /* Mooie schaduw voor diepte */
    text-align: center;
}

/* Zorg dat de tekst goed leesbaar is */
.won-popup-container h3 {
    color: #072455 !important; /* Forceer donkere kleur indien nodig */
    margin-top: 15px;
    -webkit-hyphens: none;
}

spinner #won {
    top: calc(50% + 50px) !important;
}

.note{
    display: none;
}

#customer-spin-the-wheel-game h2{
    font-family: 'Titillium Web' !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #9F1D21 !important;
}    

.wheel-title-container {
    padding: 0;
    margin: 0;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.wheel-title-container svg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    overflow: visible !important;
}

/* Omdat het nu een SVG is, gebruiken we 'fill' in plaats van 'color' */
.wheel-title text {
    font-family: 'Titillium Web' !important; /* Neemt font van je site over */
    font-weight: 400 !important;
    text-transform: uppercase;
    fill: #9F1D21 !important; /* Verander dit naar je gewenste tekstkleur */
    font-size: 3em !important;
    font-style: italic !important;
    line-height: 1em !important;
    display: block;
}

.swoosh {
    position: absolute;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.bg-blue {
    background-color: #072455;
}

.bg-small {
    height: 400px !important;
}

.text-blue {
    color: #072455 !important;
}

.text-grey {
    color: #4b5559;
}

.bg-light {
    background-color: #f8f8f8 !important;
}

.bwx-bg-primary {
    background-color: #99cc00 !important;
}


.btn-link {
    text-decoration: none !important;
    font-size: 1.2em !important;
}

.text-underline {
    text-decoration: underline !important;
}

.error {
    background-color: #ffc0c0 !important;
    color: darkred !important;
    border: 1px solid darkred !important;
}

.register-btn {
    float: right !important;
}

.overlay {
    background-color: rgba(0, 52, 106, 0);
}



.navbar {
    border-radius: 0 !important;
}

.navbar a {
    font-family: Titillium Web,sans-serif;
    font-size: 1em !important;
    line-height: 1em;
    color: #4b5559 !important;
}

.navbar li:not(:first-of-type):not(:last-of-type)>a:not(.btn-nav) {
    border-left: 1px solid #4b5559;
}

.navbar li>a:not(.btn-nav) {
/*    margin-top: 12px;*/
    padding: 5px 15px !important;
    opacity: 1 !important;
    border-radius: 0;
}

.navbar .btn-nav {
    padding: 9px 15px 7px 15px !important;
    border-radius: 5px !important;
    margin-top: 3px;

    color: #fff !important;
}

.navbar-collapse {
    text-align: right;
}

.loading {
    width: 100%;
    height: 100%;
    min-height: 100px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    color: #444;
    top: 0px;
    left: 0px;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

img:hover {
    opacity: 1 !important;
}

.fa-ul {
    margin-left: 25px !important;
}

.fa-li .fa {
    color: #99cc00 !important;
}

ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 0 !important;
}

ol li {
    counter-increment: my-awesome-counter;
    padding-left: 25px;
}

ol li::before {
    content: counter(my-awesome-counter) ". ";
    color: #99cc00;
    height: 100%;
    margin-right: 10px;
    margin-left: -25px;
    font-weight: bold;
}

#intro img {
    border-radius: 20px;
    border: 10px solid #00427a;
}

#intro {
    overflow: none !important;
}

#prizes img {
    border-radius: 20px;
    border: 10px solid #00427a;
}

.challenge_start {
    color: #00427a;
}

.challenge h3,
.challenge h5 {
    color: #00427a !important;
}

/*.challenge h4 {
    font-size: 2.3em !important;
    color: #99cc00 !important;
    margin: 15px 0 !important;
    line-height: 1em !important;
}*/

.between {
    position: relative;
}

/* Horizontal timeline */
.timeline {
    border-left: 4px solid #fff;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    margin: 0 auto;
    position: relative;
    padding: 50px;
    list-style: none;
}

.timeline .event {
    border-bottom: 1px dashed #fff;
    padding-bottom: 25px;
    margin-bottom: 50px;
    position: relative;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -217.5px;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    content: attr(data-date);
    text-align: center;
}

.timeline .event:after {
    box-shadow: 0 0 0 4px #fff;
    left: -57.85px;
    background: #fff;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}

.timeline-tabs .nav-tabs {
    border-bottom: none;
    text-align: center;
    text-transform: uppercase;
}

.timeline-tabs .nav-tabs>li {
    display: inline-block;
    float: none;
    margin-bottom: 10px;
}

.timeline-tabs .nav-tabs>li>a {
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    padding: 20px 50px;
    border: 2px solid #fff;
    border-radius: 0;
    opacity: 0.9;
}

.timeline-tabs .nav-tabs>li>a:hover,
.timeline-tabs .nav-tabs>li.active>a {
    background-color: #fff;
    color: #69696e;
    opacity: 1;
}

.timeline {
    list-style: none;
    padding: 20px;
    position: relative;
    border-left: none;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #ffffff;
    left: 50%;
    margin-left: -1.5px;
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #439fe0;
    border-radius: 0;
    background: #439fe0;
    color: white;
    padding: 40px;
    position: relative;
}

.timeline>li>.timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #439fe0;
    border-right: 0 solid #439fe0;
    border-bottom: 15px solid transparent;
    content: " ";
}

.timeline>li>.timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #439fe0;
    border-right: 0 solid #439fe0;
    border-bottom: 14px solid transparent;
    content: " ";
}

.timeline>li>.timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #439fe0;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
}

.timeline-body>p+p {
    margin-top: 5px;
}

.timeline-horizontal li.event::before {
    color: #cbddf2 !important;
}

.timeline-horizontal li.event::after {
    box-shadow: 0 0 0 4px #cbddf2 !important;
    background: #cbddf2 !important;
}

.timeline-horizontal {
    border-top: 1px solid #000 !important;
    border-radius: 0 !important;
}

.timeline-horizontal li.event {
    display: block;
    width: 33.33%;
    float: left;
    padding: 0 20px !important;
}

.timeline-horizontal li.event::before {
    font-size: 1.1em !important;
    top: -25px !important;
    left: calc(50% - 5px) !important;
    color: #cbddf2 !important;
}

.timeline-horizontal li.event::after {
    top: -25px !important;
    left: 50% !important;
}

.timeline-horizontal {
    border-left: none;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.timeline-horizontal li.event:not(:last-child) {
    border-color: #fff !important;
    border-bottom: none;
}

.item .row {
    height: 100% !important;
}

.item .row .col-md-12 {
    height: 100% !important;
}

.item .row .col-sm-12 {
    height: 100% !important;
}

.features-panels .nav-tabs.nav-justified>li>a:hover {
    color: #99CC04 !important
}

.features-panels .nav-tabs.nav-justified>.active>a,
.features-panels .nav-tabs.nav-justified>.active>a:focus,
.features-panels .nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #99CC04 !important;
}

.features-panels .tab-content h3:after {
    background: #99CC04 !important;
}





.challenge-timeline {
    border-top-color: #99cc00 !important;
    border-top-width: 5px !important;
    margin-top: 40px;
}

.timeline::before {
    background-color: transparent;
}

.challenge-timeline li.event::after {
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: #03324e !important;
    -webkit-box-shadow: 0 10px 5px rgba(169, 169, 169, 0.1) !important;
    -moz-box-shadow: 0 10px 5px rgba(169, 169, 169, 0.1) !important;
    box-shadow: 0 10px 5px rgba(169, 169, 169, 0.1) !important;
    top: -70px !important;
    left: calc(50% - 25px) !important;
}

.challenge-timeline li.event h4 {
    top: -58px;
    left: calc(50% - 8px);
    position: absolute;
    z-index: 999;
    font-size: 2em !important;
    text-align: center;
    color: white !important;
}

.challenge-timeline li.event {
    margin-top: 25px;
}

.challenge3-timeline li.event {
    width: 50% !important;
}

input[type="radio"] {
    margin-top: 2px;
}

.img-wrap {
    display: block;
    background-size: cover;
    background-position: center;
    height: 250px;
    width: 100%;
    border-radius: 20px;
    border: 10px solid #00427a;
}

.baseline {
    font-family: 'Geogrotesque Md', sans-serif;
    font-weight: 700;
    letter-spacing: 0.045em;
}

#header-bar {
    width: 100% !important;
    flex-grow: 0 !important;
    position: relative !important;
    background-color: white;
    -webkit-filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

#header-bar .footer-green {
    width: 100% !important;
    display: block !important;
    position: absolute !important;
    background: #99cc00 !important;
    height: 45px !important;
    top: 0 !important;
    z-index: 1;
}

#header-bar .footer-green::before {
    content: " ";
    display: inline-block;
    background-color: #fff;
    width: 100%;
    height: 69px;
    z-index: 3;
    position: absolute;
    right: 100%;
    top: 0;
}

#header-bar .footer-green::after {
/*    content: " ";*/
    display: inline-block;
    background-color: #99cc00;
    width: 100%;
    height: 45px;
    z-index: 3;
    position: absolute;
    left: 100%;
    top: 0;
}

#header-bar .container-full {
    background: white !important;
    height: 100% !important;
    bottom: 0 !important;
    z-index: 0;
}

#header-bar img {
    height: 70px !important;
    float: right !important;
    position: absolute;
    left: 0;
    top: -0.525px;
    z-index: 1;
}

#header-bar img::after {
    content: " ";
    display: inline-block;
    background-color: #99cc00;
    width: 100%;
    height: 40px;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

#header-bar .baseline {
    padding: 14px 0 0 180px;
    font-size: 1.0em;
}

#footer {
    width: 100% !important;
    flex-grow: 0 !important;
    position: relative !important;
    background-color: white;
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

#footer .footer-green {
    width: 100% !important;
    display: block !important;
    position: absolute !important;
    background: #99cc00 !important;
    height: 50px !important;
    top: -60px !important;
    z-index: 1;
}

#footer .footer-green::before {
    content: " ";
    display: inline-block;
    background-color: #99cc00;
    width: 100%;
    height: 50px;
    z-index: 3;
    position: absolute;
    right: 100%;
    top: 0;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

/*#footer .footer-green::after {
    content: " ";
    display: inline-block;
    background-color: #fff;
    width: 100%;
    height: 30px;
    z-index: 3;
    position: absolute;
    left: 100%;
    top: -30px;
}*/

.justify-content-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#footer .container-full {
    background: white !important;
    height: 100% !important;
    bottom: 0 !important;
    z-index: 0;
}

#footer img {
    height: 80px !important;
    position: absolute;
    right: -16px;
    top: -90px;
    z-index: 1;
}

#footer .baseline {
    padding: 16px 220px 0 0;
    font-size: 18px;
}

.if-not-error {
    width: 100% !important;
    border-radius: 4px !important;
}


.checkbox_form {
    line-height: 30px !important;
}

/* ==========================================================================
   2. SMARTWIZARD
=========================================================================== */

#smartwizard {
    background-color: white;
    width: 100%;
    border-radius: 25px !important;
}

.sw-theme-circles>ul.step-anchor>li>a {
    background: #fff;
    width: 75px;
    height: 75px;
    text-align: center;
    font-weight: 900;
    font-family: Titillium Web,sans-serif, sans-serif;
    padding: 22px 0;
    border-radius: 50%;
    text-decoration: none;
    outline-style: none;
    z-index: 99;
    color: #bbb;
    line-height: 1;
    font-size: 2em;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sw-theme-circles>ul.step-anchor>li.clickable>a:hover {
    color: #fff !important;
}

.sw-theme-circles>ul.step-anchor>li.active>a {
    border-color: #003366;
    color: #fff;
    background: #003366;
}

.sw-container {
    width: 100%;
}

.sw-btn-group {
    width: 100%;
}

.sw-btn-group .btn {
    margin: 0;
}

.btn-toolbar>.btn-group {
    margin-left: 0;
}

.sw-toolbar {
    padding: 0 !important;
}

.sw-btn-group .sw-btn-next {
    float: right !important;
}

.file-drop-zone {
    margin: 0;
}

.file-preview {
    padding: 25px;
    border-radius: 15px;
}

.file-drop-zone {
    border-radius: 10px;
}

.file-drop-zone.clickable {
    background-color: #f5f5f5;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.file-drop-zone.clickable:hover {
    border: inherit;
    background-color: #fff;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.file-drop-zone.clickable .file-drop-zone-title {
    font-weight: 500;
    font-size: 1.2em;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.file-drop-zone.clickable:hover .file-drop-zone-title {
    color: black;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.file-preview .fileinput-remove {
    color: #e74c3c;
    line-height: 20px;
}

.file-thumbnail-footer {
    height: auto !important;
}

.krajee-default.file-preview-frame {
    margin: 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    padding: 6px;
    float: left;
    text-align: center;
    width: calc(100% - 16px) !important;
}

.krajee-default.file-preview-frame:not(.file-preview-error):hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.krajee-default.file-preview-frame .kv-file-content {
    width: auto;
    overflow: visible;
    min-height: fit-content;
}

.krajee-default .file-thumb-progress .progress,
.krajee-default .file-thumb-progress .progress-bar {
    height: auto !important;
}

.krajee-default .file-thumb-progress {
    position: relative !important;
    margin-top: 15px !important;
    top: initial !important;
    left: initial !important;
    height: auto !important;
}

.krajee-default .file-preview-other-frame {
    margin: 0 auto !important;
}

.kv-upload-progress {
    display: none !important;
}

.file-preview-image {
    width: auto !important;
    height: 350px !important;
    max-width: auto !important;
    max-height: auto !important;
}

.file-footer-caption {
    margin-bottom: 0 !important;
}

.file-upload-indicator {
    display: none;
}

.sw-theme-circles>ul.step-anchor:before {
    bottom: inherit;
    background-color: #99cc00;
}

#smartwizard ul {
    width: 100%;
    padding: 0 20%;
    display: flex;
    justify-content: center;
}

.birth_select {
    height: 57px;
}

input[type="radio"] {
    display: inline-block;
    margin-top: 3px;
    width: auto;
}

.progress {
    height: 30px;
}

.progress-bar {
    font-size: 16px;
    line-height: 30px;
    color: #00427a;
}

.progress-bar-success {
    background-color: #99cc00;
}

.etappe_h {
    line-height: 35px;
    margin-bottom: 0px;
}

/* ==========================================================================
   3. COOKIE GDPR CONSENT
=========================================================================== */

/*button#ihavecookiesBtn {
    margin-left: 0 !important;
    outline: none !important;
}

// Cookie Dialog
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    font-family: system-ui;
    z-index: 999;
    border-radius: 20px;
    color: #69696e;
}

#gdpr-cookie-message h4 {
    font-family: Titillium Web,sans-serif, sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

#gdpr-cookie-message h5 {
    font-family: Titillium Web,sans-serif, sans-serif;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
}

#gdpr-cookie-message p,
#gdpr-cookie-message ul {
    color: #69696e;
    font-size: 15px;
    line-height: 1.5em;
    font-family: Titillium Web,sans-serif, sans-serif;
    padding-left: 0;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}

#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}

#gdpr-cookie-message a {
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
    transition: all 0.3s ease-in;
}

button#gdpr-cookie-advanced {
    background: transparent;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message label {
    font-weight: 400;
    font-size: 0.8em;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: left;
    margin-top: 3px;
    margin-right: 6px;
}*/

/**********************************************************************/
/** COOKIE POLICY COLORS */
/**********************************************************************/

/*#gdpr-cookie-message h4,
#gdpr-cookie-message h5 {
    color: #00427a;
}

#gdpr-cookie-message a {
    color: #99cc00;
}

#gdpr-cookie-message a:hover {
    border-bottom-color: #99cc00;
}

#gdpr-cookie-message button {
    border: 3px solid #99cc00;
    background-color: #99cc00;
    color: #fff !important;
    font-family: Titillium Web,sans-serif;
    text-transform: uppercase;
    padding: 8px 20px 4px 20px !important;
    border-radius: 15px !important;
    line-height: auto !important;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

#gdpr-cookie-message button:hover {
    background-color: #8edb51;
    color: white !important;
    border: 3px solid #8edb51;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

button#gdpr-cookie-advanced {
    background: transparent;
    color: #99cc00 !important;
    margin: 15px 0 0 15px;
}

.witdh-body-wizard {
    width: 80%;
    margin: auto;
}*/

/**********************************************************************/
/** CROPPER + CANVAS */
/**********************************************************************/

.bwx-img-container {
    /* Never limit the container height here */
    max-width: 100%;
    margin-bottom: 40px;
}

.bwx-img-container img {
    /* This is important */
    max-width: 100%;
    width: 100%;
}

.bwx-image {
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 14px;
    background: white;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.bwx-seperator-lg {
    height: 100px !important;
}

.bwx-seperator-xs {
    height: 20px !important;
}

.bwx-preview-seperator {
    height: 100px !important;
    background-color: white !important;
}

.bwx-box {
    box-sizing: border-box;
    background: #99cc00;
    padding: 30px;
}

.bwx-text-white {
    color: white !important;
}

.bwx-text-blue {
    color: #00427a !important;
}

.bwx-text-underline {
    text-decoration: underline !important;
}

.bwx-btn-blue {
    background-color: #00427a !important;
    border-color: #00427a !important;
}

#bwx-searchbar {
    border: 1px solid #ccc;
    height: 53px;
    top: 1px;
    border-radius: 0;
}

.easy-autocomplete-container ul {
    margin-top: 55px;
    border-top: 0;
}

.bwx-searchbox-result {
    clear: both;
    height: 40px;
    padding: 10px;
}

.bwx-searchbox-flag {
    float: left;
    margin-right: 10px;
}

.bwx-searchbox-flag img {
    max-height: 20px;
}

.bwx-searchbox-name {
    float: left;
}

.bwx-searchbox-runnernr {
    float: right;
}

#bwx-photo {
    position: absolute;
    top: -10000px;
    width: 100%;
}

.cropper-bg {
    background: none !important;
}

.cropper-modal {
    background: #00427a !important;
    opacity: 0.7;
}

.cropper-line {
    background-color: #00427a !important;
    opacity: 1;
}

@font-face {
    font-family: "AGGeogrotesque";
    src: url("/bwx/fonts/AG01-Bd.eot");
    /* IE9 Compat Modes */
    src: url("/bwx/fonts/AG01-Bd.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */
        url("/bwx/fonts/AG01-Bd.woff2") format("woff2"),
        /* Modern Browsers */
        url("/bwx/fonts/AG01-Bd.woff") format("woff"),
        /* Modern Browsers */
        url("/bwx/fonts/AG01-Bd.ttf") format("truetype"),
        /* Safari, Android, iOS */
        url("/bwx/fonts/AG01-Bd.svg#font") format("svg");
    /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

.bwx-h4 {
    margin-bottom: 18px;
}

#bwx-textarea {
    max-width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    font-weight: bold;
}

.bwx-form-color {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #bbb;
    position: relative;
    top: 8px;
}

.bwx-form-color:hover {
    border: 3px solid #f8f8f8 !important;
}

#bwx-form-blue {
    background: #00427a;
}

#bwx-form-white {
    background: white;
}

#bwx-form-green {
    background: #99cc00;
}

.bwx-tutorial {
    width: 30%;
    right: 40px;
    position: absolute;
    text-align: center;
    bottom: 0;
}

.bwx-tutorial em {
    display: block;
    text-align: center;
    font-style: normal;
    color: #00427a;
}

.bwx-tutorial img {
    display: block;
    clear: both;
    float: right;
    margin-top: 20px;
    max-width: 50px !important;
}

#bwx-canvas-reset-placeholder {
    display: block;
    margin-top: 10px;
}

.bwx-btn-facebook {
    background-color: #4267b2 !important;
    border-color: #4267b2 !important;
    margin-bottom: 14px;
}

.bwx-btn-facebook:hover,
.bwx-btn-facebook:active {
    background-color: #365899 !important;
    border-color: #365899 !important;
}

.bwx-btn-twitter {
    background-color: #4ab3f4 !important;
    border-color: #4ab3f4 !important;
    margin-bottom: 14px;
}

.bwx-btn-twitter:hover,
.bwx-btn-twitter:active {
    background-color: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.cropper-container {
    max-width: 100% !important;
    margin: 0 auto;
}

.canvas-container {
    margin: 0 auto;
    -webkit-box-shadow: 0 0 45px rgba(169, 169, 169, 0.25) !important;
    -moz-box-shadow: 0 0 45px rgba(169, 169, 169, 0.25) !important;
    box-shadow: 0 0 45px rgba(169, 169, 169, 0.25) !important;
}

.sw-container {
    min-height: auto !important;
}

iframe {
    border-radius: 15px !important;
}

.negative-margin {
    margin-top: -75px;
}




/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/** Index 2 */
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
/**********************************************************************/

.bwx-card {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 15px;
}

.bwx-card-header {
    background-position: center center;
    background-size: cover;
    background-color: #aaa;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.bwx-card-left {
    background-position: center center;
    background-size: cover;
    background-color: #aaa;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.bwx-card-header-xs {
    height: 100px;
}

.bwx-card-header-sm {
    height: 150px;
}

.bwx-card-header-md {
    height: 300px;
}

.bwx-card-header-lg {
    height: 450px;
}

.bwx-card-body {
    padding: 30px;
    position: relative;
}

.bwx-card .bwx-card-header img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.hero-xs {
    height: 300px !important;
}

.section_padding {
    padding-bottom: 20px !important;
    overflow: none !important;
}

.disable {
    opacity: 0.5 !important;
    cursor: default !important;
}

.social_logo {
    height: 50px !important;
    width: 50px !important;
    background-color: #99cc00 !important;
    border-bottom: 3px solid #5f8f38 !important;
}

.fa_social {
    font-weight: 900 !important;
    font-size: 29px !important;
    color: white !important;
    margin: 10px 13px !important;
}

.fa-facebook {
    margin: 11px 16px !important;
}

.border-radius {
    border-radius: 15px !important;
}

.challenge-timeline-large {
    margin-top: 0;
    padding: 0;
}

.challenge-timeline-large li.event {
    padding-left: 65px !important;
    text-align: left !important;
    width: 50% !important;
}

.challenge-timeline-large li.event i,
.challenge-timeline-large li.event h4 {
    position: absolute;
    top: -15px;
    left: 0;
}

.challenge-timeline-large li.event h4 {
    width: 50px;
    background-color: #03324e;
    padding: 12px 0 8px 0;
    border-radius: 50px;
}

.challenge-timeline-large li.event::after {
    display: none;
}

.challenge-timeline-large.timeline-horizontal li.event {
    width: 100% !important;
}

.challenge-timeline-large .event {
    width: 100% !important;
    margin-bottom: 30px !important;
    margin-top: 0 !important;
}

.challenge-timeline-large.timeline-horizontal {
    border-top: none !important;
}

.notes {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
    background-color: #00427a;
    padding: 15px 5px 5px 5px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-weight: 700;
}

.inzending {
    position: relative;
    display: block;
}

.mvd-img {
    background: #92ba4b;
    background-image: url('../img/ag-mvd-v3.jpg') !important;
}

.wielrennen-img {
    background: #92ba4b;
    background-image: url('../img/challenge8/header-visual.jpg') !important;
}

.video {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 0px !important;
}

.MS-controls button {
    font-size: 2.5em !important;
}

#block6 img,
#block7 img,
#block8 img {
    border-radius: 15px;
}

.page-header {
    margin-top: 0;
}

/**********************************************************************/
/** MEDIA QUERY */
/**********************************************************************/

@media only screen and (min-width: 569px) {
    #header-bar img{
        height: auto !important;
    }
}

@media only screen and (min-width: 991px) {
    .m-x {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }
}

@media only screen and (max-width: 1199px) {
    .image-fix-card-header-home {
        height: 325px !important;
    }
}

@media only screen and (max-width: 1000px) {
    .challenge-timeline {
        margin-top: 0;
        padding: 0;
    }

    .challenge-timeline li.event {
        padding-left: 65px !important;
        text-align: left !important;
        width: 50% !important;
    }

    .challenge-timeline li.event i,
    .challenge-timeline li.event h4 {
        position: absolute;
        top: -15px;
        left: 0;
    }

    .challenge-timeline li.event h4 {
        width: 50px;
        background-color: #03324e;
        padding: 10px 0;
        border-radius: 50px;
    }

    .challenge-timeline li.event::after {
        display: none;
    }

    .challenge-timeline.timeline-horizontal li.event {
        width: 100% !important;
    }

    .event {
        width: 100% !important;
        margin-bottom: 20px !important;
        margin-top: 0 !important;
    }

    .timeline-horizontal {
        border-top: none !important;
    }

    .horizontal-container {
        margin: 50px 50px 50px 50px !important;
    }

    .event-background {
        width: 100% !important;
    }
}

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

    .hero,
    .hero.height-800 {
        height: 700px !important;
    }

    .y-middle {
        display: block !important;
    }

    .navbar li>a:not(.btn-nav) {
        border: none !important;
    }

    .image-fix-card-header-home {
        height: 225px !important;
    }

    .right-input {
        margin-top: 15px;
        padding-left: 0;
    }

    .character {
        width: 50%;
        float: left;
    }

    .right-content {
        margin-top: 50px;
    }

    .bwx-card-left {
        background-position: center center;
        background-size: cover;
        background-color: #aaa;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0px !important;
    }

    .negative-margin {
        margin-top: 50px;
    }

    .bwx-card {
        margin-bottom: 25px;
    }

    .bwx-card .col-md-5 {
        padding-right: 15px !important;
    }

    .bwx-card .col-md-7 {
        padding-left: 15px !important;
    }

    #block1 .card-body.p-a {
        padding: 0 !important;
    }

    .img-abs {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 25px;
        display: block;
        width: 100%;
    }

    #block4.p-y-md {
        padding-top: 15px !important;
        padding-bottom: 0 !important;
    }

    .game-container .wheel-anchor {
        width: 50vw;
    }

    .game-container .wheel-title text {
        font-size: 3em !important;
    }

    .wheel-anchor {
        max-width: 450px;
        margin: 50px auto;
    }

}

@media only screen and (max-width: 767px) {
    .month {
        padding: 0 15px !important;
        margin: 15px 0;
    }

    h1 {
        font-size: 4em !important;
    }

    h2 {
        font-size: 2.5em !important;
    }

    ul.timeline:before {
        left: 40px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
        padding: 20px;
    }

    ul.timeline>li>.timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
    }

    ul.timeline>li>.timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline>li>.timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }

    .spacing-between {
        padding-bottom: 30px;
    }

    .navbar-collapse {
        width: 100%;
        text-align: right;
        float: right;
    }

    .mvd-img {
        background: #92ba4b;
        background-image: url('../img/ag-mvd-v3-new.jpg') !important;
    }

    #block4 .p-a-md {
        padding: 15px !important;
    }

    .game-container {
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .game-container .wheel-title text {
        font-size: 5em !important;
    }

    .game-container form {
        margin-bottom: 0;
    }

    .game-container form .bwx-card .bwx-card-body {
        padding: 15px;
    }

    .game-container form input:not([type=checkbox]), 
    .game-container form select {
        height: unset !important;
        padding: 10px 13px !important;
    }

    .game-container form .checkbox label:before {
        width: 20px;
        height: 20px;
    }

    .game-container form .checkbox label:after {
        top: 2px;
        left: 7px;
        border-width: 0 2px 2px 0;
        width: 6px;
        height: 13px;
    }

    .game-container form .checkbox label {
        padding: 2px 0 0 30px !important;
    }

    .game-container .wheel-anchor {
        width: 85vw;
    }

    #customer-spin-the-wheel-game .container {
        padding-bottom: 0 !important;
        padding-top: 15px !important;
    }

    #customer-spin-the-wheel-game .swoosh {
        position: absolute;
        height: auto;
        bottom: -30px;
        right: -30px;
        z-index: -1;
        width: 100%;
    }

    .main {
        padding: 0 !important;
    }

}

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

    #responsive-padding1 {
        padding-top: 90px;
    }
    
    .baseline {
        display: none;
    }

    .challenge-timeline.timeline-horizontal li.event {
        width: 100% !important;
    }

    .p-t-lg {
        padding-top: 80px !important;
    }

    .challenge-timeline li.event {
        padding-left: 65px !important;
        text-align: left !important;
        width: 100% !important;
    }

    /*#smartwizard {
        padding: 15px !important;
    }

    .sw-btn-prev {
        text-indent: -9999px;
        line-height: 0;
    }

    .sw-btn-prev::after {
        content: "\2039";
        text-indent: 0;
        display: block;
        line-height: initial;
    }

    .sw-btn-next {
        text-indent: -9999px;
        line-height: 0;
    }

    .sw-btn-next::after {
        content: "\203A";
        text-indent: 0;
        display: block;
        line-height: initial;
    }

    .register-btn {
        text-indent: -9999px;
        line-height: 0;
    }

    .register-btn::after {
        content: "\2192";
        text-indent: 0;
        display: block;
        line-height: initial;
    }*/

    /*.navbar-brand img {
        max-height: 100px !important;
    }*/

    .hero {
        height: auto !important;
    }

    .hero .vertical-center-rel {
        top: 0 !important;
        transform: translateY(0) !important;
    }

    .file-preview-image {
        width: auto !important;
        height: auto !important;
    }

    .sw-theme-circles>ul.step-anchor>li>a {
        width: 25px;
        height: 25px;
        padding: 4px 0;
        font-size: 1em;
    }
}

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

    .pointer {
        bottom: 4% !important;
        right: 15% !important;
        width: 18px !important;
    }

    .title-size-mobile {
        font-size: 12px;
    }

    .title-size-mobile-ch1 {
        font-size: 60px !important;
    }

    .sw-theme-circles>ul.step-anchor>li:first-of-type {
        margin-left: 0;
    }

    .sw-theme-circlees>ul.step-anchor>li {
        margin-left: 20px;
    }

    .mounth_phone_responsivz {
        width: 170px !important;
        margin-left: 15px !important;
    }

    .radio-button-phone {
        margin-left: -51px !important;
    }

    .button-wizard-phone {
        width: 100%;
        margin-top: 10px !important;
    }
}
