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

html {
	overflow-x: hidden;
    overflow-wrap: break-word;
}

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: 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-content {
	margin: auto;
    min-height: 2.5em;
}

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

/* ===== SUB NAVIGATION ===== */
.site-submenu li {
    display: inline-block;
    font-weight: normal;
}

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

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

/* ===== 404 ===== */
.error404 {
    background-image: url("https://www.cotta-drive.nl/resources_shared/img/error-404.png");
    background-color: rgb(161,86,28);
    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;
}

/* ===== COLLAPSABLE ===== */
.collapsable {
	width: 100%;
	float: none;
}

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

.collapsable .inputregel_label {
    width: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
    margin-top: 0;
    height: auto;
}

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

/* ===== MOBILE NAVIGATION ===== */
/*noinspection CssOverwrittenProperties */
.mobile-nav {
	display: none;
	
	height: 100%;
	width: 100%;

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

.mobile-nav .h2 {
	font-weight: normal;
	margin: 0.4em;
    padding-left: 0.4em;
}

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

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

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

.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 NAVIGATION ===== */
.hoofdnav ul {
	list-style: none;
}

.hoofdnav li {
	display: inline-block;
}

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

/* ===== HEADER SUB NAVIGATION ===== */
.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 ===== */
section {
	display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - 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 1.25em 0 0;
    padding: 0;
	
	width: 250px;

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

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

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

	-ms-flex: 1 0 21%;	        /* IE 10 */
	-webkit-flex: 1 0 21%;	    /* NEW - Chrome */
	flex: 1 0 21%;	            /* 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%;

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

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

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

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

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

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

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

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

	-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,
.standaard-padding-klein,
.standaard-padding-verticaal,
.standaard-padding-horizontaal {
	box-sizing: border-box;
}

.fullwidth {
	width: 100%;
}

.mobilewelzichtbaar,
.toggle1welzichtbaar,
.toggle2welzichtbaar {
	display: none;
}

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

.uitlijning-klein {
	width: 25%;
}

.uitlijning-links {
	float: left;
    margin: 0 0.625em 0 0;
}

.uitlijning-rechts {
	float: right;
    margin: 0 0 0 0.625em;
}

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

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

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

/* ===== OTHER ===== */
.afgerond {
	overflow: hidden;
}

.animeer {
	transition: all 0.5s ease;
}

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

.bg_rood {
	background-color: #ff0000;
}

.clearboth {
	clear: both;
}

dl {
    display: -webkit-box;	/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;	/* TWEEN - 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,
dd {
    flex: none;
}

.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;		/* TWEEN - 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;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - 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;		/* TWEEN - 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;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - 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;
}

.flex_grow {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.flex_nogrow,
.nogrow {
	-webkit-flex-grow: 0 !important;
	flex-grow: 0 !important;
}

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

.cursor-default {
	cursor: default;
}

.cursor-pointer {
	cursor: pointer;
}

.pointer-events-none {
	pointer-events: none;
}

.pointer-events-all {
	pointer-events: all;
}

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

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

H1, H2, H3,
.h1, .h2, .h3 {
	font-weight: normal;
	padding: 0;
	margin: 0 0 0.4em 0;
    overflow-wrap: break-word;
}

H4, .h4 {
	padding: 0;
	margin: 0;
}

[class*="bg_"] h1,
[class*="bg_"] h2,
[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;
}

.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; }
.margin_hor_30	{ margin: 0 1.8rem !important; }
.margin_hor_35	{ margin: 0 2.2rem !important; }
.margin_hor_40	{ margin: 0 2.5rem !important; }

.margin_right_5     { margin-right: 0.3rem !important; }
.margin_right_10    { margin-right: 0.625rem !important; }
.margin_right_15	{ margin-right: 0.9rem !important; }
.margin_right_20	{ margin-right: 1.25rem !important; }
.margin_right_25	{ margin-right: 1.5rem !important; }
.margin_right_30	{ margin-right: 1.8rem !important; }
.margin_right_35	{ margin-right: 2.2rem !important; }
.margin_right_40    { margin-right: 2.5rem !important; }

.margin_left_5     { margin-left: 0.3rem !important; }
.margin_left_10    { margin-left: 0.625rem !important; }
.margin_left_15	   { margin-left: 0.9rem !important; }
.margin_left_20    { margin-left: 1.25rem !important; }
.margin_left_25    { margin-left: 1.5rem !important; }
.margin_left_30    { margin-left: 1.8rem !important; }
.margin_left_35    { margin-left: 2.2rem !important; }
.margin_left_40    { margin-left: 2.5rem !important; }


.noblur {
	-webkit-filter: none;
	-ms-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.3em 0 !important; }
.padding_bot_10	{ padding: 0 0 0.625em 0 !important; }
.padding_bot_15	{ padding: 0 0 0.9em 0 !important; }
.padding_bot_20	{ padding: 0 0 1.25em 0 !important; }
.padding_bot_25	{ padding: 0 0 1.5em 0 !important; }
.padding_bot_30	{ padding: 0 0 1.8em 0 !important; }
.padding_bot_40	{ padding: 0 0 2.5em 0 !important; }
.padding_bot_50	{ padding: 0 0 3em 0 !important; }
.padding_bot_80	{ padding: 0 0 5em 0 !important; }

.padding_top_0	{ padding-top: 0 !important; }
.padding_top_5	{ padding: 0.3em 0 0 0 !important; }
.padding_top_10	{ padding: 0.625em 0 0 0 !important; }
.padding_top_15	{ padding: 0.9em 0 0 0 !important; }
.padding_top_20	{ padding: 1.25em 0 0 0 !important; }
.padding_top_25	{ padding: 1.5em 0 0 0 !important; }
.padding_top_30	{ padding: 1.8em 0 0 0 !important; }
.padding_top_40	{ padding: 2.5em 0 0 0 !important; }
.padding_top_50	{ padding: 3em 0 0 0 !important; }
.padding_top_80	{ padding: 5em 0 0 0 !important; }

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

P:empty:first-of-type { 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;
    display: block;
	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;
}

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

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

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

.text-align-center,
.centreren,
.center {
    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;
}

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

.toggle-element {
	display: none;
}

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

.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,
.bold,
strong {
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
	font-weight: bold;
}

.width_auto {
    width: auto;
}

.width_100 {
    width: 100%;
}

.width_50 {
    width: 50%;
}

.width_75 {
    width: 75%;
}

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

.whitespace_nowrap {
	white-space: nowrap;
}

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

.tekst_hover_a:hover,
.tekst_a,
a.tekst_a {
	color: rgb(161,86,28);
}

.tekst_hover_b:hover,
.tekst_b,
a.tekst_b {
	color: rgb(211,45,31);
}

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

.tekst_hover_d:hover,
.tekst_d,
a.tekst_d {
	color: rgb(235,233,235);
}

.tekst_hover_e:hover,
.tekst_e,
a.tekst_e {
	color: rgb(201,133,31);
}

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

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

.bg_hover_a:hover,
.bg_a {
	background-color: rgb(161,86,28);
}

.bg_hover_b:hover,
.bg_b {
	background-color: rgb(211,45,31);
}

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

.bg_hover_d:hover,
.bg_d {
	background-color: rgb(235,233,235);
}

.bg_hover_e:hover,
.bg_e {
	background-color: rgb(201,133,31);
}

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

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

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

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

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

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

table[border="0"] td,
table[border="0"] th {
    border: 0;
}

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

/* ===== DISPLAY ===== */
.display_grid {
	display: grid;
}

.display_block {
    display: block;
}

.display_inline_block {
    display: inline-block;
}

.display_inline {
    display: inline;
}

/* ===== IE11 FIX ===== */
.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;
}

.internet-explorer-trident .actueel-item-overzicht {
	display: inline-block;
}
body {
    color: rgb(69,69,69);
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
}

.homepage-blok-content-container img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

/*======= FOOTER =======*/
/* margin-top standaard op 0, indien gewenst hier aanpassen */
.site-footer { }

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

.footer-copyright {
	font-size: 0.9em;
}

/* ===== HEADER NAVIGATION ===== */
.hoofdnav ul {
    margin: 0;
    padding: 0 1.25em;
    text-align: center;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav .h2 {
    font-family: 'open_sansbold','Helvetica Neue','Helvetica','Arial','sans-serif';
}

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

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

.kruimelpad a:hover {
    opacity: 0.8;
}

/* ===== OTHER ===== */
.afgerond,
.border {
    border-radius: 0.9em;
}

.box_shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(25,25,25,0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(25,25,25,0.3);
    box-shadow: 0 0 10px 0 rgba(25,25,25,0.3);
}

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

dd {
    width: 70%;
}

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

H1, H2, H3, H4, H5,
.h1, .h2, .h3, .h4, .h5 {
    font-family	: 'open_sansbold','Helvetica Neue','Helvetica','Arial','sans-serif';
}
.h1, .h2, .h3, .h4, .h5 {
    display: block;
}

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

H2, H3,
.h2 {
    line-height: 1.15;
}

H4, H5,
.h4, .h5 {
    line-height: 1.25;
}

P, P P,
.visual-subtitel {
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
    font-size: 1em;
    line-height: 1.25;
}

.site-content section * ul,
.site-content section * ol {
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
    font-size: 0.9em;
}

.text_shadow {
    text-shadow: 0 0 10px rgba(25,25,25,0.3);
}

.fontsize_smaller {
    font-size: 90%;
}
/* ===== STANDARD FORM ===== */
form {
    padding: 0.625em 0;
    text-align: left;
}

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

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

.inputregel_label,
legend {
    width: 25%;
    float: left;
    padding-right: 1.25em;
    padding-top: 0.6em;
}

.inputregel_input {
    width: 75%;
    float: right;
}

fieldset {
    border: 0;
    padding: 0;
}

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

/* ===== STANDARD INPUTS ===== */
/* Removes all browser styles */
input[type=text],
input[type=search],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
input[type=submit],
input[type=button],
textarea,
select,
button,
.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

/* Removes IE select arrows */
select::-ms-expand {
    display: 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 {
    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=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    outline: 0;
}

.inputregel {
    display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;		/* TWEEN - 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_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: 0;
}

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

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

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

/* ===== ICONS & ERROR MESSAGES ===== */
.formulier_melding {
    display: inline-block;
    padding: 0 1.25em;
}

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

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
    font-size: 0.5em;
    top: calc(25% + 0.5em);
}

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

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

.icon-input-verplicht {
    color: rgb(161,86,28);
}

/* IE11 FIX, if flex-direction: column, then we need flex-basis auto! */
.internet-explorer-trident .inputregel_input {
    -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;
}

/* ===== FORM SPECIFIC MEDIA QUERIES ===== */
@media (min-width: 1200px) {

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

}

@media (max-width: 600px) {

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

    .inputregel_label,
    legend {
        float: none;
        margin: 0 0 0.3em 0;
        width: 100%;
    }

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

}
/* ===== STANDARD FORM ===== */
form > div > label,
legend {
    font-size: 0.9em;
}

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

/* ===== STANDARD INPUTS ===== */
input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]),
textarea,
select {
    color: rgba(25,25,25,0.8);
    background-color: rgba(238,238,238,0.5);
    border: 1px solid rgb(238,238,238);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.9em;
}

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

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

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

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

.inputregel_eenheid {
    font-size: 0.9em;
}

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

label {
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
    font-size: 0.9rem;
}

/* ===== 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(238,238,238);
    border-radius: 0.5em;

    font-size: 1em;
    background: rgba(238,238,238,0.5) url("https://www.cotta-drive.nl/resources_shared/img/custom-select-icon.png") no-repeat 99% 50%;
}

/* FANCY CHECKBOXES AND RADIO */
div.fancy_input_container {
    margin: 0.3em 0;
    position: relative;
}
/* hides the original input, but keeps the functionality */
.fancy_input_container input[type="checkbox"],
.fancy_input_container input[type="radio"] {
    position: absolute;
    visibility: hidden;
}
/* creates space for new input, moves label text to the right */
.fancy_input_container label {
    display: block;
    position: relative;

    padding-left: 25px;
    font-size: 0.9rem;
    margin: 0;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
/* draws new input type */
.fancy_input_container input[type="checkbox"] + span:before,
.fancy_input_container input[type="radio"] + span:before {
    content: '';
    display: block;

    width: 14px;
    height: 14px;
    border: 2px solid rgb(161,86,28);

    position: absolute;
    left: 0;
    top: 0;
}

.fancy_input_container input[type="checkbox"] + span:before {
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.fancy_input_container input[type="radio"] + span:before {
    background-color: rgb(255,255,255);
    border-radius: 50%;
}
/* animates new input types on :checked state */
.fancy_input_container input[type="checkbox"]:checked + span: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);
}

.fancy_input_container input[type="radio"]:checked + span: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(161,86,28);
}

/* ===== ICONS & ERROR MESSAGES ===== */
.foutmeldingen li {
    font-size: 0.9em;
    font-weight: normal;
}

.formulier_melding {
    border-radius: 0.3em;
    color: rgb(255,255,255);
    background-color: rgb(161,86,28);
    font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
}

/* ===== STANDARD BUTTONS ===== */
.button {
    display: inline-block;
}

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

/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/dt-1.10.18/r-2.2.2
 *
 * Included libraries:
 *   DataTables 1.10.18, Responsive 2.2.2
 */

table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("DataTables-1.10.18/images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("DataTables-1.10.18/images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("DataTables-1.10.18/images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("DataTables-1.10.18/images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("DataTables-1.10.18/images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable>tbody>tr.child{padding:0.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:0.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;background-color:#f5f5f7;border:1px solid black;border-radius:0.5em;box-shadow:0 12px 30px rgba(0,0,0,0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}
/* ===== OVERRULE DEFAULT HERE ===== */
/* See https://datatables.net/download/ */

.dataTables_wrapper {
	font-size: 15px;
}

/* Header and footer styles */
.new-record {
	color: rgb(211,45,31);
	font-size: 1.8em;
}

.new-record:hover {
	color: rgb(201,133,31);
}

.new-record span:last-child {
	font-size: 0.6em;
	font-weight: 300;
	position: relative;
	top: -0.4em;
}

[class*="generalOption_"] {
	margin: 0 5px;
}

.dataTable tr[role="row"] td:last-child {
	text-align: right;
}

.inputregel_eenheid .button {
	padding: 0 1.25em;
}

.button.button-klein.datatable-remove-filter,
.button.button-klein {
	text-transform: inherit;
	font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';

	font-size: 1rem;
	padding: 0 0.75em;
	border-radius: 0.5em;
}

.button.button-klein.datatable-remove-filter {
	padding: 0.3em 0.75em;
}

.dataTables_wrapper input,
.dataTables_wrapper select {
	width: auto;
	padding: 0.25em;
	background-color: rgb(255,255,255);
	border: 1px solid rgba(69,69,69,0.2);
	color: rgb(69,69,69);
}

.dt-buttons {
	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-align-items: center;
	align-items: center;

	-webkit-justify-content: flex-end;
	justify-content: flex-end;

	margin-bottom: 0.625em;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .dt-button {
	background-color: rgb(211,45,31);
	color: rgb(255,255,255);
	border: none;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.625em;
	margin: 0.3em;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .dt-button:hover {
	background-color: rgb(201,133,31);
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-excel:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-pdf:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-print:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-csv:before,
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-copy:before
{
	font-family: 'frontoffice';
	text-transform: none;
	font-weight: normal;
	margin-right: 0.3em;
}

.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-excel:before {
	content: "\31";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-pdf:before {
	content: "\33";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-print:before {
	content: "\32";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-csv:before {
	content: "\30";
}
.dt-buttons:not([class*="dt-has-custom-button-style"]) .buttons-copy:before {
	content: "\63";
}

.datatable_header {
	display: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;		/* TWEEN - 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: center;
	align-items: center;

	-webkit-justify-content: space-between;
	justify-content: space-between;

	background-color: rgb(238,238,238);
	padding: 1.25em;
	margin-bottom: 2.5em;
}

.datatable_header select {
	width: auto;
}

.datatable_footer {
	padding: 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;		/* TWEEN - IE 10 */
	display: -webkit-flex;		/* NEW - Chrome */
	display: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-align-items: center;
	align-items: center;
}

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

table.dataTable thead th,
table.dataTable thead td {
	padding: 0.625em 1.1em;
	border-bottom: 1px solid rgb(161,86,28);
}

table.dataTable thead th:active,
table.dataTable thead td:active {
	outline: none;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
	padding: 0.625em 1.1em 0.3em 1.1em;
	border-top: 1px solid rgb(161,86,28);
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
	cursor: pointer;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
	background-repeat: no-repeat;
	background-position: center right;
}

table.dataTable thead .sorting {
	background-image: url("https://www.cotta-drive.nl/resources_shared/img/sort_both.png");
}

table.dataTable thead .sorting_asc {
	background-image: url("https://www.cotta-drive.nl/resources_shared/img/sort_asc.png");
}

table.dataTable thead .sorting_desc {
	background-image: url("https://www.cotta-drive.nl/resources_shared/img/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
	background-image: url("https://www.cotta-drive.nl/resources_shared/img/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
	background-image: url("https://www.cotta-drive.nl/resources_shared/img/sort_desc_disabled.png");
}

table.dataTable tbody tr {
	background-color: rgb(255,255,255);
}

table.dataTable tbody tr.selected {
	background-color: rgb(255,255,255);
}

table.dataTable tbody th,
table.dataTable tbody td {
	padding: 0.5em 0.625em;
	cursor: pointer;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
	border-top: 1px solid rgb(238,238,238);
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
	border-top: none;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
	border-top: 1px solid rgb(238,238,238);
	border-right: 1px solid rgb(238,238,238);
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
	border-left: 1px solid rgb(238,238,238);
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
	border-top: none;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
	background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
	background-color: #acbad4;
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
	background-color: #f6f6f6;
}

table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
	background-color: #aab7d1;
}

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
	background-color: #fafafa;
}

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
	background-color: #acbad5;
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
	background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
	background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
	background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
	background-color: #a6b4cd;
}

table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
	background-color: #a8b5cf;
}

table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
	background-color: #a9b7d1;
}

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
	background-color: #fafafa;
}

table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
	background-color: #fcfcfc;
}

table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
	background-color: #fefefe;
}

table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
	background-color: #acbad5;
}

table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
	background-color: #aebcd6;
}

table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
	background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
	background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
	background-color: #ececec;
}

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
	background-color: #efefef;
}

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
	background-color: #a2aec7;
}

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
	background-color: #a3b0c9;
}

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
	background-color: #a5b2cb;
}

