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

html {
	overflow-x						: hidden;
}

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

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




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

.site {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
	
	position						: relative;
	bottom							: 100%;
	left							: 0;
	top								: 0;
	
	height							: 100%;
	min-width						: 100%;

	z-index							: 1;
}

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

.body-uitklap {
	overflow						: hidden;
	position						: fixed;
	width							: 100%;
}

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

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

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

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

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

.site-submenu-items {
	-webkit-border-radius			: 15px;
	-moz-border-radius				: 15px;
	border-radius					: 15px;
	
	box-sizing						: border-box;
	min-width						: 250px;
	margin-right					: 40px;
	margin-top						: 60px;
	overflow						: hidden;
	padding							: 20px;
}

.site-submenu h2 {
	margin-bottom					: 20px;
}

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

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

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

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

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

.site-submenu li a:hover {
	
}

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




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

.error404 {
	min-height					: 300px;
	background-image			: url("../img/error-404.png");
	background-color			: rgb(14,31,69);
	background-repeat			: no-repeat;
    background-position			: left center;
    background-size				: cover;
    
    font-size					: 50px;
    font-weight					: 300;
    text-align					: center;
	color						: rgb(255,255,255);
	
	margin						: 40px;
	padding						: 50px;
}



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

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

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

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

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

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


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


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

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

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

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

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

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

.volledigbreed section {
	margin							: auto;
	width							: 100%;
}

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

.submenu-infoblok {
	
}
.site-content section .submenu-infoblok ul,
.site-content section .submenu-infoblok ol {
    padding							: 10px;
    margin							: 10px 0px;
    text-align						: left;
	display							: inline-block;
}

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

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

.menu-infoblokken
{
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.menu-infoblok
{
	position				: relative;
	flex					: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	text-align				: center;
	padding					: 10px 10px 80px 10px;
	margin-bottom			: 20px;
}

.menu-infoblok
{
	cursor					: pointer;
}

div .menu-infoblok-icon
{
    display					: inline-block;
    width					: 170px;
    height					: 170px;
    border					: 2px solid rgb(0,0,0);
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
    margin-bottom			: 20px;
}
    
div .menu-infoblok-icon:before
{
    font-size				: 8em;
    line-height				: 1.25;
}

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

.menu-infoblok .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(164,215,229);
	color					: rgb(0,0,0);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(164,215,229);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(164,215,229);
    border-color			: rgb(164,215,229);
}





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

.collapsable-header
{
	cursor							: pointer;
}

.collapsable .inputregel_label,
.collapsable .inputregel_input
{
	width							: 75%;
	float							: right;
}

.collapsable-header > span
{
	margin-right			: 10px;
}




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

.site-footer {
	height							: auto;
	margin-top						: 20px;
}

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

.footer-copyright div {
    margin							: 0px 10px;
}




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

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

	position						: fixed;
	bottom							: 0;

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

.mobile-nav h2 {
	font-weight						: normal;
	margin							: 10px;
}

.mobile-nav ul {
	list-style						: none;
	margin							: 20px 0 0 0;
	padding							: 0px;
}

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

.mobile-nav li:first-child {
	
}

.mobile-nav li a {
	display							: block;
	padding							: 10px;
}

.mobile-nav li a:hover {
 
}

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

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

.mobile-nav ul li ul li a {
	padding-left					: 20px;
}




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

.bovenbalk {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	
	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-justify-content			: flex-end;
	justify-content					: flex-end;
	
	-webkit-align-items				: center;
	align-items						: center;
}

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

	padding							: 0;
}


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

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

.bovenbalk a {
	
}

.bovenbalk a:hover {
	
}




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

.header-visual {
	position						: relative;
	
	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;
}

.header-visual-home {
	position						: relative;
	
	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;
}

.visual {
	-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+ */
	height							: inherit;
}




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

.button {
	border							: 0;
	cursor							: pointer;
	display							: inline-block;
	font-weight						: normal;
	padding							: 0 20px;
}

.button_met_icon {
	display							: block;
 	padding							: 0;
}

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

.button_met_icon span {
	margin-right					: 10px;
}

.button_met_icon span:before {
	
}




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

.payoffheader {
	margin							: auto;

	height							: inherit;
	min-height						: inherit;
	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			: column;
	flex-direction					: column;

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

	padding							: 20px;
}

