html {
    box-sizing: border-box;
    height: 100%;
}

body {
	background: #233a40; 
	color: #fff;
	font: 16px/1.8 sans-serif;
	height:100%;
	font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;

	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container {
	height: 100%;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	overflow: hidden;
}

.viezeContainer {
	height: 160px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;
}

h2#viezetekst {
	text-align: center;
	color:#fff;
	font: 16vw/.8 "Changa One", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	display: block;
	text-shadow:#253e45 -1px 1px 0,
	#253e45 -2px 2px 0,
	#d45848 -3px 3px 0,
	#d45848 -4px 4px 0;
	margin: 0 auto 5%;
	margin-bottom:0px;
	width: 100%;
} 

h1.klinktvies {
	text-align: center;
	margin-top:10px;
	width: 100%;
	font-size:1em;
}

.reloadicon {
	fill: rgba(255,255,255,.4);
	text-align: center;
	cursor: pointer;
	width:100%;
}

.reloadicon:hover {
	fill: rgba(255,255,255,.8);
}

.btnUitlegModal {
    float: left;
    background-color: rgba(255,255,255,.4);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.23);
    font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;
    cursor: pointer;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
    display: flex;
    height:50px;
    min-width: 50px;
    width: fit-content;
    margin:20px;
    color: #233a40;
}

.btnUitlegModal:hover {
    transition: all 200ms ease-in;
    background-color: rgba(255,255,255);
    cursor: pointer;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.0);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #233a40;
    padding: 1rem 1.2rem;
    min-width: 20rem;
    max-width: 24rem;
    border-radius: 0.5rem;
}

.modal-content h1{
	font: 30px/.8 "Changa One", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	line-heigt: 100%;
	margin-top: 0;
	margin-bottom: 1;
}

.modal-content p{
	margin-top: 0;
	margin-bottom: 0;
}

.close-button {
    width: 30px;
    height: 30px;
    background-color: darkgray;
    border-radius: 100%;
    box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 20%);
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 2;
    color: #000;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: #fff;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
} 

.suggestions {
    position: fixed;
	bottom: 0px;
	right: 0px;
    width: 100%; /* 100% of body width */
}

.suggestion_inputbox {
	padding:10px;
}

.suggestion_link {
	float: right;
	background-color: rgba(255,255,255,.4);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.23);
	font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;
	cursor: pointer;
	align-items: center;
	border-radius: 500px;
	display: flex;
	height:50px;
	justify-content: center;
	min-width: 120px;
	width: fit-content;
	margin:20px;
	color: #233a40;
}

.suggestion_link:hover {
	transition: all 200ms ease-in;
	background-color: rgba(255,255,255);
	cursor: pointer;
}

.suggestion_form_field {
	width:100%;
	min-width: 200px;
	background: #fff;
	color: #a3a3a3;
	font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.23);
	border: 0;
	outline: 0;
	padding: 22px 18px;
}
.suggestion_submit_button {
	width:100%;
	background: #FF8170;
	color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 2px;
	padding: 22px 36px;	
	display: inline-block;
	font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;
	border: 0;
	outline: 0;
	transition: all 200ms ease-in;
	cursor: pointer;
}

.suggestion_submit_button:hover {
	background: #d45848;
}
 
.suggestion_submit_button:active {
	background: #FF8170;
	box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2);
}

#msgSubmit {
	height:40px;
	padding:10px;
}

.submition_succesvol {
	background-color: #8db9c4;
}

.submition_mislukt {
	background-color: #88292F;
}


@media all and (min-width: 768px) { 

	h2#viezetekst {
	font: 120px/.8 "Changa One", Helvetica, Arial, sans-serif;

	}

	.suggestion_link {
		height: 40px;
		justify-content: center;
	}

	.btnUitlegModal {
		height: 40px;
		min-width: 40px;
		justify-content: center;
	}

	.suggestion_inputbox {
		float:right;
	}

	.suggestion_form_field {
		width: auto;
		min-width:300px;
		float:left;
	}

	.suggestion_submit_button {
		width: auto;
		float:left;
	}

} 

@media all and (min-width: 1200px) {

	h2#viezetekst {
	font: 10vw/.8 "Changa One", Helvetica, Arial, sans-serif;
	}

	h1.klinktvies {
		font-size: 1.5vw;
	}
} 