/* FONTS */
/*	-----------------------------------	*/

@font-face {
		font-family: 'made_tommyextrabold';
		src: url('../fonts/made_tommy_extrabold-webfont.woff2') format('woff2'),
				 url('../fonts/made_tommy_extrabold-webfont.woff') format('woff');
		font-weight: normal;
		font-style: normal;
}
@font-face {
		font-family: 'made_tommylight';
		src: url('../fonts/made_tommy_light-webfont.woff2') format('woff2'),
				 url('../fonts/made_tommy_light-webfont.woff') format('woff');
		font-weight: normal;
		font-style: normal;
}
@font-face {
		font-family: 'made_tommythin';
		src: url('../fonts/made_tommy_thin-webfont.woff2') format('woff2'),
				 url('../fonts/made_tommy_thin-webfont.woff') format('woff');
		font-weight: normal;
		font-style: normal;
}




/*
KLEUREN: 

Kleur 1 - turqouise:	
RGB: 3, 151, 157
#03979d

Kleur 2 - rood / magenta:	
RGB: 209, 54, 84 
#d13654

Kleur 3 - donkerblauw:	
RGB: 41, 55, 113 
#293771

Kleur 4 - grijs / antraciet:	
RGB: 41, 53, 72 
#293548 

Kleur 5 - lichtgrijs
#e3e5e7

*/

:root {
	--hoofdkleur_lichtst-color: #fff;
	--hoofdkleur_1-color: #03979d;
	--hoofdkleur_1_licht-color: #94d0d3;
	--hoofdkleur_1_transp-color: rgba(3, 151, 157, 0.8);
	--hoofdkleur_2_rood_magenta-color: #d13654;
	--hoofdkleur_2_rood_magenta_donkerder-color: #8c142c;
	--hoofdkleur_2_rood_magenta_transp-color: rgba(209, 54, 84, 0.8);
	--hoofdkleur_3_donker_blauw-color: #293771;
	--hoofdkleur_3_donker_blauw_donkerder-color: #061657;
	--hoofdkleur_4_donker_grijs-color: #293548;
	--hoofdkleur_5_licht_grijs-color: #e3e5e7; 
	--hoofdkleur_6_mid_grijs-color: #d3d7db;
}



/****************/

::-moz-selection {
	background: var(--hoofdkleur_1-color); 
	text-shadow: none;
	color: #fff;
}

::selection {
	background: var(--hoofdkleur_1-color); 
	text-shadow: none;
	color: #fff;
}

img::-moz-selection {
	background: transparent;
}

img::selection {
	background: transparent;
}

img::-moz-selection {
	background: transparent;
}


p {
	margin: 0; padding: 0;
}


/* Headings */
h1, h2, h3, h4, h5 {
	font-family: 'made_tommyextrabold';
	margin: 0; padding: 0;
	font-weight: 400;
	line-height: 0.9em;
}

h1 {
	font-size: 70px; 
	padding: 10px 0 12px 0;
	color: var(--hoofdkleur_2_rood_magenta-color); 
}
section.content h1 {
	padding-bottom: 30px;
}

h2 {
	font-size: 50px;
	color: var(--hoofdkleur_1-color); 
	padding: 0px 0 10px 0;
	font-family: 'made_tommythin';
	font-weight: 300; 
}
h3 {
	font-size: 32px;
	color: var(--hoofdkleur_1-color); 
	padding: 10px 0 6px 0;
	text-transform: uppercase;
}
h3.donkerblauw {
	color: var(--hoofdkleur_3_donker_blauw-color);
}

h4 {
	
}

h5 {
	
}


.donkerblauw {
	color: var(--hoofdkleur_3_donker_blauw-color); 
}


/* a:link, :hover */
a {
	color: var(--hoofdkleur_1-color);
	
	transition: all .2s ease; -moz-transition: all .2s ease; 
	-webkit-transition: all .2s ease; -o-transition: all .2s ease;
}

a:hover {
	color: var(--hoofdkleur_2_rood_magenta-color); 
}

section.content a:hover {
	color: #ffffff; 
	text-decoration: none;
	background-color: var(--hoofdkleur_2_rood_magenta-color);
}




/****************/

body {
	margin:0; padding: 0;
	background-color: #fff;
	font-size: 20px; line-height: 1.8em;

	line-height: 24px; 

	color: var(--hoofdkleur_4_donker_grijs-color);	
	font-family: 'made_tommythin', sans-serif, Helvetica, Verdana, Arial;
	
}