.payoffheader_content {
	
}

.payoffheader h2 {
	margin							: 0;
}

.payoffheader h3 {
	
}

.payoffheader span {
	
}

.payoffheader button {
	padding							: 0 20px;
}




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

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

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

.hoofdnav li {
	display							: inline-block;
	font-weight						: normal;
}

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

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

.hoofdnav li a:hover {
	
}

.hoofdnav li a.actief {
}

.icon-menu {
	
}

.icon-menu:hover {
	
}





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

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

.hoofdnav li ul li {
	display							: block;
}

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

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





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

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

	margin-bottom					: 20px;
	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				: 0px;
}

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

.fixed-width-250 {
	margin							: 0;
	margin-right					: 20px;
	padding							: 0;
	
	width							: 250px;
	
	-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+ */
}

.div2-12 {
	margin							: 10px 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+ */
}

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

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

.div5-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 39%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 39%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 39%;	/* IE 10 */
	-webkit-flex					: 1 0 39%;	/* NEW - Chrome */
	flex							: 1 0 39%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div6-12 {
	margin							: 10px 1%;
	
	-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+ */
}

.div7-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 56%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 56%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 56%;	/* IE 10 */
	-webkit-flex					: 1 0 56%;	/* NEW - Chrome */
	flex							: 1 0 56%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

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

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

.div10-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 81%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 81%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 81%;	/* IE 10 */
	-webkit-flex					: 1 0 81%;	/* NEW - Chrome */
	flex							: 1 0 81%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div11-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 89%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 89%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 89%;	/* IE 10 */
	-webkit-flex					: 1 0 89%;	/* NEW - Chrome */
	flex							: 1 0 89%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div12-12 {
	margin							: 10px 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							: 20px;
}

.standaard-padding-boven-groot {
	box-sizing						: border-box;
	padding							: 40px 0 0 0;
}

.standaard-padding-boven {
	box-sizing						: border-box;
	padding							: 20px 0 0 0;
}

.standaard-padding-behalve-rechts {
	box-sizing						: border-box;
	padding							: 20px 0 20px 20px;
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 20px 0;
	
	height							: 20px;
	width							: 100%;
}





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

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

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

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

.mobilenietzichtbaar {
	
}

.mobilewelzichtbaar {
	display							: none;
}

.toggle1nietzichtbaar {
	
}

.toggle1welzichtbaar {
	display							: none;
}

.toggle2nietzichtbaar {
	
}

.toggle2welzichtbaar {
	display							: none;
}

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

.uitlijning-klein {
	width							: 25%;
}

.uitlijning-links {
	float							:left;

	margin							: 0;
	margin-right					: 10px;
}

.uitlijning-rechts {
	float							:right;

	margin							: 0;
	margin-left						: 10px;
}

.uitlijning-boven {
	margin-bottom					: 10px;
}

.uitlijning-onder {
	margin-top						: 10px;
}









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

.kruimelpad a {
	
}

.kruimelpad a:hover {
	
}





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

.afgerond {
	overflow						: hidden;
}

.animeer {
	transition						: 0.5s all ease;
}

.border {
	
}

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

.bg_rood {
	background-color				: red;
}

.centreren {
	text-align						: center;
}

.clearboth {
	clear							: both;
}

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

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

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

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

.downloads {
	
}

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

.fontsize_10 { font-size			: 10px; }
.fontsize_15 { font-size			: 15px; }
.fontsize_20 { font-size			: 20px; }
.fontsize_25 { font-size			: 25px; }
.fontsize_30 { font-size			: 30px; }
.fontsize_40 { font-size			: 40px; }
.fontsize_50 { font-size			: 50px; }
.fontsize_60 { font-size			: 60px; }
.fontsize_70 { font-size			: 70px; }
.fontsize_80 { font-size			: 80px; }
.fontsize_90 { font-size			: 90px; }
.fontsize_100 { font-size			: 100px; }

.geenmarge { margin					:  0; }

H1 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H2 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H3 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H4 {
	padding							: 0;
	margin							: 0;
}

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

label
{
	margin							: 10px 0;
	padding							: 0;
}

.margin_0	{ margin				: 0; }
.margin_5	{ margin				: 5px; }
.margin_10	{ margin				: 10px; }
.margin_15	{ margin				: 15px; }
.margin_20	{ margin				: 20px; }
.margin_25	{ margin				: 25px; }

