
* {
	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 {
	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%;
}

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

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

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

.maxcontentbreedte,
.main-content section,
.volledigbreed section {
	width							: 100%;
	max-width						: 1350px;
    margin							: auto;
}


/*============== 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							: var(--standaard-padding-margin);
}

.standaard-padding-klein {
	box-sizing						: border-box;
	padding							: calc(0.5 * var(--standaard-padding-margin));
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: var(--standaard-padding-margin) 0;
}

.standaard-padding-horizontaal {
	box-sizing						: border-box;
	padding							: 0 var(--standaard-padding-margin);
}

.fullwidth {
	width							: 100%;
}

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

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

.mobilewelzichtbaar {
	display							: none;
}

.toggle1welzichtbaar {
	display							: none;
}

.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 ==============================================*/
section.kruimelpad-container {
	margin							: 0 1%;
}

.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,
.links,
.left {
	text-align						: left;
}

.text-align-right,
.rechts,
.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;
}

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

.flex_nogrow,
.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_1_0_0 {
	-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+ */
}

.flex_1_0_auto {
	-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+ */
}

.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%;
}

.internet-explorer-trident .site-content .flex_1_0_auto {
	flex-grow						: 1!important;
	flex-shrink						: 1!important;
	flex-basis						: auto!important;
}

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

.internet-explorer-trident .standaard-padding-klein {
	box-sizing						: border-box;
	padding							: 0.625em;
}

.internet-explorer-trident .standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 1.25em 0;
}

.internet-explorer-trident .standaard-padding-horizontaal {
	box-sizing						: border-box;
	padding							: 0 1.25em;
}

.cursor-pointer {
	cursor							: pointer;
}

.font_kop {
	font-family						: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
}

.font_tekst {
	font-family						: 'objectiveregular','Helvetica','Arial','sans-serif';
}

H1,
H2,
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,
.geenmarge	{ 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; }

.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; }

.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;
}

.align-self-start {
	-webkit-align-self			: flex-start;
	align-self					: flex-start;
}

.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;
}

strong { font-weight				: bold; }

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

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

.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;
}

.list-style-none {
	list-style						: none;
}

.vet {
	font-weight						: bold;
}

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

.whitespace_nowrap {
	white-space						: nowrap;
}


/*============== KLEUREN ==============*/
.tekst_hover_body:hover,
.tekst_body,
a.tekst_body {
	color					: rgb(28,28,28);
}

.tekst_hover_a:hover,
.tekst_a,
a.tekst_a {
	color					: rgb(138,182,27);
}

.tekst_hover_b:hover,
.tekst_b,
a.tekst_b {
	color					: rgb(41,50,126);
}

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

.tekst_hover_d:hover,
.tekst_d,
a.tekst_d {
	color					: rgb(177,22,22);
}

.tekst_hover_e:hover,
.tekst_e,
a.tekst_e {
	color					: rgb(33,40,98);
}

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

.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(28,28,28);
}

.bg_hover_a:hover,
.bg_a {
	background-color		: rgb(138,182,27);
}

.bg_hover_b:hover,
.bg_b {
	background-color		: rgb(41,50,126);
}

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

.bg_hover_d:hover,
.bg_d {
	background-color		: rgb(177,22,22);
}

.bg_hover_e:hover,
.bg_e {
	background-color		: rgb(33,40,98);
}

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

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

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

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

[class*='tekst_hover_'],
.site-footer a {
	-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 }

/*============= GRID =============*/
.display_grid {
	display						: grid;
}:root {
	--standaard-padding-margin		: 1.25em;
}

body {
  color						: rgb(28,28,28);
  font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb();
	cursor					: pointer;
}


/*============== SITE ====================================================*/
.site {
	background-color		: rgb(255,255,255);
}


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

.site-content {
	min-height				: 40px;
	width					: 100%;
}

.main-content section > div {
	/*padding					: 30px;*/
}

.volledigbreed section {
	max-width				: 1350px;
}

/* ============== INLOGGEN =================== */

section.site-bg_afbeelding {
	min-height					: 100vh;
}

.bg_afbeelding {
	background					: url("../img/bg_login.jpg");
	background-color			: rgb(138,182,27);
	background-repeat			: no-repeat;
	background-position			: top;
	background-size				: contain;
	min-height					: 100vh;
}
 
.login-form {
	width						: 60vw;
	max-width					: 60vw;
	margin						: auto;
	color						: rgb(255,255,255);
	background-color			: rgba(138,182,27,0.8);
}

.login-form input[type=submit] {
	margin-left					: 9rem;
	font-size					: 1.2em;
}

.login-form .inputregel_label {
	width						: 9rem;
	max-width					: 9rem;
}


