/*-------------Styling Contact Form 7--------------*/
.wpcf7-text, .wpcf7-textarea, .wpcf7-captchar {
	background-color: #fff !important;
	color: #444 !important;
	border: none !important;
	border-radius: 5px !important;
	font-size: 16px;
	padding: 8px !important;
	box-sizing: border-box;
}

.wpcf7-submit {
	color: #fff !important;
	background-color: #1150b4 !important;
	margin: 8px auto 0;
	padding: 8px 20px 8px 30px;
	
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.3em;
	
	border-radius: 5px;
	border-style:solid!important;
	border-width: 3px!important;
	border-color: #1150b4!important;
	
	background: transparent;
	transition: all 0.2s ease; 
	cursor: pointer;
}

.wpcf7-submit:hover {
	color: #1150b4 !important;
	background-color: #fff !important;
}

.wpcf7-form textarea { 
width: 80%;
}

.wpcf7-select{
	font-size:16px!important;
	border-radius: 5px;
	padding: 5px;
	font-size: 0.9em !important;
}

/*Datenschutzhinweis und Checkboxen kleinerer Text*/
.wpcf7-list-item-label{
	font-size: 14px !important;
	
}

.wpcf7-list-item {
	line-height: 1.3em !important;
	margin: 0;
	margin-right: 10px;
}



.form_half {
	width: 49.5%;
	float: left;
	margin-right: 1%;
}
.form_half_last {
	margin-right:0;
}

/* Contact Form 7 - zwei Spalten und responsive */
.wps-form {
    width: 100%;
    margin: 0 auto;
}
.wps-form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.wps-form-row .wpcf7-form-control {
    width: 100%;
}
.wps-form-column {
    flex: 1;
    padding: 0.5rem 0;
    width: 100%;
}

/* Notebook / Desktop */
@media only screen and ( min-width: 48em ) { 
    .wps-form-row {
        flex-direction: row;
    }
    .wps-form-column {
        padding: 0.5rem 1rem;
    }
}