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

html {
	overflow-x						: hidden;
}

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

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}


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

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

	z-index							: 1;
}

.site-uitklap {
	box-shadow						: 0 0 5px 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			: space-between;
	justify-content					: space-between;
}

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

.site-submenu-items {
	-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(16,67,114);
	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						: 1280px;
	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(50,50,50);
    -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(28,173,233);
	color					: rgb(50,50,50);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(28,173,233);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(28,173,233);
    border-color			: rgb(28,173,233);
}





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

.collapsable-header
{
	cursor							: pointer;
}

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

.collapsable .inputregel_label
{
    width							: 100%;
}




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

.site-footer {
	height							: auto;
}

.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;
		
	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			: space-between;
	justify-content					: space-between;
	
	-webkit-align-items				: center;
	align-items						: center;
}

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

.bovenbalk span:before {
	font-weight						: normal;
	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;
}

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

.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 {

}

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

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

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

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

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

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

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

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

.downloads {
	
}

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


[class*="bg_"] h1,
[class*="bg_"] h2 {
	margin							: 10px 0 10px 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; }
.margin_top_10	{ margin-top		: 10px; }
.margin_top_15	{ margin-top		: 15px; }
.margin_top_20	{ margin-top		: 20px; }
.margin_top_25	{ margin-top		: 25px; }
.margin_top_30	{ margin-top		: 30px; }
.margin_top_35	{ margin-top		: 35px; }
.margin_top_40	{ margin-top		: 40px; }

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

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

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

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

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

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(50,50,50);
  font-family				: 'open_sans','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb(16,67,114);
}

P > a {
	border-bottom			: 1px rgba(16,67,114, 0.5) dotted;
}

.bg_zwart P > a,
.bg_a P > a,
.bg_a P strong > a,
.bg_a a {
	color					: rgb(255,255,255);
	border-bottom			: 1px rgba(255,255,255, 0.5) dotted;
}

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

.site-submenu {
}

.site-submenu-items {
	border					: 0.06rem solid rgb(16,67,114);
}

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

.site-submenu ul {
	background-color		: rgb(135,148,158);
	
	-webkit-border-radius	: 0.9rem;
	-moz-border-radius		: 0.9rem;
	border-radius			: 0.9rem;
	
	line-height				: 1;
}
	
.site-submenu li {
	font-size				: 1rem;
	line-height				: 1;
}

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

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

.site-submenu li a {
	color					: rgb(16,67,114);
}

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

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



/*============== CONTENT =================================================*/
.site-content {
	min-height				: 40px;
	width					: 100%;
}

.main-content {
	
}

.main-content section > div {
	padding					: 1.2rem;
}

.volledigbreed {
}

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

section.volledigbreed .header-visual {
	margin-bottom			: 0;
}


/*============== FOOTER ==================================================*/
.site-footer {
	background-color		: rgb(28,173,233);
	text-transform			: uppercase;
}

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

.site-footer h2 {
	color					: rgb(16,67,114);
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-size				: 1.2rem;
}

.site-footer p {
	color					: rgb(255,255,255);
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
	line-height				: 1.5;
	text-transform			: none;
}

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

.padding-footer-social-media a {
	padding					: 0.6rem;
}

.padding-footer-social-media a:first-of-type {
	padding					: 0.6rem 0.6rem 0.6rem 0;
}

.footer-copyright {
	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-justify-content	: center;
    justify-content			: center;
    
    -webkit-align-items		: center;
    align-items				: center;
    
    webkit-flex-wrap		: wrap;
    flex-wrap				: wrap;
    
    padding					: 0.3rem;
    
	font-size				: 0.9rem;
	text-align				: center;
	line-height				: 1.5;
	
	color					: rgb(16,67,114);
	background-color		: rgb(255,255,255);
}

.footer-copyright a {
	color					: rgb(141,196,63);
}

.footer-logo img {
	max-height				: 2rem;
	margin-top				: 0.3rem;
}