.margin_ver_5	{ margin			: 5px 0; }
.margin_ver_10	{ margin			: 10px 0; }
.margin_ver_15	{ margin			: 15px 0; }
.margin_ver_20	{ margin			: 20px 0; }
.margin_ver_25	{ margin			: 25px 0; }
.margin_ver_30	{ margin			: 30px 0; }
.margin_ver_35	{ margin			: 35px 0; }
.margin_ver_40	{ margin			: 40px 0; }

.margin_top_5	{ margin-top		: 5px !important; }
.margin_top_10	{ margin-top		: 10px !important; }
.margin_top_15	{ margin-top		: 15px !important; }
.margin_top_20	{ margin-top		: 20px !important; }
.margin_top_25	{ margin-top		: 25px !important; }
.margin_top_30	{ margin-top		: 30px !important; }
.margin_top_35	{ margin-top		: 35px !important; }
.margin_top_40	{ margin-top		: 40px !important; }

.margin_bot_5	{ margin-bottom		: 5px !important; }
.margin_bot_10	{ margin-bottom		: 10px !important; }
.margin_bot_15	{ margin-bottom		: 15px !important; }
.margin_bot_20	{ margin-bottom		: 20px !important; }
.margin_bot_25	{ margin-bottom		: 25px !important; }
.margin_bot_30	{ margin-bottom		: 30px !important; }
.margin_bot_35	{ margin-bottom		: 35px !important; }
.margin_bot_40	{ margin-bottom		: 40px !important; }

.margin_hor_5	{ margin			: 0 5px; }
.margin_hor_10	{ margin			: 0 10px; }
.margin_hor_15	{ margin			: 0 15px; }
.margin_hor_20	{ margin			: 0 20px; }
.margin_hor_25	{ margin			: 0 25px; }

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

.noscroll { overflow				:  hidden; }

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

.onzichtbaar { display				: none; }

.padding_0	{ padding				: 0; }
.padding_5	{ padding				: 5px; }
.padding_10	{ padding				: 10px; }
.padding_15	{ padding				: 15px; }
.padding_20	{ padding				: 20px; }
.padding_25	{ padding				: 25px; }
.padding_30	{ padding				: 30px; }
.padding_40	{ padding				: 40px; }
.padding_50	{ padding				: 50px; }

.padding_40_20	{ padding			: 40px 20px; }

.padding_ver_5	{ padding			: 5px 0; }
.padding_ver_10	{ padding			: 10px 0; }
.padding_ver_15	{ padding			: 15px 0; }
.padding_ver_20	{ padding			: 20px 0; }
.padding_ver_25	{ padding			: 25px 0; }
.padding_ver_30	{ padding			: 30px 0; }
.padding_ver_40	{ padding			: 40px 0; }
.padding_ver_50	{ padding			: 50px 0; }

.padding_hor_5	{ padding			: 0 5px; }
.padding_hor_10	{ padding			: 0 10px; }
.padding_hor_15	{ padding			: 0 15px; }
.padding_hor_20	{ padding			: 0 20px; }
.padding_hor_25	{ padding			: 0 25px; }
.padding_hor_30	{ padding			: 0 30px; }
.padding_hor_40	{ padding			: 0 40px; }
.padding_hor_50	{ padding			: 0 50px; }

P, P P {
	padding							: 0;
	margin							: 0 0 10px 0;
}

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

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

.position_relative { position		: relative; }

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

