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

html {
    /* conflicts with sticky header */
	/* overflow-x: hidden; */
    overflow-wrap                   : break-word;
}

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

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




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

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

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

.site-submenu-items {
	-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(22,140,207);
	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 div {
}


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


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

.position-relative {
    position                        : relative;
}

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

.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(61,73,94);
    -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(61,73,94);
	color					: rgb(61,73,94);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(61,73,94);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(61,73,94);
    border-color			: rgb(61,73,94);
}





/*============== 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;
	margin-top						: 20px;
}

.site-footer-menus-en-submenus
{

}

.site-footer-tekst
{

}

.site-footer-eigensocialmedia
{

}

.site-footer-eigensocialmedia a
{
	padding							: 5px;
}

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

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




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

.mobile-nav {
	display							: none;
	
	height							: 100%;
	width							: calc(100% - 50px);

	position						: fixed;
	bottom							: 0;

	left							: 50px;
	right							: 0;
	top								: 0;
	
	list-style						: none;
	overflow						: auto;
	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					: 5px;
	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;
}

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

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

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




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




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

.toggle1nietzichtbaar {
	
}

.toggle1welzichtbaar {
	display							: none;
}

.toggle2nietzichtbaar {
	
}

.toggle2welzichtbaar {
	display							: none;
}

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

    margin-top						: 10px;
	margin-right					: 0px;
    margin-bottom					: 10px;
    margin-left						: 10px;
}

.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_flex_row_nowrap {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* 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_row_wrap {
	display							: -webkit-box-flex;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

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

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

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

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

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

.display_grid {
    display: -ms-grid;
    display: grid;
}

.downloads {
	
}

.flex_nogrow,
.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 !important; }
.fontsize_15 { font-size			: 15px !important; }
.fontsize_20 { font-size			: 20px !important; }
.fontsize_25 { font-size			: 25px !important; }
.fontsize_30 { font-size			: 30px !important; }
.fontsize_40 { font-size			: 40px !important; }
.fontsize_50 { font-size			: 50px !important; }
.fontsize_60 { font-size			: 60px !important; }
.fontsize_70 { font-size			: 70px !important; }
.fontsize_80 { font-size			: 80px !important; }
.fontsize_90 { font-size			: 90px !important; }
.fontsize_100 { font-size			: 100px !important; }

.geenmarge { margin					:  0 !important; }

.cursor-pointer {
	cursor							: pointer;
}

.cursor-default {
	cursor							: default;
}

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

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

.no-select {
	-moz-user-select				: none;
	-ms-user-select					: none;
    -webkit-user-select				: none;
    user-select						: none;
}

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

H1, H2, H3 {
    word-break: break-all;
}


[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_auto	{ margin		    : 0px auto!important; }

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

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

.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_left_5	{ margin-left		: 5px !important; }
.margin_left_10	{ margin-left		: 10px !important; }
.margin_left_15	{ margin-left		: 15px !important; }
.margin_left_20	{ margin-left		: 20px !important; }
.margin_left_25	{ margin-left		: 25px !important; }
.margin_left_30	{ margin-left		: 30px !important; }
.margin_left_35	{ margin-left		: 35px !important; }
.margin_left_40	{ margin-left		: 40px !important; }

.margin_right_5	{ margin-right		: 5px !important; }
.margin_right_10{ margin-right		: 10px !important; }
.margin_right_15{ margin-right		: 15px !important; }
.margin_right_20{ margin-right		: 20px !important; }
.margin_right_25{ margin-right		: 25px !important; }
.margin_right_30{ margin-right		: 30px !important; }
.margin_right_35{ margin-right		: 35px !important; }
.margin_right_40{ margin-right		: 40px !important; }

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

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

.noscroll { overflow				:  hidden; }

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

.onzichtbaar, .null { display				: none; }

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

.padding_40_20	{ padding			: 40px 20px !important; }

.padding_top_0	{ padding-top		: 0px !important; }
.padding_top_5	{ padding-top		: 5px !important; }
.padding_top_10	{ padding-top		: 10px !important; }
.padding_top_15	{ padding-top		: 15px !important; }
.padding_top_20	{ padding-top		: 20px !important; }
.padding_top_25	{ padding-top		: 25px !important; }
.padding_top_30	{ padding-top		: 30px !important; }
.padding_top_35	{ padding-top		: 35px !important; }
.padding_top_40	{ padding-top		: 40px !important; }

.padding_bot_0	{ padding-bottom		: 0px !important; }
.padding_bot_5	{ padding-bottom		: 5px !important; }
.padding_bot_10	{ padding-bottom		: 10px !important; }
.padding_bot_15	{ padding-bottom		: 15px !important; }
.padding_bot_20	{ padding-bottom		: 20px !important; }
.padding_bot_25	{ padding-bottom		: 25px !important; }
.padding_bot_30	{ padding-bottom		: 30px !important; }
.padding_bot_35	{ padding-bottom		: 35px !important; }
.padding_bot_40	{ padding-bottom		: 40px !important; }

.padding_left_0	{ padding-left		: 0px !important; }
.padding_left_5	{ padding-left		: 5px !important; }
.padding_left_10	{ padding-left		: 10px !important; }
.padding_left_15	{ padding-left		: 15px !important; }
.padding_left_20	{ padding-left		: 20px !important; }
.padding_left_25	{ padding-left		: 25px !important; }
.padding_left_30	{ padding-left		: 30px !important; }
.padding_left_35	{ padding-left		: 35px !important; }
.padding_left_40	{ padding-left		: 40px !important; }

.padding_right_0	{ padding-right		: 0px !important; }
.padding_right_5	{ padding-right		: 5px !important; }
.padding_right_10{ padding-right		: 10px !important; }
.padding_right_15{ padding-right		: 15px !important; }
.padding_right_20{ padding-right		: 20px !important; }
.padding_right_25{ padding-right		: 25px !important; }
.padding_right_30{ padding-right		: 30px !important; }
.padding_right_35{ padding-right		: 35px !important; }
.padding_right_40{ padding-right		: 40px !important; }

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

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

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,
.justify-flex-start {
	-webkit-justify-content			: flex-start !important;
	justify-content					: flex-start !important;
}

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

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

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

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

.align-space-between {
	-webkit-align-content			: space-between !important;
	align-content					: space-between !important;
}

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

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


strong { font-weight				: bold; }


.site-content section * ul:not(.tab-menu),
.site-content section * ol {
	padding							: 20px 40px;
	margin							: 20px 0px;
}

.toggle-element {
	display							: none;
}

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


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

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

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,
.bold {
	font-weight						: bold;
}

.italic {
	font-style						: italic;
}


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

.transform-rotate-90 {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.transform-rotate-180 {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.transform-rotate-270 {
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

.transform-flip {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.transform-flip-and-rotate-90 {
  -moz-transform: rotate(90deg) scaleX(-1);
  -webkit-transform: rotate(90deg) scaleX(-1);
  -o-transform: rotate(90deg) scaleX(-1);
  transform: rotate(90deg) scaleX(-1);
}



/*============== 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;
}:root {
    --border-radius: 14px;
}

.border-radius {
    border-radius: var(--border-radius);
}

.overflow-hidden {
    overflow: hidden;
}

body {
  color						: rgb(61,73,94);
  font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
  background-color			: rgb(244,242,239);
}

a {
	color					: rgb(61,73,94);
}

p a {
	color					: rgb(22,140,207);
}

.custom_line_height {
    line-height: 1.4;
}

/*============== SITE ====================================================*/
.site {

}

.site-submenu {
	min-width				: 280px;
	padding					: 0.6rem 0.3rem 0 0;
	margin-bottom			: 1rem;
}

.site-submenu ul {
	line-height				: 2.5;
}

.site-submenu li a {
	line-height				: 2.5;
	border-bottom			: 2px solid rgb(233,230,224);
}

.site-submenu li a {
	color					: rgb(22,140,207);
}

.site-submenu li a:hover,
.site-submenu li a.actief {
	font-weight				: bold;
	border-bottom			: 2px solid rgb(250,187,0);
}



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

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

.main-content {
	
}

.main-content section > div {

}

.volledigbreed {
	
}

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

.homepage-regel-container h1,
.homepage-regel-container h2,
.submenu-infoblok h1,
.submenu-infoblok h2 {
	word-break						: break-word;
}

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

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



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

.dienst {
	position					: relative;
	flex						: 1 0 350px;
	min-width				: 350px;
	margin					: 10px;
	height					: auto;
	text-align				: center;
	padding					: 30px 20px 90px 20px;
	margin-bottom			: 20px;
    border-radius: var(--border-radius);
	background-color			: rgb(244,242,239);
}

.dienst {
	cursor					: pointer;
}

div .dienst-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(250,187,0);
}
    