/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color		: rgb(28,173,233);
}

.mobile-nav h2 {
	color					: rgb(255,255,255);
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-size				: 1.8rem;
}

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

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

.mobile-nav li a {
	color					: rgb(255,255,255);
}

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



/*============== HEADER NAV ==============================================*/
.site-header {
	position				: fixed;
	width:100%;
	z-index					: 1;
	
	  box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.navigatiebalk-section {
	margin-bottom			: 0;
}

.navigatiebalk {
	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-wrap		: wrap;
	flex-wrap				: wrap;
		
	-webkit-flex-direction	: row;
	flex-direction			: row;
	
	-webkit-align-items		: center;
	align-items				: center;

	width					: 100%;
	max-width				: 1280px;
	
	position				: relative;
	z-index					: 1;
	margin					: auto;
	padding					: 1.25rem;
	

	
}

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

	-webkit-justify-content	: flex-end;
	justify-content			: flex-end;
	
	-webkit-flex-direction	: row;
	flex-direction			: row;
	
	-webkit-flex-wrap		: nowrap;
	flex-wrap				: nowrap;
	
	margin					: 0;
	color					: rgb(16,67,114);
	font-size				: 0.9rem;
}

.bovenbalk span:before {
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 1.25rem;
}

.bovenbalk a:hover {
	color					: rgb(16,67,114);
}

.hoofdnav {
	margin					: 0;
	
	-webkit-flex-grow		: 15;
	flex-grow				: 15;
	
	-webkit-flex-wrap		: wrap;
	flex-wrap				: wrap;
}

.hoofdnav ul {
	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 100%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex			: 1 0 100%;	/* OLD - Firefox 19- */
	-ms-flex				: 1 0 100%;	/* IE 10 */
	-webkit-flex			: 1 0 100%;	/* NEW - Chrome */
	flex					: 1 0 100%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-justify-content	: space-between;
	justify-content			: space-between;
	
	-webkit-flex-wrap		: wrap;
	flex-wrap				: wrap;
	
	padding					: 0;
	margin					: 0 0.6rem;
}

.hoofdnav li {
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	text-transform			: uppercase;
	font-weight				: bold;
	font-size				: 0.9rem;
	line-height				: 1.25rem;
}

.hoofdnav li a {
	padding					: 0 0.6rem;
	color					: rgb(16,67,114);
}

.hoofdnav li a:hover {
	color					: rgb(28,173,233);
}

.hoofdnav li a.actief {
	color					: rgb(28,173,233);
}

.icon-menu {
	color					: rgb(16,67,114);
}

.icon-menu:hover {
	color					: rgb(28,173,233);
}




/*============== HEADER NAV SUB UITKLAP ==================================*/
.hoofdnav li ul {
	margin-top				: 0.06rem;
}

.hoofdnav li li {
	min-height				: 1rem;
	margin					: 0;
	padding					: 0.3rem 0;
	font-size				: 0.9em;
	line-height				: 1.8;
	border-top				: 0.06rem solid rgb(255,255,255);
	background-color		: rgba(141,196,63,0.6);
}

.hoofdnav li li a:hover {
	color					: rgb(255,255,255);
}



/*============== INLOGGEN ===============================*/
/* positie verborgen div bovenbalk */
.inlogdiv {
	display					: none;
	
	position				: absolute;
	top						: 93px;
	right					: 20px;

	min-width				: 350px;
	
	margin					: 0;
	padding					: 20px;

	background-color		: rgba(255,255,255,0.85);
	overflow				: hidden;
}

.login-box-ingelogd {
	display					: none;
}

/* zowel voor login in bovenbalk als net onder visual */
.login-section div.maxcontentbreedte {
	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;
}

.login-box-form form {
	margin					: 0;
	padding					: 0;
	width					: 100%;
	display					: block;
}

.login-box-form .inputregel {
	margin-bottom			: 0.6rem;
}