section img {
	margin							: 0 10px 10px 0;

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

section * li  {
	margin							: 5px 0px;
}

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

strong { font-weight				: bold; }


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


table {
	border-collapse					: collapse;
	margin-bottom					: 30px;
}

th, td {
	padding							: 10px;
	margin							: 0;
}

tr {
	
}

tr:hover {
	
}

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

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

.vet {
	font-weight						: bold;
}

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

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



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




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

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

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

.socialmedia span:before{
	margin							: 0 0 0 10px;
	padding							: 0;
}body {
  color						: rgb(14,31,69);
  font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb(14,31,69);
}




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

.site-submenu {
	height					: auto;
	width					: 100%;
	background-color		: rgb(255,255,255);
	
	border-top				: 1px solid rgba(14,31,69,0.5);
	border-bottom			: 1px solid rgba(14,31,69,0.5);
}

.site-submenu-items {
	border					: 1px solid rgb(14,31,69);
}

.site-submenu h2 {
	font-size				: 20px;
}

.site-submenu ul {
	background-color		: rgb(255,255,255);
	
	-webkit-border-radius	: 0;
	-moz-border-radius		: 0;
	border-radius			: 0;
	
	line-height				: 30px;
}
	
.site-submenu li {
	font-size				: 16px;
	line-height				: 30px;
}

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

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

.site-submenu li a {
	color					: rgba(14,31,69,0.6);
}

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

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




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

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

.main-content {
	
}

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

.content-met-submenu {
	display					: inline;
}

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




/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color			: rgb(226,234,236);
}

.mobile-nav h2 {
	color					: rgb(14,31,69);
	font-family				: 'barlowlight','Arial','Helvetica','sans-serif';
	font-size				: 30px;
}

.mobile-nav li {
	border-bottom			: 1px solid rgba(255,255,255,0.5);
	font-size				: 18px;
	line-height				: 30px;
}

.mobile-nav li:first-child {
	border-top				: 1px solid rgba(255,255,255,0.5);
}

.mobile-nav li a {
	color					: rgb(14,31,69);
}

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

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

.site-uitklap {
	box-shadow				: 0 0 5px 5px rgba(0,0,0,0.25);
}


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

.bovenbalk {
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
}
	
.bovenbalk {
	color						: rgb(14,31,69);
	font-size					: 18px;
	
	height						: 100px;
	max-width					: 1400px;
	
	text-align					: right;
}

.bovenbalk span {
	font-family					: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-style					: italic;
	font-size					: 18px;
}

.bovenbalk span:before {
	font-family					: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 22px;
	vertical-align				: middle;
}

.bovenbalk a {
	color						: rgb(14,31,69);
	font-size					: 20px;
}

.bovenbalk a:hover {
	color						: rgb(225,48,35);
}






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

.header-visual {
	height					: 250px;
}

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

.visual {
	position				: relative;
}





/*============== BUTTONS =================================================*/
.float-right {
	float				: right;
}

.text-link {
	color				: rgb(225,48,35);
	text-decoration		: underline;
	cursor				: pointer;
}

.bg_a .button,
.bg_zwart .button {
	color					: rgb(14,31,69);
	background-color		: rgb(255,255,255);
}

.bg_a .button:hover,
.bg_zwart .button:hover {
	color					: rgb(255,255,255);
	background-color		: rgb(225,48,35);
}

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

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

.button-tekstueel {
	color					: rgb(14,31,69);
	font-family				: 'barlowsemibold','Arial','Helvetica','sans-serif';
	font-size				: 18px;
	text-transform			: uppercase;
	padding					: 10px 20px;
}




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

.hoofdnav {
	margin					: 0;
	min-height				: 50px;
	background-color		: rgb(225,48,35);
}

.hoofdnav li {
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-weight				: normal;
	text-transform			: none;
	font-size				: 18px;
	line-height				: 50px;
}

.hoofdnav li a {
	color					: rgb(242,249,251);
	padding					: 0 12px;
}

.hoofdnav li a:hover {
	color					: rgb(14,31,69);
}

.hoofdnav li a.actief {
	color					: rgb(242,249,251);
}

.icon-menu {
	color					: rgb(242,249,251);
}

.icon-menu:hover {
	color					: rgb(164,215,229);
}





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

.hoofdnav li ul {

}

.hoofdnav li li {
	background-color		: rgb(225,48,35);
	border-top				: none;
	font-size				: 15px;
	line-height				: 30px;
	min-height				: 30px;
}