div .dienst-icon:before {
    font-size				: 2em;
    line-height				: 2.2;
}

.dienst h2 {
	color					: rgb(22,140,207);
}

.dienst .button {
	position					: absolute;
	left						: 15%;
	right					: 15%;
	bottom					: 20px;
	color					: rgb(255,255,255);
    background-color			: rgb(22,140,207);
}

.dienst:hover .button {
	color					: rgb(255,255,255);
    background-color			: rgb(61,73,94);
}

.dienst:hover .dienst-icon {
    background-color			: rgb(61,73,94);
}



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


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

.site-footer h2 {
	font-size				: 1.5rem;
}

.site-footer p,
.site-footer a {
	font-size				: 1rem;
}

.site-footer p a {
	color					: rgb(22,140,207);
	text-decoration			: underline;
}

.site-footer-menus-en-submenus {

}

.site-footer-menus-en-submenus h2 {
	font-size				: 1.1em;
	margin					: 0;
}

.column_width_25 {
	width					: 25%;
}

.column_width_33 {
	width					: 33.3%;
}

.column_width_50 {
	width					: 50%;
}

.column_width_100 {
	width					: 100%;
}

.footer-copyright {
    display					: flex;
    
    -webkit-justify-content	: center;
    justify-content			: center;
    
	text-align				: center;
	line-height				: 1;
	padding					: 20px;
	font-size				: 0.9rem;
	
	color					: rgb(255,255,255);
	background-color			: rgb(22,140,207);
}

.footer-copyright a {
	font-size				: 0.9rem;
	color					: rgb(255,255,255);
}

.footer-copyright a:hover {
	color					: rgb(250,187,0);
}


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

.site-header {

}

.navsection {
	z-index					: 2;
    /*box-shadow				: 5px 5px 20px rgba(61,73,94,0.3);*/
	font-size				: 1.1rem;
}

.navdiv {
	position					: relative;
	
    display					: -webkit-box;
    display					: -moz-box;
    display					: -ms-flexbox;
    display					: -webkit-flex;
    display					: flex;
    
    -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				: 1200px;
    
    margin					: auto;
}

.logo_gecentreerd {
    padding					: 10px;
	width					: 150px;
}

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

.hoofdnav,
.bovenbalk {
	width					: auto;
	margin					: 0;
}

.bovenbalk {
	-webkit-flex				: 1 0 auto;
	-moz-box-flex			: 1 0 auto;
	-ms-flex					: 1 0 auto;
	-webkit-flex				: 1 0 auto;
	flex						: 1 0 auto;
	-webkit-flex-wrap		: nowrap;
	flex-wrap				: nowrap;
	padding					: 10px;
}

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

.hoofdnav ul {
	display					: block;
	padding					: 0 0.6rem;
}

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

.hoofdnav li a {
	position					: relative;
	display					: block;
	line-height				: 5;
	padding					: 0 0.6rem;
	text-decoration			: none;
}

.hoofdnav li a.actief:before {
    position					: absolute;
	content					: "";
    display					: block;
    bottom					: 0;
    height					: 5px;
    background-color			: rgb(61,73,94);
    width					: calc(100% - 0.6rem);
}

.hoofdnav li a:hover  {
	color					: rgb(22,140,207);
}

.hoofdnav li li {
	padding					: 0.3rem 0;
	line-height				: 1.5;
	background-color			: rgb(255,255,255);
}

.hoofdnav li li a {
	line-height				: 1.5;
}

.hoofdnav li li a.actief:before,
.hoofdnav li li a:hover:before {
	display					: none;
}


.mobile-nav h2 {
	margin: 10px!important;
}

.mobile-nav ul {
	font-size				: 1.25rem;
}

.mobile-nav li a:hover  {
	color					: rgb(22,140,207);
	background-color			: rgb(255,255,255);
}

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


/*============== INLOGGEN / AANMELDEN CONTAINER ========================================*/

.inlogdiv {
	display					: none;
	position				: absolute;
	z-index					: 1;
    right					: 20px;
    min-width				: 500px;
    max-width				: 750px;
    margin					: 0;
    padding					: 20px;
    background-color		: rgba(255,255,255,0.95);
    overflow				: hidden;
}

.inlogdiv input[type=text],
.inlogdiv input[type=password],
.inlogdiv input[type=number],
.inlogdiv input[type=email] {
	border					: 1px solid rgb(22,140,207);
}

.bovenbalk .button,
.inlogdiv input[type=submit],
.inlogdiv .button {
	padding					: 6px 12px;
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
	letter-spacing			: normal;
}

.bovenbalk .button:hover {
	background-color		: rgb(61,73,94);
}

.bovenbalk span.icon-menu {
	margin-left				: 10px;
}

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

.bg_a .button,
.bg_a .button:hover {
	color				: rgb(22,140,207);
	background-color		: rgb(255,255,255);
}

.text-link {
	color				: rgb(22,140,207);
	text-decoration		: underline;
	cursor				: pointer;
}

.button.button_grijs {
	background-color			: rgb(61,73,94);
}

.button.button_grijs:hover {
	background-color			: rgb(250,187,0);
}


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

.afgerond {
	border-radius				: var(--border-radius);
}

.border {
    border-radius				: var(--border-radius);
	border						: 1px solid rgba(22,140,207,0.5);
}



/*============== KLEUREN =================================================*/
.tekst_body {
	color				: rgb(61,73,94);
}

.tekst_a {
	color				: rgb(22,140,207);
}

.tekst_b {
	color				: rgb(61,73,94);
}

.tekst_c {
	color				: rgb(250,187,0);
}

.tekst_d {
	color				: rgb(244,242,239);
}

.tekst_e {
	color				: rgb(22,140,207);
}

.tekst_grijs {
	color				: rgb(233,230,224);
}

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

.tekst_zwart {
	color				: rgb(61,73,94);
}

.bg_a {
	background-color		: rgb(22,140,207);
}

.bg_b {
	background-color		: rgb(61,73,94);
}

.bg_c {
	background-color		: rgb(250,187,0);
}

.bg_d {
	background-color		: rgb(244,242,239);
}

.bg_e {
	background-color		: rgb(22,140,207);
}

.bg_grijs {
	background-color		: rgb(233,230,224);
}

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

.bg_zwart {
	background-color		: rgb(61,73,94);
}

.border_a {
	border					: 2px solid rgb(22,140,207);
}

.border_b {
	border					: 2px solid rgb(61,73,94);
}

.border_c {
	border					: 2px solid rgb(250,187,0);
}

.border_d {
	border					: 2px solid rgb(244,242,239);
}

.border_e {
	border					: 2px solid rgb(22,140,207);
}

.border_grijs {
	border					: 2px solid rgb(233,230,224);
}

.border_wit {
	border					: 2px solid rgb(255,255,255);
}

.border_zwart {
	border					: 2px solid rgb(61,73,94);
}


.bg_foutmelding {
	background-color		: rgba(255, 38, 15, 0.3);
}

.bg_notificatie {
	background-color		: rgba(22,140,207, 0.2);
    border-radius: var(--border-radius);
}

.bg_foutmelding ul,
.bg_notificatie ul {
	background-color		: rgba(255,255,255, 0.5) !important;
}




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

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

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td
{
	border					: 1px solid rgb(250,187,0);
}

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

.bg_c .downloads *,
.bg_d .downloads *
{
	color					: rgb(22,140,207);
}

.bg_wit .downloads *,
.bg_grijs .downloads *
{
	color					: rgb(61,73,94);
}

.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(61,73,94);
}


.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(244,242,239);
}


.bg_a .homepage-blok-button-container .button,
.bg_e .homepage-blok-button-container .button
{
	background-color				: rgb(61,73,94);
}



/*==== OVERIGE =====*/
.align-self-start {
    -webkit-align-self			: flex-start;
    align-self					: flex-start;
}

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

.border_radius_0 {
    border-radius               : 0;
}

.downloads {
	border					: 1px solid rgb(233,230,224);
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 30px;
	max-width				: 400px;
}

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

.float-right {
    float					: right;
}

.font_kop {
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
}

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

H1 {
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 2.5rem;
	letter-spacing			: 0.02em;
}