table.dataTable.no-footer {
	border-bottom: 1px solid #111;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
	white-space: nowrap;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	color: #333 !important;
	border: 1px solid transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #333 !important;
	border: 1px solid rgb(161,86,28);
	background: rgb(255,255,255);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: rgb(238,238,238) !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: rgb(255,255,255) !important;
  border: 1px solid rgb(161,86,28);
  background-color: rgb(161,86,28);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: rgb(25,25,25);
  box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: rgb(69,69,69);
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 1px solid #111;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
	border-bottom: none;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
	color: white;
	border: 2px solid white;
	box-shadow: 0 0 3px #444;
	background-color: #31b131;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
	background-color: #d33333;
}

table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
	color: white;
	border: 2px solid white;
	box-shadow: 0 0 3px #444;
	background-color: #31b131;
}

table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
	background-color: #d33333;
}

table.dataTable > tbody > tr.child:hover {
	background: transparent !important;
}

table.dataTable > tbody > tr.child ul.dtr-details > li {
	border-bottom: 1px solid #efefef;
}

table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
	border-bottom: none;
}

div.dtr-modal div.dtr-modal-display {
	background-color: #f5f5f7;
	border: 1px solid black;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

div.dtr-modal div.dtr-modal-close {
	border: 1px solid #eaeaea;
	background-color: #f9f9f9;
}

div.dtr-modal div.dtr-modal-close:hover {
	background-color: #eaeaea;
}

div.dtr-modal div.dtr-modal-background {
	background: rgba(0, 0, 0, 0.6);
}

.datatable-onclick {
	cursor: pointer;
}
.nosupport-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-color: rgba(255,255,255, 0.95);

    z-index: 9999;

    overflow: auto;
    height: 100%;
}