.login-box-form .inputregel_input {
	-webkit-box-flex		: 1 0 auto;
	-moz-box-flex			: 1 0 auto;
	-ms-flex				: 1 0 auto;
	-webkit-flex			: 1 0 auto;
	flex					: 1 0 auto;
}

.login-box-form .icon-input-ok,
.login-box-form .icon-input-nok,
.login-box-form .icon-input-verplicht {
	font-size				: 0.5rem;
	line-height				: 5;
}

.login-box-form input[type=text],
.login-box-form input[type=password] {
	min-width				: 270px;
	height					: auto;
	padding					: 0.5rem 1.25rem;
	margin					: 0;
	
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
	line-height				: 1.2;
	
	-webkit-border-radius		: 1.6rem;
	-moz-border-radius			: 1.6rem;
	border-radius				: 1.6rem;
	
	border					: 2px solid rgb(16,67,114);
	color					: rgb(50,50,50);
	background-color		: rgb(255,255,255);
}

.login-box-form input[type=text]::placeholder,
.login-box-form input[type=password]::placeholder {
	color					: rgba(135,148,158,0.6);
}

.login-box-form input[type=submit] {
	background-color		: rgb(28,173,233);
	border					: 2px solid rgb(28,173,233);
}

.login-box-icon {
	width					: 9rem;
	min-width				: 9rem;
	height					: 9rem;
	min-height				: 9rem;

	-webkit-border-radius		: 50%;
	-moz-border-radius			: 50%;
	border-radius				: 50%;
	
	text-align				: center;
	line-height				: 11;
}

.login-box-icon:before {
	font-size				: 3rem;
	color					: rgb(255,255,255);
}




/*============== VACATURES ===============================*/
.vacatures {
	margin-bottom				: 1.1rem;
	text-align					: left;
}

.vacature-overzicht {
	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-flow			: column wrap;
	flex-flow					: column wrap;
	
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
}

.vacature-overzicht h1 {
	margin-top					: 10px;
	text-align					: center;
}

.vacature-overzicht h2 {
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
	font-size					: 1.5rem;
	text-transform				: uppercase;
	color						: rgb(141,196,63);
	word-break					: break-word;
}

.vacature-overzicht h4 {
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
	font-size					: 0.8rem;
	text-transform				: uppercase;
	color						: rgb(28,173,233);
}

.vacature-overzicht h5 {
	text-transform				: capitalize;
}

.vacature-overzicht hr,
.activiteit-detail hr {
	border-style				: solid;
	border-color				: rgba(135,148,158,0.2);
	border-width				: 0 0 1px 0;
	margin						: 0.6rem 0;
}

.lees-verder-tekst {
	color						: rgb(141,196,63);
	border-bottom				: 1px rgb(141,196,63) dotted;
}

.vacature-bottom-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-flex-flow			: row wrap;
	flex-flow					: row wrap;
	
	-webkit-justify-content		: space-between;
	justify-content				: space-between;
	
	-webkit-align-items			: flex-end;
	align-items					: flex-end;
	
	height						: 150px;
}

.vacature-overzicht-bottom-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-justify-content		: center;
	justify-content				: center;
	
	margin-top					: 1.5rem;
}

.vacature-landscape .vacature-overzicht-bottom-container {
	-webkit-justify-content		: flex-start;
	justify-content				: flex-start;
}

.vacature-landscape-logo-container {
	width						: 200px;
	min-width					: 200px;
	height						: auto;

	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		: center;
	justify-content				: center;
}

img.vacature-logo {
	height						: auto;
	width						: auto;
	max-height					: 80px;
	max-width					: 75%;
	margin						: 0;
}

.vacature-artikel span {
	display						: block;
	margin-bottom				: 1.25rem;
}




/*============== ACTIVITEITEN KALENDER ===============================*/

/*==== activiteiten op homepage + activiteien overzicht ====*/
.activiteiten-naast-elkaar,
.lijst-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-flow			: row nowrap;
	flex-flow					: row nowrap;
}