H2,
.hoofdstukken H1 {
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

H3 {
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 1rem;
	text-transform			: uppercase;
}

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

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

P, P P {
	font-size				: 1rem;
	line-height				: 1.4;
}

.position-sticky {
    position: sticky;
    top: 0;
}

section img {
	max-width				: 100%;
}

.site-content section * ul:not(.tab-menu),
.site-content section * ol {
	background-color		: rgba(233,230,224,0.8);
	border-radius			: var(--border-radius);
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
}

tr:hover {
	background-color			: rgba(61,73,94,0.15);
}

td {
	border					: 1px solid rgb(233,230,224);
}

.inherit-border-radius {
    border-radius: inherit;
}

.font-size-smaller {
    font-size: 0.9rem;
}

.fullwidth {
    width: 100%;
}

hr {
	margin				: 0.8rem 0;
	color				: rgb(233,230,224);
	border-style			: solid;
}

.uppercase {
    text-transform: uppercase;
}
/*============== SOCIAL MEDIA ============================================*/

.socialmedia {
	color					: rgb(61,73,94);
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 0.9rem;
	font-weight				: normal;
	line-height				: 1.25rem;
}

.socialmedia span:before {
	color					: rgb(22,140,207);
	font-size				: 1.1rem;
	line-height				: 1.1rem;
}

/* -------- VISUAL ------------------ */

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

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

.visual {
	position					: relative;
}

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

}

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

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

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



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

.payoffheader {
	max-width				: calc(1200px - 1.2rem);
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 20px;
}

.payoffheader h2 {
	width					: 100%;
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 50px;
	text-transform			: uppercase;
}

.payoffheader h3 {
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 30px;
	text-transform			: uppercase;
}

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

	margin						: 0 auto;


	padding						: 0px 20px;
}

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

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

.highlight_grijs
{
	background-color				: rgba(233,230,224,0.6);
}

.highlight_zwart
{
	background-color				: rgba(61,73,94,0.6);
}

.highlight_a
{
	background-color				: rgba(22,140,207,0.6);
}

.highlight_b
{
	background-color				: rgba(61,73,94,0.6);
}

.highlight_c
{
	background-color				: rgba(250,187,0,0.6);
}

.highlight_d
{
	background-color				: rgba(244,242,239,0.6);
}

.highlight_e
{
	background-color				: rgba(22,140,207,0.6);
}/*============== 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],
select {
	-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=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 {
	
}

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

.input-character-counter,
.italic_gray {
	color							: rgba(61,73,94, 0.5);
	font-style						: italic;
}

.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.volledigbreed {
	-webkit-flex-direction			: column;
	flex-direction					: column;
	max-width						: none;
	width							: 100%;
}

.inputregel.volledigbreed .inputregel_label {
	max-width						: 100%;
	width							: 100%;

	font-weight						: bold;
}

.inputregel.volledigbreed .inputregel_input {
	width							: 100%;
}

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







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

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







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

@media (min-width: 1200px) {

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

}

@media (max-width: 900px) {

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

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

form {
	padding: 0;
}

form > div {
	overflow: visible;
}

form > div > fieldset > div > div {
	
}

form > div.collapsable > div, form > div.collapsable > fieldset > div {
	width: initial !important;
	float: none !important;
}

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

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

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

fieldset {
	
}

.icon[onclick]{
	cursor					: pointer;
}

.button,
button,
input[type=button],
input[type=submit] {
	padding					: 8px 20px;
	background-color		: rgb(22,140,207);
	
	border					: none;
	border-radius			: 30px;

	color					: rgb(255,255,255);
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 1.2rem;
	letter-spacing			: 0.02em;
    transition: background-color 0.15s ease-in;
}

.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	background-color		: rgb(61,73,94);
}

input[type=radio],
input[type=checkbox] {
	margin			: 5px;
}

input[type=checkbox] {
	width			: 15px;
	height			: 15px;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
textarea,
select {
	background-color				: rgb(244,242,239);
	color						: rgb(61,73,94);
	
	border						: none;
	-webkit-border-radius		: 8px;
	-moz-border-radius			: 8px;
	border-radius				: 8px;
	
    font-family: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 15px;
	line-height					: 1;
	
	height						: auto;
	padding						: 10px;
}

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(233,230,224);
}

select {
	height			: 40px;
}

.inputregel {
	font-size					: 15px;
	max-width					: 600px;
	margin-bottom				: 0;
}

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

.inputregel_label {
	font-size					: 15px;
	line-height					: 30px;
	max-width					: 150px;
}

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

/* CUSTOM SELECT */

select {
	height					: 2.5em;
	padding					: 0.2em 1.5em 0.2em 0.75em !important;

	border					: 1px solid rgb(233,230,224);
	-webkit-border-radius	: 0.5em;
	-moz-border-radius		: 0.5em;
	border-radius			: 0.5em;

	font-size				: 1em;
    background				: rgba(233,230,224,0.5) url("../img/custom-select-icon.png") no-repeat 99% 50%;
}


/* CUSTOM CHECKBOXES AND RADIO */

.collapsable.zoekcriteria-groep label,
.fancy-input label {
    margin                  : 4px 0px;
}

.collapsable.zoekcriteria-groep input[type="checkbox"],
.fancy-input input[type="checkbox"] {
	position				: absolute;
	visibility				: hidden;
}

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

.collapsable.zoekcriteria-groep input[type="checkbox"] + label {
    font-size               : 1.125rem;
    line-height             : 1.5;
}

.collapsable.zoekcriteria-groep input[type="checkbox"] + label:last-child,
.fancy-input input[type="checkbox"] + label:last-child {
	margin-right			: 0;
}

.collapsable.zoekcriteria-groep input[type="checkbox"] + label:before,
.fancy-input input[type="checkbox"] + label:before {
  content					: '';
  display					: block;
  width						: 14px;
  height					: 14px;
  border					: 2px solid rgb(22,140,207);

  position					: absolute;
  left						: 0;
  top						: 0;
  -webkit-transition		: all .12s, border-color .08s;
  transition				: all .12s, border-color .08s;
}

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

.zoekcriteria-kolom-desktop .collapsable.zoekcriteria-groep input[type="checkbox"] + label:before {
  top						: 5px;
}

.zoekcriteria-kolom-desktop .collapsable.zoekcriteria-groep input[type="checkbox"]:checked + label:before {
  top						: 2px;
}

.collapsable.zoekcriteria-groep input[type="radio"],
.fancy-input input[type="radio"] {
	position				: absolute;
	visibility				: hidden;
}

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

.collapsable.zoekcriteria-groep input[type="radio"] + label:last-child,
.fancy-input input[type="radio"] + label:last-child {
	margin-right			: 0;
}

.collapsable.zoekcriteria-groep input[type="radio"] + label:before,
.fancy-input input[type="radio"] + label:before {
	content					: '';
	display					: block;
	width					: 14px;
	height					: 14px;
	border					: 2px solid rgb(22,140,207);
	background-color		: rgb(255,255,255);
	border-radius			: 50%;
	position				: absolute;
	left					: 0;
	top						: 1px;
}

.collapsable.zoekcriteria-groep input[type="radio"]:checked + label:before,
.fancy-input input[type="radio"]:checked + label:before {
	-webkit-transition		: background-color 0.3s linear;
	-o-transition			: background-color 0.3s linear;
	-moz-transition			: background-color 0.3s linear;
	transition				: background-color 0.3s linear;
    background-color		: rgb(22,140,207);
}


.collapsable-header-text {
    padding-left: 5px;
}




.save-button-top,
.save-button-bottom {
	-webkit-transition		: .2s; /* 0.2 seconds transition on hover */
	transition				: all .2s;
}

.save-button-toggle.save-button-inactive {
	background-color			: rgb(233,230,224);
}

/*
.criteria-container .collapsable-header {

}

.criteria-container .criteria-input-container .criteria-toggle-all {
    font-size: 1.125rem;
    line-height: 1.5;
}

.criteria-container .criteria-input-container .criteria-toggle-all.active {
	background-color				: rgb(22,140,207);
	color			                : rgb(255,255,255);
}

.criteria-container .criteria-input-container .criteria-toggle-all,
.criteria-container .criteria-input-container input + label {
	-webkit-border-radius			: 10px;
	-moz-border-radius				: 10px;
	border-radius					: 10px;

	background-color				: rgb(233,230,224);
	padding							: 5px 10px;
	cursor							: pointer;

	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.criteria-container .criteria-input-container input:checked + label {
	background-color				: rgb(22,140,207);
	color							: rgb(255,255,255);
}
*/



/*============== 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(22,140,207);

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

	font-family						: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	line-height						: 2;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	line-height						: 3.5;
	font-size						: 12px;
}

.icon-input-ok {
	color							: rgb(22,140,207);
}

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

.icon-input-verplicht {
	color							: rgb(22,140,207);
}



/**/

option:checked, option {
	background:rgb(255,255,255);
	color:rgb(61,73,94);
}

option[value=""] {
	color:rgb(233,230,224);
}

option:hover {
	background:rgb(255,255,255);
	color:rgb(61,73,94);
}

option:focus {
	background:rgb(255,255,255);
	color:rgb(22,140,207);
}




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

.socialmedia-emailform input,
.socialmedia-emailform textarea {
	border: 1px solid rgb(22,140,207);
}

.socialmedia-emailform textarea {
	height: 200px;
}

