/* Fonts */

/* Reset */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

body {
	background: none;
}

#stage {
	width: 100%;
	height: 394px;
	background: #FFFFFF;
	position: absolute;
	font-family: "co-headline", sans-serif;
	font-weight: 500;
	font-style: normal;
	overflow: hidden;
}

.hiddenOnload {
	opacity:0;
}

.logo {
	position: absolute;
    top: 102px;
    left: calc(50% - 429px);
    width: 149px;
}

.green_bg {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:90%
}
.copy {
    position: absolute;
    top: 142px;
    left: calc(50% - 430px);
    width: 328px;
    height: 126px;
    font-size: 28px;
    line-height: 32px;
    color: #232D3D;
    text-align: left;
    font-weight: 900;
}

.kompas_container {
    position: absolute;
    top: 88px;
    left: calc(50% - 66px);
    width: 470px;
    height: 219px;
    background: #F3F3FB;
    border-radius: 10px;
    transform: scale(1.1);
	-webkit-box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
}

.kompasTitel {
	position: absolute;
	left:14px;
	top:9px;
	font-size:13px;
	line-height: 16px;
	color:#232D3D;
}

.leeftijdCopy {
	position: absolute;
	font-size:12px;
	line-height: 16px;
	color:#232D3D;
	top:37px;
	left:14px
}

.werkervaringCopy {
	position: absolute;
	font-size:12px;
	line-height: 16px;
	color:#232D3D;
	top:79px;
	left:14px
}

.opleidngCopy {
	position: absolute;
	font-size:12px;
	line-height: 16px;
	color:#232D3D;
	top:116px;
	left:14px
}

.leeftijdInput, .werkervaringInput {
	position: absolute;
	width:126px;
	height:27px;
	border-radius:15px;
	background:#FFFFFF;
	border: 1px solid #232D3D;
	font-family: "co-headline", sans-serif;
	font-weight: 300;
	text-align: center;
}

.leeftijdInput {
	top:34px;
	left:144px;
}

.werkervaringInput {
	top:77px;
	left:144px;
}

.radiobuttons {
    display: flex;
    position: absolute;
    top: 140px;
    font-size: 12px;
    left: 14px;
	width: 256px;
	justify-content: space-between;
}
.cta {
	position: absolute;
    top: 0;
    right: 0;
    width: 178px;
    cursor: pointer;
}

.clicklayer {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	cursor: pointer;
}

/* hoogste opleiding */
.inputContainer {
	display: block;
	position: relative;
	padding-left: 17px;
    line-height: .8;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.inputContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  

  .checkmark {
	position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #FFFFFF;
    border: 1px solid #232d3d;
    border-radius: 15px;
  }
  

  .inputContainer:hover input ~ .checkmark {
	background-color: #eee;
  }

  .inputContainer input:checked ~ .checkmark {
    background-color: #232D3D;
    border-radius: 15px;

  }

  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  

  /* functie niveau  */

  .dropdown-select-wrapper {
	position: relative;
    user-select: none;
    width: 256px;
	left: 14px;
	top:175px;
}
.dropdown-select {
	position: relative;
	display: flex;
	flex-direction: column;
}
.dropdown-select__trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 11px;
	font-size: 13px;
	font-weight: 500;
	color: #232d3d;
	height: 27px;
	line-height: 27px;
	background: #ffffff;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #232d3d;
	transition: all 0.2s;
	z-index: 3;
	border-radius: 15px 15px 15px 15px;
}
.dropdown-select__trigger span {
	width: 158px;
	overflow: hidden;
	white-space: nowrap;
}
.dropdown-select.open .dropdown-select__trigger  {
	border-radius: 0 0 15px 15px ;
}

.dropdown-options {
	margin-top: -30px;
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	right: 0;
	border: 1px solid #394a6d;
	border-bottom: 0;
	background: #fff;
	transition: all 0.2s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 2;
	border-radius: 15px 15px 0 0 ;
}
.dropdown-select.open .dropdown-options {
	bottom: 27px;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	overflow: hidden;

}
.dropdown-option {
	position: relative;
	display: block;
    padding: 6px 11px;
	font-size: 13px;
	font-weight: 500;
	color: #232d3d;
	line-height: 1.2;
	cursor: pointer;
	transition: all 0.2s;
	overflow:hidden;
}
.dropdown-option:hover {
	cursor: pointer;
	background-color: #b2b2b2;
}
.dropdown-option.selected {
	color: #ffffff;
	background-color: #305c91;
}
.arrow {
	position: relative;
	width: 9px;
	transition:all .2s;
	transform: rotate(-180deg);
}
.open .arrow {
	transform: rotate(0);
}