.activiteiten h1 {
	text-align					: center;
	margin						: auto;
	margin-top					: 10px;
	margin-bottom				: 30px;
}

.activiteit h2 {
	font-weight					: normal;
}

.activiteit span,
.vacature-overzicht span {
	display						: block;
}

h2.activiteit-titel,
span.activiteit-titel {
	display: inline;
}

.activiteit-datum {
	width						: 125px;
	max-width					: 125px;
	height						: 125px;
	min-height					: 125px;
	margin-right				: 1.5rem;
	
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
	font-weight					: bold;
	text-align					: center;
}

.activiteit-datum-dag {
	font-size					: 4rem;
	color						: rgb(141,196,63);
}

.activiteit-datum-maand {
	font-size					: 1.25rem;
	text-transform				: uppercase;
}

.lijst-naast-elkaar {
	padding						: 10px 0;
	border-top					: 1px solid rgb(255,255,255);
}

.lijst h4 {
	font-weight					: normal;
}

.lijst-datum {
	width						: 50px;
	min-width					: 50px;
	height						: 50px;
	min-height					: 50px;
	
	margin-right				: 0.6rem;
	
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
	font-weight					: bold;
	text-align					: center;
}

.lijst-datum-dag {
	font-size					: 1.8rem;
	line-height					: 28px;
	color						: rgb(141,196,63);
}

.lijst-datum-maand {
	font-size					: 0.8rem;
	text-transform				: uppercase;
}

/*==== detail pagina ====*/

div.activiteit-detail {
	width						: 100%;
}

.activiteit-detail td {
	border						: none;
}

.activiteit-detail tr:hover {
	background-color			: initial;
}

.activiteit-detail h1 {
	font-weight					: normal;
}

.activiteit-detail h3 {
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
	font-size					: 1rem;
	text-transform				: uppercase;
	color						: rgb(141,196,63);
}

.activiteit-omschrijving-afbeelding {
	display						: flex;
	width						: 100%;
}

.activiteit-omschrijving-afbeelding div {
	flex						: 1;
}

.activiteit-img-div {
	margin-left					: 20px;
	max-width					: 30%;
	order						: 1;
}

.activiteit-img-div img {
	width						: inherit;
	height						: auto;
}

.aanmeldingen-tabel {
	max-width					: 100%;
	text-align					: left;
}

.aanmeldingen-tabel th {
	font-family					: 'raleway','Helvetica','Arial','sans-serif';
}

.aanmeldingen-tabel th,
.aanmeldingen-tabel td {
	padding						: 3px 10px;
}

/*==== archief pagina ====*/

.activiteit-archief h3 {
	font-weight					: normal;
}

/*============== DEELNEMERS ===============================*/
.logo-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;

	width						: 100%;
	-webkit-flex-wrap			: wrap;
	flex-wrap					: wrap;
	padding						: 0!important;
}

.logo-container a.deelnemer-link {
	max-width					: 225px;
	flex						: 1 0 18%;
	margin						: 1%;
	padding						: 0.6rem;
	
	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+ */
	
	align-items					: center;
	-webkit-align-items			: center;
	
	justify-content				: center;
	-webkit-justify-content		: center;

	background-color			: rgb(255,255,255);
}

.logo-container a.deelnemer-link:hover {
	box-shadow					: 0 7px 12px rgba(50,50,50, 0.2);
}

.deelnemer-link img {
	height						: auto;
	width						: auto;
	max-width					: 90%;
	max-height					: 90px;
	margin						: 0;
}

/*============== CONTENT ALGEMENE INDELING ===============================*/
.afgerond {
	-webkit-border-radius		: 0.9rem;
	-moz-border-radius			: 0.9rem;
	border-radius				: 0.9rem;
}

.border {
	-webkit-border-radius		: 0.9rem;
	-moz-border-radius			: 0.9rem;
	border-radius				: 0.9rem;
	
	border						: 0.06rem solid rgba(16,67,114,0.5);
}