.socialmedia-emailform-melding {
	background-color: rgba(22,140,207, 0.1);
}



.inlog-submit .inputregel_input,
.inlog-footer-links .inputregel_input {
	display					: -webkit-box;
    display					: -moz-box;
    display					: -ms-flexbox;
    display					: -webkit-flex;
    display					: flex;
}

.input-radius-div,
.input-regio-div {
	width						: auto !important;
}
.uitgebreid-zoeken-div {
	display						: inherit! important;
	margin						: 0;
}

.uitgebreid-zoeken-div label {
	margin						: 0;
}

.uitgebreid-zoeken-div input,
.input-radius-div select,
.input-regio-div input,
.input-trefwoord-div input {
	margin-top					: 5px!important;
}

.uitgebreid-zoeken-div.mobilenietzichtbaar {
	margin						: 0 0 10px 0 !important;
}

.uitgebreid-zoeken-div.mobilenietzichtbaar label {
	margin						: 0 0 5px 0 !important;
}

.icon-maak-account-aan-uitleg {
	position						: relative;
	top								: 2px;
}

.uitleg-popout {
    width: 100%;
	background-color: rgba(250,187,0, 0.15);
	padding							: 20px;
    margin: 5px 0;
    border-radius: var(--border-radius);
}

.uitleg-popout p a {
	color: rgb(61,73,94);
}

.icon-help-hover:hover {
    color: rgb(22,140,207);
}

