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

html {
	overflow-x						: hidden;
}

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

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




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

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

	z-index							: 1;
}

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

.body-disabled,
.body-uitklap {
	overflow						: hidden !important;
	position						: fixed;
}

.body-disabled {
	width							: 100%;
	height							: 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,59,127);
	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 =================================================*/

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

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

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

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

.menu-infoblok
{
	cursor					: pointer;
}

div .menu-infoblok-icon
{
    display					: inline-block;
    width					: 170px;
    height					: 170px;
    border					: 2px solid rgb(114, 114, 114);
    -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(41,185,2);
	color					: rgb(18, 18, 18);
    background-color		: rgb(255, 255, 255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255, 255, 255);
    background-color		: rgb(41,185,2);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255, 255, 255);
    background-color		: rgb(41,185,2);
    border-color			: rgb(41,185,2);
}





/*============== 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							: 100%;

	position						: fixed;
	bottom							: 0;

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

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

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

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

.mobile-nav li:first-child {
	
}

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

.mobile-nav li a:hover {
 
}

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

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

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




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

.bovenbalk {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	
	width							: 100%;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

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

	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
	
	-webkit-align-items				: center;
	align-items						: center;
}


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

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

.downloads {
	
}

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

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

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

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

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

.fontsize_10 { font-size			: 10px !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;
}

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

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

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

H4 {
	padding							: 0;
	margin							: 0;
}


[class*="bg_"] h1,
[class*="bg_"] h2 {
	margin							: 10px 0 10px 0;
}


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

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

.margin_0	{ margin				: 0 !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_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_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-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,
.site-content section * ol {
	padding							: 20px 40px;
	margin							: 20px 0px;
}


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

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

tr {
	
}

tr:hover {
	
}

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

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

.vet {
	font-weight						: bold;
}

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

.roteer-90-rechtsom {
	-webkit-transform				: rotate(90deg);    /* Firefox */
	-moz-transform					: rotate(90deg);    /* IE */
	-ms-transform					: rotate(90deg);    /* Opera */
	-o-transform					: rotate(90deg);    /* Internet Explorer */
	transform						: rotate(90deg);
	filter							: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	
	display							: inline-block;
}



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




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

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

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

.socialmedia span:before{
	margin							: 0 0 0 10px;
	padding							: 0;
}

body {
	color					: rgb(114, 114, 114);
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

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


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

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

.site-submenu {
	-webkit-box-flex		: none;
	-moz-flex				: none;
	-ms-flex				: none;
	-webkit-flex			: none;
	flex					: none;
	color					: rgb(255, 255, 255);
	background-color		: rgb(22,59,127);
}

.site-submenu-items {
	border					: 1px solid rgb(22,59,127);
}

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

.site-submenu ul {
	max-width				: 1200px;
	width					: 100%;
	margin					: auto;
	display					: flex;
	justify-content			: space-between;
	
	-webkit-border-radius	: none;
	-moz-border-radius		: none;
	border-radius			: none;
	
	line-height				: 30px;
}
	
.site-submenu li {
	font-size				: 16px;
	line-height				: 30px;
	width					: initial;
}

.site-submenu li a {
	text-transform			: uppercase;
	letter-spacing			: 1px;
	color					: rgb(255, 255, 255);
}

.site-submenu li a.actief,
.site-submenu li a:hover {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}


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

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

.main-content {
	
}

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

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



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

.actueel-item
{
	text-align				: center;
	margin-bottom			: 20px;
}

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

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

	margin-top				: 5px;

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

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

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

.homepage-blok .actueel-item
{
	text-align				: left;
	margin-bottom			: 10px;
}

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




/* ===== PORTFOLIO OVERZICHT ================================================*/

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

.portfolio-item {
	max-width					: 998px;

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

	-webkitflex-grow			: 0;
	flex-grow					: 0;
}

.portfolio-afbeelding-container {

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

	-webkit-flex-wrap			: wrap;
	flex-wrap					: wrap;
	
	-webkit-flex-direction		: row;
	flex-direction				: row;
}

.portfolio-afbeelding-container div {
	flex-grow					: 0;
}

.portfolio-item-img img {
	border-radius				: 0.6rem 0.6rem 0 0 ;
}

.portfolio-item-tekst {
	height						: 100%;
	padding						: 1.25rem;
}

.portfolio-item-tekst h2 {
	margin-bottom				: 1.25rem;
}

.portfolio-button {
	margin-bottom				: 2rem;
}

.filter-button {
	display						: inline-block;
	width						: 11rem;
	
	-webkit-border-radius		: 2rem;
    -moz-border-radius			: 2rem;
    border-radius				: 2rem;
    
    font-size					: 1.25rem;
    color						: rgb(255, 255, 255);
    
    border						: 0.06rem solid rgb(255, 255, 255);
    background-color			: transparent;
    text-transform				: none;
    text-align					: center;
    
    line-height					: 1.25;
    padding						: 0.75rem 2rem;
    margin						: 0.1rem;
}

.filter-button:before {
	padding-right				: 0.6rem;
}

.filter-button:hover,
.filter-button.actief {
    background-color			: rgb(22,59,127);
    border						: 0.06rem solid rgb(22,59,127);
}

.portfolio-soort-icon {
	font-size					: 2.25rem;
	color						: rgb(22,59,127);
}

.portfolio-soort-icon span:before {
	padding						: 0 0.6rem;
}

/* ===== PORTFOLIO DETAIL ================================================*/


.portfolio-detail p a {
	color						: rgb(22,59,127);
}

section.portfolio-detail h1 {
	font-size					: 2rem;
}

section.portfolio-detail {
	justify-content				: flex-start;
}

.portfolio-detail-item {
	border-radius				: 0.6rem;
}

.portfolio-detail-item ul {
	background-color			: transparent!important;
	padding						: 0 2rem!important;
}

.portfolio-visual-container {
	margin						: 0;
	display						: flex;
	flex-direction				: row;
}

.portfolio-detail-visual {
	margin						: 0;
	border-radius				: 0.6rem 0 0 0;
}

.portfolio-detail-klantinfo {
	margin						: 0;
	position					: relative;
	flex						: 1 0 auto;
	min-width					: 250px;
	
	border-radius				: 0 0.6rem 0 0;
	padding						: 1.25rem;
}

.button-portfolio-detail {
	position					: absolute;
	bottom						: 0;

	display						: inline-block;
	
	-webkit-border-radius		: 2rem;
    -moz-border-radius			: 2rem;
    border-radius				: 2rem;
    
    font-size					: 1.25rem;
    color						: rgb(41,185,2);
    
    border						: 0.06rem solid rgb(41,185,2);
    background-color			: transparent;
    text-transform				: none;
    
    line-height					: 1.25;
    padding						: 0.75rem 2rem;
    margin						: 1.75rem 0;
}

.button-portfolio-detail:hover {
	border						: 0.06rem solid rgb(238,238,238);
	background-color			: rgb(238,238,238);
	-webkit-transition			: all 0.2s ease-in;
	transition					: all 0.2s ease-in;
}



/* ===== PORTFOLIO DETAIL ================================================*/

.portfolio-slider {
	text-align					: center;

}

.portfolio-slider h2 {
	font-weight					: 300;
}









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

.teamlid
{
	text-align				: center;
	padding					: 10px 10px 40px 10px;
	margin-bottom			: 20px;
	flex-grow				: 0;
}

.teamlid-pasfoto
{
	display					: block;

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

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

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

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

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




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

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

.dienst
{
	cursor					: pointer;
}

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

.dienst h2 {
	color				: rgb(18, 18, 18);
}

.dienst .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(41,185,2);
	color					: rgb(18, 18, 18);
    background-color		: rgb(255, 255, 255);
}

.dienst:hover .button
{
	color					: rgb(255, 255, 255);
    background-color		: rgb(41,185,2);
}

.dienst:hover .dienst-icon
{
    color					: rgb(255, 255, 255);
    background-color		: rgb(41,185,2);
    border-color			: rgb(41,185,2);
}





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

.site-footer {
	margin-top				: 0;	
}

.site-footer-menus-en-submenus
{

}

.site-footer-tekst
{

}

.site-footer-eigensocialmedia {
	font-size				: 1rem;
}

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

.site-footer h2 {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: inherit;
}

.site-footer p {
	color					: rgb(255, 255, 255);
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: inherit;
}

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

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

.footer-copyright {
    display					: flex;
    justify-content			: center;
	text-align				: center;
	padding					: 0.7rem;
	line-height				: 2;
	font-size				: inherit;
	background-color		: rgb(255, 255, 255);
}

.footer-copyright a {
	color					: rgb(22,59,127);
}

.footer-copyright a:hover {
	color					: rgb(19,50,108);
}


/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color		: rgb(22,59,127);
}