/*============== 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(14,31,69,0.5);
}





/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	color					: rgb(14,31,69);
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 14px;
 
}

.kruimelpad a {
	color					: rgb(14,31,69);
}

.kruimelpad a:hover {
	color					: rgb(14,31,69);
}





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

.tekst_a {
	color					: rgb(14,31,69);
}

.tekst_b {
	color					: rgb(164,215,229);
}

.tekst_c {
	color					: rgb(225,48,35);
}

.tekst_grijs {
	color					: rgb(14,31,69);
}

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

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

.bg_a {
	background-color		: rgb(14,31,69);
}

.bg_b {
	background-color		: rgb(164,215,229);
}

.bg_c {
	background-color		: rgb(225,48,35);
}

.bg_grijs {
	background-color		: rgb(226,234,236);
}

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

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




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

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

.bg_wit,
.bg_grijs,
.bg_zwart {
	color					: rgb(14,31,69);
}

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

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td {
	border					: 1px solid rgb(225,48,35);
}

.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(14,31,69);
}





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

.downloads {
	border					: 1px solid rgb(226,234,236);
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 30px;
	max-width				: 400px;
}

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

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

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

H1 {
	font-family				: 'barlowlight','Arial','Helvetica','sans-serif';
	font-style				: italic;
	font-size				: 40px;
}

H2 {
	color					: rgb(14,31,69);
	font-family				: 'barlowlight','Arial','Helvetica','sans-serif';
	font-size				: 30px;
}

H3 {
	color					: rgb(14,31,69);
	font-family				: 'barlowlight','Arial','Helvetica','sans-serif';
	font-size				: 20px;
}

H4 {
	color					: rgb(14,31,69);
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 15px;
}

label {
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 15px;
	line-height				: 20px;
}

P, P P {
	font-family				: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 15px;
	font-weight				: 300;
	line-height				: 25px;
}

section img {
	max-width				: 100%;
}

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

	-webkit-border-radius		: 0;
	-moz-border-radius			: 0;
	border-radius				: 0;
	
	font-family					: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 15px;
}

/*============== 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;
	display: inline-block;
}

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

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

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

}/*============== STANDAARD FORM ==========================================*/

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

form > div > label,
legend {
	font-size						: 15px;
}

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

form > div > fieldset label {
	font-size						: 13px;
}

fieldset {
	
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	background-color				: rgb(242,249,251);
	border							: 1px solid rgb(226,234,236);
	height							: 35px;
	font-size						: 15px;
}

textarea {
	height							: 105px;
}

select {
	color							: rgb(14,31,69);
    -webkit-appearance				: menulist;
    appearance						: menulist;
}

input[type=number],
.input-decimal input[type=number] {
	width							: 75px;
}

input[type=submit],
button,
.button,
.button_lijn,
input[type=button] {
	padding					: 8px 20px;
	background-color		: rgb(14,31,69);
	
	border					: none;
	-webkit-border-radius	: 30px;
	-moz-border-radius		: 30px;
	border-radius			: 30px;

	color					: rgb(255,255,255);
	font-family				: 'barlowsemibold','Arial','Helvetica','sans-serif';
	font-size				: 1.25rem;
}

input[type=submit]:hover,
button:hover,
.button:hover,
.button_lijn:hover,
input[type=button]:hover {
	background-color				: rgb(225,48,35);
	color							: rgb(255,255,255);		
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	color							: rgba(0,0,0,0.6);
	background-color				: rgb(226,234,236);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color					: rgb(226,234,236);
}

.inputregel {
	font-size						: 15px;
	line-height						: 35px;
}

.inputregel_eenheid {
	font-size						: 15px;
	line-height						: 35px;
}

.inputregel_label {
	font-size						: 15px;
	line-height						: 35px;
	max-width						: 200px;
}

/* Remove Chrome auto-input color: Change to any color */
input:-webkit-autofill {
    -webkit-box-shadow			: 0 0 0 35px rgb(226,234,236) inset;
}



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

.foutmeldingen-inhoud h2 {
	color							: rgb(225,48,35);
}

.site-content section * .foutmeldingen ul, .site-content section * .foutmeldingen ol {
    background-color: rgba(225,48,35,0.2);
}

.foutmeldingen li {
	line-height						: 35px;
	font-size						: 15px;
	font-weight						: normal;
}

.formulier_melding {
	-webkit-border-radius			: 25px;
	-moz-border-radius				: 25px;
	border-radius					: 25px;
}

.formulier_melding
{
	background-color				: rgb(14,31,69);

	-webkit-border-radius			: 25px;
	-moz-border-radius				: 25px;
	border-radius					: 25px;
	
	color							: rgb(255,255,255);
	font-family						: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	line-height						: 35px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	font-size						: 11px;
	font-weight						: normal;
	line-height						: 35px;
}

