@charset "UTF-8";
.persoonsgegevens {
	padding-top: 30px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
.persoonsgegevens .container-input {
	position: relative;
	margin-bottom: 10px;
}
.persoonsgegevens input,
.persoonsgegevens input:focus,
.persoonsgegevens textarea {
	position:relative;
	padding-top: 10px;
	padding-left: 14px;
	background-color: #fff;
	border: 0;
	outline: 0;
	border: 1px solid #6f818d;
	margin-bottom:3px;
	border-radius: 8px;
	font-family: "myriad-pro", sans-serif;
	font-size: 16px;
}
.persoonsgegevens input {
	width: 100%;
	height: 55px;
	box-sizing: border-box;
}
.persoonsgegevens textarea {
	box-sizing: border-box;
	height: 100px;
	resize: none;
	width: 100%;
	padding-top: 18px;
	padding-right: 16px;
	padding-bottom: 12px;
	padding-left: 20px;
	outline: 0 none;
}
.persoonsgegevens p {
	padding-left: 20px;
    padding-top: 10px;
}
/* dikke lijn indien actief */
.persoonsgegevens input:focus,
.persoonsgegevens textarea:focus {
	border: 1px solid #153477;
	box-shadow: rgba(0,56,120,0.2) 0px 0px 0px 4px;
}
/* FLOATING LABEL */
.persoonsgegevens .floating-label {
	position: absolute;
	pointer-events: none;
	left: 10px;
	top: 20px;
	height: 15px;
	line-height: 15px;
	transition: 0.2s ease top;
	z-index: 2;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
}
.persoonsgegevens input:focus ~ .floating-label,
.persoonsgegevens input:not(:focus):valid ~ .floating-label,
.persoonsgegevens textarea:focus ~ .floating-label,
.persoonsgegevens textarea:not(:focus):valid ~ .floating-label {
	top: 5px;
	bottom: 10px;
	font-size: 12px;
	color:#555;
	background-color: #f0f2f6;
}
/*
ERROR
*/
.persoonsgegevens input.error,
.container-select.fout .select-css {
	border: 1px solid #ff3300;
	background-color: #fff;
	color: #222;
}
.container-select.fout::after {
	color: #de4b2d;
}
.persoonsgegevens .errorRow,
.persoonsgegevens .appValueColumn {
	position: relative;
	clear: both;
}
.persoonsgegevens .container-input label.error,
.persoonsgegevens .container-select label.error,
.persoonsgegevens .appValueColumn label.error {
	position: relative;
	display: inline-block;
	left: 0px;
	top: 0px;
	z-index:1;
	color: red;
	margin-top: 0px;
	font-size: 14px;
	line-height: 16px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 5px;
}
.persoonsgegevens .container-select label.error {
	top: 5px;
}
/* lijn */
.persoonsgegevens input.error,
.select-css.error,
.persoonsgegevens .checkbox > input.error,
.persoonsgegevens .radiobutton > input.error,
.persoonsgegevens textarea.error {
	border: 1px solid red;
	/*box-shadow: rgba(252,2,43,0.3) 0px 0px 0px 4px;*/
}
/* kruisje */
.persoonsgegevens .container-input input.error ~ .icon-status:before,
.persoonsgegevens textarea.error ~ .icon-status:before {
	position: absolute;
	font-family: "icons";
	content: "\74";
	font-size: 22px;
	text-align: center;
	color: red;
	height: 30px;
	width: 30px;
	line-height: 30px;
	top: 12px;
	right: 10px;
	z-index: 3;
}
.persoonsgegevens input.error:not(:focus):valid ~ .icon-status:before {
	content: "\74";
	color: red;
}
.persoonsgegevens select.error:not(:focus):valid ~ .icon-status:before {
	color: red;
}
/* SELECT OPTION */
.container-select {
	position: relative;
	padding-bottom: 14px;
}
/* Arrow */
.container-select::after {
	content: "\68";
	font-family: "icons";
	font-size: 22px;
	line-height: 30px;
	position: absolute;
	top: 13px;;
	right: 0;
	padding: 0 18px;;
	cursor: pointer;
	pointer-events: none;
}
.container-select :hover::after {
	color: #222;
}
.container-select.goed::after {
	content: "\50";
	font-size: 20px;
	top: 10px;
	right: -2px;
	color: #6C3;
}
.select-css {
	position: relative;
	display: block;
	padding-left: 18px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #6f818d;
	box-shadow: 0 0px 0 0px rgba(0,0,0,.04);
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	height: 55px;
	border-radius: 8px;
}

.select-css::-ms-expand {
	display: none;
}
.select-css:focus {
	outline: none;
	box-shadow: rgba(0,56,120,0.2) 0px 0px 0px 4px;
}
.select-css option {
	font-weight:normal;
}
/* haal stippellijn weg */
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}
/* Checkbox and Radio Buttons */
.persoonsgegevens .container-radio-buttons-checkboxes {
	padding-bottom: 20px;
	padding-left: 20px;
}
.persoonsgegevens .checkbox,
.persoonsgegevens .radiobutton {
	display: block;
	cursor: pointer;
	position: relative;
}
.persoonsgegevens .checkbox span,
.persoonsgegevens .radiobutton span{
	padding-left: 30px;
	line-height: 22px;
	position: relative;
	display: block;
	padding-bottom: 10px;
}
.persoonsgegevens .checkbox > input,
.persoonsgegevens .radiobutton > input{
	height: 16px;
	width: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	border: 1px solid #555;
	border-radius: 50%;
	border-radius: 5px;
	top: 4px;
	outline: none;
	background-color: #fff;
	cursor: pointer;
	float: left;
}
.persoonsgegevens .checkbox > input:checked,
.persoonsgegevens .radiobutton > input:checked{
	border: 1px solid #555;
}
.persoonsgegevens .checkbox > input:checked::before,
.persoonsgegevens .radiobutton > input:checked::before {
	content: "";
	display: block;
	position: absolute;
	left: 3px;
	top: 3px;
	width: 8px;
	height: 8px;
	background-color: #222;
	border-radius: 50%;
	border-radius: 3px;
}
.persoonsgegevens .checkbox label.error,
.persoonsgegevens .radiobutton label.error{
	position: absolute;
	top: -26px;
	left: 0px;
}
/*
SUCCES
*/
.persoonsgegevens input:not(:focus):valid ~ .icon-status {
}
.persoonsgegevens input.error:not(:focus):valid ~ .icon-status,
.persoonsgegevens select.error:not(:focus):valid ~ .icon-status {
	display: none;
}
.persoonsgegevens input:not(:focus):valid ~ .icon-status:before,
.persoonsgegevens select:not(:focus):valid ~ .icon-status:before,
.persoonsgegevens textarea:not(:focus):valid ~ .icon-status:before {
	position: absolute;
	font-family: "icons";
	content: "\50";
	font-size: 18px;
	text-align: center;
	color: #6C3;
	height: 30px;
	width: 30px;
	line-height: 30px;
	top: 10px;
	right: 10px;
	z-index: 4;
}
/* nodig om recaptcha te kunnen schalen
.persoonsgegevens {
	display: contents;
}
*/
.persoonsgegevens #recaptcha-wrapper {
	margin-bottom: 30px;
}
/* algemene voorwaarden */
.algemene-voorwaarden {
	position: relative;
	margin-bottom: 20px;
}
.quiz-voorwaarden {
	font-size: 13px;
	line-height: 20px;
	padding-top: 20px;
	padding-bottom: 10px;
}
.quiz-container .algemene-voorwaarden .toggle {
	background-color: #aaa;
}
.quiz-voorwaarden h2 {
	font-weight: 700;
}
.quiz-voorwaarden ul {
	padding-left: 0px;
	padding-top: 20px;
	margin-left: -10px;
	padding-right: 20px;
}
.clear-both {
	clear: both;
}