/* slider */
input[type="range"] {
	-webkit-appearance		: none;
	appearance				: none;
	width					: 100%;
	height					: 25px;
	background				: rgba(61,73,94, 0.15);
	outline					: none;
	opacity					: 0.8; /* Set transparency (for mouse-over effects on hover) */
	-webkit-transition		: .2s; /* 0.2 seconds transition on hover */
	transition				: opacity .2s;

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

input[type="range"]:hover {
	opacity					: 1;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance		: none;
	appearance				: none;
	width					: 25px;
	height					: 25px;
	background				: rgb(22,140,207);
	cursor					: pointer;

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

input[type="range"]::-moz-range-thumb {
	width					: 25px;
	height					: 25px;
	background				: rgb(22,140,207);
	cursor					: pointer;

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

.criteria-input-container.salarisindicatie {
	display					: -webkit-box;
	display					: -moz-box;
	display					: -ms-flexbox;
	display					: -webkit-flex;
	display					: flex;

	-webkit-flex-direction	: row;
	flex-direction			: row;
}
.criteria-input-container.salarisindicatie input[type="number"] {
	background				: rgb(255,255,255);
	height					: 25px;
	width					: 80px;
	margin-left				: 5px;
}

.criteria-input-container.salarisindicatie .criteria-salarisindicatie-label {
	line-height				: 0.6em;
	font-size				: 1.1em;
	text-align				: center;
	width					: 50px;
	margin-top				: 3px;
}





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

@media (min-width: 1200px) {

}

@media (min-width: 1000px) {
	
	.uitgebreid-zoeken-div.mobilewelzichtbaar {
		display						: none !important;
	}
	.zoekform div div {
		margin						: 0px;
	}
}


@media (max-width: 1000px) {

	.zoekform div {
		width						: 100% !important;
	}
	
	.input-radius-div.mobilewelzichtbaar {
		display						: block !important;
	}
}

@media (max-width: 900px) {

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


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

    .collapsable.zoekcriteria-groep input[type="checkbox"] + label:before,
    .fancy-input input[type="checkbox"] + label:before {
        top: 3px;
    }

    .collapsable.zoekcriteria-groep input[type="checkbox"]:checked + label:before,
    .fancy-input input[type="checkbox"]:checked + label:before {
        top: 0px;
    }

}

@media (max-width: 600px) {

	form > div > label,
	legend {
		display						: inline-block;
	}

	.input-radius-div,
	.input-regio-div {
		margin-right				: 10px !important;
	}
	
	.input-radius-div.mobilewelzichtbaar {
		display						: none !important;
	}

    .collapsable.zoekcriteria-groep input[type="checkbox"] + label:before,
    .fancy-input input[type="checkbox"] + label:before {
        top: 0px;
    }

    .collapsable.zoekcriteria-groep input[type="checkbox"]:checked + label:before,
    .fancy-input input[type="checkbox"]:checked + label:before {
        top: -3px;
    }
/*
    .criteria-input-container label,
    .criteria-toggle-all {
        font-size: 0.9em !important;
        margin: 7px !important;
    }

    .criteria-input-container {
        margin: 14px 0 !important;
    }
*/

}

@media (max-width: 400px) {

    .button,
    button,
    input[type=button],
    input[type=submit] {
        	padding					: 8px 15px;
        	font-size				: 1.2rem;
    }

	.inlog-submit .inputregel_input,
	.inlog-footer-links .inputregel_input {
	    -webkit-flex-direction	: column;
	    flex-direction			: column;
	}

	.inlog-submit .inputregel_input :first-child,
	.inlog-footer-links .inputregel_input :first-child {
		margin-bottom			: 10px;
	}

	.inlog-submit .inputregel_input a,
	.inlog-footer-links .inputregel_input a {
		text-align				: center;
	}

	.uitgebreid-zoeken-div.mobilewelzichtbaar label {
		margin						: 0;
		font-size					: 0.9rem;
	}
/*
    .criteria-input-container label,
    .criteria-toggle-all {
        font-size: 0.8em !important;
        margin: 5px !important;
    }

    .criteria-input-container {
        margin: 11px 0 !important;
    }
*/

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

.wysiwyg-container a{
	color					: rgb(22,140,207);
	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;
}


.ajax-loader {
    max-width: 20px;
}



/* ============== JQUERY UI DATEPICKER =================== */
.ui-datepicker .ui-datepicker-title select {
	margin					: 2px !important;
}




/* ==================== EXTRA CSS CLASSES  ==================== */

/* BG KLEUR VOLLEDIG BREED, GEBRUIKEN IN COMBINATIE MET BG_KLEUR IN BEHEER === */
.main-content section.testimonial {
	max-width				: 100%;
	width					: 100%;
}

/* CONTENT GEMAXIMALISEERD */
.main-content section.testimonial > div:first-of-type {
	max-width				: 1200px;
	width					: 100%;
	margin					: auto!important;
}

.testimonial {
	margin					: 0;
	text-align				: center;
}

.testimonial h2 {
	font-size				: 2.5rem;
	text-transform			: none;
}

.testimonial span.homepage-blok-subtitel  {
	font-size				: 1.25rem;
	font-style				: italic;
	color					: rgb(61,73,94);
}


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

/* snelle fix voor eigen submenus toevoegen aan site content */
/* op dat punt is sitecontent al overschreven door de main en wordt de class */
/* content-met-submenu niet meer toegevoegd aan de site-content zelf maar aan */
/* de main, dus vandaar hier even extra de bijbehorende css zetten */
.site-content main.main-content.content-met-submenu
{
    max-width: 1200px;
    width: 100%;
    margin: auto;
}


.site-uitklap {
	box-shadow				: 0 0 5px 5px rgba(0,0,0,0.25);
}
	
.site-footer {
	background-color			: rgb(255,255,255);
}

.site-footer-content {
	max-width				: 1200px;
	margin					: auto;
}

#cookiewarning input[type=button] {
	padding					: 8px 12px;
	font-size				: 1rem;
}

.nieuwsberichten,
.hoofdstukken,
.introductie
{
	padding					: 10px;
}


/* ==================== */
/*  		  ZOEKEN	        */
/* ==================== */

.header-visual-home .zoekcontainer,
.header-visual .zoekcontainer {
    border-radius: var(--border-radius);
}

.zoekcontainer {
	margin					: auto;
	display					: flex;
	-webkit-justify-content	: center;
	justify-content			: center;
    background-color		: rgb(250,187,0);
}

.zoekform {
	display					: flex;
	-webkit-flex-wrap		: wrap;
	flex-wrap				: wrap;
	-webkit-flex-direction	: row;
	flex-direction			: row;
	-webkit-align-items		: flex-end;
	align-items				: flex-end;
		
	padding					: 0;
}

.zoekform div {
	margin-right			: 3px;
}

.zoekform-zoeknaar-knop {
	display					: none;
}

.zoekform-zoeknaar-knop a {
	font-size				: 1.3em;
}

.zoekform label,
.zoekform input[type=text],
.zoekform select
{
	margin					: 0;
	font-size				: 1.05em;
}

.zoekform label {
	width					: 100%;
	text-align				: left;
	padding					: 0;
}

.zoekform input[type=text],
.zoekform select,
.zoekform input[type=submit]
{
	height					: 45px;
	margin					: 0;
}

.zoekform input[type=text],
.zoekform select
{
	-webkit-border-radius	: 3px;
	-moz-border-radius		: 3px;
	border-radius			: 3px;
	background-color		: rgb(255,255,255);
}

.zoekform input[type=submit]:hover {
	background-color		: rgb(61,73,94);
}

.uitgebreid-zoeken-div {
	max-width				: 150px;
}

.uitgebreid-zoeken-div a:hover.text-link {
	color					: rgb(61,73,94);
}

/* ==== PLACEHOLDER TEKST IN GRIJS ==== */

.zoekform input[type=text]::-webkit-input-placeholder, 		/* Chrome/Opera/Safari Older versions */
.zoekform input[type=text]::placeholder 						/* Chrome/Opera/Safari Modern versions */
{
	padding-left		: 20px;
	color			: rgb(233,230,224);
}
.zoekform input[type=text]:-moz-placeholder,  				/* Firefox 18- */
.zoekform input[type=text]::-moz-placeholder 				/* Firefox 19+ */
{
	color			: rgb(233,230,224);
}
.zoekform input[type=text]:-ms-input-placeholder,				/* IE 11 */
.zoekform input[type=text]::-ms-input-placeholder 			/* Edge */
{
	color			: rgb(233,230,224);
}


/* ==== PAGINERING ==== */

.pagination-ellipse,
.button.criteria-pagination {
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color					: rgb(61,73,94);
	background-color			: transparent;
}

.button.criteria-pagination.actief {
	color					: rgb(255,255,255);
	background-color			: rgb(22,140,207);
}

.overzicht-kopregel-container {
	flex						: 1 0 auto;
}

.paginering-container {
	flex						: 1 0 auto;
}

.overzicht-kopregel-div {
	width					: 100%;
}

.aantal-gevonden-resultaten {
	width					: 33%;
}

.aantal-gevonden-resultaten span {
	display					: block;
	line-height				: 1.25rem;
	margin					: 10px 0px;
	text-align				: center;
}

.aantal-gevonden-resultaten.mobilewelzichtbaar {
	justify-content			: flex-end;
	width					: 100%;
}

.aantal-gevonden-resultaten.zonder-paginering {
	justify-content			: flex-start;
	width					: 50%;
}

.aantal-gevonden-resultaten.zonder-paginering span {
	text-align				: left;
}

.results-per-pagina {
	display					: flex;
	justify-content			: flex-end;
	width					: 33%;
}

.results-per-pagina.zonder-paginering {
	width					: 50%;
}

.results-per-pagina select {
	max-width				: 100px;
}

.results-per-pagina label {
	padding-right			: 10px;
}


/* ============================ */
/*  OVERZICHTEN  */
/* ============================ */

.default-overzicht-styling,
.stage,
.stage-uitgelicht,
.vacature,
.vacature-uitgelicht,
.profiel-overzicht-container {
	font-size			: 1.1rem;
	line-height			: 1.1;
}

.default-overzicht-styling H3,
.stage H3,
.stage-uitgelicht H3,
.vacature H3,
.vacature-uitgelicht H3 {
	font-family			: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color				: rgb(22,140,207);
	
	font-size			: 1.5rem;
	letter-spacing		: initial;
	font-weight			: bold;
	
	text-transform		: initial;
	word-break			: break-word;
}

.aanvraag-container,
.stages-container,
.vacatures-container {
	/*padding				: 10px;*/
    border-radius: var(--border-radius);
	background-color: rgb(255,255,255);
}

.aanvraag-container,
.banner-container,
.stage-container,
.vacature-container {
	border-radius		: var(--border-radius);
	margin-bottom		: 10px;
}

.aanvraag-container,
.stage-container,
.vacature-container {
	border				: 2px solid rgb(250,187,0);
}

.aanvraag-container .icon-input-ok-alt:before {
    content: "\43";
}

.aanvraag-container-button-container {
    margin-top: 10px;
    width: 100%;
}

.aanvraag-container {
    --rightCol: 180px;
    --leftCol: 160px;
}
.aanvraag-container-kolom-rechts {
    width: var(--rightCol);
}

.aanvraag-container-kolom-links {
    width: calc(100% - var(--rightCol) - 20px);
    margin-right: 20px;
}

.aanvraag-container .bedrijf-image {
    display: initial;
    width: var(--leftCol);
}

.aanvraag-container-kolom-links .aanvraag-detail {
    width: calc(100% - var(--leftCol));
}

.keuring-button {
    padding: 0.5em 0.7em 0.4em 0.7em;
    color: rgb(255,255,255);
	background-color: rgb(22,140,207);
    font-family: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
    letter-spacing: 0.02em;
    transition: all 0.15s ease-in;
}

.keuring-button:hover {
    background-color: rgb(61,73,94);
}

.keuring-button .icon {
    vertical-align: middle;
}

.keuring-afkeuren {
    border-radius: 8px 0 0 8px;
    border-right: 1px solid rgb(255,255,255);
}

.keuring-goedkeuren {
    border-radius: 0 8px 8px 0;
}

.aanvraag-huidige-status.status-goedgekeurd {
	/*color				: rgb(107,142,35);*/
}

.aanvraag-huidige-status.status-afgekeurd {
	/*color				: rgb(231,81,19);*/
}

.keuring-goedkeuren.keuring-button-actief,
.keuring-afkeuren.keuring-button-actief {
    font-family: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    letter-spacing: normal;
    border-radius: 0;
    background-color: transparent;
}

.keuring-goedkeuren.keuring-button-actief {
	color				: rgb(107,142,35);
}

.keuring-afkeuren.keuring-button-actief {
	color				: rgb(231,81,19);
}
.autoniem-overzicht-form select {
    min-width           : 125px;
}

.banner-container {
	border				: 2px solid rgb(22,140,207);
}

.banner-block {
	display				: block;
}

.banner-image,
.bedrijf-image,
.stage-image,
.vacature-image {
	display				: flex;
	max-width			: 160px;
	padding-left		: 20px;
	text-align			: center;
}
.bedrijf-image {
	padding-right		: 20px;
}

.banner-image {
	padding				: 0;
	padding-right		: 20px;
}

.banner-image img,
.bedrijf-image img,
.stage-image img,
.vacature-image img {
	width				: auto;
	max-width			: 100px;
	height				: auto;
	max-height			: 150px;
}

.stages-uitgelicht,
.vacatures-uitgelicht {
	padding				: 22px 8px;
	margin-bottom		: 10px;
    border-radius: var(--border-radius);
	background-color	: rgb(250,187,0);
}

.stage-uitgelicht,
.vacature-uitgelicht {
    display: grid;
    align-content: stretch;
    grid-template-rows: 250px 1fr;
}

.stages-uitgelicht .stage-container-uitgelicht,
.vacatures-uitgelicht .vacature-container-uitgelicht,
.uitgelicht-home .vacature-container-uitgelicht {
	background-color		: rgb(255,255,255);
    border-radius: var(--border-radius);
}

.stages-zoekresultaten .stage-container-uitgelicht,
.vacatures-zoekresultaten .vacature-container-uitgelicht {
	box-shadow: inset 0 0 0 10px rgb(250,187,0);
    border: var(--border-radius);
}

.stage-uitgelicht-image,
.vacature-uitgelicht-image {
	text-align: center;
    display: grid;
    align-content: center;
    justify-content: center;
}

.stage-uitgelicht-image img,
.vacature-uitgelicht-image img {
	width				: auto;
	height				: auto;
	max-height			: 200px;
    margin: 0;
}

.uitgelicht-home {
	flex-wrap			: wrap;
	background-color	: rgb(250,187,0);
}

.dienstverband-eisen {
	position			: relative;
	top					: 10px;
}


/* =====  VACATURE + STAGE FILTERS  ===== */

.zoekcriteria-kolom {
	max-width			: 275px;
}

.collapsable-header {
	font-size			: 1.125rem;
	color				: rgb(22,140,207);
}

.collapsable-body label {
	font-size			: 1.125rem;
	line-height			: 1.5;
}

.zoekcriteria-subgroep-toonminder,
.zoekcriteria-subgroep-toonmeer {
	margin-left			: 24px;
	font-size			: 1rem;
	line-height			: 1.25;
	text-decoration		: underline;
	color				: rgb(22,140,207);
}

.stages-actieve-filter-container,
.vacatures-actieve-filter-container {
	padding				: 10px 0 20px 0;
}

.stage-actieve-filter,
.vacature-actieve-filter {
	display				: inline-block;
	margin				: 0.15rem;
	padding				: 0.3rem 0.6rem;
	border-radius		: var(--border-radius);
	cursor				: pointer;
}

[class^="icon-"]:after,
[class*=" icon-"]:after
{
  font-family				: "werk-stage" !important;
  font-style					: normal !important;
  font-weight				: normal !important;
  font-variant				: normal !important;
  text-transform				: none !important;
  speak						: none;
  line-height				: 1;
  -webkit-font-smoothing		: antialiased;
  -moz-osx-font-smoothing	: grayscale;
}

.stage-actieve-filter.icon-sluiten:before,
.vacature-actieve-filter.icon-sluiten:before {
	display					: none;
}

.stage-actieve-filter.icon-sluiten:after,
.vacature-actieve-filter.icon-sluiten:after {
	content					: "\77";
	vertical-align			: middle;
	padding-left				: 0.3rem;
	color					: rgb(22,140,207);
}


/* ====================================== */
/*    VACATURE + STAGE + BEDRIJF DETAIL   */
/* ====================================== */

.bedrijf-aanbod-overzicht a
{
	border-bottom			: 1px solid rgb(250,187,0);
}

.bedrijf-aanbod-overzicht-header
{
	border-bottom			: 2px solid rgb(22,140,207);
}

.bedrijf-aanbod-overzicht a:hover
{
	background-color		: rgba(22,140,207, 0.5);
}

.bedrijf-detail-kolom,
.vacature-detail-kolom,
.stage-detail-kolom,
.banner-tekst,
.vacature-omschrijving-kort,
.stage-omschrijving-kort {
	word-break				: break-word;
	word-wrap				: break-word;
    line-height:    1.4;
}

.internet-explorer-trident .bedrijf-detail-kolom,
.internet-explorer-trident .vacature-detail-kolom,
.internet-explorer-trident .stage-detail-kolom,
.internet-explorer-trident .vacature-omschrijving-kort,
.internet-explorer-trident .stage-omschrijving-kort,
.internet-explorer-edge .bedrijf-detail-kolom,
.internet-explorer-edge .vacature-detail-kolom,
.internet-explorer-edge .stage-detail-kolom,
.internet-explorer-edge .banner-tekst,
.internet-explorer-edge .vacature-omschrijving-kort,
.internet-explorer-edge .stage-omschrijving-kort {
	word-break				: break-all;
	word-wrap				: break-word;
}

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

.internet-explorer-trident .display_flex_row_nowrap .flex_1,
.internet-explorer-trident .display_flex_row_nowrap .flex_2,
.internet-explorer-trident .display_flex_row_nowrap .flex_3,
.internet-explorer-trident .display_flex_row_nowrap .flex_4 {
	flex-basis						: 100%;
}

.stage-detail-container,
.vacature-detail-container {
    border-radius: var(--border-radius);
}

.stage-detail-kolom,
.stage-detail-kolom b,
.stage-detail-kolom p,
.vacature-detail-kolom,
.vacature-detail-kolom b,
.vacature-detail-kolom p,
.bedrijf-detail-kolom,
.bedrijf-detail-kolom b,
.bedrijf-detail-kolom p
{
    font-size				: 1.1rem;
    line-height				: 1.3;
}

/*
.stage-detail-kolom,
.vacature-detail-kolom,
.bedrijf-detail-kolom {
	margin					: 10px 5px 1% 0;
}
*/
.stage-detail-kolom h3,
.vacature-detail-kolom h3,
.bedrijf-detail-kolom h3 {
	font-family				: 'lato','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size				: 1.25rem;
    font-weight				: bold;
    text-transform			: initial;
    color					: rgb(22,140,207);
}


.stage-detail-kenmerken,
.stage-detail-criteria,
.stage-detail-contactgegevens,
.vacature-detail-kenmerken,
.vacature-detail-criteria,
.vacature-detail-contactgegevens,
.bedrijf-detail-contactgegevens,
.bedrijf-detail-info
{
	border					: 2px solid rgb(250,187,0);
    border-radius: var(--border-radius);
}

.bedrijf-detail-info {
	align-content			: center;
	justify-content			: center;
	background-color		: rgb(255,255,255);
}

.bedrijf-detail-info img {
	padding: 20px;
	margin: 0;
}

.stage-detail-info,
.vacature-detail-info {
	-webkit-align-items		: flex-start;
	align-items				: flex-start;
	-webkit-justify-content	: space-between;
	justify-content			: space-between;
}

.stage-detail-image,
.vacature-detail-image {
	padding					: 0 10px 10px 0;
}

.stage-detail-image img,
.vacature-detail-image img {
	width					: auto;
	max-width				: 350px;
	height					: auto;
	max-height				: 250px;
}

.googlemaps-placeholder-container {
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.googlemaps-placeholder-image {
    height: 300px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    background-color: rgb(22,140,207);
}

.googlemaps-placeholder-image:hover {
    background-blend-mode: screen;
}

.googlemaps-placeholder-image,
.googlemaps-placeholder-title {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.googlemaps-placeholder-title {
    font-family: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
    place-self: center;
    color: rgb(250,187,0);
}



/* ==================== */
/*    PARTNER SLIDER    */
/* ==================== */

.partner-preload-container {
	display					: none;
}

.sponsor-container,
.partner-container {
	width					: 100%;
	padding					: 10px 0;
	background-color			: rgb(255,255,255);
}

.sponsor-element,
.partner-element {
	margin					: 0px 5px;
}

.sponsor-container .sponsor-element,
.partner-container .partner-element {
	height					: 70px;
	width					: 150px;

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

.sponsor-container .sponsor-element .sponsor-img-logo,
.partner-container .partner-element .partner-img-logo {
	max-width				: 150px;
}







/* ==================== */
/*   BEDRIJVEN OVERZICHT*/
/* ==================== */
.navigation-container {

}

.navigation-container-fixed {
	position				: fixed;
	top						: 0px;
	right					: 0px;
	left					: 0px;

	margin					: 0 auto;
	box-shadow				: 0 0 5px 5px rgba(61,73,94, 0.5);
}

.navigation-container-fixed span {
	border-top				: none;
}

.navigation-container span {

	border					: 1px solid rgb(233,230,224);
	border-left				: none;

	min-width				: 35px;
	height					: 35px;
	font-size				: 1.3em;
	text-align				: center;

	display					: inline-block;
	line-height				: 35px;

	cursor					: pointer;

	-webkit-flex-grow		: 1;
	flex-grow				: 1;
}

.navigation-container span:hover,
.navigation-container span.active {
	background				: rgb(22,140,207);
	color					: rgb(255,255,255);
}

.navigation-container span:first-child {
	border					: 1px solid rgb(233,230,224);
}




/* ==================== */
/*   AANMELDEN PAGINA   */
/* ==================== */

.aanmeld-opties-container
{
}

.aanmeld-optie {
	position				: relative;

	flex					: 1 0 350px;
	min-width				: 350px;
	
	padding					: 30px 20px 120px 20px;
	margin					: 30px 1%;
	
	text-align				: center;
}

.aanmeld-optie-icon {
	display					: inline-block;
    width					: 70px;
    height					: 70px;

	font-size				: 42px;
	line-height				: 42px;

    -webkit-border-radius	: 50%;
	border-radius			: 50%;
	
	color					: rgb(255,255,255);
	background-color		: rgb(250,187,0);
}

.bg_c .aanmeld-optie-icon {
	color					: rgb(250,187,0);
	background-color		: rgb(255,255,255);
}
  
div .aanmeld-optie-icon:before {
    font-size				: 2rem;
    line-height				: 2;
}

.aanmeld-optie .button {
	position				: absolute;
	left					: 15%;
	right					: 15%;
	bottom					: 20px;
}

.aanmeld-optie:hover .button {
	color					: rgb(255,255,255);
    background-color		: rgb(61,73,94);
}

.aanmeld-optie:hover .aanmeld-optie-icon {
	color					: rgb(255,255,255);
    background-color		: rgb(61,73,94);
}

/* ==== PROFIEL ==== */
.profiel-ervaring-aantal-referenties,
.fontsize_smaller {
    font-size               : 0.8em;
}

.mijn-profiel-button-container {
    position: relative;
    overflow-wrap: break-word;
}

.bovenbalk .notification-tooltip-container {
    position				: absolute;
    min-width				: 350px;
    top			            : 45px;
    right			    	: 0;
    border-radius			: 10px;
}

.notification-tooltip-container {
    border-radius: var(--border-radius);
}

.notification-tooltip-container div {
    flex				    : 1;
}

.tooltip {
    position                : relative;
    width                   : 100%;
    display                 : inline-block;
	color					: rgb(255,255,255);
}

.tooltip a {
	color				: rgb(250,187,0);
	text-decoration		: underline;
	cursor				: pointer;
}

.tooltip h4,
.tooltip > div * {
    font-size				: 0.9rem;
    word-break              : break-word;
}

.bovenbalk .notification-tooltip-container .tooltip:before {
    content				    : '';
    position				: absolute;
    display			    	: block;
    width			    	: 0;
    z-index			    	: 1;
    border-style	    	: solid;
    border-color			: rgb(61,73,94) transparent;
    border-width			: 24px 12px 0;
    top			    	    : -24px;
    right		    		: 0;
    transform				: rotate(180deg);
}

.ervaring-container,
.opleiding-container {
}

.profiel-header-container .profiel-foto-container {
    background-color: rgb(233,230,224);
    width: 200px;
    height: 200px;
    border: 5px solid rgb(233,230,224);
    border-radius: 50%;
    overflow: hidden;
}

.profiel-header-container .profiel-foto-container .profiel-foto {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url("../img/placeholder_pasfoto_werkzoekende.png");
}

.profiel-header-container .profiel-foto-container .toggle-profiel-foto-input {
    position: relative;
    display: block;
    bottom: 30%;
    left: 0;
    right: 0;
    padding: 5px;
    text-align: center;
    background-color: rgba(255,255,255, 0.75);
    font-size: 1rem;
    font-weight: bold;
}

.profiel-header-container .profiel-naam-functie-container .profiel-naam {
    font-size: 1.2em;
    color: rgb(22,140,207);
}

.profiel-header-container .profiel-functie-dienstverband-container .profiel-dienstverband {
    font-style: italic;
}

/* ==== SUCCES TRACKER ==== */
.succes-tracker-container {
    border: 3px dashed rgb(250,187,0);
}

.succes-tracker-grid {
    --gap: 0.6em;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - var(--gap)), 1fr));
    column-gap: var(--gap);
}

.progress-bar-container {
    position: relative;
    background-color: rgba(250,187,0,0.15);
    height: 1.75em;
}

.progress-bar {
    position: relative;
    background-color: rgba(250,187,0,0.8);
    height: 100%;
    width: 0;
}

.progress-bar:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(-45deg,
    rgba(255,255,255,0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255,255,255,0.2) 50%,
    rgba(255,255,255,0.2) 75%,
    transparent 75%,
    transparent);
    background-size: 1.5em 1.5em;
}

.progress {
    /* variable defined in mijnProfiel */
    width: calc(var(--width) * 1%);
}

.progress-bar-icon {
    position: absolute;
    top: 0.1em;
    right: 0.2em;
    color: rgb(250,187,0);
    padding: 3px;
}

/* ==== PROFILE SCORE ==== */
.pie-container {
    min-width: 33%;
    -webkit-justify-content: center;
    justify-content: center;
}

.pie {
    --pie: 90px;
    position: relative;
    width: var(--pie);
    height: var(--pie);
}

.pie:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* variable defined in mijnProfiel */
    background: conic-gradient(rgb(22,140,207) calc(var(--percentage) * 1%),rgba(22,140,207,0.3) 0);
}

.pie-profile-score {
    display: grid;
    place-content: center;
    font-size: 1.4em;
    text-align: center;
}

.perks-container {
    min-width: 420px;
}

.perks-a {
    -webkit-justify-content: center;
    justify-content: center;
    margin: 1%;
    width: 48%;
}

.perks-icon:before {
    font-size: 1.75em;
    vertical-align: middle;
}

.perks-text {
    color: rgba(61,73,94,0.8);
}

.perks-text.inactive {
    color: rgba(61,73,94,0.3);
}

/* ==== TABS MENU ==== */
.tabs-header {
    top: -1px;
    background-color: rgb(244,242,239);
    z-index: 9;
}

.tab-menu {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    border-radius: var(--border-radius);
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tab {
    border-radius: inherit;
    text-align: center;
    margin: 0;
}

.tab-a {
    position: relative;
    padding: 1em 0.75em;
    font-size: 0.9em;
    border: 1px solid rgb(22,140,207);
    border-left-color: transparent;
    border-bottom-width: 0;
    color: rgb(22,140,207);
    background-color: rgb(255,255,255);
}

.tab-a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(22,140,207);
    transition: height 0.15s;
}

.tab-a:not(.active):hover:after {
    height: 6px;
}

.tab-a.active,
.tab-a.active .tab-icon.complete {
    color: rgb(255,255,255);
    background-color: rgb(22,140,207);
}

li.tab:first-of-type .tab-a {
    border-radius: var(--border-radius) 0 0 0;
    border-left-color: rgb(22,140,207);
}

li.tab:last-of-type .tab-a {
    border-radius: 0 var(--border-radius) 0 0;
}

.tab-icon {
    color: rgb(250,187,0);
}

.tab-icon.complete {
    color: rgb(22,140,207);
}

.tabs-content {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ==== SUBMENU WHO AM I ==== */
.tabs-subnav {
    position: relative;
    padding: 0.5em 1em;
    margin: 0.5em 2em 0.5em 0;
}

.tabs-subnav:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(250,187,0);
    transition: height 0.15s;
}

.tabs-subnav.active:after,
.tabs-subnav:hover:after {
    height: 6px;
}

.tabs-subnav-text {
    font-weight: bold;
    margin-right: 0.5em;
}

.tabs-subnav.complete:after {
    background-color: rgb(244,242,239);
    transition: none;
}

.tabs-subnav.complete.active:after,
.tabs-subnav.complete:hover:after {
    height: 3px;
}

.tabs-subnav.complete .tabs-subnav-icon {
    color: rgb(22,140,207);
}

/* ==== ZOEKVOORKEUREN / CRITERIA ==== */
.criteria-collapsable .collapsable-header-icon,
.toggle-all-collapsables {
    font-size: 0.8em;
    color: rgba(22,140,207,0.5);
}

.toggle-all-collapsables {
    display: inline-block;
    width: 100%;
    text-align: right;
    text-decoration: underline;
    cursor: pointer;
}

.criteria-collapsable {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 2px solid rgb(250,187,0);
}

.criteria-collapsable:first-of-type {
    margin-top: 0;
    border-top: none;
}

.criteria-container {
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - 0.5em), 1fr));
    grid-gap: 0.75em 0.5em;
    padding-bottom: 1em;
    font-size: 1em;
}