.icon-input-ok {
	color							: rgb(14,31,69);
}

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

.icon-input-verplicht {
	color							: rgb(164,215,229);
}

.icon-eigen-sollicitatie-url-uitleg {
	position						: relative;
	top								: 2px;
}

.uitleg-popout,
.eigen-sollicitatie-url-uitleg {
	background-color				: rgba(164,215,229, 0.3);
	padding							: 20px;
}

.uitleg-popout,
.eigen-sollicitatie-url-uitleg p a {
	color							: rgb(225,48,35);
}



/**/

option:checked, option {
	background-color				: rgb(255,255,255);
	color							: rgb();
}

option:hover {
	background-color				: rgb(255,255,255);
	color							: rgb(14,31,69);
}

option:focus {
	background-color				: rgb(255,255,255);
	color							: rgb(14,31,69);
}

.datum-dag {
	width							: 150px;
}
.datum-maand {
	width							: 150px;
}
.datum-jaar {
	width							: 150px;
}


form .dataTables_wrapper > div {

	width							: 100%;
	float							: left;
}

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

@media (min-width: 1200px) {

}

@media (max-width: 900px) {


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

}

@media (max-width: 600px) {

}/*
 * 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;overflow:auto;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%}}
/*============== IN DIT BESTAND DAN DE DEFAULT OVERRULEN =======================*/
/* Zie ook https://datatables.net/download/ */

.dataTables_wrapper {
	font-size					: 15px;
}


/* Header and footer styles */

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

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

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

.new-record {
	color						: rgb(164,215,229);
	font-size					: 1.8em;
}

.new-record:hover {
	color						: rgb(14,31,69);
}

.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					: 'barlowregular','HelveticaNeue-Light','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(,0.2);
	color						: rgb();
}

.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(164,215,229);
	color						: rgb(255,255,255);
	border						: none;
	font-size					: 0.9em;
	text-transform				: uppercase;
	letter-spacing				: 1px;
	padding						: 0.625em;
	margin						: 0.3em;
	border-radius				: 0;
}

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

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

	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
	
	-webkit-align-items				: center;
	align-items						: center;

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

	background						: rgb(226,234,236);
	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;		/* TWEENER - 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(14,31,69);
}

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(14,31,69);
}

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("../img/sort_both.png");
}

table.dataTable thead .sorting_asc {
	background-image				: url("../img/sort_asc.png");
}

table.dataTable thead .sorting_desc {
	background-image				: url("../img/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
	background-image				: url("../img/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
	background-image				: url("../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(226,234,236);
}

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(226,234,236);
	border-right			: 1px solid rgb(226,234,236);
}

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

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(14,31,69);
	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(226,234,236) !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(14,31,69);
  background-color: rgb(14,31,69);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: rgb(0,0,0);
  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();
}
/*
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
	white-space						: nowrap;
	padding							: 0 0.2em;
}
*/
.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;
}

.datatable_header {
	background: rgb(245,245,245);
}

