* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	min-height: 100%;
}

body {
	position: relative;
	height: 100%;
	min-height: 100%;
	font-size: 17px;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	text-align: left;
	overflow-y: scroll;
	background: url('/styles/wepa2025/Achtergrond_landscape.jpg') no-repeat left bottom fixed;
	background-color: rgb(249, 232, 195);
	background-size: cover;
}

#container {
	position: relative;
	margin: 0 auto;
	padding-bottom: 150px;
}

#header {
	height: 15px;
}

#subcontainer {
	padding: 20px 0;
	padding-top: 160px;
	background-image: url('/styles/wepa2025/wepa_logo.png');
	background-repeat: no-repeat;
	background-position: center 15px;
	background-size: auto calc(100% - 100px);
	min-height: 20px;
	margin: 0 auto;
	width: 750px;
}

#eventlogo {
	display: none;
}

#menu {
	display: block;
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

#menu a {
	display: inline-block;
	margin-left: 35px;
	font-size: 21px;
	text-decoration: none;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	background-color: #cb2066;
	color: white;
	padding: 10px 20px;
}

#menu a:first-child {
	margin-left: 0;
}

#menu a:hover, #menu a.selected {
	background-color: #1b3152;
	color: white;
}

#pagina {
	width: 750px;
	margin: 0 auto;
	padding: 20px 0;
}

#content {
	padding: 20px;
	min-height: 400px;
	text-align: left;
	line-height: 27px;
	font-size: 0.85rem;
	color: #ffffff;
	background-color: rgba(27, 49, 82, 0.95);
	border-top: 6px solid rgba(203, 32, 102, 0.85);
	border-bottom: 6px solid rgba(203, 32, 102, 0.85);
}

#content a {
	color: #cb2066;
	text-decoration: underline;
}

#footer {
	display: none;
}

h1 {
	font-size: 30px;
	margin-bottom: 15px;
	font-weight: bold;
	color: #ffffff;
	text-align: left;
	text-transform: uppercase;
}

form {
	text-align: left;
}

div.veld {
	margin: 10px 0;
}

input {
	font: 14px Arial;
	padding: 4px;
}

input[type='submit'] {
	font: 16px Arial;
	font-weight: bold;
	padding: 6px 10px;
	background-color: #cb2066;
	color: white;
	border: 1px solid #cb2066;
}

input[type='submit']:hover {
	background-color: #00cdd1;
	color: white;
	border: 1px solid #00cdd1;
}

textarea {
	width: 500px;
	height: 100px;
}

select {
	font: 13px Arial;
}

input.tekst {
	width: 350px;
}

input.getal {
	width: 100px;
}

input.telnummer {
	width: 100px;
}

input.achternaam {
	width: 250px;
}

input.voornaam {
	width: 100px;
}

input.tussenvoegsel {
	width: 80px;
}

input.voorletter {
	width: 30px;
}

input.postcode {
	width: 80px;
}

input.cijferspostcode {
	width: 50px;
}

input.letterspostcode {
	width: 100px;
}

input.huisnummer {
	width: 70px;
}

input.button {
	margin: 20px 0;
}

input.terug {
	float: left;
	width: 120px;
}

input.verder {
	float: right;
	min-width: 120px;
}

span.fout {
	color: red;
}

span.verplicht {
	color: red;
}

table.overzicht {
	color: #ffffff;
	width: 99%;
	border-collapse: collapse;
	border: 0;
}

table.overzicht form input {
	margin: 0;
}

tr.kop {
	font-weight: bold;
}

td {
	padding-left: 5px;
	padding-right: 5px;
}

table.inschrijvingen {
	font: 13px Arial;
}

table.inschrijvingen td {
	padding-bottom: 2px;
	vertical-align: top;
}

textarea.openvraag {
	height: 100px;
	width: 400px;
}

body::after {
	content: "";
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: rgba(27, 49, 82, 0.95);
}

/*Responsive*/
@media (max-width: 768px) {
	* {
		box-sizing: border-box;
	}

	#subcontainer {
		width: auto;
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 70px;
		background-position: center center;
		background-size: auto 50px;
		min-height: 60px;
	}

	#pagina {
		width: auto;
		max-width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}

	textarea, input {
		max-width: 100%;
	}

	#menu {
		position: absolute;
		top: 35px;
		right: 10px;
		width: 45px;
		height: 45px;
		margin: 0;
		padding: 0;
		background-color: #cb2066;
		border-radius: 4px;
		cursor: pointer;
		overflow: hidden;
		transition: all 0.3s ease;
		-webkit-tap-highlight-color: transparent;
	}

	#menu::before,
	#menu::after {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 25px;
		height: 3px;
		background-color: white;
		border-radius: 1px;
		transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
	}

	#menu::before {
		top: 11px;
		box-shadow: 0 9px 0 white;
	}

	#menu::after {
		top: 29px;
	}

	#menu a {
		display: none;
		position: absolute;
		opacity: 0;
		cursor: pointer;
		pointer-events: none;
	}

	#menu.open {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(27, 49, 82, 0.98);
		padding-top: 70px;
	}

	#menu.open::before {
		top: 50%;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
		box-shadow: none;
	}

	#menu.open::after {
		top: 50%;
		transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	}

	#menu.open a {
		display: block;
		position: static;
		opacity: 1;
		pointer-events: auto;
		width: 80%;
		max-width: 300px;
		margin: 0 auto 15px auto;
		padding: 15px 20px;
		font-size: 20px;
		text-align: center;
		text-transform: uppercase;
		font-weight: normal;
		text-decoration: none;
		background-color: #cb2066;
		color: white;
	}

	#menu.open a:first-child {
		margin-left: auto;
	}

	#menu.open a:hover,
	#menu.open a.selected {
		background-color: #00cdd1;
		color: white;
	}
}

iframe[src*="google.com/maps"] {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 700 / 400;
	max-width: 100%;
	border: 0;
	display: block;
	margin-top: 10px;
}