/*==================================================
 Main
==================================================*/

html{
    height: 100%;
}
body{
    position: relative;
    padding-bottom: 100px;
	min-height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    
/*
    background: #0995c8;
    background: -webkit-gradient(linear,left top,right bottom,from(#0995c8),to(#13b9e6));
    background: linear-gradient(to bottom right,#0995c8 0,#13b9e6);
*/
    
    background: #328eae;
    background: -webkit-gradient(linear,left bottom,right top,from(#328eae),to(#44bace));
    background: linear-gradient(to right top,#328eae 0,#44bace);
    
    background-attachment: fixed;
}



/*==================================================
 Form
==================================================*/

.form-horizontal .form-group {
    margin-left: 0px;
    margin-right: 0px;
	margin-bottom: 15px;
}

.has-feedback .form-control {
    padding-right: 40px !important;
}


label.radio,
label.radio-inline{
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
}


i.form-control-feedback{
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%);
}
select~ i.form-control-feedback{
    right: 10px !important;
    top: 12px !important;
}
.radio-inline~ i.form-control-feedback{
    top: 1px !important;
    transform: translateY(0);
    right: 10px !important;
}
.radio~ i.form-control-feedback{
    top: -3px !important;
    transform: translateY(0);
    right: 10px !important;
}


.has-success .radio,
.has-success .radio-inline,
.has-error .radio-inline,
.has-error .radio{
    color: #000;
}
.has-error h4{
    color: #e8423f;
}
/*
.has-error .radio-inline,
.has-error .radio,
*/
.has-error .form-control-feedback{
    color: #e8423f;
}
.radio ~ .glyphicon-ok,
.radio-inline ~ .glyphicon-ok{
    display: none !important;
}





.form-horizontal .checkbox{
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
}







.form-control{
    height: 58px;
/*    border: none;*/
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 11px 10px;
    background-color: #fff;
    font-size: 18px;
    line-height: 20px;
    color: #666;
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
}
.form-control:focus,
.has-success .form-control:focus{
    border-color: #66afe9;
/*    outline: 0;*/
/*
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
        2px 2px 8px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
        2px 2px 8px 0px rgba(0,0,0,0.15);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),
        2px 2px 8px 0px rgba(0,0,0,0.15);
*/
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
}
.has-success .form-control{
    border-color: #fff;
}
.has-success .form-control,
.has-success .form-control:focus,
.has-error .form-control,
.has-error .form-control:focus{
/*
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
*/
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
    box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
}





.form-control.fl_input{
/*    padding: 16px 10px 4px 15px;*/
    padding: 24px 10px 4px 15px;
}
.FlowupLabels .fl_label {
/*    top: 17px;*/
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
}
.FlowupLabels .fl_wrap.focused .fl_label,
.FlowupLabels .fl_wrap.populated .fl_label,
.no-js .FlowupLabels .fl_label {
/*    top: 5px;*/
    top: 8px;
    transform: translateY(0);
    font-size: 14px !important;
    font-weight: 300;
    color: #bbb;
}

.FlowupLabels .fl_wrap.focused .fl_label {
/*
    top: 5px;
    font-size: 14px !important;
*/
    font-weight: 400;
    color: #999;
}






.has-feedback .checkbox label~.form-control-feedback {
    top: 22px !important;
    left: -1px;
}
.form-horizontal .has-error .checkbox{
    border: 1px solid #a94442;
}





.form-horizontal .radio{
    padding-left: 20px;
}

#success_message,
.help-block{
    display: none !important;
}





/* Buttons */
.camp-btn{
    font-size: 20px;
    padding: 19px 15px;
    color: #fff;
    border-radius: 5px;
    background-color: #32b51a;
}
.camp-btn:after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-size: .8em;
}
.camp-btn:hover{
    background-color: #29cf0b;
}
.camp-btn:hover:after{
    right: 15px;
}



/*==================================================
 Campagne
==================================================*/

/* Kleuren */
.hsblauw{color: #009AE3;}
.hsgroen{color: #32b51a !important;}
.grijs{color: #999;}


/* Tekst */
h1, h2, h3, 
h4, h5, h6, p {
    line-height: 140%;
}
p{
    font-size: 18px;
    line-height: 160%;
}
p.sml{
    font-size: 16px;
}
p.xsml{
    font-size: 14px;
    line-height: 140%;
}
p.bullet{
    position: relative;
    margin-bottom: 5px;
    padding-left: 30px;
}
p.bullet.rood{
    color: #999;
}
p.bullet:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    color: #32b51a;
    font-weight: 400;
}
p.bullet.rood:before{
    content: '\f00d';
    color: #cb1515;
}
h3.vraag{
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: #009AE3;
}
.vraag_vve h3.vraag,
.vraag_postcode h3.vraag{
    margin-bottom: 0px;
}
.info{
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 20px;
    color: #0090e3;
}

/* Algemeen */
.header, .pagina-1, .pagina-2, .pagina-3, .footer{
    position: relative;
    z-index: 100;
}
.content-holder{
    margin-bottom: 75px;
    padding: 50px 40px;
    border-radius: 10px;
    background-color: #fff;
    
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
}
.progress-holder{
    position: relative;
    margin-bottom: 25px;
}
.progress-holder .prog{
    position: absolute;
    display: block;
    width: 1px;
    height: 6px;
    background-color: rgba(0,0,0,.2);
}
.prog.stap1{left: 25%;}
.prog.stap2{left: 50%;}
.prog.stap3{left: 75%;}
.progress{
    margin-bottom: 5px;
    height: 6px;
    border-radius: 3px;
}
.progress-bar{
    width: 25%;
    background-color: #F39200;
}
.progress-holder p{
    font-size: 12px;
    color: #999;
}



/*==================================================
 Header
==================================================*/

.header{
    position: relative;
    margin-bottom: 75px;
    padding: 25px 0px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.20);
    
    background-color: #fff;
}
.header .adv {
    position: absolute;
    right: 5px;
    top: -20px;
    font-size: 12px;
    color: #bbb;
    font-weight: 300;
}
.header .adv.groot {
    font-size: 16px;
}
.header .logo{
    width: 200px;
}



/*==================================================
 Pagina 1 - Vragen
==================================================*/

.answers-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.answer-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 10px;
    padding: 5px 10px 10px;
    
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    background-color: #ff7700;
    border: 2px solid #fff;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;    
    transition: all 0.2s ease-in-out;
}
.answer-btn p{
    margin-top: 5px;
    font-size: 14px;
    color: #fff;
}
.answer-btn:hover{
    background-color: #ff9900;
}
.pagina-1 form{
    margin: 0 auto;
    width: 480px;
    max-width: 100%;
    padding: 15px;
    border-radius: 10px;
    background-color: #f6f6f6;
}



/*==================================================
 Streetview background
==================================================*/

.streetview-holder{
    top: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    z-index: 10;
}
.gradient-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background: #328eae;
    background: -webkit-gradient(linear,left bottom,right top,from(#328eae),to(#44bace));
    background: linear-gradient(to right top,#328eae 0,#44bace);
    opacity: 0.8;
    z-index: 15;
}
#streetView{
    height: 120%;
}



/*==================================================
 Pagina 2 - Form
==================================================*/

.pagina-2 .content-holder{
    background-color: #f6f6f6;
}
.pagina-2 .vraag{
    margin-bottom: 20px;
}

.pagina-2 form{
    margin: 0 auto;
    width: 425px;
    max-width: 100%;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.optin {
    font-size: 12px !important;
    line-height: 140%;
}
.pagina-2 .bullet{
    position: relative;
    padding-left: 30px;
}
.pagina-2 .bullet:before{
    position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-size: .8em;
    left: 0;
    color: #32b51a;
}
.pagina-2 .bullet:last-of-type{
    margin-bottom: 10px;
}




/*==================================================
 Pagina 3 - Bedankpagina
==================================================*/

.pagina-3 .content-holder{
    background-color: #f6f6f6;
}

/* Bedank pagina - nieuwsbrief optin */

.nieuwsbrief-optin{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.nieuwsbrief-optin .checkbox{
    padding: 15px;
    border-radius: 5px;
    margin: 0 auto;
    width: 80%;
    border: 1px solid #ddd;
    background-color: #fff;
}

/* Modal - Helaas */
#helaas .modal-header,
#uitleg .modal-header{
    padding: 0px;
    border: none;
}
#helaas .close,
#uitleg .close{
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 1;
    z-index: 999;
}
#helaas p{
    margin: 0 auto;
    padding: 50px 0px;
    width: 380px;
    max-width: 100%;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    line-height: 140%;
    white-space: pre-line;
}
#uitleg p{
    margin: 0 auto;
    padding: 20px 0px;
    width: 400px;
    max-width: 100%;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    line-height: 140%;
    white-space: pre-line;
}