.dt-has-custom-button-style.dt-buttons .dt-button {
	border-radius					: 0;
	font-family						: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.dt-has-custom-button-style.dt-buttons {
	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
}
select.dataTables_filter {
	max-width: 100px;
}


/* ============== MELDINGEN =================== */
.melding
{
	padding				: 20px;
	background-color	: rgb(225,48,35);
	color				: rgb(255,255,255);
}

.foutmelding-regel
{
	margin				: 20px 0px;
	padding				: 20px;
	background-color	: rgb(225,48,35);
	color				: rgb(255,255,255);
}





/* ============== WYSIWYG CONTENT CONTAINER =================== */
.wysiwyg-container
{
    word-break				: break-word;
}

.wysiwyg-container a {
	color					: rgb(14,31,69);
	text-decoration			: underline;
	cursor					: pointer;
}


.mce-preview-object,
.mce-object-iframe,
.mce-object-iframe iframe,
.wysiwyg-container iframe {
	display					: block !important;
	width					: 100% !important;
	border					: none;
}



form > div.criteria-container > div
{
	width				: 100% !important;
}






.icon-offset
{
	position				: relative;
	top					: 2px;
}


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

.site-submenu ul {
	display				: flex;
}
	
.site-submenu li {
	width				: 100%;
}


/* ============== HOME =================== */

.counter {
	text-align				: center;
}

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

.counter-icon {
	font-size				: 35px;
	color					: rgb(164,215,229);
}

.stat-counter {
	font-size				: 50px;
	color					: rgb(14,31,69);
}


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

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

.bg_afbeelding {
	background				: url("../img/bg_login.png");
	background-color		: rgb(242,249,251);
	background-repeat		: repeat;
	background-position		: top;
}

.login-form {
	max-width				: 616px;
	margin					: auto;
	background-color		: rgb(255,255,255);
	color					: rgb(14,31,69);
}

.login-form input[type=submit] {
	margin-left				: 200px;
	font-size				: 1.25rem;
	border-radius			: 30px;
	color					: rgb(255,255,255);
	background-color		: rgb(14,31,69);
}

.login-form input[type=submit]:hover {
	background-color		: rgb(225,48,35);
}

.login-form .inputregel_input input[type=text],
.login-form .inputregel_input input[type=password] {
	border-radius			: 3px;
	border					: 1px solid rgb(242,249,251);
	background-color		: rgb(242,249,251);
}

.login-form .inputregel_input input:focus {
    -webkit-box-shadow: 0 0 0 30px rgb(226,234,236) inset;
}



/* ============== BETALINGEN =================== */

.status-betaald {
	background-color			: rgb(14,31,69) !important;
	color						: rgb(255,255,255) !important;
}

.status-nietbetaald {
	background-color			: rgb(225,48,35) !important;
}

.status-betaald,
.status-nietbetaald {
	padding						: 4px 10px;
	-webkit-border-radius		: 5%;
	border-radius				: 5%;
}

.datatable-betaalstatus {
	-webkit-border-radius		: 0;
	border-radius				: 0;
}

tr.status-prullenbak td {
	color						: rgba(0,0,0, 0.5) !important;
}

tr.status-prullenbak td.status-betaald {
	color						: rgb(255,255,255) !important;
}


/* ============== DASHBOARD =================== */

.dashboard-blokken {
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
	margin-top				: 70px;
}

.dashboard-blok {
	position					: relative;
	flex						: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	
	margin					: 10px;
	padding					: 30px 20px 60px 20px;
	margin-bottom			: 20px;
	
	text-align				: center;
	background-color			: rgb(242,249,251);

	overflow					: hidden;
}


/**
 * 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(226,234,236, 0.07);
  background					: linear-gradient(
        to right,
        rgba(226,234,236, 0.07) 0%,
        rgba(226,234,236, 0.13) 77%,
        rgba(226,234,236, 0.5) 92%,
        rgba(226,234,236, 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;
  }
}

div .dashboard-blok-icon {
	display						: inline-block;
	width						: 70px;
	height						: 70px;
	-webkit-border-radius		: 50%;
	border-radius				: 50%;
	margin-bottom				: 20px;
	color						: rgb(255,255,255);
	background-color				: rgb(225,48,35);
}

div .dashboard-blok-icon:before {
	font-size					: 2rem;
	line-height					: 2.2;
}

.dashboard-blok h2 {
	color						: rgb(14,31,69);
	font-size					: 6.25rem;
}

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




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

.inputregel_eenheid .button
{
	padding						: 0px 20px;
}

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

	font-size					: 1.1rem;
	padding						: 0px 12px;

	-webkit-border-radius		: 8px;
	-moz-border-radius			: 8px;
	border-radius				: 8px;
}

.button.button-klein.datatable-remove-filter {
	padding						: 6px 12px;
}

.dt-buttons {
	margin-bottom				: 10px;
}

.dt-button {
	background-color			: rgb(14,31,69);
	color						: rgb(255,255,255);
	border						: none;
	font-size					: 15px;
	text-transform				: uppercase;
	padding						: 10px;
	margin						: 5px;
}

.dt-button:hover {
	background-color				: rgb(225,48,35);
}

.buttons-excel:before,
.buttons-pdf:before,
.buttons-print:before,
.buttons-csv:before,
.buttons-copy:before
{
	font-family						: 'frontoffice';
	text-transform					: none;
	font-weight						: normal;
	margin-right						: 5px;
}
.buttons-excel:before {
	content							: "\31";
}
.buttons-pdf:before {
	content							: "\33";
}
.buttons-print:before {
	content							: "\32";
}
.buttons-csv:before {
	content							: "\30";
}
.buttons-copy:before {
	content							: "\63";
}


/* ============== DIVERSEN =================== */

.error404 {
	background-color			: rgb(225,48,35);
}



/* ============== DATATABLES (COPY VAN DATATABLES.NET) =================== */

/* Table styles */

table.dataTable {
	width						: 100%;
	margin						: 0 auto;
	clear						: both;
	border-collapse				: separate;
	border-spacing				: 0;
}

/* Header and footer styles */

.content-header-display {
	display						: flex;
	flex-flow					: row wrap;
	align-items					: center;
	justify-content				: space-between;
}

.new-record {
	color						: rgb(14,31,69);
	font-size					: 30px;
}

.new-record:hover {
	color						: rgb(225,48,35);
}

.new-record span:last-child {
	font-size					: 18px;
	font-weight					: 300;
	position					: relative;
	top							: -9px;
}

/* Body styles */

table.dataTable body {
	font-family			: 'barlowregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

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 rgb(14,31,69);
}

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 rgb(14,31,69);
}

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

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("../img/sort_both.png");
}

