*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
html,body{
	background: #eee;
}

a,
a:visited{
	color: #0000ff;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: underline;
}
.required:after{
	content: '*';
	color: #ff0000;
}
/**
 * wrapper
 */

.wrapper{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;
	background: #fff;
}
/**
 * header
 */

.wrapper > .header{
	position: relative;
	flex: 0 0 auto;
	width: 75%;
	margin: 0 auto;
	padding: 25px;
	font-size: 32px;
	text-align: center;
}
.wrapper > .header > .image > img{
	max-width: 100%;
}
.wrapper > .header > .title{
	position: relative;
	font-size: 32px;
}


/**
 * content
 */

.wrapper > .content{
	position: relative;
	flex: 1 1 auto;
	width: 800px;
	margin: 0 auto;
	padding: 25px;
}
.wrapper > .content > p{
	position: relative;
	margin: 10px 0;
}
.wrapper > .content > .success{
	position: relative;
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #006600;
	background: #99c199;
	font-size: 18px;
}
.wrapper > .content > .box-container{
	position: relative;
	margin: 25px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrapper > .content > .box-container > .title{
	position: relative;
	flex: 1 1 100%;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 25px 0;
	border-bottom: 1px solid #000;
}
.wrapper > .content > .box-container > .rubriek{
	position: relative;
	flex: 1 1 50%;
	padding: 5px;
}
.wrapper > .content > .box-container > .rubriek > .content{
	position: relative;
	display: flex;
	padding: 5px;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	border: 1px solid #ccc;
}

.wrapper > .content > .box-container > .link{
	position: relative;
	flex: 0 0 100%;
	padding: 5px;
	max-width: 100%;
}
.wrapper > .content > .box-container > .link > .content{
	position: relative;
	border: 1px solid #ccc;
}
.wrapper > .content > .box-container > .link > .content > .banner{
	position: relative;
	border-bottom: 1px solid #ccc;
}
.wrapper > .content > .box-container > .link > .content > .banner > img{
	position: relative;
	max-width: 100%;
	margin-bottom: -6px;
}
.wrapper > .content > .box-container > .link > .content > .name{
	position: relative;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	padding: 5px;
}
.wrapper > .content > .box-container > .link > .content > .url{
	position: relative;
	padding: 5px;
}
.wrapper > .content > .box-container > .link > .content > .date-cat{
	position: relative;
	padding: 5px;
}
/**
 * footer
 */

.wrapper > .footer{
	position: relative;
	flex: 0 0 auto;
	border-top: 1px solid #aaa;
	background: #eee;
	padding: 10px;
	font-size: 12px;
	text-align: center;
}

/**
 * form
 */

.form{
	position: relative;
	margin: 25px 0;
}
.form > .errors{
	position: relative;
	width: 500px;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #ff0000;
	background: #ffb2b2;
}
.form > .errors > .title{
	position: relative;
	font-size: 18px;
}
.form > .errors > ul{
	padding: 0 0 0 25px;
}
.form > .title{
	position: relative;
	font-size: 16px;
	font-weight: bold;
	margin: 10px;
}
.form > .row{
	position: relative;
	margin: 10px;
}
.form > .row > label{
	position: relative;
	display: block;
	font-weight: bold;
	margin: 5px 0;
}
.form > .row > input[type="text"],
.form > .row > input[type="password"],
.form > .row > select,
.form > .row > textarea{
	position: relative;
	width: 100%;
	padding: 5px;
	border: 1px solid #aaa;
	background: #fff;
	box-shadow: inset 0 2px 2px #ccc;
	outline: none;
	resize: none;
}
.form > .row > input[type="text"].error,
.form > .row > input[type="password"].error,
.form > .row > select.error,
.form > .row > textarea.error{
	border: 2px solid #ff0000 !important;
}
.form > .row > button[type="submit"]{
	position: relative;
	padding: 5px;
	font-weight: bold;
	border: 1px solid #aaa;
	background: linear-gradient(#eee,#ddd);
	outline: none;
}
.form > .row > button[type="submit"]:active{
	background: linear-gradient(#ddd,#eee);
	box-shadow: inset 0 0 4px 0 #aaa;
}