div, img, section {
	margin: 0; padding: 0;
}


/*	--------------------------------------------------------------------	*/
/* Wrapping Divs */
.max_width_site {
	position: relative;
	width: 80%;
	max-width: 940px;
	margin: 0 auto;
}

section {
	position: relative;
	float: none;
}


/* Div Clear */
.clear {
	clear: both;
}

/*	--------------------------------------------------------------------	*/
/* Top */

div#top {
	position: fixed;
	width: 100%; height: auto;
	
	background: var(--hoofdkleur_lichtst-color);
	background-size: 100% 100px;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
	
	z-index: +90;
	line-height: 1.8em;
}




div.top_logo {
	position: relative;
	float: left;
	
	left: 0px;
	top: 0px; 
	
	width: 106px; max-width: 106px;
	height: 110px;
	z-index: +99;
	
	margin: 16px 0 0px;

	overflow: hidden;
	background-color: none;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
}

div.top_logo img {
	width: 100%; height: auto;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
}



/* Mob menu button */
div#mob_nav_button {
	display: none;
	position: fixed;
	top: 10px; right: 20px;
	z-index: +9999;
}



/* top_nav */
div.top_nav {
	position: relative;
	float: right;
	padding: 85px 0 5px 0;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
}

div.menu-hoofdmenu-container {
	float: left;
}

div.top_nav ul, div.top_nav li {
	float: left;
}

div.top_nav ul {
	margin: 0 0; padding: 0;
	font-family: 'made_tommylight';
	text-transform: uppercase;
	font-size: 1.1em;
	list-style: none;
}

div.top_nav ul li {
	list-style: none;
	text-transform: uppercase;
	padding: 0 32px 0px 0; margin: 0;
	
}
div.top_nav ul li:last-child {
	padding-right: 0;
}


div.top_nav ul li a {
	color: var(--hoofdkleur_3_donker_blauw-color); 
	text-decoration: none;
	background: none;
}
div.top_nav ul li a:hover {
	color: var(--hoofdkleur_1-color);
}

div.top_nav ul li.current_page_item a {
	color: var(--hoofdkleur_1-color);
}

div.top_nav ul li a:after {
	content: ' ';
	position: relative;
	display: block;
	top: 0;
	height: 2px;
	width: 0%;
	background: var(--hoofdkleur_2_rood_magenta-color);
	margin: -4px auto 0;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
}
div.top_nav ul li a:hover:after {
	width: 100%;
}



/***********/
/* Submenu */

#mainNav ul li ul {
	max-width: 245px;
	min-width: 180px;
	
	display: block;
	position: absolute;

	opacity: 0;
	visibility: hidden; 
	/* pointer-events: none; */
	
	padding: 10px 20px 13px;
	margin: 2px 0 0 -10px !important;
	
	background-color: var(--hoofdkleur_2_rood_magenta-color);
	-moz-border-radius: 	3px; 	
	-webkit-border-radius: 	3px;
	border-radius: 			3px;
	
	transition: all .2s ease; -moz-transition: all .2s ease; 
	-webkit-transition: all .2s ease; -o-transition: all .2s ease;
}

#mainNav ul li ul > li {
	float: none;
	margin-left: 0px;
}

#mainNav ul li ul li a, #mainNav div#nav_bar_top_main_menu ul li ul li a {
	padding: 0 0 !important;
	font-size: 100%;
	color: var(--hoofdkleur_3_donker_blauw-color);
	text-transform: none;
}

#mainNav ul li ul li a:hover, #mainNav div#nav_bar_top_main_menu ul li ul li a:hover {
	color: var(--hoofdkleur_1-color) !important;
}

#mainNav ul li ul li.current_page_item a, #mainNav div#nav_bar_top_main_menu ul li ul li.current_page_item a {
	color: var(--hoofdkleur_1-color);
}


#mainNav ul li ul li {
	padding: 6px 0;
	display: block;
	width: 100%;
	
	line-height: 1.2em;
	
	border-bottom: 1px solid var(--hoofdkleur_3_donker_blauw-color);
}
#mainNav ul li ul li:last-child {
	border-bottom: none;
}

#mainNav ul li ul li a {
	width: 100%;
	display: inline-block;
}