.mobile-nav h2 {
	color					: rgb(255, 255, 255);
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 30px;
}

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

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

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

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

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





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

.bovenbalk {
	background-color		: rgb(243,243,243);
	color					: rgb(22,59,127);
	text-align				: right;
	padding					: 12px;
	padding-left			: 0;
}

.bovenbalk a {
	color					: rgb(22,59,127);
}

.bovenbalk a:hover {
	color					: rgb(19,50,108);
}

.bovenbalk span {
	margin					: 0 0 0 10px;
}

.icon-menu {
	font-size				: 1.2rem;
}

.icon-menu:hover {
	color					: rgb(22,59,127);
}

.bovenbalk-titel {
	text-transform			: uppercase;
	letter-spacing			: 0.125rem;
	font-size				: 0.8rem;
	margin					: 0 10px;
}

.bovenbalk-titel:before {
	margin-right			: 3px;
}

.taalkeuze-menu {
	position				: relative;
	text-align				: center;
	width					: 46px;
	height					: 20px;
	z-index					: 9;
}

ul.taalkeuze-dropdown {
	list-style				: none;
	padding					: 12px 5px;
	margin					: 0;
	background-color		: rgb(243,243,243);
}

.taalkeuze-menu li {
	padding-bottom			: 12px;
}

.taalkeuze-menu li:last-of-type {
	padding-bottom			: 0;
}

.taalkeuze-menu li a {
	display					: block;
	padding					: 5px;
	border					: 2px solid transparent;
}

.taalkeuze-menu li a:hover {
	padding					: 5px;
	border					: 2px solid rgb(41,185,2);
	
	-moz-border-radius		: 7px;
	-webkit-border-radius	: 7px;
	border-radius			: 7px;
}

.taalkeuze-menu li a img {
	display					: block;
}


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

.hoofdnav {
	z-index					: 2;
	margin					: 0;
	box-shadow				: 0 5px 5px rgba(18, 18, 18,0.2);
}

.hoofdnav li {
	font-size				: 1.25rem;
	line-height				: 2;
}

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

.hoofdnav li a:hover {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.hoofdnav li a.actief {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.logo {
	padding					: 13px;
}



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

.hoofdnav li ul {

}

.hoofdnav li li {
	background-color		: rgb(243,243,243);
	border-top				: 1px solid rgb(255, 255, 255);
	font-size				: 0.8em;
	line-height				: 30px;
	min-height				: 30px;
}





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


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

.border {
	-webkit-border-radius		: 15px;
	-moz-border-radius			: 15px;
	border-radius				: 15px;
	
	border						: 1px solid rgba(22,59,127,0.5);
}





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

.kruimelpad a:hover {
	color					: rgb(22,59,127);
}





/*============== KLEUREN =================================================*/
.tekst_body {
	color					: rgb(114, 114, 114);
}

.tekst_a {
	color					: rgb(22,59,127);
}

.tekst_b {
	color					: rgb(41,185,2);
}

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

.tekst_d {
	color					: rgb(19,50,108);
}

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

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

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

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

.bg_a {
	background-color		: rgb(22,59,127);
}

.bg_b {
	background-color		: rgb(41,185,2);
}

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

.bg_d {
	background-color		: rgb(19,50,108);
}

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

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

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

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




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

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

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

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

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

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

.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(41,185,2);
}


.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(19,50,108);
}


.bg_a .homepage-blok-button-container .button,
.bg_e .homepage-blok-button-container .button
{
	background-color				: rgb(41,185,2);
}



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

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

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

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

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

H1 {
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 2.3rem;
	text-transform			: none;
	line-height				: 1;
}

.homepage H1 {
	font-size				: 2.5rem;
}

