* {
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}
html,
body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	height: 100%;
	background: rgb(46, 46, 46);
}
body {
	background: linear-gradient(
		-180deg,
		rgba(66, 66, 66, 1) 0%,
		rgba(46, 46, 46, 1) 10%,
		rgba(108, 108, 108, 1) 50%,
		rgba(46, 46, 46, 1) 80%
	);
	background-repeat: no-repeat;
	color: white;
}
#loading {
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#loading .hero {
	max-width: 100%;
	padding: 0 24px;
}
#app-status {
	padding-top: 1em;
}
#main {
	display: flex;
	flex-direction: column;
}
#main > div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}
.hero > img {
	max-width: 100%;
}
form {
	width: 80%;
	margin: 0 auto;
	display: block;
	font-size: 16px;
	margin-bottom: 1em;
}
label {
	text-transform: uppercase;
	color: white;
}
label {
	margin-top: 1em;
	display: block;
}
label.first {
	margin-top: 0;
}
label > span {
	display: block;
	margin: 0.5em 0.25em 0.25em;
}
select > option {
	text-transform: uppercase;
}
input#form-submit {
	display: block;
	margin-top: 1em;
	text-transform: uppercase;
}
input,
textarea,
select {
	width: 100%;
	display: inline-block;
	font-size: 16px;
	margin: 0;
	padding: 0.5em;
	border: none;
	border-radius: 0.25em;
	background: #262626;
	color: whitesmoke;
}
input[type="submit"] {
	background: #161616;
}
input[type="submit"]:hover {
	background: #262626;
	cursor: pointer;
}
textarea {
	min-height: 6em;
}
#form-output {
	padding: 3em 1em;
	background: #00000029;
	border-radius: 0.25em;
}
.hidden {
	display: none !important;
}

#gdpr-wrap{
    margin-top: 1em;
    display: flex;
    flex-direction: row;
}
.gdpr-check{
    flex-basis: 30px;
    flex-grow: 0;
    align-items: center;
}
.gdpr-text{
    flex-grow: 1;    
}