table.dataTable thead .sorting_asc {
	background-image		: url("../img/sort_asc.png");
}

table.dataTable thead .sorting_desc {
	background-image		: url("../img/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
	background-image		: url("../img/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
	background-image		: url("../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					: 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 rgb(226,234,236);
}

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(226,234,236);
	border-right			: 1px solid rgb(226,234,236);
}

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

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.selected {
	background-color		: #a6b4cd;
}

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 {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}



/* Control feature layout */

.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 {
	-webkit-appearance	: none;
	padding				: 0.25em;
	background-color	: rgb(255,255,255);
	border				: 1px solid rgba(0,0,0,0.2);
	color				: rgb(14,31,69);
	line-height			: 25px;
	font-size			: 15px;
	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;
}

#datatable td:not(.datatable-noclick) {
	cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #333 !important;
	border: 1px solid rgb(14,31,69);
	background-color: 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(226,234,236) !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(14,31,69);
  background-color: rgb(14,31,69);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: rgb(0,0,0);
  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 th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td {
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody 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,
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  border-bottom: none;
}

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.dataTable .icon {
	margin-right:4px;
}

/* Details - control */

.details-control {
	color			: rgb(14,31,69);
	cursor			: pointer;
}

.details .details-control {

}

.uitklap-opmerking {
	background-color	: rgb(164,215,229);
	color				: rgb(255,255,255);
	padding				: 10px;
	margin				: -5px -10px;
}

.imgafgerond img {
	border-radius : 50%;
}

/* dataTables -  Icons */

.icon {
	padding				: 0 2px;
	cursor				: pointer;
}

.icon.active {
	color				: rgb(164,215,229);
}

table.dataTable tbody .datatable-right {
	text-align:right;
	border-right:2px solid rgb(226,234,236);;
}

table.dataTable tbody .datatable-center {
	text-align:center;
}

.datatable-onclick {
	cursor: pointer;
}

table.dataTable img {
	width:auto;
	margin:0;
}

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

.input-datum select {
	width							: auto;
}

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

.input-tijdstip select {
	width							: auto;
}


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

.height400 textarea {
	height:400px;
}

.inputregel_label {
	font-weight:bold;
}

.width150 .inputregel_input {
	width:150px;
	flex:none;
}

.width200 .inputregel_input {
	width:200px;
	flex:none;
}

.tabel_compact{
	margin:0;
	padding:0;
}

.tabel_compact th,
.tabel_compact td {
	margin:0;
	padding:0 15px 0 0;
}

/* dataTables - Mediaqueries */

@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: 1em;
	}
	
	.datatable_footer {
		flex-direction: column;
	}
  
}

@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;
	}
	
  	.datatable_header {
		flex-direction: column;
	}
}

@media only screen and (min-device-width : 320px)
and (max-device-width : 480px)
and (orientation : landscape) {

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


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

	.logomenubalk .button:first-child {
		margin-bottom				: 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						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

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


}


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

	.hoofdnav li a {
		font-size					: 16px;
	}

}


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


}


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


}


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

	.login-form input[type=submit] {
		margin-left					: 0;
	}
	
	.footer-copyright {
		height						: auto;
		flex-direction				: column;
	}

}
