/* RWD Ausrichtung Formularfelder-Beschriftungen */
@media (min-width: 992px) {

	.form-label {
		width: 30%;
		float: left;
	}

	.form-field {
		width: 70%;
		float: left;
		position: relative;
	}

}

@media (max-width: 991px) {

	.form-label {
		width: 100%;
	}

	.form-field {
		width: 100%;
		position: relative;
	}

}
/* Ende RWD Ausrichtung Formularfelder-Beschriftungen */



/* Zusammenfassung form-label & form-field  */
.form-group {
	width: 100%;
	display: block;
	float: left;
	padding: 5px 0 5px 0;
	margin: 0 0 10px 0;
}
/* Zusammenfassung form-label & form-field  */



/* Input, Textarea & Select Design  */
.form-control {
	width: 100%;
	padding: 10px 15px;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: #333 !important;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	resize: none;
	border: 1px solid #333;
	font-family: arial,verdana,sans-serif;
}

.form-control:hover {
	background: #ededed;
	color: #333 !important;
	border: 1px solid #333;
}
/* Ende Input, Textarea & Select Design  */



/* Suchformular Headbereich */
.form-control-search {
	width: 100px;
	padding: 5px;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	color: #333 !important;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	resize: none;
	border: 1px solid #aaa;
	font-family: arial,verdana,sans-serif;
}

.form-control-search:hover {
	background: #ededed;
	color: #333 !important;
	border: 1px solid #333;
}

.button-searchform {
	width:30px;
	height:29px;
	background:#ddd url(../images/icon-search.png) no-repeat 50% 50%;
	cursor:pointer;
	float:right;
	margin-left:5px;
}
/* Ende Suchformular Headbereich  */



/* Submit-Button Design  */
input[type="submit"], .button-submit {
	font-family: arial,verdana,sans-serif !important;
	cursor: pointer;
	padding: 8px 15px 7px 15px;
	outline: 0;
	border: none !important;
	border-radius: 0;
	background: #F47C20;
	color: #fff;
	font-size: 15px;
	line-height: 20px;
	text-decoration: none;
	display: inline-block;
	text-align: center !important;
	font-weight: normal;
}

input[type="submit"]:hover, .button-submit:hover {
	background: #333;
	color: #fff;
}

input[type="submit"]:disabled, button:disabled {
    background: #bbb !important;
    color: #000 !important;
    cursor: default !important;
    border: 1px solid #bbb;
}
/* Ende Submit-Button Design  */



/* Buttons Spezial Anpassungen */
.button-red {
	background: #c00 !important;
	color: #fff !important;
}

.button-red:hover {
	background: #f00 !important;
	color: #fff !important;
}

.button-green {
	background: #090 !important;
	color: #fff !important;
}

.button-green:hover {
	background: #0c0 !important;
	color: #fff !important;
}
/* Ende Buttons Spezial Anpassungen */



/* Spezielle Abstände */
.checkbox-radio-extra-distance {
	margin-right: 15px !important;
}
/* Ende Spezielle Abstände */



/* Radios Design */
.control {
	font-family: arial;
	/* display: block; -> wenn untereinander sein soll */
	display: inline-block;
	position: relative;
	padding-left: 36px;
	margin-bottom: 5px;
	padding-top: 0px;
	cursor: pointer;
	font-size: 1.2rem;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control-indicator {
	position: absolute;
	top: 6px;
	left: 0;
	height: 30px;
	width: 30px;
	background: #fff;
	border: 1px solid #000;
}

.control-radio .control-indicator {
	border-radius: 50%;
}

.control:hover input ~ .control-indicator, .control input:focus ~ .control-indicator {
	background: #ddd;
}

.control input:checked ~ .control-indicator {
	background: #eee;
}

.control:hover input:not([disabled]):checked ~ .control-indicator, .control input:checked:focus ~ .control-indicator {
	background: #eee;
}

.control input:disabled ~ .control-indicator {
	background: #ddd;
	opacity: 0.6;
}

.control input:focus ~ .control-indicator {
	outline: 3px solid orange !important;
}

.control-indicator:after {
	box-sizing: unset;
	content: '';
	position: absolute;
	display: none;
}

.control input:checked ~ .control-indicator:after {
	display: block;
}

.control-radio .control-indicator:after {
	left: 8px;
	top: 8px;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background: #000;
}

.control-radio input:disabled ~ .control-indicator:after {
	background: #888;
}
/* Ende Radios */



/* Checkboxen Spezial (Das meiste wird über die Radio Styles geregelt) */
.control-checkbox .control-indicator:after {
	left: 10px;
	top: 4px;
	width: 6px;
	height: 16px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control-indicator:after {
	border-color: #888;
}

.control-radio .ctext, .control-checkbox .ctext {
	margin-top:6px !important;float:left;
}
/* Ende Checkbox */



/* Zusatz Select Design */
.form-field select {
	font-size: 1.2rem;
	display: inline-block;
	width: 100%;
	cursor: pointer;
	padding: 10px 15px;
	outline: 0;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-field select::-ms-expand {
	display: none;
}

.form-field select:hover,
.form-field select:focus {
	border: 1px solid #000;
	background: #ddd;
	color: #000;
}

.form-field select:disabled {
	opacity: 0.5;
}

.form-field .select-arrow {
	position: absolute;
	top: 16px;
	right: 15px;
	width: 0;
	height: 0;
	border: solid #000;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.form-field select:hover ~ .select-arrow, .form-field select:focus ~ .select-arrow {
	border-top-color: #000;
}

.form-field select:disabled ~ .select-arrow {
	border-top-color: #000;
}
/* Ende Zusatz Select Design */



/* Platzhaltertext */
::-webkit-input-placeholder {
	font-style: italic;
}

:-moz-placeholder {
	font-style: italic;
}

::-moz-placeholder {
	font-style: italic;
}

:-ms-input-placeholder {
	font-style: italic;
}
/* Ende Platzhaltertext */