#mainNav ul li:hover ul {
	opacity: 1;
	visibility: visible;
	/* pointer-events: auto; */
}

/***********/









/* Top na scroll */
div#top.navbar-shrink div.top_nav {
	padding: 48px 0 5px 0;
}
div#top.navbar-shrink div.top_logo {
	width: 90px; max-width: 90px;
	left: -20px;
	height: 60px; 
	margin-bottom: 12px;
}

body.navbar-shrink::after {
	top: 50px; left: 0;
	width: 100%; height: 35px;
}





/*	--------------------------------------------------------------------	*/
/* Header */
section.header {
	padding: 85px 0 25px 0;
	color: #fff;
	
	background-size: 100% auto;
	background-size: cover;
	background-repeat: no-repeat;
}

section.header.met_bg_beeld.bg_404 {
	background-color: var(--hoofdkleur_1-color);
	background-image: url('../images/bg_po404.jpg');
}

/* body.single_post section.header.met_bg_beeld:before {
	content: ' ';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	opacity: 0.70;
	background-color: var(--hoofdkleur_1-color);
	background: linear-gradient(125deg, var(--hoofdkleur_3_donker_blauw-color) 50%, var(--hoofdkleur_1-color) 100%); */
	/* mix-blend-mode: multiply; */
	/* z-index: 0; 
} */

body.single_post section.header.met_bg_beeld:after {
	content: ' ';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	opacity: 0.40;
	background-image: url('../images/bg_po5.jpg');
	background-size: 100% auto;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}
section.header.met_bg_beeld div.max_width_site {
	z-index: +3;
}

body.vervolgpagina section.header, body.single_post section.header {
	margin-bottom: 36px;
	overflow: hidden; 
}

section.header img {
	position: relative;
	float: left;
	width: auto; height: auto;
	margin: 0; padding: 0;
}

div.header_tekst {
	padding: 100px 0 20px 0;
}
div.header_tekst h1 {
	color: #fff;
}

div.header_tekst h3 {
	color: #fff;
	font-family: 'made_tommylight';
	font-family: 'made_tommythin';
	display: inline;
	background-color: var(--hoofdkleur_1_transp-color); 
	color: #fff;
	line-height: 1em;
	padding: 0 8px;
	letter-spacing: 1px;
}


/* ******* */
div#home_heading {
	position: relative;
	z-index: +5;
}

div#home_heading h1 {
	padding: 120px 0px 130px 0;
	z-index: +1;
	font-size: 130px;
	letter-spacing: -2px;
	line-height: 1.1em;
	margin-bottom: 60px;
}

div#home_heading div.heading_bg_image {
	position: absolute;
	top: 0; right: 0;
	width: 72%;
	height: 100%; 
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
	/* flip div horizontal */
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH"; 
}

div#home_heading div.heading_bg_image:after {
	content: ' ';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	opacity: 0.20;
	background-color: var(--hoofdkleur_3_donker_blauw-color);
	mix-blend-mode: multiply;
}

div#home_heading div.heading_bg_image:before {
	content: ' ';
	position: absolute;
	top: 30px; 
	right: -30px;
	width: 60px;
	height: 100%;

	background-color: none;
	background-size: 15px 15px;
	background-image: repeating-linear-gradient(45deg, var(--hoofdkleur_1-color) 0, var(--hoofdkleur_1-color) 1px, rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 50%);
}


/* Home kaders */
div.home_kader {
	position: relative;
	float: left;
	width: 100%;
}

div.kader_home_1_2 div.post_content_in_div {
	margin: -140px auto 50px auto;
	padding: 160px 100px 50px 80px;
	
	background: var(--hoofdkleur_3_donker_blauw-color);
	
	background: linear-gradient(20deg, var(--hoofdkleur_3_donker_blauw-color) 30%, var(--hoofdkleur_1-color) 100%);
		
	border-radius: 100px;
}



div.kader_home_3 {
	padding: 50px 0px 50px 0px;
	margin-bottom: 50px;
	background: var(--hoofdkleur_3_donker_blauw-color);	
}

div.content_bg_donker {
	color: #fff;
}

div.content_bg_donker h1, div.content_bg_donker h2, div.content_bg_donker h3, div.content_bg_donker a {
	color: var(--hoofdkleur_1_licht-color);
}

div.content_bg_donker a:hover {
	color: #ffffff;
	background-color: var(--hoofdkleur_2_rood_magenta-color);
}


