/* Color variables */

.tile > input{ /* HIDE RADIO */
  visibility: hidden; /* Makes input not-clickable */
  position: absolute; /* Remove input from document flow */
}
.tile > input + img{ /* IMAGE STYLES */
  cursor:pointer;
  border:2px solid transparent;
}
.tile > input:checked + img{ /* (RADIO CHECKED) IMAGE STYLES */
  border:2px solid #7AA0CC;
  box-shadow: 2px 2px 10px grey;
}

.tile > input + div{ /* IMAGE STYLES */
  cursor:pointer;
  border:2px solid transparent;
}
.tile > input:checked + div{ /* (RADIO CHECKED) IMAGE STYLES */
  border:2px solid #f00;
   box-shadow: 5px 5px 10px grey;
}
.tile ._qmaze-option-tile[checked="checked"] + div {
	border:3px solid #7AA0CC;
}

.qmaze-option-input[readonly]{
    background-color:#bbb !important;}

.Qmaze492, .Qmaze490 {
	display:inline-block;
}

.Qmaze434 { display:inline-block;}

.slider {
 -webkit-appearance: none;
  width: 60%;
  height: 25px;
  background: #b1b1c1;
  outline: none;
  opacity: 0.75;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #00006D;
  cursor: pointer;
}

.slider-value { 
    display: inline-block;
    vertical-align:top;
    margin-left:4vw;
    
    }

:root {
    --black: #000;
    --qmaze_purple: #002c73;
    --grey: #86918f;
    --white: #fff;
    --orange: #f5a662;
    --light_grey: #d9d9d9;
    --yellow: #fce3b3;
    --dark_grey: #4c4d4c;
}

* {
	margin: 0;
	padding: 0;
}

html, body {
    height: 100%;
    font-family: "Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans","Arial","sans-serif";
    font-weight:400;
    background-color: var(--white);
    scroll-behavior: smooth;
    font-size: 1rem;
}

h1,h2,h3,h4{
   font-family: 'Exo', sans-serif;
}

/* Navigation Bar */
.navbar{
    /* position:fixed; */
    height:8vh;
    font-size:18px;
    width:100vw;
    z-index:20;
    display:flex;
    justify-content:space-between;
}

.navbar img{
    height:100%
}

.navbar .navbar-nav{
    margin-left: 2rem;
}

@media only screen and (max-width: 1440px){
    .navbar .navbar-nav{
        margin-left: 0.5rem;
        background-color: var(--white);
    }
}

.navbar .navbar-nav .nav-item{
    display:inline-block;
}

.navbar .navbar-nav .nav-item .nav-link{
    color:#000;
    text-decoration:none;
    margin:10px;
}

@media only screen and (max-width: 1440px){
    .navbar .navbar-nav .nav-item .nav-link{
        padding: 3px;
        margin: 0px;
        font-size: 1rem;
        font-weight: 400;
    }
}

.navbar .navbar-nav .nav-item .nav-link:hover{
    color:var(--blue);
}

.navbar .navbar-nav .nav-item select{
    font-size:1rem;
    border:none;
    outline:0px
}

.home-title{
    text-align: center;
    margin-top:80px;
    font-weight: bold;
    font-size: 5rem;
    text-shadow: 6px 6px 3px #7f0043;
    color: var(--white);
}

/* Debug Class */
.dni{
    display: none;
}

ul, ol{
   padding-left:15px; 
}

a{
   color: var(--black);
   text-decoration:none;
}

a:hover{
   text-decoration:none;
}

a:hover,a:active,a:focus {
	outline: 0;
}

/* footer */
footer{
    /* position: fixed; */
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--grey);
    color: var(--white);
    text-align: center;
}

.footer {
    padding-top: 25px;
}

.fa{
  padding-top: 10px; 
  width: 2rem;
  text-align: center;
  text-decoration: none;
}

footer .text-muted{
    color: var(--white);
}

