.form-wrapper h2 {
	margin-bottom: 30px;
}

.form-fields-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media only screen and (max-width: 599px) {

	.form-fields-wrapper {
		grid-template-columns: repeat(1, 4fr);
		grid-template-rows: 4fr;
	}
}

.form-stoerfaelle h2 {
	color: #bf1728;
}

.form-stoerfaelle #submit-form {
	background-color: #bf1728;
}

.form-wrapper .important-fields { 
	display: none !important;
}

.form-wrapper .honeypot {
	display: none !important;
}

.form-wrapper label { 
	font-weight: 600;
	margin-bottom: 5px;
    display: inline-block;
}

.form-wrapper label.check-container {
	font-weight: inherit;
}

.form-wrapper input,
.form-wrapper select {
	width: 100% !important;
	max-width: 100% !important;
	padding: 1em;
}

.form-wrapper textarea {
    margin: 10px 0px 50px 0px;
    width: 100%;
    padding: 1em;
}

.form-wrapper #loader {
	display: none;
}

.form-wrapper #loader .loader-wrapper {
	position: fixed;
	background: #000000bd;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	color: white;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	font-size: 1.5em;
}

.form-wrapper #loader svg {
	width: 150px;
}

.has-white-background-color label {
	font-weight: 400;
}

/* The container */
.check-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked~.checkmark {
	background-color: #f2cc3e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.check-container input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
	left: 8px;
	top: 3px;
	width: 10px;
	height: 15px;
	border: solid white;
	border-width: 0 5px 5px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 0;
	padding: 0.7em;
	height: auto;
	width: 100%;
	max-width: 500px;
}

#submit-form {
	border: none;
}

.response-notice {
	padding: 2em;
	background-color: #f2cc3e;
}