@font-face{font-family:Montserrat;src:url(../fonts/Montserrat-Regular.woff2)}
@font-face{font-family:Montserrat;src:url(../fonts/Montserrat-Bold.woff2);font-weight:600}

html{
	width:100%;
	height:100%;
	position: relative;
}
body{
	width:100%;
	height:100%;
	background:#FFF;
	line-height:1.6;
	font-weight:normal;
	font-size:17px;
	overflow-y: scroll;
}
body, a, table, input, select, textarea{
	color:#63656A;
  	font-family: "Montserrat";
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
  margin: 3px 0;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: #00216d;
	display: table;
	font-family: "Montserrat";
	font-size: 19px;
	font-weight: 700;
	letter-spacing: .5px;
	line-height: 1.25;
	margin-bottom: 24px;
	position: relative
}
@media (max-width: 64em) {
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
		font-size: calc(15px + .33333vw)
	}
}

h1,
.h1 {
	font-size: 35px
}

@media (max-width:1200px) {
	h1,
	.h1 {
		font-size: calc(18.2px + 1.4vw)
	}
}

h2,
.h2 {
	font-size: 26px
}

@media (max-width:1200px) {
	h2,
	.h2 {
		font-size: calc(16.4px + .8vw)
	}
}

h3,
.h3 {
	font-size: 22px
}

@media (max-width:1200px) {
	h3,
	.h3 {
		font-size: calc(15.6px + .53333vw)
	}
}

