@font-face {
	font-family: 'Schrift';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/Regular.eot');
	src: url('fonts/Regular.eot?#iefix') format('embedded-opentype'),
		url('fonts/Regular.woff2') format('woff2'),
		url('fonts/Regular.woff') format('woff'),
		url('fonts/Regular.ttf') format('truetype'),
		url('fonts/Regular.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'Schrift';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/Bold.eot');
	src: url('fonts/Bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/Bold.woff2') format('woff2'),
		url('fonts/Bold.woff') format('woff'),
		url('fonts/Bold.ttf') format('truetype'),
		url('fonts/Bold.svg#svgFontName') format('svg');
}

* {
	box-sizing: border-box;
	font-size: 0.9rem;
	margin: 0px;
	padding: 0px;
	outline-width: 0px;
}

a:link {
	color: #000;
	text-decoration: underline;
}

a:active {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #414B4B;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: underline;
}

body {
	background-color: #FFF;
	color: #414B4B;
	font-family: 'Schrift', Arial, sans-serif;
	font-size: 100.01%;
	height: 100%;
    margin: 0;
    padding: 0;
}

form button {
	background-color: #414B4B;
	border: 0px;
	box-sizing: border-box;
	color: #FFF;
	cursor: pointer;
	font-weight: bold;
	padding: 7px;
}

form input,
form select,
form textarea {
	background-color: #FFF;
	border: 1px solid #414B4B;
	color: #414B4B;
	font-size: 0.9rem;
	padding: 7px;
	width: 100%;
}

form input[type=checkbox] {
  display: none;
}

form input[type=checkbox] + label {
	background-color: #EEE;
	border: 2px solid #DDD;
	border-radius: 30px;
	content: "";
	display: inline-block;
	height: 34px;
	margin-right: 5px;
	margin-top: 5px;
	transition: background-color 0.5s linear;
	width: 60px;
}

form input[type=checkbox] + label:hover {
	cursor: pointer;
}

form input[type=checkbox] + label::before {
	background-color: #FFF;
	border-radius: 30px;
	box-shadow: 0px 0px 5px #AAA;
	content: "";
	display: block;
	float: left;
	height: 30px;
	margin-right: 5px;
	transition: margin 0.1s linear;
	width: 30px;
}

form input[type=checkbox]:checked+label{
	background-color: #414B4B;
}

form input[type=checkbox]:checked+label::before {
	margin: 0 0 0 30px;
}

form input[type=radio] {
	margin-right: 10px;
	width: auto;
}

form label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

form textarea {
	min-height: 150px;
}

h1 {
	font-size: 1.1rem;
	margin-bottom: 10px;
}

p {
	margin-bottom: 10px;
}

.big {
	font-size: 1.6rem;
}

.c {
	text-align: center;
}

.content {
	margin: 0 auto;
	margin-top: 150px;
	max-width: 800px;
}

.e {
	background-color: #F8D7DA;
	border: 1px solid #F5C6CB;
	border-radius: 0.25rem;
	color: #721C24;
	box-sizing: border-box;
	margin-bottom: 1rem;
	padding: 0.75rem 1.25rem;
	width: 100%;
}

.n {
	background-color: #cce5ff;
	border: 1px solid #b8daff;
	border-radius: 0.25rem;
	color: #004085;
	box-sizing: border-box;
	margin-bottom: 1rem;
	padding: 0.75rem 1.25rem;
	width: 100%;
}

.o {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 0.25rem;
	color: #155724;
	box-sizing: border-box;
	margin-bottom: 1rem;
	padding: 0.75rem 1.25rem;
	width: 100%;
}