* {
	box-sizing						: border-box;
	margin							: 0;
}

html {
	overflow-x						: hidden;
}

body {
	margin							: 0;
	max-width						: 100%;
	overflow-x						: hidden;
}

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




/*============== SITE ====================================================*/

.site {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	position						: relative;
	bottom							: 100%;
	left							: 0;
	top								: 0;

	height							: 100%;
	min-height						: 100%;
	min-height						: 100vh;
	min-width						: 100%;

	z-index							: 1;
}

.site-uitklap {
	box-shadow						: 0 0 5px 3px rgba(0,0,0,0.4);
	transition						: left 0.25s ease-in;
}

.body-disabled,
.body-uitklap {
	overflow						: hidden !important;
	position						: fixed;
}

.body-disabled {
	width							: 100%;
	height							: 100%;
}

.site-header {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.site-submenu {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.site-submenu-items {
	box-sizing						: border-box;
	margin-right					: 2.5em;
	margin-top						: 3.75em;
	overflow						: hidden;
	padding							: 1.25em;
}

.site-submenu h2 {
	margin-bottom					: 1.25em;
}

.site-submenu ul {
	list-style						: none;
	margin							: 0;
	padding							: 0.625em 1.25em;
}

.site-submenu li {
	display							: inline-block;
	font-weight						: normal;
	width							: 100%;
}

.site-submenu li hr {
	border							: 0;
	margin							: 0.3em 0 0.3em 25%;
	
	height							: 1px;
	width							: 50%;
	
	text-align						: center;
}

.site-submenu li:last-of-type hr {
	display							: none;
}

.site-submenu li a {
	display							: block;
	text-decoration					: none;
}

.site-submenu li a:hover {
	
}

.site-submenu li a.actief {
	cursor							: default;
}




/* ============== 404 ============================================== */

.error404 {
	background-image				: url("../img/error-404.png");
	background-color				: rgb(50,153,204);
	background-repeat				: no-repeat;
    background-position				: left center;
    background-size					: cover;
    
    font-size						: 2rem;
    font-weight						: 300;
    text-align						: center;
	color							: rgb(255,255,255);
	
	margin							: 1em;
	padding							: 2em;
}



/*============== HOMEPAGE ================================================*/

.homepage-regel-container {
	width							: 100%;
}

.homepage-blok-container {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-box-flex				: 1 0 0%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 0%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 0%;	/* IE 10 */
	-webkit-flex					: 1 0 0%;	/* NEW - Chrome */
	flex							: 1 0 0%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	list-style						: none;
    margin							: 0;
    padding							: 0;
}

.homepage-blok-container .homepage-blok {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.homepage-blok {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
}


.homepage-regel-button-container,
.homepage-blok-button-container {
	width							: 100%;
}


/*============== CONTENT =================================================*/

.site-content {
	box-sizing						: border-box;
	margin							: auto;
	width							: 100%;
	
	-webkit-box-flex				: 1 0 auto;		/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 auto;		/* OLD - Firefox 19- */
	-ms-flex						: 1 0 auto;		/* IE 10 */
	-webkit-flex					: 1 0 auto;		/* NEW - Chrome */
	flex							: 1 0 auto;		/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.content-met-submenu {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.main-content {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.volledigbreed,
.main-content section.volledigbreed {
	max-width						: 100%;
	width							: 100%;
}

.maxcontentbreedte,
.main-content section,
.volledigbreed section,
.site-content.content-met-submenu {
	max-width						: 1366px;
	width							: 100%;
    margin							: auto;
}

.site-content section .submenu-infoblok ul,
.site-content section .submenu-infoblok ol {
    padding							: 0.625em;
    margin							: 0.625em 0;
	display							: inline-block;
}

.menu-infoblokken {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.menu-infoblok {
	position						: relative;
	
	-webkit-box-flex				: 1 0 33%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 33%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 33%;	/* IE 10 */
	-webkit-flex					: 1 0 33%;	/* NEW - Chrome */
	flex							: 1 0 33%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	height							: auto;
}

div .menu-infoblok-icon {
    display							: inline-block;
}

.menu-infoblok .button {
	position						: absolute;
	left							: 20%;
	right							: 20%;
	bottom							: 0;
}


/*============== COLLAPSABLES =============================================*/

.collapsable {
	width							: 100%;
	float							: none;
}

.collapsable[collapsable-data-bodyclick="true"] .collapsable-body,
.collapsable-header {
	cursor							: pointer;
}

.collapsable-header > span {
	margin-right					: 0.625em;
}

.collapsable .inputregel_label {
    width							: 100%;
}


/*============== COOKIEWARNING ============================*/

.cookiewarning-container {
	z-index							: 999;
	position						: fixed;
	bottom							: 0;
	left							: 0;
	right							: 0;
	
	opacity							: 0.9;
}

.cookiewarning-text-container {
	min-width						: 50%;
}

.cookiewarning-button-accept {
	width							: fit-content;
}

/*============== FOOTER ==================================================*/

.site-footer {
	height							: auto;
	margin-top						: 1.25em;
}

.site-footer-eigensocialmedia a {
	padding							: 0.3em;
}

.site-footer section {
	margin							: auto;
	width							: 100%;
}

.footer-copyright div {
    margin							: 0 0.625em;
}




/*============== MOBILE NAV ==============================================*/

.mobile-nav {
	display							: none;
	
	height							: 100%;
	width							: 100%;

	position						: fixed;
	bottom							: 0;

	left							: 50px;
	right							: 0;
	top								: 0;
	
	list-style						: none;
	overflow						: scroll;
	z-index							: 0;
}

.mobile-nav h2 {
	font-weight						: normal;
	margin							: 0.625em;
}

.mobile-nav ul {
	list-style						: none;
	margin							: 1.25em 0 0 0;
	padding							: 0;
}

.mobile-nav li {
	font-weight						: normal;
}

.mobile-nav li:first-child {
	
}

.mobile-nav li a {
	display							: block;
	padding							: 0.625em;
}

.mobile-nav li a:hover {
 
}

.mobile-nav li a.actief {
	cursor							: default;
}

.mobile-nav ul li ul {
	margin							: 0;
}

.mobile-nav ul li ul li a {
	padding-left					: 1.25em;
}




/*============== HEADER BOVENBALK ========================================*/

.bovenbalk {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	
	width							: 100%;
}


.bovenbalk span {
	font-weight						: normal;
	margin							: 0;
	padding							: 0;
}

.bovenbalk span:before {
	font-weight						: normal;
	margin-right					: 0.3em;
	padding							: 0;
}

.bovenbalk a {
}

.bovenbalk a:hover {
}




/*============== HEADER VISUAL ===========================================*/

.header-visual {
	position						: relative;
}

.header-visual-home {
	position						: relative;
}

.header-visual-home,
.header-visual {
	overflow						: hidden;
}

.visual {
	height							: inherit;
}

div#visual-nav {
	display							: block;
	width							: 100%;
	text-align						: center;
	margin							: auto;
	position						: relative;
	z-index							: 2;
}

div#visual-nav ul {
	top								: -24px;
	position						: relative;
	display							: inline-block;
	height							: 1em;
	list-style-type					: none;
	z-index							: 5;
}

div#visual-nav ul li {
	-webkit-border-radius			: 7px;
	-moz-border-radius				: 7px;
	border-radius					: 7px;
	
	height							: 14px;
	width							: 14px;
	padding							: 0;
	margin-right					: 0.3em;
	float							: left;
}



/*============== PAYOFF HEADER ===========================================*/

.payoffheader {
	margin							: auto;

	height							: inherit;
	min-height						: inherit;
	width							: 100%;

	padding							: 1.25em;
}

.payoffheader_content {
}

.payoffheader h2 {
	margin							: 0;
}

.payoffheader h3 {
}

.payoffheader span {
}




/*============== HEADER NAVIGATIE ========================================*/

.hoofdnav {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	width							: 100%;
}

.hoofdnav ul {
	list-style						: none;
	margin							: 0;
	padding							: 0 1.25em;
	text-align						: center;
}

.hoofdnav li {
	display							: inline-block;
}

.hoofdnav li:last-child {
	border-right					: 0;
}

.hoofdnav li a {
	display							: block;
	padding							: 0 1.25em;
	text-decoration					: none;
}




/*============== HEADER NAVIGATIE SUB UITKLAP ============================*/

.hoofdnav li ul {
	display							: none;
	position						: absolute;
	text-align						: left;
}

.hoofdnav li ul li {
	display							: block;
}

.hoofdnav li li {
	border-right					: 0;
	height							: auto;
}

.hoofdnav li:hover ul {
	z-index							: 99;
	display							: block;
}





/*============== CONTENT ALGEMENE INDELING ===============================*/

section {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	margin-bottom					: 1.25em;
	padding							: 0;
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: space-between;
	justify-content					: space-between;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

section div {
	margin-bottom					: 0;
}

.section-zelfde-hoogte,
.align-stretch {
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.fixed-width-250 {
	margin							: 0;
	margin-right					: 1.25em;
	padding							: 0;
	
	width							: 250px;
	
	-webkit-box-flex				: 0 0 250px;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0 0 250px;	/* OLD - Firefox 19- */
	-ms-flex						: 0 0 250px;	/* IE 10 */
	-webkit-flex					: 0 0 250px;	/* NEW - Chrome */
	flex							: 0 0 250px;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div1-12 (98 / (12/1) - 2 = 6.16) */
.div1-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 6%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 6%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 6%;	/* IE 10 */
	-webkit-flex					: 1 0 6%;	/* NEW - Chrome */
	flex							: 1 0 6%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div2-12 (98 / (12/2) - 2 = 14.33) */
.div2-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 14%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 14%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 14%;	/* IE 10 */
	-webkit-flex					: 1 0 14%;	/* NEW - Chrome */
	flex							: 1 0 14%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div3-12 (98 / (12/3) - 2 = 22.5) */
.div3-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 22%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 22%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 22%;	/* IE 10 */
	-webkit-flex					: 1 0 22%;	/* NEW - Chrome */
	flex							: 1 0 22%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div4-12 (98 / (12/4) - 2 = 30.67) */
.div4-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 30%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 30%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 30%;	/* IE 10 */
	-webkit-flex					: 1 0 30%;	/* NEW - Chrome */
	flex							: 1 0 30%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div5-12 (98 / (12/5) - 2 = 38.83) */
.div5-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 38%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 38%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 38%;	/* IE 10 */
	-webkit-flex					: 1 0 38%;	/* NEW - Chrome */
	flex							: 1 0 38%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div6-12 (98 / (12/6) - 2 = 47) */
.div6-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 47%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 47%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 47%;	/* IE 10 */
	-webkit-flex					: 1 0 47%;	/* NEW - Chrome */
	flex							: 1 0 47%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div7-12 (98 / (12/7) - 2 = 55.16) */
.div7-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 55%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 55%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 55%;	/* IE 10 */
	-webkit-flex					: 1 0 55%;	/* NEW - Chrome */
	flex							: 1 0 55%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div8-12 (98 / (12/8) - 2 = 63.33) */
.div8-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 63%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 63%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 63%;	/* IE 10 */
	-webkit-flex					: 1 0 63%;	/* NEW - Chrome */
	flex							: 1 0 63%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div9-12 (98 / (12/9) - 2 = 71.50) */
.div9-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 71%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 71%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 71%;	/* IE 10 */
	-webkit-flex					: 1 0 71%;	/* NEW - Chrome */
	flex							: 1 0 71%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div10-12 (98 / (12/10) - 2 = 79.67) */
.div10-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 79%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 79%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 79%;	/* IE 10 */
	-webkit-flex					: 1 0 79%;	/* NEW - Chrome */
	flex							: 1 0 79%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) --> div11-12 (98 / (12/11) - 2 = 87.8) */
.div11-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 87%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 87%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 87%;	/* IE 10 */
	-webkit-flex					: 1 0 87%;	/* NEW - Chrome */
	flex							: 1 0 87%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* div12-12 (100 - 2 = 98) */
.div12-12 {
	margin							: 0.625rem 1%;
	
	-webkit-box-flex				: 1 0 98%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 98%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 98%;	/* IE 10 */
	-webkit-flex					: 1 0 98%;	/* NEW - Chrome */
	flex							: 1 0 98%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.standaard-padding {
	box-sizing						: border-box;
	padding							: 1.25em;
}

.standaard-padding-klein {
	box-sizing						: border-box;
	padding							: 0.8em;
}

.standaard-padding-boven-groot {
	box-sizing						: border-box;
	padding							: 2.5em 0 0 0;
}

.standaard-padding-boven {
	box-sizing						: border-box;
	padding							: 1.25em 0 0 0;
}

.standaard-padding-behalve-rechts {
	box-sizing						: border-box;
	padding							: 1.25em 0 1.25em 1.25em;
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 1.25em 0;
	
	height							: 1.25rem;
	width							: 100%;
}

.fullwidth {
	width							: 100%;
}

.fullwidth-background {
	margin							: 0 -9999rem;
	padding							: 0rem 9999rem;
}





/*============== CONTENT =================================================*/

.content-naast-elkaar {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.mobilenietzichtbaar {
	
}

.mobilewelzichtbaar {
	display							: none;
}

.toggle1nietzichtbaar {
	
}

.toggle1welzichtbaar {
	display							: none;
}

.toggle2nietzichtbaar {
	
}

.toggle2welzichtbaar {
	display							: none;
}

.uitlijning-links,
.uitlijning-rechts {
	width							: 50%;

    margin-top						: 0.625em;
	margin-right					: 0;
    margin-bottom					: 0.625em;
    margin-left						: 0.625em;
}

.uitlijning-klein {
	width							: 25%;
}

.uitlijning-links {
	float							: left;

	margin							: 0;
	margin-right					: 0.625em;
}

.uitlijning-rechts {
	float							: right;

	margin							: 0;
	margin-left						: 0.625em;
}

.uitlijning-boven {
	margin-bottom					: 0.625em;
}

.uitlijning-onder {
	margin-top						: 0.625em;
}









/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	font-weight						: normal;
}





/*============== OVERIGE =================================================*/

.afgerond {
	overflow						: hidden;
}

.animeer {
	transition						: all 0.5s ease;
}


.blur {
	-webkit-filter					: blur(1.25rem) grayscale(50%);
	-moz-filter   					: blur(1.25rem) grayscale(50%);
	-ms-filter   					: blur(1.25rem) grayscale(50%);
	-o-filter	 					: blur(1.25rem) grayscale(50%);
	 filter	   						: blur(1.25rem) grayscale(50%);
}

.bg_rood {
	background-color				: red;
}

.text-align-center,
.centreren {
	text-align						: center;
}

.text-align-left {
	text-align						: left;
}

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

.text-align-justify {
	text-align						: justify;
}

.clearboth {
	clear							: both;
}

.display_flex_row,
.display_flex_row_wrap {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

.display_flex_row_nowrap {
	display							: -webkit-box-flex;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.display_flex_column,
.display_flex_column_wrap {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

.display_flex_column_nowrap {
	display							: -webkit-box-flex;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.downloads {
	
}

.flex_nogrow {
	-webkit-flex-grow			: 0;
	flex-grow					: 0;
}

.flex_0 {
	-webkit-box-flex				: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0;	/* OLD - Firefox 19- */
	-ms-flex						: 0;	/* IE 10 */
	-webkit-flex					: 0;	/* NEW - Chrome */
	flex							: 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1 {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_2 {
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_3 {
	-webkit-box-flex				: 3;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 3;	/* OLD - Firefox 19- */
	-ms-flex						: 3;	/* IE 10 */
	-webkit-flex					: 3;	/* NEW - Chrome */
	flex							: 3;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_4 {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_basis_100 {
	flex-basis					: 100%;
}


/* IE11 FIX, if flex-direction: column, then we need flex-basis auto! */
.internet-explorer-trident .display_flex_column .flex_1,
.internet-explorer-trident .display_flex_column .flex_2,
.internet-explorer-trident .display_flex_column .flex_3,
.internet-explorer-trident .display_flex_column .flex_4 {
	flex-basis						: auto;
}

.internet-explorer-trident .display_flex_column_wrap .flex_1,
.internet-explorer-trident .display_flex_column_wrap .flex_2,
.internet-explorer-trident .display_flex_column_wrap .flex_3,
.internet-explorer-trident .display_flex_column_wrap .flex_4 {
	flex-basis						: auto;
}

.internet-explorer-trident .display_flex_column_nowrap .flex_1,
.internet-explorer-trident .display_flex_column_nowrap .flex_2,
.internet-explorer-trident .display_flex_column_nowrap .flex_3,
.internet-explorer-trident .display_flex_column_nowrap .flex_4 {
	flex-basis						: auto;
}

.internet-explorer-trident .flex_basis_100 {
	flex-basis						: auto;
}

.internet-explorer-trident .display_flex_row .flex_basis_100,
.internet-explorer-trident .display_flex_row_wrap .flex_basis_100,
.internet-explorer-trident .display_flex_row_nowrap .flex_basis_100 {
	flex-basis						: 100%;
}

.geenmarge { margin					: 0 !important; }

.cursor-pointer {
	cursor							: pointer;
}

H1 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.4em 0;
}

H2 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.4em 0;
}

H3 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 0.4em 0;
}

H4 {
	padding							: 0;
	margin							: 0;
}


[class*="bg_"] h1,
[class*="bg_"] h2 {
	margin							: 0.4em 0 0.4em 0;
}


.imgbackground-stretch {
	background-position				: center;
	background-repeat				: no-repeat;
	background-size					: cover;
}

label
{
	margin							: 0.625em 0;
	padding							: 0;
}

.margin_0	{ margin				: 0 !important; }
.margin_5	{ margin				: 0.3rem !important; }
.margin_10	{ margin				: 0.625rem !important; }
.margin_15	{ margin				: 0.9rem !important; }
.margin_20	{ margin				: 1.25rem !important; }
.margin_25	{ margin				: 1.5rem !important; }

.margin_ver_5	{ margin			: 0.3em 0 !important; }
.margin_ver_10	{ margin			: 0.625rem 0 !important; }
.margin_ver_15	{ margin			: 0.9rem 0 !important; }
.margin_ver_20	{ margin			: 1.25rem 0 !important; }
.margin_ver_25	{ margin			: 1.5rem 0 !important; }
.margin_ver_30	{ margin			: 1.8rem 0 !important; }
.margin_ver_35	{ margin			: 2.2rem 0 !important; }
.margin_ver_40	{ margin			: 2.5rem 0 !important; }

.margin_top_0	{ margin-top		: 0 !important; }
.margin_top_5	{ margin-top		: 0.3rem !important; }
.margin_top_10	{ margin-top		: 0.625rem !important; }
.margin_top_15	{ margin-top		: 0.9rem !important; }
.margin_top_20	{ margin-top		: 1.25rem !important; }
.margin_top_25	{ margin-top		: 1.5rem !important; }
.margin_top_30	{ margin-top		: 1.8rem !important; }
.margin_top_35	{ margin-top		: 2.2rem !important; }
.margin_top_40	{ margin-top		: 2.5rem !important; }

.margin_bot_0	{ margin-bottom		: 0 !important; }
.margin_bot_5	{ margin-bottom		: 0.3rem !important; }
.margin_bot_10	{ margin-bottom		: 0.625rem !important; }
.margin_bot_15	{ margin-bottom		: 0.9rem !important; }
.margin_bot_20	{ margin-bottom		: 1.25rem !important; }
.margin_bot_25	{ margin-bottom		: 1.5rem !important; }
.margin_bot_30	{ margin-bottom		: 1.8rem !important; }
.margin_bot_35	{ margin-bottom		: 2.2rem !important; }
.margin_bot_40	{ margin-bottom		: 2.5rem !important; }

.margin_hor_5	{ margin			: 0 0.3rem !important; }
.margin_hor_10	{ margin			: 0 0.625rem !important; }
.margin_hor_15	{ margin			: 0 0.9rem !important; }
.margin_hor_20	{ margin			: 0 1.25rem !important; }
.margin_hor_25	{ margin			: 0 1.5rem !important; }

.noblur {
	-webkit-filter					: none;
	-moz-filter						: none;
	-ms-filter						: none;
	-o-filter						: none;
	filter							: none;
}

.noscroll { overflow				:  hidden; }

.nowrap {
	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.onzichtbaar, .null { display		: none; }

.padding_0	{ padding				: 0 !important; }
.padding_5	{ padding				: 0.3em !important; }
.padding_10	{ padding				: 0.625em !important; }
.padding_15	{ padding				: 0.9em !important; }
.padding_20	{ padding				: 1.25em !important; }
.padding_25	{ padding				: 1.5em !important; }
.padding_30	{ padding				: 1.8em !important; }
.padding_40	{ padding				: 2.5em !important; }
.padding_50	{ padding				: 3em !important; }

.padding_40_20	{ padding			: 2.5em 1.25em !important; }

.padding_ver_5	{ padding			: 0.3em 0 !important; }
.padding_ver_10	{ padding			: 0.625em 0 !important; }
.padding_ver_15	{ padding			: 0.9em 0 !important; }
.padding_ver_20	{ padding			: 1.25em 0 !important; }
.padding_ver_25	{ padding			: 1.5em 0 !important; }
.padding_ver_30	{ padding			: 1.8em 0 !important; }
.padding_ver_40	{ padding			: 2.5em 0 !important; }
.padding_ver_50	{ padding			: 3em 0 !important; }

.padding_hor_5	{ padding			: 0 0.3em !important; }
.padding_hor_10	{ padding			: 0 0.625em !important; }
.padding_hor_15	{ padding			: 0 0.9em !important; }
.padding_hor_20	{ padding			: 0 1.25em !important; }
.padding_hor_25	{ padding			: 0 1.5em !important; }
.padding_hor_30	{ padding			: 0 1.8em !important; }
.padding_hor_40	{ padding			: 0 2.5em !important; }
.padding_hor_50	{ padding			: 0 3em !important; }

.padding_bot_0	{ padding-bottom	: 0 !important; }
.padding_bot_5	{ padding			: 0 0 0.3rem 0 !important; }
.padding_bot_10	{ padding			: 0 0 0.625rem 0 !important; }
.padding_bot_15	{ padding			: 0 0 0.9rem 0 !important; }
.padding_bot_20	{ padding			: 0 0 1.25rem 0 !important; }
.padding_bot_25	{ padding			: 0 0 1.5rem 0 !important; }
.padding_bot_30	{ padding			: 0 0 1.8rem 0 !important; }
.padding_bot_40	{ padding			: 0 0 2.5rem 0 !important; }
.padding_bot_50	{ padding			: 0 0 3rem 0 !important; }
.padding_bot_80	{ padding			: 0 0 5rem 0 !important; }


P, P P {
	padding							: 0;
	margin							: 0 0 0.625em 0;
}

P:empty:first-of-type { display		: none; }

P:empty {
	/*display						: none;*/
}

.position_relative { position		: relative; }

.rechts, .right { text-align		: right; }
.links, .left	{ text-align		: left; }

.uppercase 		{	text-transform	: uppercase; }
.lowercase 		{	text-transform	: lowercase; }
.capitalize 	{	text-transform	: capitalize; }

section img {
	margin							: 0 0.625em 0.625em 0;

	height							: auto;
	max-width						: inherit;
	width							: 100%;
}

section * li  {
	margin							: 0.3em 0;
}

.flex_start,
.justify-flex-start {
	-webkit-justify-content			: flex-start !important;
	justify-content					: flex-start !important;
}

.space_between,
.justify-space-between {
	-webkit-justify-content			: space-between !important;
	justify-content					: space-between !important;
}

.space_around,
.justify-space-around {
	-webkit-justify-content			: space-around !important;
	justify-content					: space-around !important;
}

.justify-center {
	-webkit-justify-content			: center !important;
	justify-content					: center !important;
}

.flex_end,
.justify-flex-end {
	-webkit-justify-content			: flex-end !important;
	justify-content					: flex-end !important;
}

.align-flex-start {
	-webkit-align-items				: flex-start !important;
	align-items						: flex-start !important;
}

.align-center {
	-webkit-align-items				: center !important;
	align-items						: center !important;
}

.align-flex-end {
	-webkit-align-items				: flex-end !important;
	align-items						: flex-end !important;
}

strong { font-weight				: bold; }

.site-content section * ul,
.site-content section * ol {
	padding							: 1.25em 2.5em;
	margin							: 1.25em 0;
}

.toggle-element {
	display							: none;
}

.toggle-element-button {
	cursor							: pointer;
}

table {
	border-collapse					: collapse;
	margin-bottom					: 1.8em;
}

th, td {
	padding							: 0.625em;
	margin							: 0;
}

.ul_geen_opmaak,
.ol_geen_opmaak {
	list-style						: none;
	margin							: 0;
	padding							: 0;
}

.ul_geen_opmaak li,
.ol_geen_opmaak li {
	font-weight						: normal;
}

.vet {
	font-weight						: bold;
}

.wrap {
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

.whitespace_nowrap {
	white-space						: nowrap;
}

.roteer-90-rechtsom {
	-webkit-transform				: rotate(90deg);    /* Firefox */
	-moz-transform					: rotate(90deg);    /* IE */
	-ms-transform					: rotate(90deg);    /* Opera */
	-o-transform					: rotate(90deg);    /* Internet Explorer */
	transform						: rotate(90deg);
	filter							: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	
	display							: inline-block;
}



/*================= KLEUREN =================*/

.tekst_hover_body:hover,
.tekst_body,
a.tekst_body {
	color					: rgb(34,62,82);
}

.tekst_hover_a:hover,
.tekst_a,
a.tekst_a {
	color					: rgb(50,153,204);
}

.tekst_hover_b:hover,
.tekst_b,
a.tekst_b {
	color					: rgb(34,62,82);
}

.tekst_hover_c:hover,
.tekst_c,
a.tekst_c {
	color					: rgb(52,153,153);
}

.tekst_hover_d:hover,
.tekst_d,
a.tekst_d {
	color					: rgb(152,164,174);
}

.tekst_hover_e:hover,
.tekst_e,
a.tekst_e {
	color					: rgb(167,41,32);
}

.tekst_hover_grijs:hover,
.tekst_grijs,
a.tekst_grijs {
	color					: rgb(242,242,242);
}

.tekst_hover_wit:hover,
.tekst_wit,
a.tekst_wit {
	color					: rgb(255,255,255);
}

.tekst_hover_zwart:hover,
.tekst_zwart,
a.tekst_zwart {
	color					: rgb(0,0,0);
}

.bg_hover_inoption:hover,
.bg_inoption {
	background-color		: rgb(226,239,217);
}

.bg_hover_a:hover,
.bg_a {
	background-color		: rgb(50,153,204);
}

.bg_hover_b:hover,
.bg_b {
	background-color		: rgb(34,62,82);
}

.bg_hover_c:hover,
.bg_c {
	background-color		: rgb(52,153,153);
}

.bg_hover_d:hover,
.bg_d {
	background-color		: rgb(152,164,174);
}

.bg_hover_e:hover,
.bg_e {
	background-color		: rgb(167,41,32);
}

.bg_hover_grijs:hover,
.bg_grijs {
	background-color		: rgb(242,242,242);
}

.bg_hover_wit:hover,
.bg_wit {
	background-color		: rgb(255,255,255);
}

.bg_hover_zwart:hover,
.bg_zwart {
	background-color		: rgb(0,0,0);
}

.bg_hover_body:hover,
.bg_body {
	background-color		: rgb(34,62,82);
}

[class*='tekst_hover_'] {
	-webkit-transition		: color 0.5s ease;
    transition				: color 0.5s ease;
}

[class*='bg_hover_'] {
	-webkit-transition		: background-color 0.5s ease;
    transition				: background-color 0.5s ease;
}




/*============== TABLE MOCK CLASSES ============================================*/
.table    { display: table }
.tr       { display: table-row }
.thead    { display: table-header-group }
.tbody    { display: table-row-group }
.tfoot    { display: table-footer-group }
.col      { display: table-column }
.colgroup { display: table-column-group }
.td, .th  { display: table-cell }
.caption  { display: table-caption }




/*============== SOCIAL MEDIA ============================================*/

.socialmedia {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.socialmedia span:before{
	margin							: 0 0 0 0.625em;
	padding							: 0;
}








/*============== GRID ====================================================*/

.display_grid {
	display						: grid;
}body {
	color						: rgb(34,62,82);
	font-family					: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

/*============== STANDAARD FALLBACK-KLEUREN ===========================*/

/* LINKS binnen site-content (zodat nav etc nog los gestyled kan worden) */
.site-content a:not([class*="tekst_"]):not(.dt-button):not(.button) {
	color						: rgb(50,153,204);
}

.site-content a:hover:not([class*="tekst_"]):not(.dt-button):not(.button) {
	color						: rgb(52,153,153);
}

.site-content .bg_a a:not([class*="tekst_"]):not(.dt-button):not(.button) {
    color						: rgb(242,242,242);
}

.site-content .bg_a a:hover:not([class*="tekst_"]):not(.dt-button):not(.button) {
    color						: rgb(255,255,255);
}

H1:not([class*="tekst_"]),
H2.h1-to-h2:not([class*="tekst_"]) {
	color					: rgb(52,153,153);
}

H2:not([class*="tekst_"]) {
	color					: rgb(34,62,82);
}

H3:not([class*="tekst_"]) {
	color					: rgb(34,62,82);
}

H4:not([class*="tekst_"]) {
	color					: rgb(34,62,82);
}

H5:not([class*="tekst_"]) {
	color					: rgb(34,62,82);
}


/*============== CONTENT ALGEMEEN ===========================*/

.site {
	background-color			: rgb(242,242,242);
}

.site-content {
	min-height					: 2.5em;
}

.main-content section > div {
	padding						: 1em;
}

.text-link {
	text-decoration				: underline;
}

.afgerond {
	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
}

.border {
	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
	
	border						: 1px solid rgba(50,153,204,0.5);
}

.fullwidth-background {
	margin						: 0 -9999rem;
	padding						: 0rem 9999rem;
}



/*===================== FOOTER ==========================*/

.site-footer {
	margin-top					: 0;
}

.site-footer-menus-en-submenus {

}

.site-footer-tekst p {
	line-height					: 1.2;
}

.site-footer-eigensocialmedia
{

}

.site-footer section {
	max-width					: 1366px;
}

.site-footer-tekst h2,
.site-footer-menus-en-submenus h2 {
	font-size					: 1.2em;
	color						: rgb(34,62,82);
}

.site-footer-tekst a,
.site-footer-menus-en-submenus a {
	color						: rgb(34,62,82);
}

.footer-copyright {
	padding						: 1.25em;
	padding-top					: 0;
	font-size					: 0.8em;
	text-align					: center;
}

.footer-copyright a {
	color						: rgb(242,242,242);
	text-decoration				: underline;
}

.site-footer-tekst a:hover,
.footer-copyright a:hover {
	color						: rgb(255,255,255);
}







/*====================== HEADER BOVENBALK =======================*/

.bovenbalk {
	max-width				: 1366px;
	padding					: 0.3em 1em;
	font-size				: 0.9em;
	text-align				: right;
	
	/* element zowel horizontaal als verticaal centreren */
	/* indien niet gewenst margin auto gebruiken */
	margin					: 0 auto;
}

.bovenbalk span {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.75em;
}

.bovenbalk span:before {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.25em;
}


/*======================== HEADER NAV ==============================*/

.hoofdnav {
	margin						: 0;
}

.hoofdnav ul {
    padding: 0 0.5em;
}

.hoofdnav li {
	font-family					: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	line-height					: 1.8;
}

.hoofdnav li a {
    padding: 0 0.5em;
}

.hoofdnav li a:not([class*="tekst_"]) {
	color						: rgb(34,62,82);
}

.hoofdnav li a:not([class*="tekst_"]):hover {
	color						: rgb(152,164,174);
}

.hoofdnav li a:not([class*="tekst_"]).actief {
	color						: rgb(152,164,174);
}

.icon-menu:not([class*="tekst_"]) {
	color						: rgb(34,62,82);
}

.icon-menu:hover:not([class*="tekst_"]) {
	color						: rgb(152,164,174);
}



/*===================== HEADER NAV SUB UITKLAP ======================*/

.hoofdnav li ul {

}

.hoofdnav li li {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.8em;
	line-height				: 2.2;
	border-bottom			: 2px solid transparent;
}

.hoofdnav li li a {
	background-color		: rgba(34,62,82, 0.8);
}


/*============== DELEN OP SOCIAL MEDIA ==========================*/

.socialmedia {
	color					: rgb(152,164,174);
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.8em;
	font-weight				: normal;
	line-height				: 1.5;
	padding					: 0.9em;
	padding-top				: 3em;
}

.socialmedia span:before{
	color					: rgb(50,153,204);
	font-size				: 1.25em;
	line-height				: 1.25;
}

.socialmedia span:hover:before {
	opacity					: 0.85;
}




/* ============== LANGUAGE PICKER =================== */

.language-picker-menu {
	position					: relative;

	-webkit-align-self			: flex-start;
	align-self					: flex-start;

	z-index						: 9;

	margin-left					: 20px;
}

.language-picker-menu div {
	/*padding						: 16px 20px 0 20px;*/
}

.language-picker-menu div:before {
	position					: absolute;
	right						: -12px;
	top							: 3px;
	font-size					: 10px;
}

.language-picker-dropdown  {
	position					: absolute;
	left						: -20px;
	top							: 30px;

	list-style-type				: none;
	padding						: 12px;
	text-align					: right;
	background-color			: rgba(34,62,82, 0.8);
}

.language-picker-menu li {
	padding-bottom				: 13px;
}

.language-picker-menu li:last-of-type {
	padding-bottom				: 0;
}

.language-picker-menu li a {
	display						: block;
	padding						: 5px;
	border						: 2px solid transparent;
}

.language-picker-menu li a:hover {
	padding						: 5px;
	border						: 2px solid rgb(242,242,242);
	
	-moz-border-radius			: 3px;
	-webkit-border-radius		: 3px;
	border-radius				: 3px;
}

.language-picker-menu li a img {
	display						: block;
}


/*====================== MOBILE NAV ======================*/

.mobile-nav {

}

.mobile-nav h2 {
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	padding-left			: 0.4em;
}

.mobile-nav li {
	border-top				: 1px solid rgba(255,255,255,0.25);
	line-height				: 1.5;
}

.mobile-nav {
	border-bottom			: 1px solid rgba(255,255,255,0.25);
}

.mobile-nav li a:hover {
	background-color		: rgba(255,255,255,0.15);
}

.mobile-nav li a.actief {
	background-color		: rgba(255,255,255,0.15);
}

.mobile-nav li li a.actief {
	background-color		: rgba(255,255,255,0.25);
}


/*================== KRUIMELPAD =======================*/

.kruimelpad {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.8em;
 
}

.kruimelpad a:hover {
	opacity					: 0.8;
}



/*==================== OVERIGE (set fontsize in mediaqueries!) =========================*/

.downloads {
	border					: 1px solid rgb(242,242,242);
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 1.8em;
	max-width				: 400px;
}

.downloads a {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_kop {
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_tekst {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.h1-to-h2,
H1, H2, H3, H4, H5 {
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

H1.title_large,
H1 {
	line-height				: 1;
}

H2, H3 {
	line-height				: 1.15;
}

H4, H5 {
	line-height				: 1.25;
}

label {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.9em;
	line-height				: 1.25;
}

P, P P {
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1em;
	line-height				: 1.5;
}

section img {
	max-width				: 100%;
}

tr:hover {
	background-color		: rgba(50,153,204,0.15);
}

td {
	border					: 1px solid rgba(0,0,0,0.3);
}

.vet {
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-weight				: normal;
}

.icon {
	vertical-align			: middle;
}










/*============== DL, DT, DD ===========================================*/

dl
{
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

dt
{
	flex							: none;
	width							: 30%;
	font-weight						: bold;
}

dd
{
	flex							: none;
	width							: 70%;
}


/*================== SITE SUBMENU ========================*/

.site-submenu {
}

.site-submenu-items {
	min-width					: 250px;

	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
	
	border						: 1px solid rgb(50,153,204);
}

.site-submenu h2 {
	font-size					: 1.25em;
}

.site-submenu ul {
	background-color			: rgb(242,242,242);
	
	-webkit-border-radius		: 0.9em;
	-moz-border-radius			: 0.9em;
	border-radius				: 0.9em;
	
	text-align					: center;
	line-height					: 1.8;
}
	
.site-submenu li {
	font-size					: 1em;
	line-height					: 1.8;
}

.site-submenu li hr {
	background-color			: rgb(242,242,242);
}

.site-submenu li a {
	color						: rgb(50,153,204);
}

.site-submenu li a:hover {
	color						: rgb(0,0,0);
}

.site-submenu li a.actief {
	color						: rgb(0,0,0);
}




/*============== BUTTONS --OUD! STAAT UIT ==================*/
/*
.button_met_icon {
	color					: rgb(255,255,255);
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	line-height				: 1.25;
}

.button_met_icon span:before {
	font-size				: 70%;
}

.button-tekstueel {
	padding					: 0.5em 1.25em;
	color					: rgb(34,62,82);
	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1em;
}
*/




/*================ VISUAL ======================*/

.header-visual {
	width					: 100%;
	height					: 150px;
}

.header-visual-home {
	width					: 100%;
	height					: 950px;
}

.visual {
	position				: relative;
}

.header-visual,
.header-visual-home
{

}

.header-visual,
.header-visual .imgdiv
{
    position						: relative;
	height							: 150px;
}

.header-visual-home,
.header-visual-home .imgdiv
{
    position						: relative;
	height							: 950px;
}

.header-visual .imgdiv,
.header-visual-home .imgdiv
{
	width							: 100%;
	margin							: auto;
	overflow						: hidden;
}
.header-visual .imgdiv
{
	max-width						: 1200px;
	margin-top						: -150px;
}
	
.header-visual-home .imgdiv
{
	max-width						: 1920px;
	margin-top						: -950px;
}

.header-visual .imgdiv img,
.header-visual-home .imgdiv img
{
	width							: 100%;
	height							: 750px;
}

.header-visual
{
    margin-bottom					: 1.8em;
}


.nav-bol-uit,
div#visual-nav ul li {
	background-color	: rgb(34,62,82);
}

div#visual-nav ul li:hover,
.nav-bol-aan {
	background-color	: rgb(50,153,204);
}



/*=============-===== PAYOFF VISUAL ==========================*/

.payoffheader {
	max-width				: calc(1366px - 1.2em);
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.25em;
}

.payoffheader h2 {
	width					: 100%;
	font-size				: 2.5em;
}

.payoffheader
{
	height							: 150px;
	overflow						: hidden;

	margin							: 0 auto;
	top								: 100px;
    left							: -1.25em;

	padding							: 0 1.25em;
}

.header-visual-home .payoffheader
{
	height							: 950px;
}

.highlight_wit
{
	background-color				: rgba(255,255,255,0.6);
}

.highlight_grijs
{
	background-color				: rgba(242,242,242,0.6);
}

.highlight_zwart
{
	background-color				: rgba(0,0,0,0.6);
}

.highlight_a
{
	background-color				: rgba(50,153,204,0.6);
}

.highlight_b
{
	background-color				: rgba(34,62,82,0.6);
}

.highlight_c
{
	background-color				: rgba(52,153,153,0.6);
}

.highlight_d
{
	background-color				: rgba(152,164,174,0.6);
}

.highlight_e
{
	background-color				: rgba(167,41,32,0.6);
}



/*============== DIENSTEN ======================*/

.diensten {

}

.dienst {
	position				: relative;
	flex					: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	text-align				: center;
	padding					: 0.6em 0.6em 5em 0.6em;
	margin-bottom			: 1.25em;
}

.dienst {
	cursor					: pointer;
}

div .dienst-icon {
    display					: inline-block;
    width					: 10em;
    height					: 10em;
    -moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
	border					: 2px solid rgb(50,153,204);
    margin-bottom			: 1.25em;
}
    
div .dienst-icon:before {
    font-size				: 8em;
    line-height				: 1.25;
}

.dienst h2 {
	font-size				: 2.2em;
	line-height				: 1.2;
}

.dienst .button {
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
}

.dienst:hover .dienst-icon {
    color					: rgb(255,255,255);
    background-color		: rgb(34,62,82);
    border-color			: rgb(34,62,82);
}


/*=================== (SUB)MENU-INFOBLOKKEN ==========================*/


.submenu-infoblok {
}

.site-content section .submenu-infoblok ul,
.site-content section .submenu-infoblok ol {
    text-align					: left;
}

.submenu-infoblok h2 {
	text-transform				: none;
	font-size					: 1.25em;
}

.submenu-infoblok h3 {
	font-size					: 2em;
}

.menu-infoblok {
	text-align					: center;
	padding						: 0.625em 0.625em 5em 0.625em;
	margin-bottom				: 1.25em;
}

div .menu-infoblok-icon {
    width						: 10em;
    height						: 10em;
    border						: 2px solid rgb(34,62,82);
    -webkit-border-radius		: 50%;
    border-radius				: 50%;
    margin-bottom				: 1.25em;
}
    
div .menu-infoblok-icon:before {
    font-size					: 8em;
    line-height					: 1.25;
}

.menu-infoblok h2 {
	font-size					: 2.2em;
	line-height					: 1.2;
}

.menu-infoblok .button {
    border						: 2px solid rgb(34,62,82);
}

.menu-infoblok:hover .button {

}

.menu-infoblok:hover .menu-infoblok-icon {
    border-color				: rgb(34,62,82);
}



/*===================== ACTUEEL / ARCHIEF ========================*/

.actueel-item-tekst {
    height: 100%
}

/* Indien enkele kolom, margin left toevoegen aan afbeelding */
.archief-item.display_flex_row_nowrap .archief-item-afbeelding-container,
.actueel-item.display_flex_row_nowrap .actueel-item-afbeelding-container {
	margin-left				: 0.625em;
}

.homepage-blok .actueel-item
{
	text-align				: left;
	margin-bottom			: 0.6em;
}

.homepage-blok .actueel-item-afbeelding
{
	width					: 100px;
	margin-right			: 0.6em;

	min-width				: 30%;
}




/* ==================== PORTFOLIO OVERZICHT ==========================*/

.portfolio {
}

.portfolio-item {
	max-width					: 998px;
	
	padding						: 0;
}

.portfolio-item-img img {
	border-radius				: 0.6em 0.6em 0 0 ;
}

.portfolio-item-tekst {
	height						: 100%;
	padding						: 1.25em;
}

.portfolio-item-tekst h2 {
	margin-bottom				: 1.25em;
}

.portfolio-button {
	margin-bottom				: 2em;
}

.filter-button {
	display						: inline-block;
	width						: 11em;
	
	-webkit-border-radius		: 2em;
    -moz-border-radius			: 2em;
    border-radius				: 2em;
    
    font-size					: 1.25em;
    color						: rgb(255,255,255);
    
    border						: 0.06em solid rgb(255,255,255);
    background-color			: transparent;
    text-transform				: none;
    text-align					: center;
    
    line-height					: 1.25;
    padding						: 0.75em 2em;
    margin						: 0.1em;
}

.filter-button:before {
	padding-right				: 0.6em;
}

.filter-button:hover,
.filter-button.actief {
    background-color			: rgb(50,153,204);
    border						: 0.06em solid rgb(50,153,204);
}

.portfolio-soort-icon {
	font-size					: 2.25em;
	color						: rgb(50,153,204);
}

.portfolio-soort-icon span:before {
	padding						: 0 0.6em;
}


/* ================= PORTFOLIO DETAIL ===========================*/


.portfolio-detail p a {
	color						: rgb(50,153,204);
}

section.portfolio-detail {
	justify-content				: flex-start;
}

.portfolio-detail-item {
	border-radius				: 0.6em;
}

.portfolio-detail-item ul {
	background-color			: transparent!important;
	padding						: 0 2em!important;
}

.portfolio-visual-container {
	margin						: 0;
}

.portfolio-detail-visual {
	margin						: 0;
	border-radius				: 0.6em 0 0 0;
}

.portfolio-detail-klantinfo {
	margin						: 0;
	position					: relative;
	flex						: 1 0 auto;
	min-width					: 250px;
	
	border-radius				: 0 0.6em 0 0;
	padding						: 1.25em;
}

.button-portfolio-detail {
	position					: absolute;
	bottom						: 0;

	display						: inline-block;
	
	-webkit-border-radius		: 2em;
    -moz-border-radius			: 2em;
    border-radius				: 2em;
    
    font-size					: 1.25em;
    color						: rgb(34,62,82);
    
    border						: 0.06em solid rgb(34,62,82);
    background-color			: transparent;
    text-transform				: none;
    
    line-height					: 1.25;
    padding						: 0.75em 2em;
    margin						: 1.75em 0;
}

.button-portfolio-detail:hover {
	border						: 0.06em solid rgb(242,242,242);
	background-color			: rgb(242,242,242);
	-webkit-transition			: all 0.2s ease-in;
	transition					: all 0.2s ease-in;
}



/* ================= PORTFOLIO SLIDER ====================*/

.portfolio-slider {
	text-align					: center;

}

.portfolio-slider h2 {
	font-weight					: 300;
}



/*===================== TEAM =========================*/

.teamleden
{
	width					: 100%;
}

.teamlid
{
	text-align				: center;
	padding					: 0.6em 0.6em 2.5em 0.6em;
	margin-bottom			: 1.25em;
}

.teamlid-pasfoto
{
	display					: block;

	width					: 100%;
	min-width				: 30%;
	margin					: 0;

	background-position		: center center;
	background-repeat		: no-repeat;
}

.homepage-blok.teamleden
{
	flex-direction			: column;
}

.homepage-blok .teamlid
{
	text-align					: left;
	margin-bottom				: 0.6em;
	padding						: 0.6em;
}

.homepage-blok .teamlid-pasfoto
{
	width					: 100px;
	margin-right			: 0.6em;
}






/*============== GRID ====================================================*/

.grid-table {
	padding						: 0.4em 0;
}

.grid-th {
	opacity						: 0.8;
	font-weight					: bold;
	padding-right				: 0.25em;
}

.grid-td {
	padding-left				: 0.25em;
}/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 0.625em 0;
}

form > div {
	margin							: 0 0 0.6em 0;
	overflow						: hidden;
	padding							: 0.06em;
}

form > div > fieldset > div > div {
	margin							: 0 0 0.3em 0;
}

form > div > label,
legend {
	width							: 25%;
	float							: left;
	padding-right					: 1.25em;
	padding-top						: 0.6em;
}

form > div > div,
form > div > fieldset > div {
	width							: 75%;
	float							: right;
}

form > div > fieldset label {
	
}

.datatable-prevent-row-click,
.datatable-noclick {
	pointer-events: none;
	cursor: default;
}

.datatable-noclick input[type=checkbox],
.datatable-noclick a,
.datatable-noclick span {
	pointer-events: all;
	cursor: pointer;
	display: inline-block;
}

fieldset {
	border							: 0;
	padding							: 0;
}

input[type=text],
input[type=search],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
input[type=submit],
button,
input[type=button] {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	outline							: none;
}

input[type=text],
input[type=search],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	outline							: none;
	padding							: 0.8em;
}

select {
	height							: 2.5rem;
	padding							: 0 0.5em;
}

textarea,
input[type=file] {
	padding-top						: 0.6em;
}

textarea {
	padding-top						: 0.6em;
	height							: 7.5em;
}

input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	width							: 100%;
}

input[type=submit],
.button,
button,
input[type=button] {
	cursor							: pointer;
	text-decoration					: none;
	border							: 0;
}


input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	
}

input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	outline							: 0;
}

.inputregel {
	margin-bottom					: 1.25em;

	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;

	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.inputregel_eenheid {
	width							: auto;
	margin-left						: 0.9em;
}

.inputregel_label {
}

.inputregel_input {
	position						: relative;

	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.input-decimal .inputregel,
.input-datum .inputregel,
.input-tijdstip .inputregel {
	display							: inline-block;
	margin-bottom					: 0px;
}

.input-decimal input[type=number],
.input-datum select,
.input-tijdstip select {
	width							: auto;
}

input::-ms-clear {
	display							: none;
}




/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	
}

.formulier_melding {
	display							: inline-block;
	padding							: 0 1.25em;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	position						: absolute;
	right							: 0.625em;
}



/* IE11 FIX, if flex-direction: column, then we need flex-basis auto! */
.internet-explorer-trident .inputregel_input {
	-webkit-box-flex				: 2 0 auto;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2 0 auto;	/* OLD - Firefox 19- */
	-ms-flex						: 2 0 auto;	/* IE 10 */
	-webkit-flex					: 2 0 auto;	/* NEW - Chrome */
	flex							: 2 0 auto;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	flex-basis						: auto;
}







/*============== SOCIAL MEDIA EMAIL FORM =============================*/

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		position					: relative;
		margin						: 0 auto;
		max-width					: 500px;
	}
	.socialmedia-emailform-melding {
		margin						: 20px auto;
	}







/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

	form > div > label,
	legend {
		text-align					: right;
	}

}

@media (max-width: 900px) {


}

@media (max-width: 600px) {

	form > div {
		margin						: 0 0 0.9em 0;
	}

	form > div > label,
	legend {
		float						: none;
		margin						: 0 0 0.3em 0;
		width						: 100%;
	}

	form > div > div,
	form > div > fieldset > div {
		float						: none;
		width						: 100%;
	}

	.inputregel {
		-webkit-flex-direction		: column;
		flex-direction				: column;
	}

	input[type=text],
	input[type=search],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	textarea,
	select {
		width						: 100%;
	}

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		max-width					: 320px;
	}
}/*============== STANDAARD FORM ================*/

form {
	text-align				: left;
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

form > div > label,
legend {
	font-size				: 0.9em;
}

form > div > div,
form > div > fieldset > div {
	
}

form > div > fieldset label {
	font-size				: 0.8em;
}

fieldset {
	
}

/* Removes all browser styles */
select,
input[type=submit],
button,
.button,
input[type=button] {
	-webkit-appearance		: none;
	-moz-appearance			: none;
	appearance				: none;
	outline					: none;
}

/* Removes IE select arrows */
select::-ms-expand {
    display					: none;
}


/*============== STANDAARD INPUTS ================*/

input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea,
select {
	color					: rgba(0,0,0,0.8);
	background-color		: rgba(242,242,242,0.5);
	border					: 1px solid rgb(34,62,82);
	font-size				: 1em;
}


.placeholder,
::placeholder {
	color					: rgba(0,0,0,0.5);
}

input:focus:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea:focus,
select:focus {
	color					: rgb(0,0,0);
	border					: 1px solid rgb(50,153,204);
	background-color		: rgba(255,255,255,1);
}

input[readonly]:disabled,
input[readonly]:focus,
input[readonly] {
	color					: rgba(0,0,0,0.5);
	border					: 1px solid rgb(242,242,242);
}

input[readonly]:hover {
	cursor					: default;
}

.inputregel {
	font-size				: 0.9em;
}

.inputregel_eenheid {
	font-size				: 0.9em;
}

.inputregel_label {
	font-size				: 0.9em;
	max-width				: 200px;
}

/*============== CUSTOM INPUTS ================*/

/* Chrome autofill - Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow		: 0 0 0 2rem rgb(255,255,255) inset !important;
}


/* CUSTOM INPUT/TEXTAREA */
input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
select,
textarea {
	-webkit-border-radius	: 0.25em;
	-moz-border-radius		: 0.25em;
	border-radius			: 0.25em;
}


/* CUSTOM SELECT */

select {
	height					: 2.5em;
	padding					: 0.2em 1.5em 0.2em 0.75em !important;
	
	border					: 1px solid rgb(34,62,82);
	
	font-size				: 1rem;
    background				: rgba(242,242,242, 0.5) url("../img/custom-select-icon.png") no-repeat 99% 50%;
}

.search-widget-form select {
    background				: rgba(255,255,255, 1) url("../img/custom-select-icon.png") no-repeat 99% 50%;
}


/* CUSTOM CHECKBOXES AND RADIO */

.inputregel_input input[type="checkbox"] {
	position				: absolute;
	visibility				: hidden;
}

.inputregel_input input[type="checkbox"] + label {
  display					: block;
  position					: relative;
  padding-left				: 25px;
  font-size					: 0.9rem;
  cursor					: pointer;
  -webkit-user-select		: none;
  -moz-user-select			: none;
  -ms-user-select			: none;
}

.inputregel_input input[type="checkbox"] + label:last-child {
	margin-right			: 0;
}

.inputregel_input input[type="checkbox"] + label:before {
  content					: '';
  display					: block;
  width						: 14px;
  height					: 14px;
  border					: 2px solid rgb(50,153,204);
  
  position					: absolute;
  left						: 0;
  top						: 0;
  -webkit-transition		: all .12s, border-color .08s;
  transition				: all .12s, border-color .08s;
}

.inputregel_input input[type="checkbox"]:checked + label:before {
  width						: 7px;
  top						: -4px;
  left						: 4px;
  border-radius				: 0;
  border-top-color			: transparent;
  border-left-color			: transparent;
  -webkit-transform			: rotate(45deg);
  transform					: rotate(45deg);
}

.inputregel_input input[type="radio"] {
	position				: absolute;
	visibility				: hidden;
}

.inputregel_input input[type="radio"] + label {
  display					: inline-block;
  position					: relative;
  padding-left				: 25px;
  font-size					: 0.9rem;
  cursor					: pointer;
  -webkit-user-select		: none;
  -moz-user-select			: none;
  -ms-user-select			: none;
}

.inputregel_input input[type="radio"] + label:last-child {
	margin-right			: 0;
}

.inputregel_input input[type="radio"] + label:before {
	content					: '';
	display					: block;
	width					: 14px;
	height					: 14px;
	border					: 2px solid rgb(50,153,204);
	background-color		: rgb(255,255,255);
	border-radius			: 50%;
	position				: absolute;
	left					: 0;
	top						: 0;
}

.inputregel_input input[type="radio"]:checked + label:before {
	-webkit-transition		: background-color 0.3s linear;
	-o-transition			: background-color 0.3s linear;
	-moz-transition			: background-color 0.3s linear;
	transition				: background-color 0.3s linear;
    background-color		: rgb(50,153,204);
}


/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	font-size				: 0.9rem;
	font-weight				: normal;
}

.formulier_melding {
	-webkit-border-radius	: 0.3em;
	-moz-border-radius		: 0.3em;
	border-radius			: 0.3em;
}

.formulier_melding
{
	-webkit-border-radius	: 0.3em;
	-moz-border-radius		: 0.3em;
	border-radius			: 0.3em;
	
	color					: rgb(255,255,255);
	background-color		: rgb(50,153,204);
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	font-size				: 0.5em;
	top						: 1.9em;
}

.icon-input-ok {
	color					: green;
}

.icon-input-nok {
	color					: red;
}

.icon-input-verplicht {
	color					: rgb(50,153,204);
}




/*============== STANDAARD BUTTONS ================*/

.button,
button,
input[type=button],
input[type=submit] {
	padding					: 0.5em 1.25em;
	
	border					: none;
	-webkit-border-radius	: 0.25em;
	-moz-border-radius		: 0.25em;
	border-radius			: 0.25em;

	font-family				: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
}

.button:not([class*="bg_"]),
button:not([class*="bg_"]),
input[type=button]:not([class*="bg_"]),
input[type=submit]:not([class*="bg_"]) {
	background-color		: rgb(50,153,204);
}

.button:not([class*="tekst_"]),
button:not([class*="tekst_"]),
input[type=button]:not([class*="tekst_"]),
input[type=submit]:not([class*="tekst_"]) {
	color					: rgb(255,255,255);
}

.button:hover:not([class*="bg_hover_"]),
button:hover:not([class*="bg_hover_"]),
input[type=button]:hover:not([class*="bg_hover_"]),
input[type=submit]:hover:not([class*="bg_hover_"]) {
	background-color		: rgb(34,62,82);
}

.button:hover:not([class*="tekst_hover"]),
button:hover:not([class*="tekst_hover"]),
input[type=button]:hover:not([class*="tekst_hover"]),
input[type=submit]:hover:not([class*="tekst_hover"]) {
	color					: rgb(255,255,255);
}

.button {
	display					: inline-block;
}


/* CUSTOM BUTTONS */











/*============== SOCIAL MEDIA EMAIL FORM =============================*/

.socialmedia-emailform-melding {
	background-color: rgba(50,153,204, 0.1);
}







/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

}

@media (max-width: 600px) {

}
/* ============== EXTRA CLASSES (BEHEERBARE CSS CLASSES)=================== */

section.bg_banner {
	max-width					: 100%;
}

.bg_banner > div {
	max-width					: 1366px;
	width						: 100%;
	margin						: auto!important;
}

.bg_banner {
	
}

.banner {
	display						: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display						: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display						: -ms-flexbox;		/* TWEENER - IE 10 */
   	display						: -webkit-flex;		/* NEW - Chrome */
   	display						: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	flex-flow					: row wrap;
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
	-webkit-align-items			: center;
	align-items					: center;
}

.banner h2 {
	text-transform				: uppercase;
	font-style					: normal;
	color						: rgb(255,255,255);
}

/* ============== CUSTOM LIST STYLE TYPE (STERRETJES) =================== */

.site-content * ul,
.site-content * ol {
	list-style-type			: none;
	font-family				: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.site-content section * ul,
.site-content section * ol {
	padding					: 0;
	margin					: 0;
}

.site-content li {
	padding-left			: 2em;
}

.site-content li:before {
	font-family				: 'merlijn2019';
	content					: "\e82c";
	vertical-align			: text-top;
}

.site-content li:before {
	color					: rgb(167,41,32);
	margin-left				: -2em;
	width					: 2em;
	display					: inline-block;
}

.site-content .bg_e li:before {
	color					: rgb(255,255,255);
}



/* ================ FOTO-ALBUMS CUSTOM HOVER ==================== */


.fotoalbums a button {
	width					: 100%;
}

.fotoalbums a:hover button {
	background-color		: rgb(34,62,82);
}

.fotoalbums a:hover img {
	filter					: alpha(opacity=70);
	-webkit-opacity			: 0.7;
	opacity					: 0.7;
}


/* ====================== HEADER ================================== */

.site-header {
	background					: none;
}

.site-header-visual-overlay {
	position					: absolute;
	top							: 0px;
	width						: 100%;
	height						: 100%;
	
	background-image			: linear-gradient(to bottom,rgba(34,62,82,0.2) 0%, rgba(34,62,82,0) 30%);

	z-index						: 7;
}

.menuitem-homepage a.logo-container {
	flex						: none;
	display						: block;
	width						: 230px;
	-webkit-transition			: width 1s ease;
	transition					: width 1s ease;
}

.menuitem-homepage .logo-container img.logo {
	max-width					:100%;
}

.site-header-homepage .hoofdnav > ul > li > a,
.site-header-homepage .bovenbalk span {
	text-shadow					: 1px 1px 3px rgba(0,0,0,0.5);
}


/* HEADER FIXED */

.site-header-fixed {
	position					: fixed;
	top							: 0;
	width						: 100%;
	margin						: 0 auto;
	z-index						: 777;
	background-color			: rgb(255,255,255);
}

.header-visual-home,
.header-visual {
	overflow					: visible;
}

.site-header-fixed .bovenbalk {
	max-height					: 50px;
}

.site-header-fixed .bovenbalk .logo-container {
	position					: relative;
	top							: 3px;
}

.site-header-fixed .bovenbalk .logo-container img {
	width						: 125px;
}

.site-header-fixed .hoofdnav li ul li a {
	color						: rgb(255,255,255);
}

.site-header-fixed .hoofdnav li ul li a:hover {
	color						: rgb(242,242,242);
}




/*============== HOMEPAGE ================================================*/

.homepage-regel-title-text-container {
	text-align					: center;
}

.tour-box-shadow {
	box-shadow					: 0px 0px 7px 0px rgba(0,0,0, 0.2);
}







/*============== GRID ====================================================*/




/* SPECIFIEKE CLASSES */

	.grid-table.tour-data-list {
		grid-template-columns		: 1fr 1fr;
	}

	.tour-data-list .grid-th {
		grid-column					: 1/2;
	}

	.tour-data-list .grid-td {
		grid-column					: 2/2;
	}





/* ============== SEARCH WIDGET =========================================== */

.site-header-homepage .search-widget {
	position					: relative;
	margin						: 0 auto;
	max-width					: 80vw;
	width						: 100%;

	z-index						: 7;
	box-shadow					: 0px 0px 7px 0px rgba(0,0,0, 0.2);

    top							: 20px;
}

.tours-active-filter-container.toggle-element:empty {
	display: none !important;
}

.tours-active-filter-container,
.search-widget-form {
	margin						: 0 auto;
	max-width					: 1066px;
}

.tours-active-filter-container:empty {
	display						: none !important;
}

.search-widget-form input,
.search-widget-form select {
	width						: 100%;
	height						: 2.5em;
}

.search-widget-form .inputregel {
	margin						: 0.6em 0;
}

.site-header-homepage .search-widget h1 {
	text-align					: center;
	font-weight					: bold;
}

.tour-remove-all {
	color						: rgb(52,153,153);
}

.tour-remove-all,
.tour-active-filter {
	cursor						: pointer;
}

.tour-active-filter {
	display						: inline-block;
	padding						: 0.2em 1em 0.2em 0.7em;
	border-radius				: 2em;
	font-weight					: bold;
	margin-right				: 0.4em;
    margin-bottom				: 0.4em;
}

.tour-active-filter:before {
	position					: relative;
	top							: 3px;
	color						: rgb(52,153,153);
	padding-right				: 0.2em;
	vertical-align				: top;
}


/* ============== TESTIMONIALS ============================================ */

.testimonial-container {
	background-color		: rgba(152,164,174, 0.2);
}

.testimonial-title {
	
}

.testimonial-date {
	display					: inline-block;
}

.testimonial-message {
}



/* ============== TOURS OVERZICHT ========================================== */

.tour-available-cabins {
	font-family					: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 0.8em;
	font-weight					: normal;
}

.tour-left-column {

}

.tour-middle-column {

}

.tour-right-column {
	border-left					: 1px solid rgba(34,62,82,0.3);
	padding-left				: 1em;
}

.tour-booking-content {
	display						: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display						: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display						: -ms-flexbox;		/* TWEENER - IE 10 */
    display						: -webkit-flex;		/* NEW - Chrome */
    display						: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
    
   	-webkit-flex-direction		: row;
   	flex-direction				: row;
    
   	-webkit-flex-wrap			: nowrap;
   	flex-wrap					: nowrap;

	-webkit-align-items			: flex-start;
	align-items					: flex-start;
}

.tour-price {
	font-size					: 1.75em;
}

.tour-readmore-link {
  white-space					: nowrap;
}

.tour-date {
	font-family					: 'montserratbold','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

/* ============== TOURS DETAILS ========================================== */

.tour-day-programme-content-container {
}

.tour-day-image-anchor {
	margin-right				: 20px;
}

.tour-image,
.tour-day-image {
	margin						: 0;
}

.tour-day-image {
}

.tour-day-image-anchor:last-child {
	margin-right				: 0px;
}

.tour-day-file-title:before {
	padding-right				: 0.4em;
}

.tour-day-collapsable {
	margin-top					: 0.5em;
	padding						: 1.25em 0;
}

.tour-day-collapsable-container {
	background-color			: rgba(152,164,174, 0.2);
}

.collapsable-header-text {
	padding-left				: 0.4em;
}

.collapsable-header {
	color						: rgb(34,62,82);
}

span.collapsable-header-icon {
	display						: inline-block;
	width						: 2em;
}

.collapsable-header-icon {
	background-color			: rgb(255,255,255);
	text-align					: center;
	line-height					: 2em;
	border-radius				: 50%;
}

.collapsable-header-icon:before {
	vertical-align				: middle;
}

.tour-booking-form .foutmeldingen-inhoud {
	margin						: 0 auto;
	text-align					: left;
}

.tour-booking-form .foutmeldingen {
}

.tour-booking-form .input-second-person.toggle-element {
	display						: none;
}

/* ============== FOOTER TEXT ABOVE MENUITEMS ============================= */

.footer-text-above-menuitems {
	padding-bottom				: 5%;
}

.footer-text-above-menuitems h2 {
	margin-bottom				: 3%;
}


.footer-menuitems-container {
	border-top					: 1px solid rgb(255,255,255);
	border-bottom				: 1px solid rgb(255,255,255);
}





/* ============== BRUSHES ================================================= */

.homepage-regel-brush-before:before {
	background-image			: url(../img/homepageregel-before.png);
}

.homepage-regel-brush-after:after {
	background-image			: url(../img/homepageregel-after.png);
}

.homepage-regel-brush-before-groot {
	position					: relative;
}

.homepage-regel-brush-before-groot:before {
	background-image			: url(../img/homepageregel-before-large.png);
	position					: absolute;
	top							: -240px;
}

.testimonial-container:after {
	background-image			: url(../img/footer-before.png?c=2025072603);
	background-position-x		: 50%;
}

.homepage-regel-brush-before:before,
.homepage-regel-brush-after:after,
.homepage-regel-brush-before-groot:before,
.testimonial-container:after {
	content						: "";
	display						: block;
	background-repeat			: repeat-x;
	width						: 100%;
}

.homepage-regel-brush-before:before,
.homepage-regel-brush-after:after,
.testimonial-container:after {
	height						: 93px;
}

.homepage-regel-brush-before-groot:before {
	height						: 240px;
}


/* ============= PAGINATION ================================================*/

.button.criteria-pagination {
	font-family					: 'montserratregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color						: rgb(34,62,82);
	background-color			: rgb(255,255,255);
	border						: 1px solid rgb(255,255,255);
	border-radius				: 20px;
	width						: 40px;
	line-height					: 40px;
	text-align					: center;
	padding						: 0 0.5em;
}

.button.criteria-pagination:hover,
.button.criteria-pagination.active {
	border						: 1px solid rgb(167,41,32);
}

.button.criteria-pagination:hover {
	background-color			: rgb(255,255,255);
	color						: rgb(34,62,82);
}

.overview-headrow-div {
	width						: 100%;
}

.nr-found-results {

}

.nr-found-results span {
	display						: block;
	line-height					: 1.25rem;
	margin						: 10px 0px;
	text-align					: center;
}

.nr-found-results.mobilewelzichtbaar {
	width						: 100%;
	margin-bottom				: 0.4em;
}

.nr-found-results.without-pagination {
	-webkit-justify-content		: flex-start;
	justify-content				: flex-start;
}

.nr-found-results.without-pagination span {
	text-align					: left;
}

.results-per-page {

}

.results-per-page.without-pagination {

}

.results-per-page select {
	flex					: none;
	max-width				: 100px;
}

.results-per-page label {
	text-align				: right;
	padding-right			: 10px;
	margin					: 0;
}



/* ============== HOOFDSTUKKEN ========================================= */


.hoofdstukken .uitlijning-links,
.hoofdstukken .uitlijning-rechts {
	width							: 25%;
}




/* ============== BUTTONS =============================================== */

.button-column-container {
	
}

.button-column {
	text-align						: center;
	margin							: 0 20px;
}

.button-column-icon {
	color							: rgb(50,153,204);
	font-size						: 2em;
	line-height						: 0.8em;
}

.button-column:hover .button-column-icon {
	color							: rgb(52,153,153);
}

.button-column-tekst {
	font-size						: 0.8em;
}

.content-form-buttons-container {
	display							: flex;
	align-items						: flex-start;
	justify-content					: space-between;
}

.content-form-buttons-container .button-terug {
	margin-right				: 1rem;
}



/* ============== DAY_TO_DAY PHOTOS IN GRID ===================================== */

.collapsable-body {
    display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display							: -ms-flexbox;		/* TWEENER - IE 10 */
    display							: -webkit-flex;		/* NEW - Chrome */
    display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

    -webkit-flex-direction			: row;
    flex-direction					: row;

    -webkit-flex-wrap				: wrap;
    flex-wrap						: wrap;

    -webkit-align-items				: flex-start;
    align-items						: flex-start;
}

div.collapsable-body div:first-of-type {
    flex: 1;
    padding-right: 40px;
}

.tour-day-image-container {
    width: 40%;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    grid-gap: 1em;
}

.tour-day-image-anchor {
    margin-right: 0;
}

.tour-day-file-container {
    width: 100%;
}@media only screen and (min-device-width : 320px)
and (max-device-width : 480px)
and (orientation : landscape) {

    html {
        -webkit-text-size-adjust		: 100%; /* Prevent font scaling in landscape while allowing user zoom */
    }
   
}


@media all and (max-width:1120px) and (min-width:900px) {

	.logomenubalk .button:first-child {
		margin-bottom				: 0.6em;
	}

	.logomenubalk .button {
		text-align					: center;
	}
}

@media all and (max-width:1200px) {

	.site-submenu ul {
		margin						: 2%;
	}
	
}

@media all and (max-width:1000px) {

	.content-met-submenu {
		-webkit-flex-direction		: column;
		flex-direction				: column;

		-webkit-flex-wrap			: nowrap;
		flex-wrap					: nowrap;

		margin-top					: 0.6em;
	}

	.header-visual-home {
		position					: relative;
	}

	.hoofdnav li a {
		padding						: 0 0.6em;
	}

	.site-submenu {
		border						: 0;
		display						: block;
		margin						: 0;
		padding						: 0;
		width						: 100%;
	}

	.site-submenu-items {
		border						: 0;
		margin						: 0;
		padding						: 0;
	}

	.site-submenu h2 {
		display						: none;
	}

	.site-submenu ul {
		list-style					: none;
		padding						: 0;
		text-align					: center;
	}

	.site-submenu li {
		margin-right				: 0.6em;
		padding						: 0.3em;
		width						: inherit;
	}

	.site-submenu a {
		margin						: 0;
		padding						: 0;
	}

	.site-submenu li hr {
		display						: none;
	}

}



@media all and (max-width:900px) {
	
	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

}



@media all and (max-width:800px) {

	.logomenubalk {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
		
		-webkit-align-items			: center;
		align-items					: center;

		margin						: auto;
		width						: 100%;
	}

	.logomenubalk_logo {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;

		margin-left					: 1.25em;
	}

	.div3-12,
	.div4-12,
	.div8-12,
	.div9-12 {
		-webkit-box-flex			: 1 0 48%;	/* OLD - iOS 6-, Safari 3.1-6 */
		-moz-box-flex				: 1 0 48%;	/* OLD - Firefox 19- */
		-ms-flex					: 1 0 48%;	/* IE 10 */
		-webkit-flex				: 1 0 48%;	/* NEW - Chrome */
		flex						: 1 0 48%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	.toggle2nietzichtbaar {
		display						: none;
	}

	.toggle2welzichtbaar {
		display						: inline;
	}

}



@media all and (max-width:750px) {

	.header_buttons {
		-webkit-flex-direction		: column;
		flex-direction				: column;
	}

	.logomenubalk .button:first-child {
		margin-bottom				: 0.6em;
	}

	.logomenubalk .button {
		text-align					: center;
	}

}



@media all and (max-width: 600px) {

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

	.div2-12,
	.div3-12,
	.div4-12,
	.div5-12,
	.div6-12,
	.div7-12,
	.div8-12,
	.div9-12,
	.div10-12,
	.div11-12 {
		min-width					: 98%;
	
		-webkit-box-flex			: 1 0 98%;	/* OLD - iOS 6-, Safari 3.1-6 */
		-moz-box-flex				: 1 0 98%;	/* OLD - Firefox 19- */
		-ms-flex					: 1 0 98%;	/* IE 10 */
		-webkit-flex				: 1 0 98%;	/* NEW - Chrome */
		flex						: 1 0 98%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}
	
	.dienst,
	.menu-infoblok {
	    min-width					: 98%;
	    
		-webkit-box-flex			: 1 0 98%;	/* OLD - iOS 6-, Safari 3.1-6 */
		-moz-box-flex				: 1 0 98%;	/* OLD - Firefox 19- */
		-ms-flex					: 1 0 98%;	/* IE 10 */
		-webkit-flex				: 1 0 98%;	/* NEW - Chrome */
		flex						: 1 0 98%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	.cookiewarning-container {
		-webkit-justify-content		: center!important;
		justify-content				: center!important;
	}

	.header_buttons {
		display						: none;
	}

	.header-visual-home {
		-webkit-transition			: height 0.5s ease-in;
		transition					: height 0.5s ease-in;
	}

	.logomenubalk_logo {
		margin-right				: 1.25em;
	}

	.footer-copyright {
		height						: auto;
		-webkit-flex-direction		: column;
		flex-direction				: column;
		line-height					: 1.75;
	}
	
	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

}/*=== min-max font-size for min-max viewports, scales everything in between: https://css-tricks.com/snippets/css/fluid-typography/ ===*/

/* SET MIN FONT_SIZES HERE */

html 			{	font-size	: 16px	}
    
H1				{	font-size	: 28px;	}

.h1-to-h2		{	font-size	: 28px;	}

H2 				{	font-size	: 24px;	}

H3 				{	font-size	: 22px;	}

H4 				{	font-size	: 20px;	}

H5 				{	font-size	: 18px;	}


@media screen and (min-width: 320px) {

/* CALCULATE (MIN_FONT + (MAX_FONT - MIN_FONT) X ((VIEWPORT_WIDTH - MIN_SCREEN) / (MAX_SCREEN - MIN_SCREEN))) */

	html 			{	font-size	: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));	}
    
    H1				{	font-size	: calc(32px + (50 - 28) * ((100vw - 320px) / (1920 - 320)));	}
    
    .h1-to-h2		{	font-size	: calc(32px + (50 - 28) * ((100vw - 320px) / (1920 - 320)));	}
        
    H2 				{	font-size	: calc(24px + (32 - 24) * ((100vw - 320px) / (1920 - 320)));	}
        
    H3 				{	font-size	: calc(22px + (26 - 22) * ((100vw - 320px) / (1920 - 320)));	}
    
    H4 				{	font-size	: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));	}
    
    H5 				{	font-size	: calc(18px + (22 -18) * ((100vw - 320px) / (1920 - 320)));	}
	
}

@media screen and (min-width: 1920px) {

/* SET MAX FONT_SIZES HERE (CHANGE MAX SCREEN SIZE IF YOU NEED) */

	html 			{	font-size	: 20px;	}
	
	H1				{	font-size	: 50px;	}
	
	.h1-to-h2		{	font-size	: 50px;	}

	H2 				{	font-size	: 32px;	}
	
	H3 				{	font-size	: 26px;	}

	H4 				{	font-size	: 24px;	}

	H5 				{	font-size	: 22px;	}

}

/* ====== OTHER MEDIAQUERIES ===== */

@media all and (max-width:1200px) {

	.menuitem-homepage a.logo-container {
		width						: 160px;
	}
}

@media all and (min-width:1000px) {

	.tour-highlights {
		text-align					: justify;
	}

	.search-widget-form-container.toggle-element {
		display						: initial !important;
	}

	.search-widget-form-container.toggle-element,
	.tours-active-filter-container.toggle-element {
		display						: flex !important;
	}
}

@media all and (max-width:1000px) {

	.search-widget-form-toggler {
		display						: inline-block !important;
	}
	
	.search-widget {
		text-align					: center;
	}

	.tour-right-column {
		width						: 100%;
		min-width					: 100%;
		border-left					: none;
		padding-left				: 0;
	}
			
	.tour-left-column {
		max-width					: 40%;
	}
	
	.tour-booking-content .tour-image {
		margin-right				: 20px;
		width						: auto;
	}

	.tour-booking-content {
    	-webkit-flex-direction		: column;
    	flex-direction				: column;

		-webkit-align-items			: initial;
		align-items					: initial;
	}
	
	.tour-booking-form-right-column {
		display						: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
		display						: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
		display						: -ms-flexbox;		/* TWEENER - IE 10 */
    	display						: -webkit-flex;		/* NEW - Chrome */
    	display						: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
    
    	-webkit-flex-direction		: row;
    	flex-direction				: row;
	}

	.tour-booking-form-section .tour-booking-form-right-column {
		order						: 1;
	}

	.tour-booking-form-section .tour-booking-form-left-column {
		order						: 2;
	}
}


@media all and (max-width:900px) {
	.tour-remove-all.mobilewelzichtbaar {
		display: initial;
	}

    .tour-day-image-container {
        grid-template-columns: 1fr;
    }

}

@media all and (max-width:800px) {

	.nosupport-overlay .nosupport-overlay-content {
		font-size					: 0.8em;
	}

	.header-visual-home {
		height						: 600px;
	}

	.header-visual .imgdiv img,
	.header-visual-home .imgdiv img {
		height						: 600px;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.payoffheader span {
		display						: none;
	}
	
	.menuitem-homepage a.logo-container {
		width						: 180px;
	}
	
	.tour-booking-content .tour-image {
		max-height					: 200px;
	}
	
	.visual {
		top							: -100px;
	}

}

@media all and (max-width:700px) {
	
	.tour-booking-content .tour-image {
		max-height					: 150px;
	}
}

@media all and (max-width: 600px) {

	.tour-left-column {
		max-width					: 100%;
	}
	
	.tours-pagination {
    	-webkit-flex-direction		: column;
    	flex-direction				: column;
    	text-align					: left;
	}
	
	.tours-pagination .overview-headrow-div {
    	-webkit-flex-direction		: column;
    	flex-direction				: column;
    	text-align					: left;
	}
	
	.tours-pagination .overview-headrow-div div {
		width						: 100%;
		padding						: 0.4em 0;
	}
	
	.tours-pagination .results-per-page {
		-webkit-justify-content 	: flex-start !important;
		justify-content 			: flex-start !important;
	}
	
	.tour-booking-content .tour-image {
		display						: none;
	}

    div.collapsable-body div:first-of-type {
        padding-right: 20px;
    }

}

@media all and (max-width:450px) {

    .menuitem-homepage a.logo-container {
        width						: 120px;
    }

    .search-widget-form {
    	display						:block;
    }
    
    .site-header-homepage .search-widget {
    	max-width					: 100%;
    }
	
	.grid-table {
		display						: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
		display						: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
		display						: -ms-flexbox;		/* TWEENER - IE 10 */
    	display						: -webkit-flex;		/* NEW - Chrome */
    	display						: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
    
    	-webkit-flex-direction		: column;
    	flex-direction				: column;
	}
	
	.tours-pagination {
		padding						: 0;
	}
	
	imgbackground-stretch {
		background-position		: top center;
		background-size			: contain;
	}

    .tour-day-image-container {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
	
}