.icon-margin-right:before {
	margin-right				: 0.3rem;
}

.icon-margin-left:before {
	margin-left					: 0.3rem;
}

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

/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	color					: rgb(50,50,50);
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
 
}
.kruimelpad a {
	color					: rgb(50,50,50);
}

.kruimelpad a:hover {
	color					: rgb(16,67,114);
}



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

/* standaard button in dit project: kleur_c */
.bg_c .button,
.bg_b .button,
.highlight_c .button,
.highlight_b .button,
.bg_grijs .button {
	color					: rgb(16,67,114);
	background-color		: rgb(255,255,255);
}

.bg_c .button:hover,
.bg_b .button:hover,
.highlight_c .button:hover,
.highlight_b .button:hover,
.bg_grijs .button:hover {
	color					: rgb(28,173,233);
}

.payoffheader .button {
	line-height				: initial;
}

/*=== vacature buttons ===*/

.button.button_met_icon {
	position				: relative;
	margin-top				: 0.6rem;
	padding					: 0.5rem 2.25rem 0.5rem 1.25rem;
	text-transform			: uppercase;
}

.button.button_met_icon:hover {
	color					: rgb(255,255,255);
}

.button.button_met_icon span:before {
	position				: absolute;
	right					: 0.8rem;
	font-size				: 1rem;
	margin-left				: 0.6rem;
}

.button-pdf {
	display					: inline-block;
}

.button-pdf span {
	display					: inline;
}


/*============== KLEUREN =================================================*/
.kleur_tekst {
	color					: rgb(50,50,50)!important;
}

.tekst_a {
	color					: rgb(16,67,114)!important;
}

.tekst_b {
	color					: rgb(28,173,233)!important;
}

.tekst_c {
	color					: rgb(141,196,63)!important;
}

.tekst_d {
	color					: rgb(232,247,253)!important;
}

.tekst_e {
	color					: rgb(244,247,248)!important;
}

.tekst_grijs {
	color					: rgb(135,148,158)!important;
}

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

.tekst_zwart {
	color					: rgb(50,50,50)!important;
}

.bg_a {
	background-color		: rgb(16,67,114)!important;
}

.bg_b {
	background-color		: rgb(28,173,233)!important;
}

.bg_c {
	background-color		: rgb(141,196,63)!important;
}

.bg_d {
	background-color		: rgb(232,247,253)!important;
}

.bg_e {
	background-color		: rgb(244,247,248)!important;
}

.bg_grijs {
	background-color		: rgb(135,148,158)!important;
}

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

.bg_zwart {
	background-color		: rgb(50,50,50)!important;
}




/*============== KLEUREN AFHANGEND VAN ACHTERGROND ====================*/
/*
.bg_a .tekst_a,
.bg_b .tekst_b,
.bg_c .tekst_c,
.bg_e .tekst_e {
	color					: rgb(255,255,255);
}

.bg_c .tekst_c,
.bg_d .tekst_d {
	color					: rgb(244,247,248);
}

.bg_wit,
.bg_grijs,
.bg_zwart {
	color					: rgb(16,67,114);
}*/

.bg_a .downloads td,
.bg_b .downloads td,
.bg_c .downloads td {
	border					: 0.06rem solid rgb(135,148,158);
}

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td {
	border					: 0.06rem solid rgb(141,196,63);
}

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

.bg_d .downloads *,
.bg_e .downloads *,
.bg_wit .downloads *,
.bg_grijs .downloads * {
	color					: rgb(50,50,50);
}

.bg_wit .homepage-blok-content a:hover *,
.bg_grijs .homepage-blok-content a:hover *,
.bg_zwart .homepage-blok-content a:hover *,
.bg_a .homepage-blok-content a:hover *,
.bg_c .homepage-blok-content a:hover *,
.bg_d .homepage-blok-content a:hover *,
.bg_e .homepage-blok-content a:hover *
{
	color							: rgb(28,173,233);
}