/*==================================================
 Footer
==================================================*/

.footer{
    position: absolute;
/*    color: #404040;*/
    color: #a9d3e0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 25px 0px;
/*    background-color: #fff;*/
}
.footer p{
    font-size: 16px;
}
p.voorwaarden{	
	font-size: 14px;
	font-weight: 300;
}
p.voorwaarden a,
p.voorwaarden a:hover{
/*	color: #666;*/
	color: #a9d3e0;
    text-decoration: underline;
}



/*==================================================
 Media queries
==================================================*/

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


@media only screen and (max-width: 991px) { 
    
    .header {
        margin-bottom: 50px;
        padding: 20px 0px;
    }
    
    .content-holder {
        padding: 40px 45px 60px;
    }
    
    .pagina-1 .answer-btn {
        margin: 0 5px;
    }
    
}


@media only screen and (max-width: 767px) {
    
    .header {
        margin-bottom: 40px;
    }
    .content-holder{        
		padding: 25px 30px 40px;
    }
    p{
        font-size: 16px;
    }
    
    .pagina-1 .answer-btn{ 
        margin-bottom: 15px;
		padding: 5px;
        height: 56px;
		width: 265px;
        
        flex-direction: row;
        justify-content: flex-start;
	}
    .pagina-1 .vraag_vve .answer-btn{
        justify-content: center;
    }
    .pagina-1 .answer-btn img{ 
        margin: 0 15px 0 0;
        width: 60px;
	}
    .pagina-1 .answer-btn p {
        font-size: 16px;
    }
    
    
    
    
    
    
	.nieuwsbrief-optin .checkbox {
		width: 100%;
	}
    
}


@media only screen and (max-width: 479px) {
    
    .header {
        margin-bottom: 25px;
        padding: 15px 0px;
    }
    .header .adv{
        top: -15px;
    }
    .header .logo {
        width: 150px;
    }
    
    .content-holder {
        padding: 20px;
    }
    h3.vraag{
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    .pagina-1 form {
        margin: 0 -20px -20px;
        width: auto;
        max-width: none;
        padding: 10px;
        border-radius: 0 0 10px 10px;
    }
    
    
}