H2 {
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.8rem;
	text-transform			: none;
	line-height				: 1.2;
}

.hoofdstukken H1,
.hoofdstukken H2,
H2.h2-klein {
	font-size				: 1.1rem;
	font-weight				: bold;
}

.hoofdstukken {
	text-align				: center;
}

H3 {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.3rem;
	text-transform			: none;
}

H4 {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.3rem;
	text-transform			: none;
}

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

P, P P {
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
	line-height				: 1.5;
}

strong {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-weight				: normal;
}

section img {
	max-width				: 100%;
}

.site-content section * ul,
.site-content section * ol {
	background-color		: rgba(238,238,238,0.15);
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	text-align				: left;
}

tr:hover {
	background-color			: rgba(22,59,127,0.15);
}

td {
	border					: 1px solid rgb(238,238,238);
}

.toggle-element {
	display							: none;
}

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




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

.socialmedia {
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 12px;
	font-weight				: normal;
}

.socialmedia span:before {
	color					: rgb(22,59,127);
	font-size				: 20px;
	line-height				: 20px;
}






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

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

.header-visual-home {
	width					: 100%;
	height					: calc(100vh - 198px);
}

.visual {
	position					: relative;
}

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

}

.header-visual,
.header-visual .imgdiv
{
    position						: relative;
	height						: 100vh;
}

.header-visual-home,
.header-visual-home .imgdiv
{
    position						: relative;
	height						: calc(100vh - 198px);
}

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

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

.header-visual
{
    margin-bottom					: 30px;
}


.nav-bol-uit,
div#visual-nav ul li {
	background-color	: rgb(41,185,2);
}

div#visual-nav ul li:hover,
.nav-bol-aan {
	background-color	: rgb(22,59,127);
}



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

.payoffheader {
	font-family					: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size					: 20px;
}

.payoffheader h2 {
	width						: 100%;
	font-size					: 2.7rem;
	margin						: 0 0 30px 0;
}

.payoffheader
{
	height						: 100vh;
	overflow					: hidden;

	margin						: 0 auto;
	padding						: 0;
}

.header-visual-home .payoffheader
{
	height						: 100vh;
}