small {
	font-size: 80%;
}
.clear{
	clear:both;
}
.msg{
	margin-bottom:20px;
	padding:5px 10px;
	border:solid 1px #00216d;
	background-color: #00216d;
	border-radius:3px;
	color:#FFF;
}
.error{
	margin-bottom:20px;
	padding:5px;
	border:solid 2px #DE133E;
	border-radius:3px;
	background:#DE133E;
	color:#FFF;
}
.eventlogo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 75%;
	max-height: 90%;
}
.fields {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.fields + .fields{
	margin-top: 30px;
}
.fields:empty{
	display: none;
}
.introduce + .introduce {
	margin-top: 60px;
}
.title {
    position: absolute;
    z-index: 1;
    width: 71%;
    left: 50%;
    max-width: 600px;
    transform: translateX(-50%);
    top: 75px;
}
.date {
	position: absolute;
	z-index: 1;
    width: 40%;
    max-width: 300px;
    top: -3%;
    left: 50%;
    transform: translateX(-50%);
}
@media(max-width:64em){
	.date {
		top: 6%;
		max-width: 215px;
	}
	.title {
		max-width: 411px;
	}
}
.intro {
	margin-top: 20px;
	margin-bottom: 40px;
}
.form-field__input {
    position: relative;
    float: left;
    width: calc(50% - 15px);
    box-sizing: border-box;
    border: 1px solid #595559;
}
.form-field__input input:not([type="checkbox"],[type="radio"]), .form-field__input textarea, .form-field__input select {
    line-height: 1.15;
    margin: 0;
    font-family: inherit;
    color: #23231a;
    outline: none;
    overflow: visible;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
    border-radius: 3px;
    appearance: none;
	-webkit-appearance: none;
    transition: background 0.35s ease-out;
    padding: 28px 12px 8px 12px;
    background-color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 400;
    height: 58px;
}
.form-field__input select {
	height: 44px;
	padding: 14px 12px 8px 12px;
}
.form-field__input textarea {height: 150px;}
.form-field__input.filled{
    border: 1px solid #aca09b;
}
.form-field__input--no-border{
	border-color: transparent !important;
}
.form-field__input .form-field__label {
    left: 12px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #23231a;
    transform-origin: left center;
    transition: transform 0.25s ease-out,color 0.25s ease-out,-webkit-transform 0.25s ease-out;
    padding: 6px 0;
    display: block;
    box-sizing: border-box;
	pointer-events: none;
    font-size: 16px;
}
	.form-field__input__arrow-down{
		position: absolute;
		top:50%;
		right:16px;
		margin-top: -7px;
		width:8px;
		height:8px;
		border-right:solid 2px #23231a;
		border-bottom:solid 2px #23231a;
		transform: rotate(45deg);
		pointer-events: none;
	}
	.form-field__input--dropdown{
		padding-top:14px;
	}
input:not([type="checkbox"],[type="radio"]):focus + .form-field__label, select:focus + .form-field__label, textarea:focus + .form-field__label, .filled .form-field__label  {

    transform: translateY(-80%) scale(0.8);
    left: 12px;
    font-weight: 400;
}
.form-field__checkbox {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.form-field__checkbox input {
	margin-top: 8px;
}

p {
    margin-bottom: 1.5rem;
}

th + td {
	padding: 5px 0;
}
th {
	padding-right:5px;
	text-align: left;
	font-weight: 400;
}
.align-top {
	vertical-align: top;
}

textarea{
	height:125px;
}
input[disabled] {
	background: #ECECEC;
	border-color:#ECECEC;
}
.center{
	position: relative;
	margin:0 16px;
}
	@media (min-width:64em){
		.center{
			margin: 0 auto;
			max-width:1000px;
		}
	}
.grid{
	display: flex;
	flex-flow: row wrap;
	align-content: flex-start;
	position: relative;
	margin: -20px;
	width: calc(100% + 40px);
}
	.grid > div {
		box-sizing: border-box;
		vertical-align: top;
		padding: 20px;
	}
	.grid__cell--1{
		width:100%;
	}
	.grid__cell--1-2{
		width:50%;
	}
	.grid__cell--1-3{
		width:33.3%;
	}
	@media (min-width:48em){
		.grid__cell--md-1-2{
			width:50%;
		}
		.grid__cell--md-1-3{
			width:33.3%;
		}
	}
.event{
	position: relative;
	display:block;
	border:solid 1px #E5E5E5;
	padding-left:125px;
	background:#FFF;
	text-decoration: none;
}
	.event img{
		position: absolute;
		top:0;
		left:0;
		margin-right:16px;
		width:125px;
	}
	.event__content{
		position: relative;
		min-height: 167px;
		padding:10px 10px 40px;
		box-sizing: border-box;
	}
		.event__content b{
			display:block;
			margin-bottom:8px;
			font-size:120%;
			line-height: 1.1;
		}
		.event__content__subscribe{
			position: absolute;
			right:15px;
			bottom:15px;
			color:#00216d;
			font-weight: bold;
			line-height: 1;
		}
		.event:hover .event__content__subscribe{
			text-decoration: underline;
		}
.form-field{
	overflow:hidden;
}

.button {
    text-decoration: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    touch-action: manipulation;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 48px;
    background-color: #00216d;
    border: 1px solid #00216d;
    color: #fff;
    position: relative;
    transition: all .2s ease;
    z-index: 1;
	font-weight: 600;
}
.button:hover {
    background: #939598;
    border: 1px solid #939598;
}

.add_introduce{
	padding-left:40px !important;
	padding-right:24px !important;
}
.add_introduce::before{
	content:"+";
	position:absolute;
	top:50%;
	left:21px;
	line-height: 1;
	transform: translateY(-50%);
}
.add_introduce::after{
	display:none;
}
label.checkbox{
	position:relative;
	display:inline-block;
	cursor: pointer;
}
label.checkbox + br + label.checkbox{
	margin-top:3px;
}
	label.checkbox input[type=checkbox]{
		position:absolute;
		top:0;
		left:0;
		opacity:.01;
	}
	label.checkbox span{
		display:inline-block;
		position:relative;
		padding-left:30px;
		line-height: 20px;
	}
	label.checkbox span:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:16px;
		height:16px;
		border-radius:4px;
		background:#FFF;
		border:solid 2px #C2C2C2;
	}
	label.checkbox span:after{
		display: none;
		content:"";
		position:absolute;
		top:2px;
		left:6px;
		width:5px;
		height:9px;
		border-right:solid 3px #00216d;
		border-bottom:solid 3px #00216d;
		transform:rotate(45deg);
	}
	label.checkbox input:checked ~ span:before{
		border-color:#00216d;
	}
	label.checkbox:hover input ~ span:before, label.checkbox input:focus ~ span:before{
		border-color:#dd8c22;
	}
	label.checkbox input:checked ~ span:after{
		display: block;
	}
	label.checkbox input[disabled] ~ span:before{
		border-color:#C2C2C2;
	}
	label.checkbox input[disabled] ~ span:after{
		border-color:#DDD;
	}
	label.checkbox input[disabled]:checked ~ span:after{
		border-color:#999;
	}
	label.checkbox input[disabled] ~ span{
		opacity:.5;
		cursor:default;
	}

label.radio{
	float:left;
	position:relative;
	clear:both;
	cursor: pointer;
}
br + label.radio{
	margin-top:5px;
}
	label.radio input[type=radio]{
		position:absolute;
		top:0;
		left:0;
		opacity:.01;
	}
	label.radio span{
		display:inline-block;
		position:relative;
		padding-left:30px;
		line-height:20px;
	}
		label.radio span img{
			display: block;
			margin-left:10px;
		}
	label.radio span:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:16px;
		height:16px;
		border-radius:50%;
		background:#FFF;
		border:solid 2px #C2C2C2;
	}
	label.radio--center span:before{
		top:50%;
		margin-top:-13px;
	}
	label.radio span:after{
		content:"";
		position:absolute;
		top:5px;
		left:5px;
		width:10px;
		height:10px;
		border-radius:50%;
		background:#F5F5F5;
	}
	label.radio--center span:after{
		top:50%;
		margin-top:-5px;
	}
	label.radio:hover span:before, label.radio input:focus ~ span:before{
		border-color:#00216d;
	}
	label.radio input:checked ~ span:before{
		border-color:#00216d;
	}
	label.radio input:checked ~ span:after{
		background:#00216d;
	}
	label.radio input[disabled] ~ span:before{
		border-color:#C2C2C2;
	}
	label.radio input[disabled] ~ span:after{
		background:#DDD;
	}
	label.radio input[disabled]:checked ~ span:after{
		background:#999;
	}
	label.radio input[disabled] ~ span{
		opacity:.5;
		cursor:default;
	}
	.form-buttons {width: 100%;}