.login-form .inputregel_label label {
	
	color: white;
}

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

.button_met_icon {
	color					: rgb(255,255,255);
	font-family				: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
	text-transform			: uppercase;
	padding					: 10px 20px;
}

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


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

.afgerond {
	-webkit-border-radius		: 5px;
	-moz-border-radius			: 5px;
	border-radius				: 5px;
}

.border {
	-webkit-border-radius		: 0;
	-moz-border-radius			: 0;
	border-radius				: 0;
	
	border						: 1px solid rgba(138,182,27,0.5);
}


/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
	font-size				: 0.8em;
}

.kruimelpad a:hover {
	opacity					: 0.8;
}


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

.tekst_a {
	color					: rgb(138,182,27);
}

.tekst_b {
	color					: rgb(41,50,126);
}

.tekst_c {
	color					: rgb(227,227,227);
}

.tekst_grijs {
	color					: rgb(28,28,28);
}

.tekst_lichtgrijs {
	color					: rgb();
}

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

.tekst_zwart {
	color					: rgb(28,28,28);
}

.bg_a {
	background-color		: rgb(138,182,27);
}

.bg_b {
	background-color		: rgb(41,50,126);
}

.bg_c {
	background-color		: rgb(227,227,227);
}

.bg_grijs {
	background-color		: rgb(214,214,214);
}

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

.bg_zwart {
	background-color		: rgb(28,28,28);
}

.project_tekst_a {
	color					: rgb();
}

.project_tekst_b {
	color					: rgb();
}

.project_tekst_c {
	color					: rgb();
}


.project_bg_a {
	background-color		: rgb();
}

.project_bg_b {
	background-color		: rgb();
}

.project_bg_c {
	background-color		: rgb();
}

/*============== KLEUREN AFHANGEND VAN ACHTERGROND ====================*/

.bg_a .tekst_a,
.bg_b .tekst_b,
.bg_c .tekst_c,
.bg_zwart {
	color					: rgb(255,255,255);
}

.bg_wit,
.bg_grijs {
	color					: rgb(28,28,28);
}

.bg_a .downloads td,
.bg_b .downloads td,
.bg_c .downloads td {
	border					: 1px solid rgb(214,214,214);
}

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td {
	border					: 1px solid rgb(138,182,27);
}

.bg_a .downloads *,
.bg_b .downloads *,
.bg_c .downloads * {
	color					: rgb(255,255,255);
}

.bg_wit .downloads *,
.bg_grijs .downloads *,
.bg_zwart .downloads * {
	color					: rgb(28,28,28);
}


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

.downloads {
	border					: 1px solid rgb(214,214,214);
	font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
	margin-bottom			: 0.8em;
}

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

.bestand-link:before {
	padding-right			: 0.5em;
}

.font_kop {
	font-family				: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
}

.font_tekst {
	font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
}

H1, H2 {
	font-family				: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
}

H3, H4, H5 {
	font-family				: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
}

H1 {
	line-height				: 1;
}

H2, H3 {
	line-height				: 1.15;
}

H4, H5 {
	line-height				: 1.25;
}

label {
	font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
	line-height				: 1.25;
}

P, P P {
	font-family				: 'objectiveregular','Helvetica','Arial','sans-serif';
	font-size				: 1em;
	line-height				: 1.25;
}

section img {
	max-width				: 100%;
}

.site-content section * ul,
.site-content section * ol {
	background-color			: rgba(214,214,214,0.8);

	-webkit-border-radius		: 0;
	-moz-border-radius			: 0;
	border-radius				: 0;
	
	font-family					: 'objectiveregular','Helvetica','Arial','sans-serif';
	font-size				: 0.9em;
}

.icon:before {
	vertical-align			: sub;
}/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 10px 0;
}

form > div {
	margin							: 0 0 10px 0;
	overflow						: hidden;
	padding							: 1px;
}

form > div > fieldset > div > div {
	margin							: 0 0 5px 0;
}

form > div > label,
legend {
	width							: 25%;
	float							: left;
	padding-right					: 20px;
	padding-top						: 10px;
}

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


form > div > fieldset label {
	
}

.datatable-noclick {
	pointer-events: none;
   cursor: default;
}

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

.datatable-noclick a {
	width:100%;
	height:100%;
	display:block;
}

.datatable-noclick .icon {
	display:inline;
}

