@charset "utf-8";
/* CSS Document */

.form .wrap {
	min-width: 50%;
	max-width: 600px;
}
.form .btm {
	align-self: flex-end;
	position: relative;
	width: 100%;
}

.form .Map {
	margin-top: 94px;
}

.form .Map p {
	margin-top: 15px;
}

.form h3 {
	margin: 0;
	text-decoration: none;
}
.form .itemBlock {
	width: 49%;
	display: inline-block;
	min-width: 130px;
	vertical-align: bottom;
}
.form .item {
	margin-bottom: .5em;
	position: relative;
}
.form .item .text,
.form .item .textarea {
	box-shadow: none;
	border: 1px solid #b5b5b5;
	border-radius: 0;
	padding: .8em 10px;
	line-height: 100%;
	box-sizing: border-box;
	resize: vertical;
}
.form .item .text {
	width: 100%;
	height: 2em;
	border: 0;
	padding: .25em 10px 0;
	border-bottom: 2px solid rgba(13, 84, 151, 0.3);
	transition: 0.2s;
}

.form .item .text.req.Empty + .ul{
	background-color: rgb(200, 100, 100);
	width: 100%;
	opacity: 1;
}

.form .item .text.req.NotEmpty + .ul {
	background-color: rgb(13, 84, 151);
	width: 100%;
	opacity: 1;
}

.form .item .text.nif + .ul{
	width: 100%;
	opacity: 1;
}

.form .item.txt .ul {
	position: absolute;
	left: 0px;
	bottom: 0px;
	height: 2px;
	width: 0%;
	opacity: 0;
	background-color: rgb(13, 84, 151, 1);
	transition: 0.2s;
}

.form .item.txt .text:focus + .ul {
	opacity: 1;
	width: 100%;
}

.form .item .text.zip_code {
	width: 20%;
	margin-right: 5%;
	border-right: none;
}
.form .item .text.city {
	width: 50%;
	border-left: none;
}

.form .spez_cssbutton {
	color: rgb(13, 84, 151);
	background-color: transparent;
	border: solid 2px rgb(13, 84, 151);
	border-radius: 5px;
	padding: 2px 6px;
	transform: skew(-12.5deg);
	transition: 0.2s;
	text-decoration: none;
}

.form .spez_cssbutton:hover {
	color: white;
	background-color: rgb(13, 84, 151);
}

@media all and (max-width: 600px) {
	.form .itemBlock {
		width: 100%;
	}
	.form .item .textarea {
		padding: 5px 5%;
		width: 85%;
	}
}


.form .reqstar {
	color: #990000;
	font-weight: bold;
	font-size: xx-small;
	vertical-align: top;
}

.formerrors {
	border: 2px solid #a23;
	color: #f00;
	padding: 5px 15px;
	margin: 0 0 15px;
}
.formwarnings {
	border: 2px solid #fc5;
	padding: 5px 15px;
}

.form .topic .description input {
	position: absolute;
}
.form .topic .description label {
	display: block;
	margin-left: 30px;
}