.bg_a .homepage-blok-content a:hover *,
.bg_b .homepage-blok-content a:hover *,
.bg_c .homepage-blok-content a:hover *,
.bg_d .homepage-blok-content a:hover *,
.bg_e .homepage-blok-content a:hover *
{
	color							: rgb(255,255,255);
}

.bg_a .homepage-blok-button-container .button:hover,
.bg_e .homepage-blok-button-container .button:hover
{
	background-color				: rgb(232,247,253);
}


.bg_a .homepage-blok-button-container .button,
.bg_e .homepage-blok-button-container .button
{
	background-color				: rgb(28,173,233);
}



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

.downloads {
	border					: 0.06rem solid rgb(135,148,158);
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	margin-bottom			: 1.8rem;
	max-width				: 400px;
}

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

.font_kop {
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-weight				: bold;
}

.font_tekst {
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-weight				: normal;
}

H1 {
	color					: rgb(16,67,114);
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-size				: 2.2rem;
	font-weight				: 600;
	line-height				: 1.2;
}

.submenu-infoblok h2,
H2 {
	color					: rgb(16,67,114);
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-size				: 2rem;
	font-weight				: 600;
	line-height				: 1.2;
}

.submenu-infoblok h3,
H3 {
	color					: rgb(16,67,114);
	font-family				: 'raleway','Helvetica','Arial','sans-serif';
	font-size				: 1.25rem;
	font-weight				: 600;
	line-height				: 1.2;
}

H4 {
	color					: rgb(16,67,114);
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 1rem;
	font-weight				: 600;
	line-height				: 1.2;
}

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

P, P P {
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
	line-height				: 1.8rem;
}

section img {
	max-width				: 100%;
}

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

	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 1em;
}

tr:hover {
	background-color		: rgba(16,67,114,0.15);
}

td {
	border					: 0.06rem solid rgb(135,148,158);
}




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

.socialmedia {
	color					: rgb(50,50,50);
	font-family				: 'open_sans','Helvetica','Arial','sans-serif';
	font-size				: 0.8rem;
	font-weight				: normal;
	line-height				: 1.2;
	padding					: 0.6rem 0;
}

.socialmedia span:before{
	color					: rgb(16,67,114);
	font-size				: 1.25rem;
	line-height				: 1.25rem;
}





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

.header-visual {
	margin-top						: 82px;
	width							: 100%;
	height							: 300px;
}

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

.visual {
	position						: relative;
}

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

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

.header-visual .imgdiv,
.header-visual-home .imgdiv
{
	width							: 100%;
	margin							: auto;
	overflow						: hidden;
}

.header-visual .imgdiv
{
	max-width						: 1920px;
	margin-top						: -300px;
}
	
.header-visual-home .imgdiv
{
	max-width						: 1920px;
	margin-top						: -640px;
}

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

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


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

.payoffheader h2 {
	font-family						: 'raleway','Helvetica','Arial','sans-serif';
	font-size						: 3.5rem;
	font-weight						: 600;
	line-height						: 1.2;
}

.payoffheader h3 {
	font-family						: 'raleway','Helvetica','Arial','sans-serif';
	font-size						: 2.5rem;
}

.payoffheader {
	font-family						: 'open_sans','Helvetica','Arial','sans-serif';
	font-size						: 1.1rem;
	line-height						: 2;
}

.payoffheader
{
	height							: 300px;
	max-width						: 650px;
	overflow						: hidden;

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

	padding							: 0 1.25rem;
}

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

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

.highlight_grijs
{
	background-color				: rgba(135,148,158,0.8);
}

.highlight_zwart
{
	background-color				: rgba(50,50,50,0.8);
}

.highlight_a
{
	background-color				: rgba(16,67,114,0.8);
}

.highlight_b
{
	background-color				: rgba(28,173,233,0.8);
}

.highlight_c
{
	background-color				: rgba(141,196,63,0.8);
}

.highlight_d
{
	background-color				: rgba(232,247,253,0.8);
}

