/* CSS reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
	list-style-type: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end CSS style reset */

button {
	cursor: pointer;
}

/* boldness text */
.thin {
	font-weight: 100;
}

.normal {
	font-weight: 400;
}

.semibold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

/* text sizes */
.tiny-font-size {
	font-size: 0.5rem;
}

.small-font-size {
	font-size: 0.75rem;
}

.normal-font-size {
	font-size: 1rem;
}

.medium-font-size {
	font-size: 1.5rem;
}

.large-font-size {
	font-size: 2rem;
}

.extra-large-font-size {
	font-size: 2.5rem;
}

/* flex classes for responsive design stuff */
.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-row-reverse {
	display: flex;
	flex-direction: row-reverse;
}

.flex-column-reverse {
	display: flex;
	flex-direction: column-reverse;
}

.flex-space-between {
	justify-content: space-between;
}

.flex-align-center {
	align-items: center;
}

.flex-justify-content-center {
	justify-content: center;
}

.flex-grow {
	flex-grow: 1;
}

/* ensure footer is always at bottom page (in the event of little to none content in container) */
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container {
    flex-grow: 1;
}

/* basic styling for the headerbar */
#logo {
	height: 2.5rem;
}

.topbar,
.bottombar {
	padding: 0 5rem;
}

.session-status {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	padding-top: 0.5rem;
}

.session-status a {
	text-decoration: none;
}

ul.menu a {
	text-decoration: none;
}

.navbar {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	min-height: 4rem;
	padding-bottom: 1.5rem;
}

ul.menu {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

ul.menu > li {
	position: relative;
	flex-shrink: 0;
}

ul.submenu > li {
	position: relative;
}

.navbar a.logo {
	flex-grow: 1;
}

.responsive-display {
	display: none;
}

/* basic styling for the footer */
.logo-image img {
	height: 2.5rem;
}

.footer {
	background-color: #F4F7FC;
}

.footer-content {
	padding: 2.5rem 5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 0.75rem
}

.footer-block {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.footer-block ul {
	padding-left: 0.5rem;
}

.footer-block-title {
	padding-right: 0.5rem;
}

.footer-block a {
	text-decoration: none;
}

.footer .social-media-footer {
	flex-direction: column;
	justify-content: space-around;
}

.footer-block-title {
	font-weight: 700;
	text-align: right;
}

.social-media-footer {
	text-align: right;
}

.social-media-footer .social-media {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.social-media-footer .social-media > a img {
	height: 1rem;
}

@media screen and (max-width: 1024px) {
	.footer .social-media-footer {
		min-width: 8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

/* basic styling loginpage */
.module-login {
	padding: 0 5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: start;
	color: #3C3C3C;
}

.form-container {
	padding-bottom: 5rem;
}

.module-login br {
	display: none;
}

.module-login label {
	font-weight: 700;
}

.module-login button {
	border: none;
}

#existinguser,
#newuser {
	width: 46%;
	padding-bottom: 1.5rem;
}

.titleexistinguser,
.titlenewuser {
	font-size: 1.5rem;
	padding: 1.5rem 2rem 0.5rem 2rem;
}

#existinguser > form,
#newuser > form {
	padding: 0.5rem 2rem;
}

#existinguser > a {
	margin-left: 2rem;
}

#existinguser table,
#newuser table {
	width: 100%;
}

#existinguser table tr,
#newuser table tr {
	display: flex;
	flex-direction: column;
	padding: 0.5rem 0;
}

.textfield {
	width: 100%;
}

.combobox {
	width: 10rem;
}

.combobox,
.textfield,
.datefield {
	font-size: inherit;
	border-radius: 0.250rem;
	height: 3rem;
	border: 1px solid #17212B50;
	background-color: #FFFFFF;
	padding: 0.75rem;
}

.combobox {
	padding: unset;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

textarea {
	font-family: inherit;
	font-size: inherit;
	border-radius: 0.250rem;
	border: 1px solid #17212B50;
	background-color: #FFFFFF;
	width: 100%;
	padding: 0;
}

.checkbox {
	width: 1rem;
	height: 1rem;
}

@media screen and (max-width: 1024px) {
	html {
		font-size: 200%;
	}

	.module-login {
		flex-direction: column;
	}

	#existinguser,
	#newuser {
		width: 100%;
	}

	.titleexistinguser,
	.titlenewuser,
	.page-content,
	#existinguser > form,
	#newuser > form {
		padding: 0.5rem;
	}

	#existinguser > a {
		margin-left: 0.5rem;
	}
	
	.module-login {
		padding: 0;
	}
}

/* make sure navbar checkbox is hidden */
#sz-navbar-check {
	display: none;
}