div.kader_home_4 {
	margin-bottom: 50px;
}

/*
.kleuren {
	--hoofdkleur_lichtst-color: #fff;
	--hoofdkleur_1-color: #03979d;

	--hoofdkleur_2_rood_magenta-color: #d13654;
	--hoofdkleur_3_donker_blauw-color: #293771;
	--hoofdkleur_4_donker_grijs-color: #293548;

	color: var(--hoofdkleur_1-color);
	color: var(--hoofdkleur_2_rood_magenta-color);
	color: var(--hoofdkleur_3_donker_blauw-color);
	color: var(--hoofdkleur_4_donker_grijs-color);
	color: var(--hoofdkleur_5_licht_grijs-color);
}
*/


/* Home kaders - 3 kolommen */
div.kader_home_expertises {
	padding-top: 30px;
}

div.kader_home_expertises div.wp-block-columns {
	display: flex;
	align-items: normal !important;
	
    box-sizing: border-box;
}

div.kader_home_expertises div.wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
		
	width: 31.33%;
	padding: 0 3% 0 0;
	margin: 0 3% 30px 0;
	
	border-right: 2px dotted var(--hoofdkleur_5_licht_grijs-color);
}
div.kader_home_expertises div.wp-block-column:nth-child(3) {
	padding: 0 0 0 0;
	margin: 0 0 30px 0;
	border-right: none;
}

div.kader_home_expertises div.wp-block-column figure.wp-block-image {
	margin: 4px auto;
	max-width: 65%;
}
div.kader_home_expertises div.wp-block-column img {
	width: 160px; max-width: 100%;
	margin: 0 auto 10px;
}


/*	--------------------------------------------------------------------	*/
/* Content */


section.content {
	padding: 30px 0 50px 0;
}

section.content p {
	padding: 10px 0 30px 0;
	line-height: 1.8em;
}

div.post_content_in_div {
	line-height: 1.8em;
}

section.content img {
	float: none;
	max-width: 100%; height: auto;
	margin: 0; padding: 0; border: none;
}

section.content.bg_vlak_content {
	background-color: var(--hoofdkleur_2_rood_magenta-color);
}


.content p.inleiding {
	font-size: 1.15em;
	line-height: 2em;
	font-family: 'made_tommyextrabold';
}

section.content strong {
	font-family: 'made_tommyextrabold';
	font-weight: normal;
	letter-spacing: 0.2px;
}

section.content hr {
	border: none;
	border-top: none; 
	background-color: none;
	border-bottom: none;
	
    width: 42%;	
	padding: 0px 0 0px 0;
	margin-bottom: 34px;
		
	height: 8px;

	background-color: none;
	background-size: 10px 10px;
	background-image: repeating-linear-gradient(45deg, var(--hoofdkleur_2_rood_magenta-color) 0, var(--hoofdkleur_2_rood_magenta-color) 1px, rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 50%);
	
}


section.content .wp-block-columns {
	margin: 0 0;
}

section.content img {
	border-radius: 3px !important; 
}


/* 
body.vervolgpagina section.content p, body.vervolgpagina section.content h1, body.vervolgpagina section.content h2, 
body.vervolgpagina section.content h3, body.vervolgpagina section.content h4, body.vervolgpagina section.content h5, 
body.vervolgpagina section.content div.rc_logged_in {
	max-width: 820px;
	margin: 0 auto;
}
*/

/* ook op homepage */
/*
body.homepage section.content p, body.homepage section.content h1, body.homepage section.content h2, 
body.homepage section.content h3, body.homepage section.content h4, body.homepage section.content h5, 
body.homepage div.wp-block-buttons {
	max-width: 820px;
	margin: 0 auto;
}
*/



/* simple gallery - titel etc verbergen */
div.slb_details {
	display: none;
}


/* Images */

figure.wp-block-image {
	margin: 10px 0 60px 0;
}


/* Home pagina divs */

div.content_smaller {
	/* float: left;	width: 65%; */
	max-width: 820px;
	margin: 0 auto;
}


/* Portfolio */
div.portfolio_overzicht {
	position: relative;
	float: left;
	width: 100%;
	padding: 0;
}


div.kader_home_3 div.post_content_in_div > h3 {
	font-size: 250%;
	margin-bottom: 30px;
} 