.highlight_e
{
	background-color				: rgba(244,247,248,0.8);
}





/*============== ACTUEEL ================================================*/
.actueel
{
	width					: 100%;
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.actueel-item
{
	text-align				: center;
	margin-bottom			: 1.25rem;
}

.actueel-item-afbeelding
{
	display					: block;
	float					: left;

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

	margin-top				: 5px;

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

.actueel-item-afbeelding img
{
	margin					: 0px;
}

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

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

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



/*============== TEAM ================================================*/
.teamleden
{
	width					: 100%;
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.teamlid
{
	text-align				: center;
	padding					: 0.6rem 0.6rem 40px 0.6rem;
	margin-bottom			: 1.25rem;
	flex-grow				: 0;
}

.teamlid-pasfoto
{
	display					: block;

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

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

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

.homepage-blok .teamlid
{
	display					: flex;
	flex-direction			: row;
	text-align				: left;
	margin-bottom			: 0.6rem;
	padding					: 0.6rem;
}

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



/*============== DIENSTEN ================================================*/
.diensten
{
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

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

.dienst
{
	cursor					: pointer;
}

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

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

.dienst .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(28,173,233);
	color					: rgb(50,50,50);
    background-color		: rgb(255,255,255);
}

.dienst:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(28,173,233);
}

.dienst:hover .dienst-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(28,173,233);
    border-color			: rgb(28,173,233);
}

/* TOEVOEGEN AAN DEFAULT? */


/* Change the white to any color ;) */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.padding_bottom_20 {
	padding-bottom			: 20px;
}
/*============== 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 {
	
}

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],
textarea,
input[type=submit],
button,
input[type=button]
 {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	outline							: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	height							: 50px;
	margin-bottom					: 10px;
	outline							: none;
	padding-left					: 10px;
	padding-right					: 10px;
}

textarea,
input[type=file] {
	padding-top						: 10px;
}

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

input[type=text],
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 {
	
}

.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) {


}

@media (max-width: 600px) {

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

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

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

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

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

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

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

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

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

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

fieldset {
	
}

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

	color							: rgb(255,255,255);
	font-family						: 'raleway','Helvetica','Arial','sans-serif';
	font-weight						: 600;
	font-size						: 0.9rem;
	
	background-color				: rgb(141,196,63);
}

.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	color							: rgb(16,67,114);
}

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 {
	height							: auto;
	padding							: 0.5rem 1.25rem;

	-webkit-border-radius		: 1.6rem;
	-moz-border-radius			: 1.6rem;
	border-radius				: 1.6rem;
	
	background-color				: rgb(244,247,248);
	border							: 2px solid rgba(16,67,114,0.3);
	color							: rgb(16,67,114);
	font-size						: 14px;
	line-height						: 1.5;
}

select {
	height							: 40px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	background-color				: rgb(255,255,255);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color					: rgba(16,67,114,0.3);
}

.inputregel {
	font-size						: 12px;
	max-width						: 750px;
	margin-bottom					: 1rem;
}

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

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

.inputregel_input {
	margin-left						: 0.3rem;
}



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

.foutmeldingen {
	
}

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

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

.formulier_melding
{
	background-color				: rgb(16,67,114);

	-webkit-border-radius			: 5px;
	-moz-border-radius				: 5px;
	border-radius					: 5px;
	
	color							: rgb(255,255,255);

	font-family						: 'open_sans','Helvetica','Arial','sans-serif';

	line-height						: 40px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	line-height						: 3.5;
}

.icon-input-ok {
	color							: rgb(141,196,63);
}

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

.icon-input-verplicht {
	color							: rgb(28,173,233);
}



/**/

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

option[value=""] {
	color:rgb(135,148,158);
}

option:hover {
	background:rgb(255,255,255);
	color:rgb(16,67,114);
}

option:focus {
	background:rgb(255,255,255);
	color:rgb(16,67,114);
}



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

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

}

@media (max-width: 600px) {

	.inputregel_input {
		margin-left						: 0;
	}


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

.bg_banner {
	background-color			: #FF7700;
	background-repeat			: no-repeat;
    background-position			: center center;
    background-size				: cover;

	max-width					: 1280px;
	width						: 100%;
	margin						: auto;
}

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

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



/* ============== TIJDELIJKE PAGINA =================== */

.logo_gecentreerd {
	width						: 160px;
}

.logo {
	width						: 150px;
	height						: auto;
	margin						: 0;
}

.introductie {
	text-align					: center;
}

.introductie form {
    text-align: left;
}

/* ======================== */
/*   STYLES FOR IE11 ONLY   */
/* ======================== */

.ie11 img.vacature-logo,
.ie11 .deelnemer-link img {
	flex					: 0 0 auto;
}



@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) {

	.hoofdnav {
		display						: none;
	}

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

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

}



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

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

		margin						: auto;
		width						: 100%;
	}

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

		margin-left					: 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) {

	.logo {
		padding-bottom				: 1rem;
		width						: 180px;
		height						: auto;
	}
	
	.bovenbalk {
		-webkit-justify-content		: space-between;
		justify-content				: space-between;
	}

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

	.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:1050px) and (min-width:900px) {

	.inlogdiv {
		top							: 126px;
	}

}


