.contactForm * {
	box-sizing: border-box;
}

.form2columns{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
}

.form2columns > div:first-child{
	margin-right: 28px
}

.contactForm label{
	display: block;
}
.contactForm input {
	width: 280px;
	margin-bottom: 10px;
	font-size: 12px;
	padding: 4px;
}

.message:after{
	content: '* Pflichtfelder';
	font-size: 11px;
	font-weight: 700;
	color: #474a4f;
}
.contactForm textarea,
.contactForm input,
.contactForm select{
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset;
	/*background-color: #f4f4f4;*/
}
.contactForm select{
	border-radius: 0;
	width: 100%;
	font-size: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 4px 20px 4px 4px;
}

/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.contactForm select:not([multiple]):not([size]) {
	/* 1 */
	-webkit-appearance: none;
	-moz-appearance: none;
	/* 2 */
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-size: 5%;
}
/* 3 */
.contactForm:not([multiple]):not([size])::-ms-expand {
	display: none;
}
/* 4 */
.contactForm:not([multiple]):not([size]) option {
	color: #444;
}

.contactForm .salutation > span:first-child,
.contactForm label{
	font-size: 11px;
	font-weight: 700;
	color: #474a4f;
}

.contactForm .radio {
	width: 13px;
	height: 13px;
	clear: none;
	margin: 3px 5px 0 19px;
	float: none;
}
.contactForm textarea{
	width: 100%;
	height: 85px;
	font-size: 12px;
	padding: 4px 0;
}

.contactForm textarea.error{
	border: 1px solid #e2001a;
	background-color: #FFA2A5;
}

.contactForm .salutation.error input{
	outline: 1px solid #e2001a;
}


.contactForm .salutation{
	display: flex;
	margin: 10px 0;
}
.contactForm .tabs > .cust_checkbox {
	display: none;
}



.contactForm .tabs > label{
	font-size: 13px;
}

.contact-submit input{
	width: auto;
	border: none;
	border-bottom: #e3001a 1px solid;
	cursor: pointer;
	font-size: 14px;
	text-transform: uppercase;
	color: #e4001a;
	box-shadow: none;
	border-radius: 0;
	background-color: transparent;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;

	background-color: #EDEDED;
}

.input {
	position: absolute;
	opacity: 0;
}

.label {
	width: 100%;
	padding: 10px 12px;
	cursor: pointer;
	font-size: 14px;
	color: #7f7f7f;
	transition: background 0.1s, color 0.1s;
}

.label:hover {
	background: #d8d8d8;
}

.label:active {
	background: #ccc;
}

.input:focus + .label {
	z-index: 1;
}

.input:checked + .label {
	background: #fff;
	color: #000;
	border-top: 3px solid #e40019;
	padding-top: 7px;
}
.input:checked + .label:hover{
	outline: none;
}
@media (min-width: 600px) {
	.label {
		width: auto;
	}
}

.panel {
	display: none;
	padding: 20px 0 30px 0;
	background: #fff;
	width: 100%;
}
.contactForm input.radioTab{
	display: none;

}
.contactForm input.radioTab+label{
	margin-left: 0;
	margin-right: 0;
}
/* Fehlermeldungen */
.contactForm .errors > p {
	color: #e2001a;
}

.contactForm input.error,
.contactForm select.error,
textarea#message.error {
	border: 1px solid #e2001a;
	background-color: #FFA2A5;
}

@media only screen and (max-width: 1024px){
	.contactForm .tabs > label{
		border-bottom: 5px solid white;
	}
	.form2columns{
		display: block;
	}
	.contactForm input{
		width: 100%;
		height: 30px;
		line-height: 30px;
		margin: 0 0 15px 0;
	}
	.contactForm input.button.secondary.right{
		width: auto;
		height: 25px;
		line-height: normal;
		margin: 0 10px 0 0;
	}
	.form2columns > div:first-child {
		margin-right: 0
	}
}

.panel {
	order: 99;
}
@media (min-width: 600px) {

}

.input:checked + .label + .panel {
	display: block;
}