fieldset {
	border							: 0;
	padding							: 0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
input[type=submit],
button,
input[type=button],
textarea,
select {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	
	margin-bottom					: 1px;
	outline							: none;
	padding-left					: 10px;
	padding-right					: 10px;
}

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

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

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

textarea {
	padding-top						: 10px;
	height							: 120px;
}

.input-geenmarge-bottom,
.input-geenmarge-bottom input[type=submit] {
	margin-bottom					: 0;
}

.input-geenvolledigebreedte input[type=text],
.input-geenvolledigebreedte input[type=number],
.input-geenvolledigebreedte input[type=email],
.input-geenvolledigebreedte input[type=tel],
.input-geenvolledigebreedte input[type=url],
.input-geenvolledigebreedte input[type=file],
.input-geenvolledigebreedte input[type=password],
.input-geenvolledigebreedte textarea,
.input-geenvolledigebreedte select,
.input-geenvolledigebreedte input[type=submit]{
	width							: auto;
}

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

.inputregel {
	margin-bottom					: 20px;

	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						: 15px;
}

.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 {
	display							: inline-block;
	margin-bottom					: 0px;
}

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

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




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

.foutmeldingen {
	
}

.foutmeldingen li {
	
}

.formulier_melding {
	display							: inline-block;
	padding							: 0 20px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	position						: absolute;
	right							: 10px;
}




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

@media (min-width: 1200px) {

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

}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

	form > div {
		margin						: 0 0 15px 0;
	}

	form > div > label,
	legend {
		float						: none;
		margin						: 0 0 5px 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=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	textarea,
	select {
		width						: 100%;
	}

}/*============== 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(28,28,28,0.8);
	background-color		: rgba(255,255,255,0.5);
	border					: 1px solid rgb(138,182,27);
	padding					: 0.6em;
	font-size				: 1em;
}


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

input:focus:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea:focus,
select:focus {
	color					: rgb(28,28,28);
	border					: 1px solid rgb(138,182,27);
}

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

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;
}

.naastelkaar-geenlabel .inputregel_label {
    display					: none;
}

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

/*============== 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 SELECT */

select {
	height					: 2.5em;
	padding					: 0.2em 1.5em 0.2em 0.75em !important;
	
	border					: 1px solid rgb(214,214,214);
	-webkit-border-radius	: 0.5em;
	-moz-border-radius		: 0.5em;
	border-radius			: 0.5em;
	
	font-size				: 1em;
    background				: rgba(214,214,214,0.5) 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(138,182,27);
  
  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(138,182,27);
	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(138,182,27);
}


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

.foutmeldingen {
	
}

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

.formulier_melding {
	color					: rgb(255,255,255);
	background-color		: rgb(177,22,22);
	font-family				: 'objectiveregular','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(41,50,126);
}




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

.button,
button,
input[type=button],
input[type=submit] {
	padding					: 0.5em 0.8em;
	
	border					: none;
	border-bottom			: 0.2em solid rgb(33,40,98);

	font-family				: 'objectiveextra_bold','Helvetica','Arial','sans-serif';
	text-align				: center;
	
	color					: rgb(255,255,255);
	background-color		: rgb(41,50,126);
}

.button.inactive,
button.inactive,
input[type=button].inactive,
input[type=submit].inactive {
	pointer-events			: none;
	cursor					: default;
	background-color		: rgb(177,22,22);
	border					: none;
}

.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	background-color		: rgb(33,40,98);
}

.button {
	display					: inline-block;
}

.leesverder {
	margin					: 1em 0 0.3em 0;
}

/* CUSTOM CSS */



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

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

}

@media (max-width: 600px) {

}/*  BOVENBALK  */

.bovenbalk {
	padding-right	: 2em;
	height			: 3em;
}

.logo {
	width			: auto;
	max-height		: 3em;
	margin			: 0;
}

img.logo,
img.select_response_photo {
	display			: block;
}

.logout_container {
	width			: 2em;
	height			: 1.5em;
	font-size		: 1.3em;
	text-align		: center;
	color			: rgb(138,182,27);
}

.logout_container:hover {
	color			: rgb(33,40,98);
}

.logout_container:before {
	vertical-align	: middle;
}

/*  RESPONSE ACCOUNT  */

.select_response_title {
	padding-right	: 1em;
}

.select_response_photo {
	width			: auto;
	height			: 10em;
	margin			: 0;
	padding			: 0.5em;
}

.bg_img {
	background			: url("../img/bg_login.jpg");
	background-color	: rgb(138,182,27);
	background-repeat	: no-repeat;
	background-position	: top;
	background-size		: cover;
}

/*  VIDEOCHAT  */

.incoming_video_container {
	flex			: 1;
}

.outgoing_video_container {
	min-width		: 15em;
}

.outgoing_video_content_container {
	position		: relative;
	padding-bottom	: calc(100vw / 4);
}

.outgoing_video_content {
	position		: absolute;
	top				: 1em;
	left			: 1em;
	bottom			: 1em;
	right			: 1em;
}

.outgoing_video_container_video_off,
.outgoing_video_container_microphone_off {

}