footer .container{
    width: 100vw;
    margin: 0px;
    padding: 0px; 
}

@media only screen and (max-width: 1440px){
    .card .card-img{
        height:40vh; 
    }
}

@media only screen and (max-width: 568px){
    .card .card-img{
        width:96vw;
        height: 28vh;
    }
}

.c-white{
    color: var(--white);
}

.c-white:hover{
    color: var(--white);
    text-decoration: underline;
}

.card .card-img-overlay{
    top:30%;
    display: flex;
}

.card img {
    border-radius: 0px;
}

@media only screen and (max-width: 1440px){
    .card .card-img-overlay{
        top:22%;
    }
}

@media only screen and (max-width: 1080px){
    .headline{
    font-size: 0.70rem;
    }   
}

@media only screen and (max-width: 1080px){
    .size-footer{
    font-size: 1.25rem;
    }
}

@media only screen and (max-width: 1310px){
    .img-footer{
    width: 14vw;
    height: 5vh;
    }
}

/* Hero / banner */
.hero{
    text-align:center;
    width:100vw;
    background-image:url("../Images/grey-background.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    box-sizing:border-box;
}

.hero .hero-title{
    font-size:70px;
    color: var(--black);
    padding:20px 0px
}

.hero .hero-slogan{
    color: var(--black);
    margin-bottom: 20px;
}

.hero button{
    cursor:pointer;
    background-color: var(--black);
    width:10rem;
    border:none;
    padding:8px 0px;
    margin:10px 0px 30px 0px;
    border-radius:20px
}

.hero button:hover{
    background-color: var(--white);
}

.hero button a{
    text-decoration:none;
    color: var(--white);
    font-size:14px
}

.hero button a:hover{
    color: var(--black);
}

.logo-container {
    padding-top: 25px;
    display: flex;
    align-content: center;
    justify-content: center;
}

/* Bootstrap Card Styling */
.card{
    flex-direction:column;
    border:1px solid var(--light_grey);
    /* border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px; */
    margin-top: 20px;
    border-radius:0px;
}

.card:hover{
    filter: drop-shadow(4px 4px 5px #d8d8d8);
}

.card .image img{
    width:100%;
    box-sizing:border-box;
    object-fit: cover;
    height: 20vh;
}

.card .card-img{
    height:35vh;
    max-height:40vh;
    box-sizing:border-box;
    object-fit:cover;
    width:99vw;
    border-radius:none;
    filter:brightness(45%);
}

.card .card-body{
    padding:10px 30px
}

.card .card-body .card-title{
    font-size:1.5rem;
    font-weight:bold;
    margin-bottom:1rem;
    margin-top: 0.5rem;
}

@media only screen and (max-width: 768px){
    .card .card-body .card-title{
        font-size:1.0rem;
    }
}

.card .card-body .card-content{
    margin-bottom:2rem
}

.card .card-body .button{
    text-align:center;
    display:block;
    background-color: var(--yellow);
    width:50%;
    padding:5px 0px;
    margin-bottom:10px;
    border-radius:20px;
    cursor:pointer;
    transition: 0.25s;
    font-size: 1.10rem;
}

.card .card-body .button:hover{
    background-color: var(--orange);
}

.card .card-body .button a{
    text-decoration:none;
    color: var(--black);
}

.card-wrapper{
    padding:40px 10px;
    display:flex;
}

.card-wrapper .cards{
    height:auto;
    background-color: var(--white);
    margin:auto;
    border:1px solid rgba(var(--black),0.1)
}

.card-wrapper .cards .card-body .btn-card{
    background-color: var(--qmaze_purple);
    color: var(--white);
}

.card-wrapper .cards .card-body .btn-card:hover{
    background-color:rgba(var(--black),0.1);
    color: var(--black);
}

.card-deck{
    margin: 20px 0px 120px 0px;
    display: grid;
    grid-template-columns: auto auto auto auto;
}

@media only screen and (max-width: 1080px){
    .card-deck{
        grid-template-columns: auto auto;
    }
}

@media only screen and (max-width: 540px){
    .card-deck{
        grid-template-columns: auto;
    }
}

/* Bootstrap testing */
.card-position{
    display: flex;
}

.content-section{
    background-color:#b3196b;
    color: var(--white);
    font-size: 1rem;
    padding: 20px 0px;
    opacity: 0.9;
}

.qmaze-pagesection .qmaze-variable .variableObject .Qmaze299 .qmaze-form-group .qmaze-form-label{
    padding:0px 18px;
}

/* Option buttons  */
.qmaze-optionpanel .tile .qmaze-option-tile{ 
    display: flex;
    align-items: center;
    opacity: 0;
}

.qmaze-optionpanel .tile .qmaze-option-tile:hover, 
.qmaze-optionpanel .tile img{
    cursor:pointer;
}

.qmaze-option-tilech{
    margin-right: 1rem;
}

/* Form checkbox */
.qmaze-form-group{
    margin-left: 1.20rem;
}

.qmaze-form-label{
    margin-left: 0.65rem;
}

.btn-primary:hover{
    background-color: var(--dark_grey);
}

/* H3 titles*/
.qmaze-pagesection .qmaze-variable .variableHeader .qmaze-h3{
    padding: 1px 10px;
}

/* Background Color Element Configure Page */
.qmaze-pagesection .qmaze-variable{
    background-color: #f1f0ee;
    padding: 10px;
}

.qmaze-pagesection .qmaze-variable:hover{
    background-color: #93bff8;
    animation: 2s;
    cursor: pointer;
}

.qmaze-variable:after {
    content : "";
    position: absolute;
    padding-top: 10px;
    left: 2.5%;
    height: 1px;
    width: 95%; 
    border-bottom: 1px solid gray;
}

.qmaze-variable:last-child:after {
    border: 0;
}

/**********************************Configure Page CSS***********************************/
 .qmaze-optionpanel .form-group .qmaze-option-button{
    color: var(--white); /* Replace color with Hexcode (bv. #7f0043) or RGBA (for example - rgba(255, 0, 255, 0.5) */
    background-color: var(--qmaze_purple); /* Replace background-color with Hexcode (for example - #7f0043) or RGBA (for example - rgba(255, 0, 255, 0.5) */
    border:none;
    width: 10vw; 
    padding: 0.5rem;
    box-shadow:0px,8px,15px rgba(var(--qmaze_purple),0.1);
    outline:none;
    transition:all 0.3s ease 0s; 
    border-radius:20px /* The higher the pixels, the rounder the effect you get */
}

.qmaze-optionpanel .form-group .qmaze-option-button:hover{
    background-color: var(--light_grey); /* Vul hier een kleur met RGBA (bv. rgba(255, 0, 255, 0.5) inul hier een kleur met Hexcode (bv. #7f0043) of RGBA (bv. rgba(255, 0, 255, 0.5) in */
    cursor:pointer;
    box-shadow:0px 9px 20px rgba(var(--qmaze_purple),0.4); /* Replace color with RGBA (for example - rgba(255, 0, 255, 0.5) */
    color: var(--qmaze_purple);
}

.qmaze-optionpanel .dropdown-head{
    width: 96%;
    margin: auto;
    margin-bottom: 20px;
    margin-left: 17px; 
}

.qmaze-optionpanel .qmaze-option-checkbox{
    margin-right: 10px;
}

.qmaze-variable{
    background-color: var(--light_grey); 
}

.qmaze-optionpanel img{
    width: 200px;
    height: 200px;
} 

/* structuur Tiles  */
.Qmaze295{
    display: inline-block;
}

.card-qmaze{
    font-size: 2rem;
    font-weight: 500;
    background-color: #002c73;  
    color: var(--white);
    padding: 20px;
}

@media only screen and (max-width: 1080px){
    .card-qmaze{
        font-size: 1.5rem;
    }
}

.card-qmaze-main{
    border-bottom-left-radius: 1rem;
    background-image: linear-gradient(to right, var(--qmaze_purple) , var(--white));
}

@media only screen and (max-width: 568px){
    .card-qmaze-main{
        margin-top: 1rem;
        border-top-left-radius: 1rem;
    }
}

@media only screen and (max-width: 1220px){
    .card-qmaze-main-title{
        margin-left: 35px;
    }
}

.style-offerte{
    display: flex;
    height: 3.5vh;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0.75rem;
}

#qmaze-navigation-container{
    display: flex;
    margin-top: 0.30rem;
}

@media only screen and (max-width: 1220px){
    .font-size-res{
        font-size: 1rem;
    }
}

.qmaze-list-option, .qmaze-option-tile{
    display: inline-block;
    border: #fff 1px solid;
    margin: 0 0.25rem;
    height: 3rem !important;
    width: 3rem !important;
    border: none;
    border-radius: 10px;
}

.Qmaze302 .tile{
    display: flex;
    align-items: baseline;
}

.Qmaze302 .tile .qmaze-option-tile{
    margin-right: 1rem;
}

@media only screen and (max-width: 568px){
    .copy-styling{
        font-size: 0.5rem;
    }
}

/*************************** BUTTONS TEMPLATE *****************************/
/* Default Settings for Small, Standard Qmaze Button & Large Button (All Settings are Adjustable) */
.qmaze-button, .qmaze-button-small, .qmaze-button-large{
    color: var(--white); /* Replace color with Hexcode (bv. #7f0043) or RGBA (for example - rgba(255, 0, 255, 0.5) */
    background-color: var(--qmaze_purple); /* Replace background-color with Hexcode (for example - #7f0043) or RGBA (for example - rgba(255, 0, 255, 0.5) */
    border:none; 
    width: 12vw; 
    padding: 0.38rem;
    box-shadow:0px,8px,15px rgba(var(--black),0.1);
    outline:none;
    transition:all 0.3s ease 0s; 
    border-radius:17px /* The higher the pixels, the rounder the effect you get */

    /* Adjust to liking:

    font-family: , for example(font-family: 'Roboto';)
    font-size:  , for example(font-size: 1rem;)
    text-transform: , for example(text-transform: uppercase;)
    letter-spacing:  , for example(letter-spacing: 2.5px;)
    font-weight: , for example(font-weight: 500;) */
}

.qmaze-button:hover, .qmaze-button-small:hover, .qmaze-button-large:hover{
    background-color: var(--light_grey); /* Vul hier een kleur met RGBA (bv. rgba(255, 0, 255, 0.5) inul hier een kleur met Hexcode (bv. #7f0043) of RGBA (bv. rgba(255, 0, 255, 0.5) in */
    cursor:pointer;
    box-shadow:0px 9px 20px rgba(var(--qmaze_purple),0.4); /* Replace color with RGBA (for example - rgba(255, 0, 255, 0.5) */
    color: var(--qmaze_purple)
}

/* Advanced Settings Small Button */
.qmaze-button-small{
    padding: 0.25rem;
    border-radius:12px;
    width: 8vw; 
}

@media only screen and (max-width: 1440px){
    .qmaze-button-small{
        font-size: 0.80rem;
        width: 10vw;
    }
}

@media only screen and (max-width: 1080px){
    .qmaze-button-small{
        font-size: 0.80rem;
        width: 13vw; 
    }
}

@media only screen and (max-width: 768px){
    .qmaze-button-small{
        font-size: 0.70rem;
        width: 15vw;
    }
}

@media only screen and (max-width: 568px){
    .qmaze-button-small{
        font-size: 0.70rem;
        width: 24vw;
    }
}

/* Advanced Settings Large Button */
.qmaze-button-large{
    border-radius: 23px;
    width: 15vw;
}