.criteria-input {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: rgb(233,230,224);
    cursor: pointer;
}

.criteria-input.active {
    color: rgb(255,255,255);
    background-color: rgb(22,140,207);
}

/* ==== SKILLS ==== */
.skills-container {
    width: 50%;
}

.skills-button {
    color: rgb(22,140,207);
    transition: all 0.15s ease-in;
}

.skills-button:hover {
    color: rgb(61,73,94);
}

.skills-button:hover .skills-button-icon {
    background-color: rgb(61,73,94);
}

.skills-button-icon:before {
    margin-top: 0.2em;
}

.skills-button-icon {
    display: grid;
    place-content: center;
    padding: 0;
    width: 2em;
    height: 2em;
}

.skills-button-text {
    font-size: 1.2em;
}

/* ==== BUTTONS ==== */
.grid_save_back_buttons {
    grid-template-areas:
    'buttonBack title button';
    grid-template-columns: auto 1fr auto;
}

.grid_save_back_buttons .introduction {
    grid-area: buttonBack / title;
}

.grid_save_back_buttons .save-button {
    grid-area: button;
}

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

	font-size					: 1.1rem;
	padding						: 0 12px;
	border-radius				: 30px;
}

.button-nieuwsbrief-container {
	position				: relative;
	width					: 233px;
}