/*  VIDEOCHAT BUTTONS */

.response_type_button {
	margin				: 0 1.2em;
	margin-left			: 0;
	text-align			: center;
}

.response_type_button:last-of-type {
	margin-right		: 0;
}


/*  OVERLAY INCOMING CALL  */

.overlay_incoming_call {	
	display				: none;
	position			: absolute;
	top					: 0;
	left				: 0;
	width				: 100%;
	height				: 100%;
	background-color	: rgba(28,28,28, 0.8);
}

.response_type_container {
	width				: 75vw;
	height				: auto;
	min-height			: 55vw;
	max-height			: 100vh;
	
	margin				: 0 auto;
	background-color	: rgb(227,227,227);
		
	transition			: all 0.3s ease-out;
}

.request_video_call {
	width				: 100%;
	
	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	: center;
	align-items			: center;
	
	-webkit-justify-content	: center;
	justify-content			: center;
}

.button-respond {
	font-size			: 2em;
	margin-left			: 5%;
	color				: rgb(138,182,27);
	background-color	: rgb(255,255,255);
	border-bottom		: 0.1em solid rgb(214,214,214);
	
	transition			: all 0.3s ease-out;
}

.button-respond:hover,
.button-respond.active {
	color				: rgb(255,255,255);
	background-color	: rgb(138,182,27);
}

.button-end-call {
	color				: rgb(177,22,22);
}

.button-end-call:hover {
	color				: rgb(255,255,255);
	background-color	: rgb(177,22,22);
}
@media all and (max-width:1120px) and (min-width:900px) {

	.logomenubalk .button:first-child {
		margin-bottom				: 10px;
	}

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



@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					: 10px;
	}

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

	.hoofdnav li a {
		padding						: 0 10px;
	}

	.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;
		margin						: 0;
		padding						: 0;
		text-align					: center;
	}

	.site-submenu li {
		margin-right				: 10px;
		padding						: 5px;
		width						: inherit;

	}

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

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

	.toggle1nietzichtbaar {
		display						: none;
	}

	.toggle1welzichtbaar {
		display						: inline;
	}

}



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



}



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

	.hoofdnav,
	.site-submenu {
		display						: none;
	}

	.hoofdnav-mobile {
		display						: block;
	}
	
	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inline;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}
	
	.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					: 20px;
	}

	.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				: 10px;
	}

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

}



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

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

	.div3-12,
	.div4-12,
	.div6-12,
	.div8-12,
	.div9-12 {
		flex						: 1 0 auto;
	}

	.header_buttons {
		display						: none;		
	}

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

	.logomenubalk_logo {
		margin-right				: 20px;
	}

	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inline;
		-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	: 22px;	}

H2 					{	font-size	: 20px;	}

H3 					{	font-size	: 16px;	}

H4 					{	font-size	: 16px;	}

H5 					{	font-size	: 16px;	}


@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 + (18 - 16) * ((100vw - 320px) / (1920 - 320)));	}
    
    H1 					{	font-size	: calc(22px + (26 - 22) * ((100vw - 320px) / (1920 - 320)));	}
    
    H2 					{	font-size	: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));	}
    
    H3 					{	font-size	: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));	}
    
    H4 					{	font-size	: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));	}
    
    H5 					{	font-size	: calc(16px + (18 - 16) * ((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	: 18px;	}
	
	H1 					{	font-size	: 26px;	}

	H2 					{	font-size	: 24px;	}

	H3 					{	font-size	: 24px;	}

	H4 					{	font-size	: 18px;	}

	H5 					{	font-size	: 18px;	}

}

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


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

    .response_type_container {
		width				: 50vw;
		min-height			: 30vw;
   }

}

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

    .button-respond {
    	font-size			: 2em;
	}
	
	.outgoing_video_content_container {
    	padding-bottom		: calc(100vw / 3);
    }
    
}

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

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	select {
		width					: 100%;
	}
	
    .login-form {
    	width					: 75vw;
    	max-width				: 90vw;
	}
    	
	.outgoing_video_content_container {
    	padding-bottom			: calc(100vw / 2);
    }
	
}

@media all and (max-width: 650px) {
    
    .login-form input[type=submit] {
    	margin-left				: 0;
    }
    
    .login-form {
    	width					: 80vw;
	}
	
	img.select_response_photo {
		display					: none;
	}
	
	.response_type_container {
    	width					: 80vw;
    	min-height				: 60vw;
	}
	
    .button-respond {
		font-size				: 1.5em;
		margin-left				: 2%;
	}

}

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

	.outgoing_video_container_video_off,
    .outgoing_video_container_microphone_off {
    	font-size				: 0.6em;
    }
    
    .response_type_button {
		margin-right			: 0.6em;
	}
	
}