.cta_mob {
	display:none;
}
@media(max-width:881px){
	.kompas_container {
		left: calc(50% - 235px);
		top:107px;
	}

	.copy {
		top: 18px;
		left: calc(50% - 279px);
		width: 558px;
		text-align: center;
	}
	.logo {
		top: 356px;
		left: calc(50% - 74px);
	}
}

@media (max-width:553px){
	.copy {
		top: 16px;
		left: calc(50% - 150px);
		width: 300px;
		font-size: 19px;
		line-height: 21px;
	}
	.cta{
		display:none;
	}
	.cta_mob {
		display:block;
		position: absolute;
		top:238px;
		left:23px;
		height:41px;
		width:200px;
		background:#F4E956;
		color:#232D3D;
		font-size:14px;
		text-align: center;
		line-height: 41px;
		border-radius:55px;
		cursor: pointer;
	}

	.kompasTitel {
		display:none;
	}

	.kompas_container {
		position: absolute;
		top: 56px;
		left: calc(50% - 123px);
		width: 246px;
		height: 294px;
		background: #F3F3FB;
		border-radius: 10px;
		transform: scale(.9);
		-webkit-box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 21px 0px rgba(0,0,0,0.3);
	}
	
	.leeftijdCopy {
		position: absolute;
		font-size:13px;
		line-height: 16px;
		color:#232D3D;
		top:33px;
		left:23px
	}
	
	.werkervaringCopy {
		position: absolute;
		font-size:13px;
		line-height: 16px;
		color:#232D3D;
		top:77px;
		left:23px;
		width: 90px;
	}
	
	.opleidngCopy {
		position: absolute;
		font-size:13px;
		line-height: 16px;
		color:#232D3D;
		top:137px;
		left:23px
	}
	
	.leeftijdInput, .werkervaringInput {
		position: absolute;
		width:100px;
		height:30px;
		border-radius:15px;
		background:#FFFFFF;
		border: 1px solid #232D3D;
		font-family: "co-headline", sans-serif;
		font-weight: 300;
		text-align: center;
	}
	
	.leeftijdInput {
		top:25px;
		left:123px;
	}
	
	.werkervaringInput {
		top:77px;
		left:123px;
	}
	
	.radiobuttons {
		display: flex;
		position: absolute;
		top: 163px;
		font-size: 13px;
		left: 23px;
		width: 200px;
		justify-content: space-between;
	}

	
	.clicklayer {
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		cursor: pointer;
	}
	
	/* hoogste opleiding */
	.inputContainer {
		display: block;
		position: relative;
		padding-left: 17px;
		line-height: .7;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	.inputContainer input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	  }
	  
	
	  .checkmark {
		position: absolute;
		top: 0;
		left: 0;
		height: 12px;
		width: 12px;
		background-color: #FFFFFF;
		border: 1px solid #232d3d;
		border-radius: 15px;
	  }
	  
	
	  .inputContainer:hover input ~ .checkmark {
		background-color: #eee;
	  }
	
	  .inputContainer input:checked ~ .checkmark {
		background-color: #232D3D;
		border-radius: 15px;
	
	  }
	
	  .checkmark:after {
		content: "";
		position: absolute;
		display: none;
	  }
	  
	
	  /* functie niveau  */
	
	  .dropdown-select-wrapper {
		position: relative;
		user-select: none;
		width: 200px;
		left: 23px;
		top:194px;
	}
	.dropdown-select {
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.dropdown-select__trigger {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 11px;
		font-size: 13px;
		font-weight: 500;
		color: #232d3d;
		height: 30px;
		line-height: 30px;
		background: #ffffff;
		cursor: pointer;
		border-width: 1px;
		border-style: solid;
		border-color: #232d3d;
		transition: all 0.2s;
		z-index: 3;
	}
	.dropdown-select__trigger span {
		width: 158px;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.dropdown-options {
		margin-top: -30px;
		position: absolute;
		display: block;
		left: 0;
		right: 0;
		border: 1px solid #394a6d;
		background: #fff;
		transition: all 0.2s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 2;
	}
	.dropdown-select.open .dropdown-options {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		overflow: hidden;
	}
	.dropdown-option {
		position: relative;
		display: block;
		padding: 6px 11px;
		font-size: 13px;
		font-weight: 500;
		color: #232d3d;
		line-height: 1.2;
		cursor: pointer;
		transition: all 0.2s;
		overflow:hidden;
	}
	.dropdown-option:hover {
		cursor: pointer;
		background-color: #b2b2b2;
	}
	.dropdown-option.selected {
		color: #ffffff;
		background-color: #305c91;
	}
	.arrow {
		position: relative;
		width: 9px;
		transition:all .2s
	}
}