@media all and (max-width:1050px) {
	
	.login-box {
		flex-direction				: column;
		text-align					: center;
		align-items					: center;
		justify-content				: flex-start;
	}
	
}
	

@media all and (max-width:900px) {
	
	.header-visual-home {
		height						: 500px;
		-webkit-transition			: none;
		transition					: none;
	}

   	.payoffheader h2 {
		font-size					: 2.25rem;
	}

	.payoffheader span {
		font-size					: 1rem;
	}
	
	.mobilenietzichtbaar {
		-webkit-transition			: none;
		transition					: none;
	}
	
	.div2-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+ */
	}
	
}

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

	.vacature-landscape,
	.activiteiten-naast-elkaar {
		-webkit-flex-direction		: column;
		flex-direction				: column;	
	}
	
	.vacature-landscape-logo-container {
		width						: 100%;
		max-width					: 100%;
		margin						: auto;
		margin-top					: 20px;
	}
		
	.vacature-landscape .vacature-overzicht-bottom-container {
		-webkit-justify-content		: center;
		justify-content				: center;
	}
	
	.login-box-form form {
		display						: block;
		max-width					: 400px;
		margin						: auto;
	}
		
}

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

	.logo {
		padding-bottom				: 1rem;
		width						: 180px;
		height						: auto;
	}

	.logo_gecentreerd {
		text-align					: center;
		width						: 100%;
	}
	
	.bovenbalk {
		flex						: 1 0 100%;
	}
	
	.inlogdiv {
		top							: 151px;
		left						: 20px;
	}

	.dienst {
	    min-width					: 100%;
		flex						: 1 0 100%;
	}
	
	H1 {
		font-size					: 1.5rem;
	}
	
	p,P {
		font-size					: 0.9rem;
		line-height					: 1.5;
	}
	
	.logo-container a.deelnemer-link {
		flex						: 1 0 29%;
		margin						: 2%;
	}

	.activiteit-datum {
		width						: 100%;
		max-width					: 100%;
		margin-right				: 0;
	}

	.header-visual {
		margin-top					: 0px;
	}
	.site-header {
		position					: relative;
		background					: none;
		border-bottom				: none;
		background:white;
	}
}


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

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

	.payoffheader h2 {
		font-size					: 1.25rem;
	}

	.payoffheader span {
		font-size					: 0.8rem;
	}
	
	.vacature-overzicht h2 {
		font-size					: 1.25rem;
	}
	
	.activiteiten-lijst {
		flex						: 1 0 100%;
	}
	
	.logo-container a.deelnemer-link {
		flex						: 1 0 46%;
		margin						: 2%;
	}
	
}