/* media queries */
@media (min-width: 1024px){
	.module-login {
		margin-top: 1rem;
	}

	.session-status > span,
	ul.submenu > li {
		padding: 0.5rem;
	}

	ul.menu > li {
		margin: 1rem 0.5rem;
	}

	ul.submenu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 2rem;
		background-color: white;
		z-index: 1;
		box-shadow: 0px 1px 3px #17212B66;
		min-width: 100%;
	}

	ul.menu li:hover ul.submenu {
		display: flex;
	}
}

@media (max-width: 1024px) {
	.headerbar {
		min-height: 4rem;
	}

	ul.menu > li {
		padding-top: 0.5rem;
	}

	ul.menu > li > a {
		margin-left: 0.5rem;
		display: block;
		margin-bottom: 0.5rem;
	}

	ul.submenu {
		margin-top: 0.5rem;
		background-color: white;
	}

	ul.submenu > li {
		padding: 0.5rem 0.5rem 0.5rem 1rem;
	}

	.navbar {
		justify-content: space-between;
		align-items: center;
		position: fixed;
		background-color: #FFFFFF;
		top: 0;
		z-index: 1;
	}
	
	.navbar {
	  padding: 0 1rem;
	  /* Firefox */
	  width: -moz-calc(100% - 2rem);
	  /* WebKit */
	  width: -webkit-calc(100% - 2rem);
	  /* Opera */
	  width: -o-calc(100% - 2rem);
	  /* Standard */
	  width: calc(100% - 2rem);
	}
	
	.menu-wrapper {
		display: none;
	}
	
	.menu-wrapper {
	  /* Firefox */
	  width: -moz-calc(100% - 3rem);
	  /* WebKit */
	  width: -webkit-calc(100% - 3rem);
	  /* Opera */
	  width: -o-calc(100% - 3rem);
	  /* Standard */
	  width: calc(100% - 3rem);
	  max-width: 24rem;
	  min-width: 12rem;
	  position: fixed;
	  top: 4rem;
	  bottom: 0;
	  left: 0;
	  background-color: #FFFFFF;
	  z-index: 1;
	  box-shadow: 0px 1px 3px #17212B66;
	  overflow-y: auto;
	}
	
	.sz-navbar-hamburger:before { 
	  content:'\2630';
	  width:1.5rem;
	  display: block;
	  font-size: 2rem;
	}
	
	.navbar #sz-navbar-check:checked ~ .menu-wrapper {
	  display: block;
	}
	
	.navbar #sz-navbar-check:checked ~ .sz-navbar-hamburger:before {
	  content:'\2716';
	}
	
	.navbar a.logo {
		flex-grow: 0;
	}
  
	ul.menu {
	  flex-direction: column;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-block + .footer-block {
		margin-top: 1rem;
	}

	.social-media-footer {
		text-align: center;
	}

	.responsive-display {
		display: block;
	}
}

/*
@media (min-width: 375px) and (max-width: 1024px){
	.footer-block-title,
	.footer-block ul {
		width: calc(50% - 0.5rem);
	}
}
*/
@media (max-width: 1024px) {
	.footer-content {
		padding: 1.5rem 2rem;
		font-size: 120%;
	}

	.footer li {
		margin-top: 1rem;
	}

	.footer-block {
		flex-direction: column;
	}

	.footer-block-title {
		text-align: left;
	}

	.footer-block ul {
		padding-left: 0;
	}
	
	.footer-block-title {
		padding-right: 0;
	}

	.logo-image {
		margin-right: auto;
		margin-left: auto;
	}
}




.widget-match-overlay {
	z-index:100;
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
	display:none;
}

.widget-match-overlay form {
	padding:0px;
	margin:0px;
	width:600px;
	position:relative;
	left:50%;
	top:20%;
	margin-left:-300px;
	background-color:white;
	max-height:80%;
	overflow:auto;
	box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.1);
}

.widget-match-overlay form h2 {
	padding:24px 32px 12px 32px;
	margin-bottom:0px !important;
	color:#ff8d00;
	font-size:28px;
	font-family:Lato, Arial, sans-serif;
}

.widget-match-overlay form p {
	padding:0px 32px;
	margin-bottom:16px;
}

.widget-match-overlay table {
	margin: 0px 32px 16px 32px;
}

.widget-match-overlay td:first-child {
	padding-right: 16px;
}

#widget-match-download {
	margin-left:32px;
	margin-bottom:20px;
	margin-top:20px;
}

.widget.widget-match .button.widget-match-overlay-close {
	position:absolute;
	top:8px;
	right:16px;
	width:20px;
	height:20px;
	background-color:white !important;
	background-image:url(../iconen/Sluiten-grijs.svg);
	background-size:20px 20px;
	background-repeat:no-repeat;
	background-position:center center;
}

body.noscroll {
	position:fixed;
	overflow-y: scroll;
}
