.miniform * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.miniform input[type="text"],
.miniform input[type="email"],
.miniform input[type="tel"],
.miniform input[type="url"],
.miniform textarea,
.miniform button[type="submit"] {
	font-weight: normal;
	font-family: inherit;
	font-size: inherit;
	font-color: #c8c6c3;
}

.miniform input[type="radio"],
.miniform input[type="checkbox"] {
	margin: 0 10px 0 5px;
	vertical-align: middle;
}

.miniform {}

.miniform .grouping {
	padding: 5px 0;
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid transparent;
	/* border-radius: 5px; */
	margin: 0 0 5px;
	width: 100%;
}

.miniform .full {
	clear: both;
}

.miniform .half {
	width: 49.5%;
	margin-right: 0.5%;
	float: left;
}

.miniform .onethird {
	width: 32.833%;
	margin-right: 0.5%;
	float: left;
}

.miniform .twothird {
	width: 66.167%;
	margin-right: 0.5%;
	float: left;
}

.miniform .pullright {
	margin-right: 0;
	float: right;
}

.miniform .half.pullright {
	width: 50%;
}

.miniform .onethird.pullright {
	width: 33.333%;
}

.miniform .twothird.pullright {
	width: 66.667%;
}

.miniform label {
	display: inline;
}

.miniform label label {
	vertical-align: middle;
	cursor: pointer;
}

.miniform .hidden {
	display: none;
}

.miniform .error {
	background: #ff4136;
	color: #fff;
	font-weight: bold;
	border: 1px solid #ff4136;
	/* border-radius: 5px;  */
	padding: 5px;
	margin-bottom: 10px;
}

.miniform .ok {
	background: #27ae60;
	color: #fff;
	font-weight: bold;
	border: 1px solid #27ae60;
	/* border-radius: 5px;  */
	padding: 5px;
	margin-bottom: 10px;
}

@media screen and (max-width: 468px) {
	.miniform .half {
		width: 100%;
		margin-right: 0;
		float: none;
	}

	.miniform .onethird {
		width: 100%;
		margin-right: 0;
		float: none;
	}

	.miniform .twothird {
		width: 100%;
		margin-right: 0;
		float: none;
	}

	.miniform .half.pullright {
		width: 100%;
	}

	.miniform .onethird.pullright {
		width: 100%;
	}

	.miniform .twothird.pullright {
		width: 100%;
	}

	.miniform .error {
		width: 100%;
	}
}

.miniform label span {
	cursor: pointer;
	display: inline-block;
	margin: 0 5px;
	font-weight: 900;
}

.miniform span span {
	cursor: default;
	color: #ff4136;
	display: inline-block;
	margin: 0px;
	font-weight: 900;
	vertical-align: baseline;
}

/* Formatierung Eingabefelder */

.miniform input[type="text"],
.miniform input[type="email"],
.miniform input[type="tel"],
.miniform input[type="url"],
.miniform select{
	width: 100%;
	height: auto;
	margin: 0 0 5px;
	padding: 12px;
	outline: 0 none;
	transition: border-color 0.3s ease-in-out;
	border-bottom: 2px solid #c8c6c3;
	border-left: 0px;
	border-top: 0px;
	border-right: 0px;
}

.miniform textarea{
	width: 100%;
	height: 250px;
	margin: 0 0 5px;
	padding: 12px;
	outline: 0 none;
	transition: border-color 0.3s ease-in-out;
	border: 2px solid #c8c6c3;
}

.miniform input[type="text"]:hover,
.miniform input[type="email"]:hover,
.miniform input[type="tel"]:hover,
.miniform input[type="url"]:hover,
.miniform select:hover{
	width: 100%;
	height: auto;
	margin: 0 0 5px;
	padding: 12px;
	outline: 0 none;
	transition: border-color 0.3s ease-in-out;
	border-bottom: 2px solid #c8c6c3;
	border-left: 0px;
	border-top: 0px;
	border-right: 0px;
}

.miniform textarea:hover{
	width: 100%;
	height: 250px;
	margin: 0 0 5px;
	padding: 12px;
	outline: 0 none;
	transition: border-color 0.3s ease-in-out;
	border: 2px solid #c8c6c3;
}

.miniform input[type="text"]:focus,
.miniform input[type="email"]:focus,
.miniform input[type="tel"]:focus,
.miniform input[type="url"]:focus,
.miniform select:focus{
	transition: border-color 0.3s ease-in-out;
	border-bottom: 2px solid #d00b00;
	border-left: 0px;
	border-top: 0px;
	border-right: 0px;
	outline: 0 none;
}

.miniform textarea:focus {
	transition: border-color 0.3s ease-in-out;
	border: 2px solid #d00b00;
	outline: 0 none;
}

.form-control:focus {}

.miniform textarea {
	height: 250px;
	max-width: 100%;
}


/* ================================
   SUBMIT BUTTON (CUSTOM DESIGN)
   ersetzt Standard miniform Button
   ================================ */

.miniform button[type="submit"]{
	width: 220px;
	position: relative;
	overflow: hidden;

	cursor: pointer;

	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;

	font-family: inherit;

	color: #9c8c79;
	background: #fff;

	border: 3px solid #9c8c79;

	padding: 1em;

	transition: color 1s, border-color 1s;
}

/* WICHTIG: Text über alles */
.miniform button[type="submit"]{
	z-index: 0;
}

/* Background Layer */
.miniform button[type="submit"]::before{
	content: "";
	position: absolute;
	inset: 0;

	width: 200%;
	height: 100%;

	background-image: linear-gradient(90deg, #d00b00 50%, #fff);

	transform: translateX(-100%);
	transition: transform .48s;

	z-index: -1;   /* <- entscheidend */
}

/* Hover Effekt */
.miniform button[type="submit"]:hover::before,
.miniform button[type="submit"]:focus-visible::before{
	transform: translateX(0);
}

/* Textfarbe sauber wechseln */
.miniform button[type="submit"]:hover,
.miniform button[type="submit"]:focus-visible{
	color: #fff;
	border-color: #d00b00;
	outline: none;
}

.miniform .missing {
	border: 1px solid #ff4136 !important;
}

::-webkit-input-placeholder {
	color: #888;
}

:-moz-placeholder {
	color: #888;
}

::-moz-placeholder {
	color: #888;
}

:-ms-input-placeholder {
	color: #888;
}

.captcha_table input[type="text"] {
	width: 50px !important;
}

.miniform .privacy .grouping {
	border: 1px solid #ccc;
}

.miniform .privacy label {
	font-size: 80%;
	font-weight: 300;
}

.miniform .privacy .missing label {
	color: #ff4136 !important;
}

.miniform .privacy .missing label a {
	color: #ff4136 !important;
	text-decoration: underline;
	font-weight: bold;
}