.nosupport-overlay .nosupport-overlay-content {
    position: relative;
    margin: 0 auto;
    max-width: 50vw;
    top: 30%;
    text-align: center;
    transform: translateY(-50%);
}
@media only screen and (min-device-width : 320px)
and (max-device-width : 480px)
and (orientation : landscape) {

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

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

	.div8-12,
	.div9-12 {
        margin: 0.625em 2%;
		-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: 600px) {
    
	.bovenbalk {
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

    .div1-12,
	.div2-12,
	.div3-12,
	.div4-12,
	.div5-12,
	.div6-12,
	.div7-12,
	.div8-12,
	.div9-12,
	.div10-12,
	.div11-12,
    .div12-12 {
        margin: 0.625em 2%;
		min-width: 96%;

		-ms-flex: 1 0 96%;	        /* IE 10 */
		-webkit-flex: 1 0 96%;	    /* NEW - Chrome */
		flex: 1 0 96%;	            /* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	.footer-copyright {
		height: auto;
		-webkit-flex-direction: column;
		flex-direction: column;
		line-height: 1.75;
	}

}


:root {
    --standaard-padding-margin: 1.25em;
}

/* ===== SITE ===== */
.maxcontentbreedte,
.main-content section,
.volledigbreed section {
	max-width: 1440px;
	width: 100%;
    margin: auto;
}

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

/* ===== HEADER TOP NAVIGATION ===== */
.bovenbalk span,
.bovenbalk span:before {
	font-weight: normal;
	margin: 0;
	padding: 0;
}

.bovenbalk span:before {
	margin-right: 0.3em;
}

/* ===== SUB NAVIGATION ===== */
.site-submenu {
    height: auto;
}

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

/* ===== COLLAPSABLE ===== */
.collapsable-header > span {
    margin-right: 0.625em;
}

/* ===== OTHER ===== */
.body-uitklap {
    position: inherit;
}

.fontsize_10 { font-size: 0.6rem !important; }
.fontsize_15 { font-size: 0.9rem !important; }
.fontsize_20 { font-size: 1.25rem !important; }
.fontsize_25 { font-size: 1.5rem !important; }
.fontsize_30 { font-size: 1.9rem !important; }
.fontsize_40 { font-size: 2.5rem !important; }
.fontsize_50 { font-size: 3rem !important; }
.fontsize_60 { font-size: 3.75rem !important; }
.fontsize_70 { font-size: 4.4rem !important; }
.fontsize_80 { font-size: 5rem !important; }
.fontsize_90 { font-size: 5.6rem !important; }
.fontsize_100 { font-size: 6.25rem !important; }

.standaard-padding {
    padding: var(--standaard-padding-margin);
}

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

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

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

.flex_2 {
	flex: 2 0 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.text-link {
    cursor: pointer;
}

/* IE11 FIX, if flex-direction: column, then we need flex-basis auto! */
.internet-explorer-trident [class*=flex_] {
	flex-basis: auto;
}
/* (set fontsize in media queries!) */

/* +++++ G E N E R A L  CSS +++++ */
a {
	color: rgb(161,86,28);
}

a:hover {
	color: rgb(69,69,69);
}

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

/* ===== FOOTER ===== */
.footer-copyright {
	padding: 1.25em;
	text-align: center;
}

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

/* ===== HEADER TOP NAVIGATION ===== */
.bovenbalk {
	height: 100px;
}

.bovenbalk span {
	font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
	font-size: 0.9em;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.bovenbalk a span:before {
	font-size: 200%;
}

/* ===== HEADER NAVIGATION ===== */
.hoofdnav {
	min-height: 50px;
}

.hoofdnav li {
	font-family: 'open_sansregular','Helvetica Neue','Helvetica','Arial','sans-serif';
	line-height: 50px;
}

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

.hoofdnav li a:hover { }

.hoofdnav li a.actief {
	color: rgb(25,25,25);
}

/* ===== SUB NAVIGATION ===== */
.site-submenu {
	width: 100%;
	border-bottom: 1px solid rgba(161,86,28,0.5);
}

.site-submenu ul {
	background-color: rgb(255,255,255);
    padding: 0.625em 1.25em;
}
	
.site-submenu li {
	padding: 0 0.75em;
	font-size: 0.9em;
	line-height: 30px;
}

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

.site-submenu li a:hover {
	color: rgba(25,25,25,0.6);
}

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

/* ===== OTHER ===== */
.border {
    border: 1px solid rgb(211,45,31);
}

.icon:before {
	padding-right: 0.5em;
}

H1 {
	margin-bottom: 1%;
}

H1:not([class*="tekst_"]),
H2:not([class*="tekst_"]),
H3:not([class*="tekst_"]),
H4:not([class*="tekst_"]) {
	color: rgb(69,69,69);
}

label,
.label {
	line-height: 1.5;
}

P, P P {
	line-height: 1.5;
}

.site-content section * ul,
.site-content section * ol {
	background-color: rgba(238,238,238,0.8);
	border-radius: 0;
}

/* +++++ F R O N T O F F I C E  CSS +++++ */
.keyvalue_table {

}

.keyvalue_row {
    padding: 0.2em 0.6em;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.keyvalue_row:nth-child(odd) {
    background-color: rgba(238,238,238,0.5);
}

.keyvalue_key {
    font-weight: bold;
}

.keyvalue_colon {
    text-align: center;
    width: 1em;
}

.keyvalue_value {
    flex: 1;
}

.frontoffice-content-table {
    display	: block;
    overflow: auto;
    font-size: 15px;
    border-spacing: 0;
}

.frontoffice-content-thead {
    font-weight: bold;
}

.frontoffice-content-thead td.frontoffice-content-td {
    border: none;
    border-bottom: 1px solid rgb(161,86,28);
}

tr.frontoffice-content-tr:nth-child(odd) {
    background-color: rgba(25,25,25,0.05);
}

td.frontoffice-content-td {
    border: 1px solid rgb(238,238,238);
}

/* ===== LOGIN ===== */
section.bg_afbeelding {
	min-height: calc(100vh - 100px);
}

.bg_afbeelding {
    background: url("https://www.cotta-drive.nl/resources/img/bg_login.jpg") no-repeat left bottom;
    background-size: cover;
}

.login-form {
	max-width: 39em;
	margin: auto;
}

/* ===== HOME - STATS ===== */
.counter {
	text-align: center;
}

section.counter {
	margin-top: 6.25em;
	max-width: 750px;
}

.counter-icon {
	font-size: 2em;
	color: rgb(161,86,28);
}

.stat-counter {
	font-size: 3em;
	color: rgb(69,69,69);
}

/* ===== DASHBOARD ===== */
.dashboard-blokken {
	margin-top: 4.5em;
}

.dashboard-blok {
	position: relative;
	flex: 1 0 33%;
	min-width: 270px;
	height: auto;
	
	margin: 1%;
	padding: 3em;
	
	text-align: center;
	background-color: rgb(238,238,238);

	overflow: hidden;
}

div .dashboard-blok-icon {
	display: inline-block;
	width: 5em;
	height: 5em;
	border-radius: 50%;
    margin-bottom: 5%;
	color: rgb(235,233,235);
	background-color: rgb(255,255,255);
}

div .dashboard-blok-icon:before {
	font-size: 2.5em;
	line-height: 1.875;
}

.dashboard-blok h2 {
	color: rgb(161,86,28);
	font-size: 6.25em;
	margin-bottom: 5%;
}

.dashboard-blok p {
	font-size: 1.25em;
}

/* The "shine" element */
.dashboard-blok-shine:after {
  animation: shine 8s ease-in-out infinite;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  
  background: rgba(255,255,255, 0.07);
  background: linear-gradient(to right,
        rgba(255,255,255, 0.07) 0%,
        rgba(255,255,255, 0.13) 77%,
        rgba(255,255,255, 0.5) 92%,
        rgba(255,255,255, 0.0) 100%
  );
}

.dashboard-blok-shine:active:after {
  opacity: 0;
}

@keyframes shine {
  10% {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.5s, 0.5s, 0.12s;
    transition-timing-function: ease;
  }
  30% {
    opacity: 0;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
  }
}
/* ===== STANDARD FORM ===== */
.datatable-prevent-row-click,
td.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;
}

.inputregel_input {
	flex: 2 0 0;
}

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

/* CUSTOM CHECKBOXES AND RADIO */
.inputregel_input input[type="checkbox"] + label {
  padding-left: 30px;
  font-family: 'open_sansbold','Helvetica Neue','Helvetica','Arial','sans-serif';
  font-size: 1rem;
}

.inputregel_input input[type="checkbox"] + label:before {
  width: 18px;
  height: 18px;
  border: 2px solid rgb(211,45,31);
  
  position: absolute;
  left: 0;
  top: 6px;
}

/* rotate border */
.inputregel_input input[type="checkbox"]:checked + label:before {
  width: 9px;
  top: 2px;
  left: 6px;
}

.inputregel_input input[type="radio"] + label {
  padding-left: 30px;
  font-family: 'open_sansbold','Helvetica Neue','Helvetica','Arial','sans-serif';
}

.inputregel_input input[type="radio"] + label:before {
	width: 18px;
	height: 18px;
	border: 2px solid rgb(211,45,31);
	background-color: rgb(255,255,255);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
}

.inputregel_input input[type="radio"]:checked + label:before {
    background-color: rgb(211,45,31);
}

/* ===== ICONS & ERROR MESSAGES ===== */

.foutmelding-regel {
	color		: rgb(161,86,28);
}

/* ===== STANDARD BUTTONS ===== */
.button,
button,
input[type=button],
input[type=submit] {
	padding: 0.75em 1.25em;
	
	border: none;
	border-radius: 2.5em;

	font-family: 'open_sansbold','Helvetica Neue','Helvetica','Arial','sans-serif';
	font-size: 1em;
		
	-webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.button:not([id*="mceu_"]):not([class*="bg_"]):not([class*="modal-footer"]),
button:not([id*="mceu_"]):not([class*="bg_"]):not([class*="modal-footer"]),
input[type=button]:not([id*="mceu_"]):not([class*="bg_"]):not([class*="modal-footer"]),
input[type=submit]:not([id*="mceu_"]):not([class*="bg_"]):not([class*="modal-footer"]) {
	background-color: rgb(211,45,31);
}

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

.button:hover:not([id*="mceu_"]):not([class*="bg_hover_"]):not([class*="modal-footer"]),
button:hover:not([id*="mceu_"]):not([class*="bg_hover_"]):not([class*="modal-footer"]),
input[type=button]:hover:not([id*="mceu_"]):not([class*="bg_hover_"]):not([class*="modal-footer"]),
input[type=submit]:hover:not([id*="mceu_"]):not([class*="bg_hover_"]):not([class*="modal-footer"]) {
	background-color: rgb(201,133,31);
}

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

/* CUSTOM BUTTONS */
.inputregel.full_width .button,
.inputregel.full_width button,
.inputregel.full_width input[type=button],
.inputregel.full_width input[type=submit],
.full_width {
	width: 100%;
}

.button.full_width,
button.full_width ,
input[type=button].full_width ,
input[type=submit].full_width  {
	width: 100%;
}

.button.smaller,
button.smaller ,
input[type=button].smaller ,
input[type=submit].smaller  {
	padding: 0.25em 1.25em;
	font-size: 80%;
}

/* INACTIEVE BUTTONS */
.inputregel.inactief .button,
.inputregel.inactief button,
.inputregel.inactief input[type=button],
.inputregel.inactief input[type=submit],
.inputregel.inactief .button:hover,
.inputregel.inactief button:hover,
.inputregel.inactief input[type=button]:hover,
.inputregel.inactief input[type=submit]:hover,
.button.inactief,
button.inactief,
input[type=button].inactief,
input[type=submit].inactief,
.button.inactief:hover,
button.inactief:hover,
input[type=button].inactief:hover,
input[type=submit].inactief:hover {
	background-color: rgb(238,238,238);
	cursor: initial;
	
}

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

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

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

}

@media (max-width: 450px) {

    .button,
    button,
    input[type=button],
    input[type=submit] {
    	padding		: 0.5em 1em;
    }
    	
}



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

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

	.toggle1nietzichtbaar {
		display: none;
	}

	.toggle1welzichtbaar {
		display: inline;
	}

}

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

    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        white-space: normal;
        padding: 0.2em;
    }

}

@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: inherit;
		-webkit-transition: all 0.5s ease-in;
		transition: all 0.5s ease-in;
	}

}

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

    .login-form input[type=submit] {
        margin-left: 0;
    }

}

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

    .standaard-padding {
        padding: 0.75em;
    }

    .main-content section > div:first-child {
        padding: 0.5em 0.75em;
    }

}
/*=== 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;	}

H2 				{	font-size: 22px;	}

H3 				{	font-size: 20px;	}

H4 				{	font-size: 18px;	}

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 + (18 - 16) * ((100vw - 320px) / (1920 - 320)));	}

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

	H1 				{	font-size: 32px;	}

	H2 				{	font-size: 26px;	}

	H3 				{	font-size: 24px;	}

	H4 				{	font-size: 22px;	}

	H5 				{	font-size: 22px;	}

}

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

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

	body {
		line-height		: 1.7;
	}

}


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

    .keyvalue_key {
        width: 30%;
    }

}

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

    .keyvalue_key {
        width: 20%;
    }

}

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

    .keyvalue_key {
        width: 15%;
    }

}
