/*
#show-form {
    transition: height 1s ease;
    overflow: hidden;
    width:100%;
}
#show-form:not(.active) {
    display: none;
}
*/
#btn-show-form {
	border-radius: 5px;
    background-color: #0F72B5;
    border-color: white;
    color: white;
    display: inline-block;
    height: 40px;
    padding: 0 25px;
    margin-left: 1px;
    margin-bottom:40px;
    text-decoration: none;
    user-select: none;
    outline: 0;
    z-index: 0;
    transition: all .5s ease;
}
#btn-show-form:hover {
	background-color: rgba(15,114,181,0.05);
    border: 1px solid #0F72B5;
    color:#0F72B5;
    text-decoration: none;
}
#btn-show-form::before {
	content:"Kontaktformular";
}
#btn-show-form.active::before {
	content:"Kontaktformular schließen";
}
#show-form {
  opacity: 1;
  overflow: hidden;
  position: relative;
  right: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
#show-form.active {
  opacity: 1;
}

.form-info-text {
	width:700px;
	hyphens: auto;
}
.formfield{
	width: 700px;
	margin:20px 0;
}

.formfield .columns {
	width:100%;
	display:flex;
	flex-wrap: wrap;
  	gap: 30px;
}
.formfield .column1 {
	width:calc(50% - 30px);
}

.formfield .column2 {
	width:50%;
}
.formfield label {
	display:block;
}
.formfield label span {
	/*color:red;*/
}

.formfield input {
	display:block;
	width:100%;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
}
.formfield input[type="email"], 
.formfield input[type="number"], 
.formfield input[type="password"], 
.formfield input[type="search"], 
.formfield input[type="tel"], 
.formfield input[type="text"], 
.formfield textarea,
.formfield select {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
    border-radius: none;
    border: 1px solid #ccc;
    height: 40px;
    outline: 0;
    padding: 5px 10px;
    width: 100%;
    box-sizing:border-box;
}
.formfield textarea {
	border-radius:none;
	display:block;
	width:100%;
	height: initial;
}

/*
.formfield input:required {
  	box-shadow: 0 0 1px 1px red;
}
*/
.formfield select {
	width:100%;
}
.formfield.privacy input,
.formfield.confirmation input {
	display:inline-block;
	width:initial;
	vertical-align: top;
	margin-top:5px;
}
.formfield.privacy label,
.formfield.confirmation label {
	display:inline-block;
	width:95%;
	padding-left:10px;
	vertical-align: top;
}
.formfield canvas {
	height:22px;
}
.formfield.reset-submit {
	margin-left:0;
}
.formfield.reset-submit input {
	display:inline-block;
	width:initial;
	min-width:150px;
	margin-right:10px;
}
.formfield input[type="reset"], 
.formfield input[type="submit"] {
	-webkit-appearance: none;
    border-radius: none;
    background-color: rgba(255,255,255,1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
    border-radius: none;
    border: 1px solid #ccc;
    color:black;
    display: inline-block;
    height: 40px;
    padding: 0 25px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-left: 1px;
    user-select: none;
    outline: 0;
    z-index: 0;
    cursor:pointer;
    transition: all .5s ease;
}
.formfield input[type="reset"]:hover, 
 .formfield input[type="submit"]:hover {
    background-color: rgba(200,200,200,1);
    border-color: black;
    color: black;
    text-decoration: none;
}

#form-submit {
	background-image: url("../Images/icon-send.svg");
	background-size:30px auto;
	background-repeat:no-repeat;
	background-position: 10px 8px;
	padding-left:50px;
}


@media only screen and (max-width: 768px) {
  	.span4 {
  		display:none;
  	}
  	.form-info-text {
		width:100%;
	}
  	.formfield {
		width: 100%;
		margin: 20px 0;
	}
  	.formfield .columns {
		width:100%;
		display:block;
	}
	.formfield .column1 {
		width:100%;
		margin-bottom:20px;
	}

	.formfield .column2 {
		width:100%;
	}
}