/* LERAREN */
.veilig-fietsen.leraren-ouders .container-formulier-leraren {
    padding-top: 50px;
}
.veilig-fietsen.leraren-ouders .container-formulier-leraren .inzetje {
    float: right;
    width: 100px;
    margin-top: -30px;
}
@media only screen and (min-width: 768px) {
    .veilig-fietsen.leraren-ouders .container-formulier-leraren .inzetje {
        width: 150px;
        margin-top: -50px;
        padding-right: 50px;
    }
}
.veilig-fietsen.leraren-ouders .formulier-container {
	position: relative;
	width: 100%;
	max-width: 700px;
	padding-top: 10px;
	padding-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	background-color: #e9f5d8;
	border-radius: 15px;
	margin-bottom: 30px;

}
.veilig-fietsen.leraren-ouders form {
	margin-left: 12%;
	margin-right: 12%;
}
.veilig-fietsen.leraren-ouders .persoonsgegevens {
	padding-top: 30px;
	position: relative;
	width: 100%;
	border-radius: 10px;
}
.veilig-fietsen.leraren-ouders .persoonsgegevens p {
	font-size: 15px;
	line-height: 16px;
	margin-bottom: 20px;
	padding-top: 10px;
}
.persoonsgegevens button {
	position: relative;
	display: inline-block;
	background-color: #ED2A7E;
	color: #fff;
	-webkit-appearance: button;
	-webkit-border-radius: 10px;
	user-select: none;
	font-weight: 700;
	height: 45px;
	width: 120px;
	border-radius: 10px;
	font-size: 16px;
	line-height: 42px;
	z-index: 98;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 20px;
	float: right;
	float: left;
	border: 0;
}
.persoonsgegevens button:hover {
	cursor: pointer;
	background-color: #261f5b;
}
.veilig-fietsen.leraren-ouders .persoonsgegevens .container-radio-buttons-checkboxes {
	padding-bottom: 0px;
}