.grijsblok {
	background: #f8f6f6;
    padding: 33px 39px;
    box-sizing: border-box;
}
.introduce__hidden{
	display:none;
}
.header{
	position:fixed;
	background: #9edbf1;
	top:0;
	left:0;
	width:50vw;
	height:100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size:contain;
	overflow: hidden;
}
.bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.text{
	position: relative;
	margin-left:50vw;
	min-height:100vh;
	padding:75px 60px;
	box-sizing:border-box;
}
.logo {
	display: flex;
	justify-content: flex-end;
}
.logo img {max-width: 230px;}
@media (max-width:64em) {
	.logo img {
    	max-width: 208px;
	}
}
	.language{
		float:left;
		margin-bottom:20px;
	}
		.language__button{
			float:left;
			margin-right:10px;
			width:36px;
		}
			.language__button img{
				display:block;
				width:100%;
			}
	.vc-logo {
		position: absolute;
		bottom: 20px;
		width: 189px;
		left: 50%;
		transform: translateX(-50%);
	}
.clear{
	clear:both;
}
.choose__language__button{
	float:left;
	margin-bottom:20px;
	line-height: 48px;
	text-decoration: none;
	clear:both;
}
	.choose__language__button img{
		float:left;
		margin-right:20px;
		width:48px;
	}
@media (max-width:88em){
	.header{
		width:40vw;
	}
	.text{
		margin-left:40%;
		width: 60%;
	}
}
@media (max-width:64em){
	.header{
		position:relative;
		width:auto;
		height:480px;
		background-position: top center;
	}
		.form-field__input {
			width: 100%;
			margin: 0;
		}
	.text{
		margin:0;
		width:auto;
		min-height:unset;
		padding:23px 23px 62px;
	}
}
@media (max-width:35.5em){
	#text{
		min-height:0;
	}
	table, tbody, tr, th, td{
		display:block;
		overflow: hidden;
	}
	th{
		font-weight: 600;
	}
	tr + tr th{
		padding-top:10px;
	}
}
@media (max-width:25em){
	input[type=text], input[type=date], input[type=email], select, textarea, input[type=number] {
		width:100%;
		box-sizing: border-box;
	}
	.button{
		width:100%;
		box-sizing: border-box;
	}
}

.file-container > label span, .image-progress-label, .file-progress-label, .file-progress-bar, .file-box-container div {
	background:#00216d;
}

ul {
    margin-left: 24px;
}
li {
    list-style: none;
    position: relative;
    padding-left: 4px;
}
li::before {
    background: #0000;
    border: 2px solid #00216d;
    box-sizing: border-box;
    border-radius: 50%;
    content: '';
    height: 12px;
    left: -18px;
    position: absolute;
    top: 8px;
    width: 12px;
}
.langswitch {
	position: absolute;
    top: 36px;
}
.langswitch img {
	border-radius: 50%;
}
.details {
    color: #000;
    line-height: 1.3;
    margin: 40px 0;
}
.details h1 {
	display: inline-block;
	margin: 0;
	color: inherit;
	font-size: 106%;
}
.details span {
	display: inline-block;
	color: inherit;
	font-size: 68%;
}
.details em {
	display: inline-block;
	color: inherit;
	font-style: normal;
}
.button--small {
    padding: 4px 20px;
}
.toestemming {
	margin-top: 25px;
}
.toestemming > span {
	display: block;

}
@media(min-width:88em){
	.details {
		font-size:23px;
	}
}
@media(max-width:720px){
	.details {
		font-size:20px;
	}
	.langswitch {
		top: 27px;
	}
}