.button-nieuwsbrief {
	padding					: 8px 32px 8px 12px;
	background-color		: rgb(22,140,207);
	
	border					: none;
	border-radius			: 20px 0 0 20px;

	color					: rgb(255,255,255);
	font-family				: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
	font-size				: 15px;
	letter-spacing			: 0.02em;
}

.button-nieuwsbrief-icon {
	position				: absolute;
	right					: 0;
	top						: -3px;
	width					: 42px;
	height					: 42px;
	-webkit-border-radius	: 50%;
	-moz-border-radius		: 50%;
	border-radius			: 50%;
}

.button-nieuwsbrief-icon:before {
	position				: absolute;
	top						: 7px;
	right					: 8px;
	color					: rgb(255,255,255);
	font-size				: 26px;
	text-align				: center;
	vertical-align			: middle;
}

.button-solliciteer {
	color					: rgb(61,73,94);
	background-color		: rgb(250,187,0);
	text-align: center;
}

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

.vorige-terug-volgende-container {
	max-width				: 265px;
}

.vorige-terug-volgende-container .icon-vorige,
.vorige-terug-volgende-container .icon-volgende {
	margin					: 0;
}

.detail-vorige-button,
.detail-volgende-button {
	color					: rgb(255,255,255);
	background-color		: rgb(22,140,207);
	border-radius			: 50%;
	width					: 26px;
    height					: 26px;
	font-size				: 13px;
	text-align				: center;
}

.detail-vorige-button span:before,
.detail-volgende-button span:before {
	vertical-align			: unset;
	line-height				: 26px;
}