.highlight_wit
{
	background-color			: rgba(255, 255, 255,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_grijs
{
	background-color			: rgba(238,238,238,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_zwart
{
	background-color			: rgba(18, 18, 18,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_a
{
	background-color			: rgba(22,59,127,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_b
{
	background-color			: rgb(41,185,2);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_c
{
	background-color			: rgba(243,243,243,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_d
{
	background-color			: rgba(19,50,108,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

.highlight_e
{
	background-color			: rgba(255, 255, 255,0.95);
	box-shadow					: 0 5px 5px rgba(18, 18, 18,0.2);
}

/*============== DL, DT, DD ===========================================*/

dl
{
	width							: 100%;
}

dt
{
	float							: left;
	clear							: both;
	padding-right					: 10px;
	width							: 100px;
	margin-bottom					: 5px;
}

dd
{
	width							: calc(100% - 100px);
	float							: left;
}
/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 10px 0;
}

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

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

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

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

form > div > fieldset label {
	
}

fieldset {
	border							: 0;
	padding							: 0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
input[type=submit],
button,
input[type=button]
 {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	outline							: none;
}

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

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

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

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

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

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

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

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

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

.inputregel {
	margin-bottom					: 20px;

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

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;

	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.inputregel_eenheid {
	width							: auto;
	margin-left						: 15px;
}

.inputregel_label {
}

.inputregel_input {
	position						: relative;

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

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

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

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




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

.foutmeldingen {
	
}

.foutmeldingen li {
	
}

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

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




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

@media (min-width: 1200px) {

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

}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

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

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

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

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

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

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

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

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

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

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

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

fieldset {
	
}

.button,
button,
input[type=button],
input[type=submit] {
	padding						: 7px 20px;
	margin						: 3px;
	background-color			: rgb(41,185,2);
	border						: 2px solid rgb(41,185,2);
	
	-webkit-border-radius	: 10px;
	-moz-border-radius		: 10px;
	border-radius			: 10px;

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

.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	background-color			: rgb(19,50,108);
	border						: 2px solid rgb(19,50,108);
}

.button.button_secondary,
button.button_secondary,
input[type=button].button_secondary,
input[type=submit].button_secondary {
	color						: rgb(22,59,127);
	background-color			: rgb(255, 255, 255);
	border						: 2px solid rgb(22,59,127);
}

.button.button_secondary:hover,
button.button_secondary:hover,
input[type=button].button_secondary:hover,
input[type=submit].button_secondary:hover {
	color						: rgb(255, 255, 255);
	background-color			: rgb(22,59,127);
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	background-color			: rgb(255, 255, 255);
	border						: 1px solid rgb(22,59,127);
	color						: rgb(18, 18, 18);
	font-size					: 14px;
	height						: 40px;
	line-height					: 1;
}

textarea {
	height						: 90px;
}

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

input[type=radio],
input[type=checkbox] {
	margin						: 0.5ex 7px 0.5ex 0;
}

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

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

.inputregel_label {
	font-size					: 15px;
	font-weight					: bold;
	color						: rgb(19,50,108);
	line-height					: 2;
	max-width					: 200px;
}

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

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

.bootbox-close-button,
.bootbox-close-button:hover {
	border: none;
	border-radius: none;
}

.modal-footer .button-alert {
	background-color: rgb(41,185,2);
}

.modal-footer .button:hover,
.modal-footer .button-alert:hover {
	background-color: rgb(19,50,108);
}

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

.foutmeldingen {
	
}

.foutmelding-regel {
	color						: rgb(41,185,2);
}

.foutmeldingen li {
	line-height					: 2;
	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,59,127);

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

	font-family					: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';

	line-height					: 2;
}

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

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

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

.icon-input-verplicht {
	color						: rgb(41,185,2);
}



/**/

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

option[value=""] {
	color:rgb(238,238,238);
}

option:hover {
	background:rgb(255, 255, 255);
	color:rgb(22,59,127);
}

option:focus {
	background:rgb(255, 255, 255);
	color:rgb(22,59,127);
}


.homepage form,
.introductie form {
	text-align					: left;
}


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

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

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

@media (max-width: 600px) {

}/* ======= NO SUPPORT FOR OLD BROWSERS OVERLAY ====== */

.nosupport-overlay {
	position					: absolute;

	top							: 0;
	right						: 0;
	bottom						: 0;
	left						: 0;

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

	z-index						: 9999;

	overflow					: auto;
	height						: 100%;
}

.nosupport-overlay .nosupport-overlay-content {
	position					: relative;
	margin						: 0 auto;
	max-width					: 500px;
	max-width					: 50vw;
	top							: 30%;
	text-align					: center;
	transform					: translateY(-50%);
}



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

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

div.bovenbalk-logo {
	position				: absolute;
	left					: 50px;
	width					: 255px;
	height					: 18px;
}

.bovenbalk-logo {
	background-image		: url("https://www.webook.nl/resources/img/pwrdby-logo.png");
	background-repeat		: no-repeat;
    background-position		: left center;
    background-size			: contain;
}



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

.footer-banner-bg {
	padding					: 30px;
	
	background-image		: url("https://www.webook.nl/resources/img/bg-footer.jpg");
	background-repeat		: no-repeat;
    background-position		: center center;
    background-size			: cover;
}

.footer-banner {
	-webkit-align-content	: center;
	align-content			: center;
}

.footer-banner div {
	height					: 100%;
}

.footer-banner-badges {
	margin					: 30px 0 0 0;
	justify-content			: center;
}

.footer-banner-badges img {
	width					: 100%;
	max-width				: 170px;
	height					: auto;
}

.footer-banner h2 {
	color					: rgb(22,59,127);
	text-align				: center;
}

.box-shadow {
	box-shadow				: 0 5px 5px rgba(18, 18, 18,0.2);
}

/* ============== DETAIL PAGINA'S =================== */

.site-content.content-met-submenu {
	max-width				: 100%;
	width					: 100%;
	background-color		: rgb(243,243,243);
}

.content-met-submenu {
	-webkit-flex-direction	: column;
	flex-direction			: column;
}

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

.homepage,
.introductie {
	text-align				: center;
}

p a {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color					: rgb(22,59,127);
}

p a:hover {
	color					: rgb(19,50,108);
}

p a:before {
	content					: '\62';
	vertical-align			: bottom;
	margin-right			: 5px;
	font-family				: 'webook';
	color					: rgb(41,185,2);
}



/* ============== MYSTERY MODE BANNER =================== */

.main-content section.bg_banner {
	max-width					: 100%;
	width						: 100%;
	
	background-image			: url("https://www.webook.nl/resources/img/banner-mysterymode.jpg");
	background-repeat			: no-repeat;
    background-position			: center center;
    background-size				: cover;
    
    margin-bottom				: 40px;
}

.main-content section.bg_banner > div:first-of-type {
	max-width					: 1200px;
	width						: 100%;
	margin						: auto;
}

.homepage-blok-container .homepage-blok.banner {
	max-width					: 40%;
	width						: 40%;
}

.banner {
	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			: center;
	align-items					: center;
	
	text-align					: center;
}

.banner.bg_wit h2 {
	color						: rgb(22,59,127);
}


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

.highlight_wit h2 ,
.highlight_c h2  {
	color						: rgb(22,59,127)!important;
}

.payoffheader-content {
	max-width					: 1500px;
	margin						: auto;
}

.visual-afbeelding-payoff {
	width						: 100%;
}

/* ============== LOGIN =================== */

.login-form {
	max-width					: 600px;
	margin						: 0 auto;
}

/* ============== LINK =================== */

.link_arrow {
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	color					: rgb(22,59,127);
}

.link_arrow:hover {
	color					: rgb(19,50,108);
}

.link_arrow:before {
	vertical-align			: bottom;
	margin-right			: 5px;
	font-family				: 'webook';
	color					: rgb(41,185,2);
}

.buttonAddContainer {
	position				: relative;
	
	-webkit-justify-content	: center;
	justify-content			: center;
	-webkit-align-items		: center;
	align-items				: center;
	
	height					: 120px;
	background-color		: rgb(255, 255, 255);
}

.buttonAddContainer span {
	margin-top				: 20px;
}

.buttonAddCircle {
	position				: absolute;
	top						: 0;
}

.buttonAddCircle:before {
	font-size				: 2rem;
	color					: rgb(255, 255, 255);
	background-color		: rgb(41,185,2);
    -moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
	border-radius			: 50%;
	padding					: 20px;
}

.icon-button_bottom:before {
	vertical-align		: bottom;
	margin-right		: 5px;
}

/* ============== PROJECT NAV =================== */

.project_nav_buttons_div {
	text-align				: center;
	padding-right			: 20px;
	margin-top				: 20px;
}

/* ============== PROJECT LIST =================== */

.project_list_project_container {
	background				: rgb(255, 255, 255);
	padding					: 20px;
}

.project_list_project_container_project {
	padding-bottom			: 10px;
}

.project_list_project_container_project > div {
	margin-right			: 20px;
}

.project_list_project_container_project_image_div {
	width					: 100%;
	max-width				: 200px;
}

.project_list_project_container_project_details_div {
	min-width				: 300px;
}

.project_list_project_container_project_details_div dt {

	width					: 160px;
	font-size				: 14px;
	font-weight				: bold;
}

.project_list_project_container_project_details_div dd {

	max-width				: calc(100% - 160px);
	font-size				: 14px;
}

.project_list_project_container_project_details_div_number_of_participants {

	position				: relative;
	width					: 24px;
  	height					: 24px;
  	line-height				: 24px;
  	margin					: 0;
  	margin-left				: 50px;
  	text-align				: center;
	font-size				: 12px;
	color					: rgb(238,238,238);
	border					: 1px solid rgb(238,238,238);
    -moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
	border-radius			: 50%;

}

.project_list_project_container_project_details_div_number_of_participants:before {

	position				: absolute;
	display					: block;
	left					: -50px;
	top						: -14px;
	font-family				: 'webook';
	font-size				: 46px;
	color					: rgb(238,238,238);
}

.project_list_project_container_project_action_links_div {

	width					: 230px;
	max-width				: 230px;
}
.project_list_project_container_project_action_links_div a {

	display					: block;
	margin-top				: 5px;
	margin-bottom			: 5px;
}
.project_list_project_container_project_action_links_div a:hover {
	color					: rgb(19,50,108);
}

.project_new_request {
	margin					: 10px 0;
	color					: rgb(22,59,127);
}

.project_new_request:before {
	color						: rgb(255, 255, 255);
	background-color			: rgb(41,185,2);
	border-radius				: 50%;
	padding						: 0.3em;
	font-size					: 0.7rem;
}


/* ============== WE BOOK SUBMENU =================== */

.webook-submenu {
	text-align				: center;
	padding					: 0;
	margin					: 0;
}

.webook-submenu p {
	margin-bottom			: 0;
}

H2.webook-text {
	font-size				: 1.1rem;
	font-weight				: bold;
	margin					: 0 0 5px 0;
	color					: rgb(22,59,127);
}

form H2 {
	font-size				: 1.1rem;
	font-weight				: bold;
	color					: rgb(22,59,127);
}

/*============== KRUIMELPAD ==============================================*/

.kruimelpad {

	color					: rgb(255, 255, 255);
	text-transform			: uppercase;
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 16px;
}

.kruimelpad a {

	color					: rgb(255, 255, 255);
	margin-right			: 20px;
}

.kruimelpad span {

	color					: rgba(255, 255, 255,0.6);
}

.kruimelpad a:before,
.kruimelpad span:before {

	margin-right			: 20px;
}

.kruimelpad a:hover,
.kruimelpad a:active {

	color					: rgb(255, 255, 255);
	font-family				: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}


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


.project_left_column {
	width					: 100%;
	max-width				: 200px;
	margin-right			: 20px;
}

.project_content_column {
	width					: 100%;
}

/* ============== THEME SELECTION =================== */

.themes_container {
	width					: 100%;
	background				: rgb(255, 255, 255);
	padding					: 5px;
}

.themes_container h2 {
	padding-left			: 10px;
	font-size				: 1rem;
	font-weight				: bold;
}

.themes_container a {
	padding					: 10px;
	display					: block;
	height					: 40px;
}

.themes_container a:hover {
	background				: rgb(243,243,243);
}

.themes_container a.active {
	display					: block;
	color					: rgb(255, 255, 255);
	background				: rgb(22,59,127);
}

.themesListContainer {
	background				: rgb(255, 255, 255);
	padding					: 20px;
	margin-bottom			: 20px;
	justify-content			: space-between;
}

.themesList {
	-webkit-flex-grow		: 0;
	flex-grow				: 0;
}

.themesList a img {
	
	max-width				: 200px;
	height					: auto;

	-webkit-transform		: scale(1);
	transform				: scale(1);
	transition				: .3s ease-in-out;
}

.themesList a:hover img {

	-webkit-transform		: scale(1.1);
	transform				: scale(1.1);
}

.themesList a span {
}

/* ============== THEME DETAILS =================== */

.themeDetailsContainer {
	width					: 100%;
	background				: rgb(255, 255, 255);
	padding					: 15px;
	text-align				: center;
}

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

.themeDetailsSlider div {
	display					: block;
	width					: 100%;
	text-align				: center;
}

.site-content section .slidepager {
	display					: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display					: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display					: -ms-flexbox;		/* TWEENER - IE 10 */
	display					: -webkit-flex;		/* NEW - Chrome */
	display					: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
		
	-webkit-justify-content	: center;
	justify-content			: center;
	-webkit-align-items		: center;
	align-items				: center;
	
	text-align				: center;
	background-color		: rgb(255, 255, 255);
	padding					: 10px;
}

.site-content section .slidepager li {
	  
	display					: inline-block;
    width					: 25px;
    height					: 25px;
    margin					: 0 1em 0 0;
    -moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
}

.site-content section .slidepager li a {
  
      width					: 100%;
      height				: 100%;
      display				: block;
      background-color		: rgba(238,238,238,0.5);
      text-indent			: -9999px;
      -moz-background-size	: 2em;
      -o-background-size	: 2em;
      -webkit-background-size: 2em;
      background-size		: 2em;
      -moz-border-radius	: 50%;
      -webkit-border-radius	: 50%;
      border-radius			: 50%;
      border				: 6px solid rgb(255, 255, 255);
}

.site-content section .slidepager li.sy-active a {

    background-color		: rgb(22,59,127);
    border					: 3px solid rgb(255, 255, 255);
}

.site-content section .sy-controls {
	background-color		:transparent;
	-moz-border-radius		: 0;
    -webkit-border-radius	: 0;
    border-radius			: 0;
}


/* ============== PRODUCT LIST =================== */

.productListContainer {
	width					: 100%;
	background				: rgb(255, 255, 255);
	padding					: 15px;
}

.productListDiv {
	margin-bottom			: 15px;
	border-bottom			: 1px solid rgb(22,59,127);
}

.productListDiv H3 {
	font-size				: 1.1rem;
	margin					: 0;
	color					: rgb(18, 18, 18);
}

.productListDivImg {
	width					: 100px;
	max-width				: 100px;
	margin-right			: 20px;
}

.productListDivDetails {
	min-width				: 150px;
	margin-right			: 20px;
}

.productListDivImgLinks {
	width					: 100px;
}

/* ============== PRODUCT SETTINGS =================== */

.projectSettingsContainer {
	text-align				: center;
}

.projectSettingsFormContainer .inputregel {
	float					: left;
	margin					: 0;
	width					: 100%;
}

.projectSettingsFormContainer .inputregel_label {
	min-width				: 100px;
}

.projectSettingsFormContainer form {
	display					: -webkit-box;	/* OLD - iOS 6-, Safari 3.1-6 */
	display					: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display					: -ms-flexbox;	/* TWEENER - IE 10 */
	display					: -webkit-flex;	/* NEW - Chrome */
	display					: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-wrap		: wrap;
	flex-wrap				: wrap;
	-webkit-justify-content	: center;
	justify-content			: center;
	
	margin					: 0;
	padding					: 0;
}

.projectSettingsFormDiv {
	text-align				: left;
	background				: rgb(255, 255, 255);
	padding					: 20px;
}

.projectSettingsFormDiv .label-custom-radio {
	border-bottom			: 1px solid rgb(22,59,127);
}

.projectSettingsFormDiv .label-custom-radio:hover {
	background				: rgb(243,243,243);
}

.projectSettingsButtonDiv .inputregel {
	width					: 100%;
	text-align				: center;
	margin					: 0;
}

.foutmeldingen-inhoud {
	text-align				: left;
}

.site-content section .foutmeldingvergeten ul,
.site-content section ul.foutmelding-regel {
	background-color		: rgb(22,59,127);
	color					: rgb(255, 255, 255);
}

.site-content section .foutmeldingvergeten ul li,
.site-content section .foutmelding-regel li {
	font-size				: 1rem;
	text-align				: left;
}

/* ============== PARTICIPATION LIST =================== */

.participationListContainer {
	width					: 100%;
	min-height				: 100px;
	background-color		: rgb(255, 255, 255);
	padding					: 20px;
	-webkit-box-shadow		: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	-moz-box-shadow			: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	box-shadow				: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
}

/*
.participationListDiv,
.participationDetailDiv {
	margin-bottom			: 20px;
	border-bottom			: 1px solid rgb(22,59,127);
}
*/

.lijn_eronder {
	margin-bottom			: 20px;
	border-bottom			: 1px solid rgb(22,59,127);
}

.participationListDiv H3 {
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 1.1rem;
	font-weight				: normal;
	margin					: 0;
}

.participationListDivImgDiv {
	position				: relative;
}

.participationListDivStatus {
	position				: absolute;
	top						: 50px;
	right					: 20px;
	width					: 22px;
	height					: 22px;
	-moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
	border-radius			: 50%;
}

.participationListDivStatus:before {
	position				: absolute;
	top						: 5px;
	left					: 5px;
	font-size				: 12px;
	color					: rgb(255, 255, 255);
}

img.participationListDivImg,
img.participationDetailDivImg {
	width					: 70px;
	height					: 70px;
	max-width				: 70px;
	-moz-border-radius		: 50%;
    -webkit-border-radius	: 50%;
	border-radius			: 50%;
	margin-right			: 20px;
	background-color		: rgb(243,243,243);
}

.participationListDivDetails {
	min-width				: 150px;
	margin					: 0 20px 10px 0;
}

span.participationListDivDetailsIcons {
	line-height				: 1.2;
	margin-bottom			: 3px;
}

.participationListDivDetailsIcons:before {
	font-size				: 13px;
	margin-right			: 8px;
}

/* ============== ADD PARTICIPANTS =================== */

.photosOrPagesDiv {
	text-align				: center;
	background				: rgb(255, 255, 255);
	padding					: 20px;
	-webkit-flex-grow		: 0;
	flex-grow				: 0;
}

.list-border-bottom {
	padding-bottom			: 10px;
	margin-bottom			: 10px;
	border-bottom 			: 1px solid rgb(22,59,127);
}

.min_600 {
	min-width				: 600px;
}

/* ============== SHARE INVITATIONS =================== */

.invitationShareOptionsFormDiv {
	max-width			: 600px;
	margin				: auto;
	text-align			: center;
	background			: rgb(255, 255, 255);
	padding				: 20px;
}

.invitationCode {
	margin				: auto;
	width				: 250px;
}

.invitationCode H3 {
	font-size			: 3rem;
	color				: rgb(18, 18, 18);
}

.invitationCode img {
	width				: auto;
	height				: 250px;
	padding				: 20px;
	margin				: 0!important;
}

.invitationCodeButtons {
	justify-content: center;
}

.button_square_email:before {
	display				: block;
	box-sizing			: border-box;
	padding				: 1.3rem;
	margin				: 5px;
	width					: 90px;
	height					: 90px;
	max-height				: 90px;
	-webkit-border-radius	: 10px;
	-moz-border-radius		: 10px;
	border-radius			: 10px;
	
	font-size				: 2.8rem;
	color					: rgb(255, 255, 255);
	background-color		: rgb(22,59,127);
}

.button_square_webook:before {
	content				: '';
	display				: block;
	margin				: 5px auto;
	width				: 90px;
	height				: 90px;
	max-height			: 90px;
	-webkit-border-radius	: 10px;
	-moz-border-radius		: 10px;
	border-radius			: 10px;
	
	background-image		: url("https://www.webook.nl/resources/img/logo_klein.png");
	background-repeat		: no-repeat;
    background-position		: center center;
    background-size			: 60px 60px;
    background-color		: rgb(243,243,243);
}


/* ============== OPTIONS =================== */

.optionsContainer {
	text-align				: center;
	background				: rgb(255, 255, 255);
	padding					: 20px;
	-webkit-flex-grow		: 0;
	flex-grow				: 0;
}

.optionsContainer H2 {
	font-size				: 1.1rem;
	font-weight				: bold;
	color					: rgb(22,59,127);
}

.optionsContainer H3 {
	font-size				: 1.2rem;
}

.optionList-name {
	text-align			: left;
}

.optionList-icon {
	font-size			: 1rem;
	color				: rgb(19,50,108);
	margin-left			: 5px;
	margin-bottom		: 5px;
}

.optionList-icon:before {
	vertical-align		: super;
}

.optionsFormDiv {
	background-color	: rgb(255, 255, 255);
	padding				: 20px;
	-webkit-flex-grow	: 0;
	flex-grow			: 0;
}

.optionsFormDiv .inputregel {
	max-width			: 900px;
}

.optionsFormDiv .inputregel_label {
	min-width			: 200px;
}

.optionsFormDiv form {
	padding				: 0;
	margin				: 0;
}

.optionsFormDiv form > div > div {
	float				: left;
	width				: 100%;
}

.optionsFormName {
	font-family			: 'asapmedium','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size			: 1.1rem;
	text-transform		: none;
	color				: rgb(18, 18, 18);
}

.quantitySummary {
	margin-bottom		: 20px;
}

.quantitySummary div {
	justify-content		: space-between;
}

.quantitySummary H3 {
	color				: rgb(18, 18, 18);
	font-size			: 1.1rem;
}

.quantitySummary div:last-child {
	border-top			: 1px solid rgb(22,59,127);
}

.quantitySummary div:last-child H3 {
	color				: rgb(22,59,127);
}

.deliveryOptionsContainer {
	text-align				: center;
	background				: rgb(255, 255, 255);
	padding					: 20px;
	-webkit-flex-grow		: 0;
	flex-grow				: 0;
}

.deliveryOptionsFormContainer {
	width: 100%;
}
.deliveryOptionsFormContainer .inputregel {
	width				: 100%;
	max-width			: 100%;
}

.deliveryOptionsFormContainer .inputregel .inputregel_label {
	text-align			: left;
	width				: 200px;
	min-width			: 200px;
}

.deliveryOptionsSearchResultsContainer {
	width				: 100%;
	padding				: 20px;
}

.deliveryOptionsSearchResults {
	width				: 100%;
	text-align			: left;
	margin				: 0;
}




/* ============== PREVIOUS ORDERS =================== */

.previousOrderListContainer {
	width				: 100%;
	min-height			: 100px;
	background-color	: rgb(255, 255, 255);
	padding				: 20px;
	-webkit-box-shadow	: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	-moz-box-shadow		: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	box-shadow			: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
}

.previousOrderListDiv {
	margin-bottom		: 10px;
}

.previousOrderListDiv H2,
.previousOrderListDiv H3 {
	font-size			: 1.1rem;
	margin				: 0;
}

.orderListContainer {
	max-width			: 800px;
	margin			: auto;
}



/* ============== CUSTOM CHECKBOX =================== */

/* Reset all CSS on label */
.label-custom-checkbox {
	all					: initial;
}

/* Customize label (container) */
.label-custom-checkbox {
	display				: block;
	position			: relative;
	font-family			: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size			: 1rem;
	padding				: 0 10px 20px 40px;
	cursor				: pointer;
	-webkit-user-select	: none;
	-moz-user-select	: none;
	-ms-user-select		: none;
	user-select			: none;
}

/* Hide default checkbox */
.label-custom-checkbox input,
.label-custom-checkbox input:checked,
.label-custom-checkbox input:focus,
.label-custom-checkbox input:active {
	-webkit-appearance	: none;
	position			: absolute;
	visibility			: hidden;
	cursor				: pointer;
	display				: none;
}

/* Create custom checkbox */
.checkbox-item {
	position			: absolute;
	top					: 0;
	left				: 0;
	height				: 25px;
	width				: 25px;
	border				: 1px solid rgb(22,59,127);
	background-color	: rgb(243,243,243);
}

/* Mouse-over */
.label-custom-checkbox:hover input ~ .checkbox-item {
	background-color	: rgba(255, 255, 255,0.5);
}

/* Checkbox checked, add blue background */
.label-custom-checkbox input:checked ~ .checkbox-item {
	background-color	: rgb(22,59,127);
}

/* Hide checkmark/indicator when not checked */
.checkbox-item:after {
	content				: "";
	position			: absolute;
	display				: none;
}

/* Show checkmark when checked */
.label-custom-checkbox input:checked ~ .checkbox-item:after {
	display				: block;
}

/* Style checkmark/indicator */
.label-custom-checkbox .checkbox-item:after {
	left				: 8px;
	top					: 4px;
	width				: 5px;
	height				: 10px;
	border				: solid rgb(243,243,243);
	border-width		: 0 3px 3px 0;
	-webkit-transform	: rotate(45deg);
	-ms-transform		: rotate(45deg);
	transform			: rotate(45deg);
}

.label-custom-checkbox .icon-input-ok:before {
	display				: none;
}


/* ============== CUSTOM RADIO =================== */

/* Reset all CSS on label */
.label-custom-radio {
	all					: initial;
}

/* Customize label (container) */
.label-custom-radio {
	position			: relative;
	display				: block;
	cursor				: pointer;
	font-family			: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size			: 1rem;
	padding				: 10px 0px 5px 40px;
	-webkit-user-select	: none;
	-moz-user-select	: none;
	-ms-user-select		: none;
	user-select			: none;
}

/* Hide default radio */
.label-custom-radio input,
.label-custom-radio input:checked,
.label-custom-radio input:focus,
.label-custom-radio input:active {
	-webkit-appearance	: none;
	position			: absolute;
	visibility			: hidden;
	cursor				: pointer;
	display				: none;
}

/* Create custom radio */
.radio-item {
	position			: absolute;
	top					: 10px;
	left				: 10px;
	height				: 20px;
	width				: 20px;
	border-radius		: 50%;
	border				: 1px solid rgb(22,59,127);
	background-color	: rgb(243,243,243);
}

/* Mouse-over */
.label-custom-radio:hover input ~ .radio-item {
	background-color	: rgba(255, 255, 255,0.5);
}

/* Radio checked, add blue background */
.label-custom-radio input:checked ~ .radio-item {
	background-color	: rgb(22,59,127);
}

/* Hide indicator when not checked */
.radio-item:after {
	content				: "";
	position			: absolute;
	display				: none;
}

/* Show indicator when checked */
.label-custom-radio input:checked ~ .radio-item:after {
	display				: block;
}

/* Style indicator */
.label-custom-radio .radio-item:after {
	left				: 5px;
	top					: 5px;
	width				: 8px;
	height				: 8px;
	border-radius		: 50%;
	background-color	: rgb(255, 255, 255);
}

.label-custom-radio .icon-input-ok:before {
	display				: none;
}

/* ============== PROVIDE PAGE =================== */

.providePageListContainer {

	width					: 100%;
	background-color		: rgb(255, 255, 255);
	padding					: 20px;
	-webkit-box-shadow		: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	-moz-box-shadow			: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	box-shadow				: inset 0 -10px 20px -10px rgba(18, 18, 18,0.1);
	
}

.provide_page_container_div {

	width					: 100%;
}

.provide_page_container_design_div {

	-ms-flex				: none;
	-webkit-flex			: none;
	flex					: none;
	
	width					: 250px;
	margin-right			: 20px;
	margin-bottom			: 10px;
}

.provide_page_container_details_div {
	-webkit-box-flex		: 1 0 auto;	/* OLD - iOS 6-, Safari 3.1-6 */
	-webkit-flex			: 1 0 auto;	/* Safari 6.1+. iOS 7.1+, BB10 */
	-ms-flex				: 1 0 auto;	/* IE 10 */
	flex					: 1 0 auto;	/* NEW, Spec - Firefox, Chrome, Opera */
}

.provide_page_container_details_div dl dt {
	font-weight				: bold;
}

.provide_page_container_actions_div {

	width					: 230px;
	max-width				: 230px;
}

.provide_page_container_actions_div a {

    display					: block;
    margin-top				: 5px;
    margin-bottom			: 5px;
}

/* ============== PROVIDE PHOTO =================== */

.providePhotoContainer {
	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-align-items		: center;
	align-items				: center;
	
	width					: 100%;
	background-color		: rgb(255, 255, 255);
	padding					: 20px;
	margin-bottom			: 20px;
}

.provideListContainer {
	width					: 100%;
	min-height				: 100px;
	background-color		: rgb(255, 255, 255);
	padding					: 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-align-items		: center;
	align-items				: center;
}

.provideListContainer div {
	-ms-flex				: none;
	-webkit-flex			: none;
	flex					: none;
	
	display					: block;
	width					: 100px;
	height					: 100px;
	margin					: 10px;
	background-size			: contain;
	background-position		: center;
	background-repeat		: no-repeat;
}

/* ============== UPLOAD =================== */

.upload_photos_area {

	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+ */
	
	width					: 100%;
	min-height				: 200px;
	margin-top				: 10px;
	border					: 1px dashed rgb(22,59,127);
	position				: relative;
	padding					: 20px;
    overflow-x				: hidden;
    overflow-y				: scroll;
}

.upload_photos_area_header {

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

.upload_photos_area_helpdiv {
	
	-webkit-box-flex		: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-webkit-flex			: 1;	/* Safari 6.1+. iOS 7.1+, BB10 */
	-ms-flex				: 1;	/* IE 10 */
	flex					: 1;	/* NEW, Spec - Firefox, Chrome, Opera */
	text-align				: center;
	
	-webkit-align-self		: center;
	align-self				: center;
}

.upload_photos_area_helpdiv:before {

	font-size				: 50px;
	color					: rgb(22,59,127);
	line-height				: 90px;
}

.upload_photo {
	-ms-flex				: 2 0 18%;
	-webkit-flex			: 2 0 18%;
	flex					: 2 0 18%;
	
	margin					: 1%;
	padding					: 5px;
	min-width				: 100px;
	max-width				: 20%;
	text-align				: center;
	border					: 1px solid black;
}

.upload_photo_imguploader {
	position				: relative;
	margin					: 0;
	padding					: 0;
}

.upload_photo_progress_bar {
	position				: absolute;
	z-index					: 10;
	width					: calc(100% - 10px);
	height					: 5px;
	background				: rgb(255, 255, 255);
	margin					: 0;
	padding					: 0;
	margin-left				: 5px;
	margin-top				: -10px;
	
}

.upload_photo_progress_bar_progress {
	width					: 0%;
	height					: 100%;
	background				: rgb(22,59,127);
}

.upload_photo img
{
	padding					: 0;
	margin					: 0;
}

.upload_photo_landscape {
	zmax-width				: 100%;
	zheight					: auto;
	width					: 100%;
}

.upload_photo_portrait {
	xmax-height				: 150px;
	xwidth					: auto;
	width					: 100%;
}

.upload_photo span {
	display					: block;
	width					: 100%;
	smargin-bottom			: 20px;
	font-size				: 12px;
	color					: rgb(114, 114, 114);
	font-family				: 'asapregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}


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

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

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



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

	.content-met-submenu {
		-webkit-flex-direction		: column;
		flex-direction				: column;

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

		margin-top					: 10px;
	}

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

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

	.site-submenu {
		border						: 0;
		display						: block;
		margin						: 0;
		padding						: 0;
		width						: 100%;
	}

	.site-submenu-items {
		border						: 0;
		margin						: 0;
		padding						: 0;
	}

	.site-submenu h2 {
		display						: none;
	}

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

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

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

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

	.toggle1nietzichtbaar {
		display						: none;
	}

	.toggle1welzichtbaar {
		display						: inline;
	}

}



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

	.hoofdnav {
		display						: none;
	}

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

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

}



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

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

		margin						: auto;
		width						: 100%;
	}

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

		margin-left					: 20px;
	}

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

	.toggle2nietzichtbaar {
		display						: none;
	}

	.toggle2welzichtbaar {
		display						: inline;
	}

}



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

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

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

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

}



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

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

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

	.header_buttons {
		display						: none;
	}

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

	.logomenubalk_logo {
		margin-right				: 20px;
	}

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

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

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


}



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

	.payoffheader h2,
	.homepage H1 {
		font-size				: 2.5rem;
	}

	.site-submenu {
		padding					: 0 20px;
	}
	
	.site-submenu li {
		width					: initial;
	}

}



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

	.header-visual-home {
    	height					: calc(70vh - 198px);
    	height					: calc(100vh - 48px);	
    }
  

	.header-visual-home .payoffheader {
		height					: 100%;
	}
	
	.footer-banner H2 {
		font-size				: 1.5rem;
	}

	.footer-banner-badges img {
		max-width				: 150px;
	}
	
    .project_nav_buttons_div {
    	text-align				: center;
    }

    
}



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

	.homepage-blok-container .homepage-blok.banner {
		padding					: 20px;
		max-width				: 55%;
	}
	
	.site-submenu ul {
		flex-direction			: column;
	}

    .optionsFormDiv .inputregel_label {
    	min-width			: 100px;
    }

}



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

	div.bovenbalk-logo {
		display: none;
	}

	.footer-banner H2 {
		font-size				: 1.3rem;
	}

	.footer-banner-badges img {
		max-width				: 120px;
	}
	
	.footer-copyright {
		flex-direction			: column;
	}

	.homepage-blok-container .homepage-blok.banner {
		max-width				: 100%;
	}
	
	.order_1-button {
		order					: 1;
		width					: 100%;
		text-align				: center;
	}
	
	.order_1 {
		order					: 1;
	}
	
	.order_2 {
		order					: 2;
	}
	
	.payoffheader span {
		width					: 100%;
		margin					: 0;
	}
	
	.homepage H1 {
		font-size				: 2rem;
	}
	
	.payoffheader h2 {
 		display					: none;
 	}
	
	.min_600 {
		min-width				: 100%;
	}

}