div.portfolio_overzicht div.portfolio_kader {
	position: relative; 
	float: left; display: block;
	width: 31.33%; min-height: 140px;
	padding: 0 3% 0 0;
	
	aspect-ratio : 1 / 1;
		
	margin: 0 3% 30px 0;
	
	overflow: hidden;
	
	background-position: center;
	background-size: 100% auto;
	background-size: cover;
	
	background-repeat: no-repeat;
	
	transition: all .2s ease; -moz-transition: all .2s ease; 
	-webkit-transition: all .2s ease; -o-transition: all .2s ease;
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	
	overflow: hidden;
	
	background-color: var(--hoofdkleur_5_licht_grijs-color); 
	
	border-radius: 3px;
}


div.portfolio_overzicht div.portfolio_kader:nth-child(3n) {
	padding: 0 0 0 0;
	margin: 0 0 30px 0;
}

div.portfolio_kader_tekst {
	position: absolute; 
	top: 100%; left: 0;
	width: 100%; height: 100%;
	text-align: left;
	padding: 20px;
	
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	
	color: #fff;	
	
	background-color: var(--hoofdkleur_2_rood_magenta_transp-color);
	background: linear-gradient(20deg, var(--hoofdkleur_2_rood_magenta_transp-color) 30%, var(--hoofdkleur_1_transp-color) 100%);

	margin-top: -16px;
}


div.portfolio_overzicht div.portfolio_kader div.portfolio_kader_tekst {
	display: table;
}

div.portfolio_overzicht div.portfolio_kader div.portfolio_kader_tekst div.prtflio_txt_content { 
	display: table-cell;
	vertical-align: middle;
}
div.portfolio_overzicht div.portfolio_kader div.portfolio_kader_tekst h3 {
	color: #fff;
	text-transform: none;
}

div.portfolio_overzicht div.hover_project {
	position: relative;
	float: left; 
	top: -2px;
	margin: 0; padding: 0;
}
div.portfolio_overzicht div.hover_project p {
	display: inline; 
	background: none;
	color: #fff;
	background: var(--hoofdkleur_3_donker_blauw-color);
	font-size: 17px;
	text-transform: uppercase;
	line-height: 34px;
	padding: 5px 6px;
}

.tekst_afbreken, .tekst_afbreken h3 {
	hyphens: auto; 
}

