@charset "UTF-8";
* {
	box-sizing: border-box;
}
html, body {
	height: 100%;
}
body {
	font-family: neo-sans, sans-serif; 
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	font-variant: normal;
	color: #222;
	display: flex;
	flex-direction: column;
	height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
	background-color: #f3f3f3;
}
h1 {
	font-weight: 700;
}
h2, h3, h4, h5, h6 {
	font-weight: 500;
}
h1, h2 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 5px;
}
h1 {
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 15px;
}
h2.home {
	font-size: 20px;
}
h6 {
	font-weight: 400;
	text-transform: uppercase;
	color: #777;
	font-size: 85%;
	letter-spacing: 1px;
}
@media only screen and (min-width: 600px) {
	h2.home {
		font-size: 24px;
	}
}
@media only screen and (min-width: 1024px) {
	body {
		font-size: 16px;
		line-height: 26px;
	}
}
p, ul, ol {
	padding-bottom: 20px;
}
a {
	color: #e9456f;
	text-decoration: none;
}
ul {
	list-style: disc;
	padding-left: 16px;
}
ol {
	list-style: decimal;
	padding-left: 16px;
}
/*
KLEUREN
*/
.bg-groen {
	background-color: #7ab527;
}
.bg-groen-verloop {
	background: #7ab527;; /* Old browsers */
	background: -webkit-linear-gradient(#90cf36 0%, #629815 100%);
	background: -o-linear-gradient(#90cf36 0%, #629815 100%);
	background: linear-gradient(#90cf36 0%, #629815 100%); /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.bg-roze {
	background-color: #e9456f;
}
.bg-licht-grijs {
	background-color:#dfdfdc;
}
.bg-grijs {
	background-color:#e4e3e3;
}
.bg-donker-grijs {
	background-color: #3a3738;
}
.bg-lichtgroen {
	background-color: #d2e7b3;
}
.bg-wit {
	background-color:#fff;
}
.bg-geel {
	background-color: #d9bf12;
}
.txt-roze {
	color: #e9456f;
}
.txt-grijs {
	color:#999999;
}
.txt-groen {
	color:#38ab38;
}
.txt-wit {
	color:#ffffff;
}
/* afdek */
.afdek {
	display:none;
	position: fixed;
	right: 0px;
	z-index: 50;
	top: 0px;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
/*
BASICS
*/
em, .italic {font-style: italic}
.medium {font-weight: 500}
strong, .bold {font-weight: 500}
.txt-center, .txt-align-center{text-align: center}
.letterspatie-1 {
	letter-spacing: 1px;
}
.ronde-hoekjes,
.ronde-hoekjes img {
	border-radius: 4px;
}
.vertical-align-middle {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
/* align vertical */
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}


/* BASICS */
.clear-left {clear: left}
.clear-right {clear: right}
.clear-both {clear: both}

.float-left{ float:left}
.float-right{ float:right}
.float-none{ float:none}

.txt-align-left { text-align:left}
.txt-align-right { text-align:right}
.txt-align-center { text-align:center}
.txt-center { text-align:center}
.inline-block { display:inline-block}

.padding-top-20p {padding-top: 20px}
.padding-right-20p {padding-right: 20px}
.padding-bottom-20p {padding-bottom: 20px}
/* The Magnificent Clearfix: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table }
.clearfix:after { clear: both }
.clearfix {
	zoom: 1;
	border-left-width: 2px;
	border-left-color: #1A211A;
}
.nonvis {
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-o-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
}