.detail-vorige-button:hover,
.detail-volgende-button:hover {
	background-color		: rgb(61,73,94);
}

.detail-terug-button {
	padding					: 0 10px;
	text-align				: center;
}

.detail-terug-button:hover {
	color					: rgb(61,73,94);
}

.zoekcriteria-kolom-fade {
  animation: fade 1s 0.5s forwards;
}

@keyframes fade {
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}@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) {

	.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!important;
		-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) {

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

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


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

/* SET MIN FONT_SIZES HERE */

	html 				{	font-size	: 16px;	}

	H1 					{	font-size	: 30px;	}

	H2 					{	font-size	: 26px;	}

	H3 					{	font-size	: 22px;	}

	H4 					{	font-size	: 20px;	}

	H5 					{	font-size	: 18px;	}


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

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

	html 				{	font-size	: calc(16px + (17 - 16) * ((100vw - 320px) / (1920 - 320)));	}

    H1 					{	font-size	: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));	}
  
    H2 					{	font-size	: calc(26px + (28 - 26) * ((100vw - 320px) / (1920 - 320)));	}
    
    H3 					{	font-size	: calc(22px + (24 - 22) * ((100vw - 320px) / (1920 - 320)));	}
    
    H4 					{	font-size	: calc(20px + (22 - 20) * ((100vw - 320px) / (1920 - 320)));	}
    
    H5 					{	font-size	: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));	}
	
}

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

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

	html 				{	font-size	: 17px;	}

	H1 					{	font-size	: 40px;	}

	H2 					{	font-size	: 28px;	}

	H3 					{	font-size	: 24px;	}

	H4 					{	font-size	: 22px;	}

	H5 					{	font-size	: 20px;	}

}

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

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

	.zoekcriteria-kolom-mobile,
	.button-nieuwsbrief-mobile {
		display				: none;
	}

}

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

	.site-footer-content {
		-webkit-flex-wrap			: wrap;
		flex-wrap					: wrap;
	}

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

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

/*
	.zoekcontainer h2 {
		display					: block;
		margin					: 20px 0px;
	}
*/
    .header-visual-home .zoekcontainer,
    .header-visual .zoekcontainer,
	.zoekcontainer {
		-webkit-flex-direction	: column;
		flex-direction			: column;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
	}

	.zoekcontainer-titel,
	.zoekcontainer-tabje {
		border-radius: var(--border-radius) var(--border-radius) 0 0;
		font-family						: 'pf_din_stencil','Arial Black','Arial Bold','Helvetica Bold','sans-serif';
		font-size						: 1.2rem;
	}
	
	.zoekcontainer-titel {
		width							: 70%;
		padding							: 10px 10px 10px 20px;

		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d3a223+0,fabb00+20 */
		background: -moz-linear-gradient(top, #d3a223 0%, #fabb00 20%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top, #d3a223 0%,#fabb00 20%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom, #d3a223 0%,#fabb00 20%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}
	
	.zoekcontainer-tabje {
		color							: rgba(61,73,94, 0.5);
		background-color				: rgba(250,187,0, 0.5);
	    margin							: 20px 0px;
		width							: 30%;
		padding							: 10px 20px 10px 10px;

		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d5bd85+0,fedd8f+20 */
		background: -moz-linear-gradient(top, #d5bd85 0%, #fedd8f 20%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top, #d5bd85 0%,#fedd8f 20%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom, #d5bd85 0%,#fedd8f 20%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}

	.header-visual-home,
	.header-visual {
		min-height				: 300px;
		height					: auto;
	}

    .header-visual-home .zoekcontainer,
    .header-visual-home .zoekcontainer .bg_wit {
        background				: none;
    }
    
    .header-visual .zoekcontainer,
    .header-visual .zoekcontainer .bg_wit {
        background				: none;
    }
    
    .header-visual-home .zoekcontainer,
    .header-visual .zoekcontainer {
    	max-width				: 95%;
    }
      
	.stage-detail-info,
	.vacature-detail-info
	{
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}

    .stage-detail-kolom,
    .vacature-detail-kolom {
    		order					: 2;
    }
    
    .stage-detail-container,
    .vacature-detail-container {
    		order					: 1;
    }
    
    .stage-detail-container,
	.vacature-detail-container {
		-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+ */
    	width						: 100%;
    }
    
    .vorige-terug-volgende-container {
    	-webkit-align-self			: center;
    	align-self					: center;
    }
    
}

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

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


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

    .profiel-ervaring-block-container {
        flex-direction: column;
    }

    .profiel-ervaring-block-container .div2-12 {
        order : 1;
    }

    .profiel-ervaring-block-container .div10-12 {
        order : 2;
    }

    .aanvraag-container-kolom-links,
    .aanvraag-container-kolom-rechts {
        width: 100%;
        margin-bottom: 10px;
    }

   	.stages-section,
   	.vacatures-section {
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}
	
	.stage,
	.vacature {
		-webkit-flex-direction	: row;
		flex-direction			: row;
	}
	
	.zoekcriteria-kolom {
		max-width				: 100%;
	}
	
	.stage-detail-section,
	.vacature-detail-section {
		flex-wrap				: wrap;
	}

	.zoekcriteria-kolom-desktop {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.zoekcriteria-kolom-mobile,
	.button-nieuwsbrief-mobile {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

    .criteria-container {
        grid-template-columns: repeat(auto-fit, minmax(calc(33% - 0.5em), 1fr));
        font-size: 0.9em;
    }

    .succes-tracker-grid {
        grid-template-columns: 1fr 1fr;
    }

}
    

@media all and (max-width: 600px) {
	
	.group-container .bedrijf-container {
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}

	H1 {
		word-break					: break-all;
	}

	.div1-12,
	.div2-12,
	.div3-12,
	.div4-12,
	.div5-12,
	.div6-12,
	.div7-12,
	.div8-12,
	.div9-12
	{
		-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+ */
	}
			    
	.results-per-pagina label {
		display						: none;
	}

    .logo_gecentreerd {
   	 	width					: 120px;
    }
    
    img.logo  {
        	width					: 115px;
    }

	.bovenbalk {
		-webkit-justify-content	: flex-end;
		justify-content			: flex-end;
	}
	
	.inlogdiv {
   		 min-width				: 100%;
   		 right					: 0;
   	}
   	
   	.stage,
   	.vacature {
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}
	
	.stage-detail-info,
	.vacature-detail-info {
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}
	
	.stage-detail-image img,
	.vacature-detail-image img {
    	max-width				: 100%;
    	max-height				: 200px;
	}
   		
	.footer-copyright {
		height					: auto;
		line-height				: 1.75;
		padding					: 10px;
		flex-direction			: column;
	}
	
	.banner {
		-webkit-flex-direction	: column;
		flex-direction			: column;
	}
	
	.banner .banner-image {
		max-width				: 100%;
		padding					: 0;
		text-align				: center;
	}
	
	.banner .banner-image img {
		max-width				: 100%;
		width					: auto;
		margin					: 0 auto;
		margin-bottom			: 20px;
	}

    .criteria-container {
        grid-template-columns: repeat(auto-fit, minmax(calc(50% - 0.5em), 1fr));
    }

    .tab-menu {
        grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    }

    .tab-a {
        padding: 1.25em 0.75em;
        border-bottom-width: 1px;
    }

    li.tab:last-of-type .tab-a {
        border-radius: 0;
        border-top-width: 0;
    }

    li.tab:nth-child(2) .tab-a {
        border-radius: 0 var(--border-radius) 0 0;
    }

    li.tab:nth-child(3) .tab-a {
        border-top-width: 0;
        border-left-color: rgb(22,140,207);
    }

    .perks-container {
        margin-top: 0.5em;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .grid_save_back_buttons {
        grid-template-areas:
        'buttonBack title'
        'button button';
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }

    .solliciteer-buttons-container {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center !important;
        justify-content: center !important;
        margin-bottom: 20px;
    }

    .solliciteer-buttons-container .button-solliciteer {
        width: 100%;
    }

}

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

    .bovenbalk .notification-tooltip-container {
        min-width				: 250px;
    }

    .succes-tracker-grid {
        grid-template-columns: 1fr;
    }

    .pie {
        --pie: 70px;
    }

    .perks-container {
        min-width: 98%;
    }

    .perks-a {
        margin: 3% 1%;
        width: 98%;
    }

    .tabs-subnav {
        width: 100%;
        margin: 0 0 1em 0;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

}

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

	.dienst {
		flex					: 1 0 90%;
		min-width				: 90%;
	}
	
	.bedrijf-detail em,
	.wysiwyg-container {
        word-wrap				: break-word;
		overflow-wrap			: break-word;
    }

    .criteria-container {
        grid-template-columns: repeat(auto-fit, minmax(calc(100% - 0.5em), 1fr));
	}

}