figure {
	margin: 20px auto;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption, figcaption {
	display: none;
}

figure.wp-block-gallery {
	margin-top: 10px;
	margin-bottom: 60px;
}

figure.geen_marge {
	margin-bottom: 0;
}

figure.wp-block-image.volle_breedte {
	width: 100% !important;
}

body.single_post figure.wp-block-image {
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	overflow: hidden;
	border-radius: 3px;
}

body.single_post figure a {
	position: relative;
	float: left;
}

body.single_post figure.wp-block-image a:before {
	content: ' ';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: var(--hoofdkleur_1_transp-color); 
	background-image: url('../images/plus.svg');
	background-position: center center;
	background-size: 30% 30%;
	background-repeat: no-repeat;
	z-index: +1;
	opacity: 0;
	
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	
	animation-delay: 2s;
	transition: all .4s ease; -moz-transition: all .4s ease; 
	-webkit-transition: all .4s ease; -o-transition: all .4s ease;
}


/* :HOVER */
div.portfolio_kader:hover div.portfolio_kader_tekst {
	top: 0%;
	margin-top: 0px;
}

body.single_post figure.wp-block-image a:hover:before {
	opacity: 1;
	width: 100%; height: 100%;
}



/* Page navigation */
div.page_navigation {
	width: 100%;
	text-align: center;
	padding: 30px 0;
	border-top: 2px dotted var(--hoofdkleur_1_licht-color);
}
div.page_navigation a {
	text-decoration: none;
	padding: 6px 15px 8px;
	background-color: #fff;
	-webkit-filter: drop-shadow(0px 0px 8px var(--hoofdkleur_6_mid_grijs-color));
	filter: drop-shadow(0px 0px 8px var(--hoofdkleur_6_mid_grijs-color));
	border-radius: 25px;
	font-size: 22px;
}



div.page_navigation span.prev_next_link {
	position: relative;
}

div.page_navigation span.prev_next_link.volgende {
	float: right;
}

div.page_navigation span.prev_next_link.vorige {
	float: left;
}

div.page_navigation span.naar_overzicht {
	float: none;
	text-transform: uppercase; 
	letter-spacing: 0.5px;
	font-size: 16px;
}
div.page_navigation span.naar_overzicht a {
	font-size: 16px;
	padding: 12px 13px 10px;
}


div.is-content-justification-center {
	text-align: center;
}

.padding_bottom_16 {
	padding-bottom: 20px;
}


/*	--------------------------------------------------------------------	*/
/* Form / buttons */

/* CTA button_link */
p.po_button a, .content_ahref_cta a {
	font-size: 1.2em; line-height: 1em;
	font-family: 'made_tommyextrabold';
	text-transform: uppercase;
	
	padding: 14px 20px 13px;
	background-color: var(--hoofdkleur_2_rood_magenta-color);
	border-radius: 3px;
	color: #fff;
	
	text-decoration: none;
	letter-spacing: 0.1px;
	
	margin-top: 15px;
	display: block;
	text-align: center;
	background: linear-gradient(45deg, var(--hoofdkleur_2_rood_magenta-color) 0%, var(--hoofdkleur_2_rood_magenta_donkerder-color) 100%);
}
p.po_button a:hover, section.content .content_ahref_cta a:hover {
	background-color: var(--hoofdkleur_3_donker_blauw-color); 
	background: linear-gradient(45deg, var(--hoofdkleur_3_donker_blauw_donkerder-color) 0%, var(--hoofdkleur_3_donker_blauw-color) 100%);
}


/* button */
button, input[type=button], input[type=submit], input[type=reset], 
a.wp-block-button__link, a.button { 
	width: auto; 
	height: auto;
	padding: 14px 50px 13px 20px;
	margin: 0px 0px 40px 0; 
	border: 0; 
	cursor: pointer; 
	
	-moz-border-radius: 	3px; 	
	-webkit-border-radius: 	3px;
	border-radius: 			3px;
	
	font-size: 1.2em; line-height: 1em;
	font-family: 'made_tommyextrabold';
	text-transform: uppercase;
	color: #fff;
	
	background: url('../images/pijltje-donker.png') center right 10px no-repeat var(--hoofdkleur_1-color); 
	background-size: auto 20px; 
	
	transition: all .2s ease; -moz-transition: all .2s ease; 
	-webkit-transition: all .2s ease; -o-transition: all .2s ease;
	
	text-decoration: none;
} 

a.button {
	text-decoration: none;
}







/*	--------------------------------------------------------------------	*/
/* Footer */

footer.footer {
	position: relative;
	float: left;
	width: 100%;
	
	background: var(--hoofdkleur_1-color);
	
	background-image: url('../images/bg_po5.jpg');
	background-size: 100% auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	
	margin: 0px;
	padding: 25px 0 0px 0;
	
	text-align: left;
	color: #fff;
	font-size: 0.7em; line-height: 1.3em;
}


footer a:hover img {
	-webkit-filter: drop-shadow(2px 2px 10px var(--hoofdkleur_3_donker_blauw-color));
	filter: drop-shadow(2px 2px 10px var(--hoofdkleur_3_donker_blauw-color));
}




/* footer info */

footer div.footer_info {
	float: left;
	padding: 0px 0 20px 0;
	width: auto;
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	margin: 0 50px 0 0;
}


footer div.footer_info a {
	color: var(--hoofdkleur_1_licht-color);
	text-decoration: none;
	display: inline;
	padding: 2px 0 0 0;
}

footer div.footer_info a:hover {
	color: #fff;
	background-color: var(--hoofdkleur_2_rood_magenta-color);
}

footer div.footer_info a::after {
	content: '';
}
footer div.footer_info a:last-child::after {
	content: '';
}

footer div.footer_info h4 {
	margin: 0 0 8px 0;
}




/* Cookie bar */
div#eu-cookie-bar {
	padding: 15px 10px;
	background-color: var(--hoofdkleur_3_donker_blauw-color);
	text-align: center;
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
}

div#eu-cookie-bar button, #cmplz-manage-consent .cmplz-manage-consent {
	font-size: 0.9em !important;
	color: var(--hoofdkleur_1-color) !important;
	background-image: none !important;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept, 
.cmplz-btn.cmplz-deny, .cmplz-btn.cmplz-view-preferences {
	background-image: none !important;
}




/* WP adminbar */
/* #wpadminbar {
	display: none;
}
html {
    margin-top: 0px !important;
} */




