/* Globale layout */

a {
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
:focus {
  outline: none;
}
.clear {
  clear:both;
}

body {
  padding:0px;
  margin:0;
  background-color:#ffffff;
  color:#222222;
	font-size:20px;
	line-height:31px;
/*	overflow-y:hidden; */
	position:relative;
	font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#header {
	background-color: #0CEC91;
	height:80px;
	font-weight: 400;
	font-weight: bold;
	text-align:center;
	color:white;
	font-size:50px;
	padding:50px 20px 50px 20px;
	line-height:50px;
	position:relative;
}

#logo {
	position:absolute;
	top:135px;
	left:48%;
}

.groen {
	background-color: #0CEC91;
	padding:20px 0 0 2%;
}

.wrapper {
  max-width:1000px;
  margin:auto;
}
.padding {
	padding:0 2%
}
.center {
	text-align:center;
}



.streep {
	border-top:1px solid black;
	width:200px;
	margin-bottom:10px;
}




H2 {
	margin:0 0 5px 0;
}

#nieuwsbriefbalk {
	background:#F8E16C;
	padding-left:30px;
	padding-right:10px;
	padding-top:13px;
	max-width:350px;
	margin:0 auto;
	border-radius:10px;
}



.field {
	float:left;
	width:160px;
}
form#nieuwsbrief input[type=text] {
	width:150px;
	height:35px;
	color:#000;
	font-size:19px;
	padding-left:10px;
	font-weight:300;
	background-color:#fff;
	border:none;
		border-radius:0!important;
	-webkit-border-radius:0px;
	  -webkit-appearance: none;
  -webkit-border-radius: 0;
	 font-family: 'Arial', serif;
	 float:left;
}
.input {
	margin-bottom:12px;
}


form#nieuwsbrief input[type=submit] {
		 font-family: 'Arial', serif;
  font-size:20px;
	color:#fff;
	border:none;
	padding:5px 15px;
	background-color:#666;
	margin-top:15px;
	cursor:pointer;
	margin-bottom:20px;
}

form#nieuwsbrief input[type=submit]:hover {
	background-color:#666;
}


/* The container must be positioned relative: */
.custom-select {
	position: relative;
	font-family: Arial;
	float:left;
 }
 
 .custom-select select {
	display: none; /*hide original SELECT element: */
 }
 
 .select-selected {
	background-color:#666;
 }
 
 /* Style the arrow inside the select element: */
 .select-selected:after {
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #fff transparent transparent transparent;
 }
 
 /* Point the arrow upwards when the select box is open (active): */
 .select-selected.select-arrow-active:after {
	border-color: transparent transparent #fff transparent;
	top: 7px;
 }
 
 /* style the items (options), including the selected item: */
 .select-items div,.select-selected {
	color: #ffffff;
	padding: 3px 40px 3px 20px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
 }
 
 /* Style items (options): */
 .select-items {
	position: absolute;
	background-color:#666;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
 }
 
 /* Hide the items when the select box is closed: */
 .select-hide {
	display: none;
 }
 
 .select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
 }