/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 14 2025 | 13:02:07 */
/***********************************************/
/* ANFRAGE-FORMULAR
/***********************************************/

/* Aufbau / Raster */

.zeile-formular
{
	display: flex;
	gap: 20px;
	justify-content: center;
	
	margin-bottom: 10px !important;
}

.spalte-formular-halb
{
	flex: 50%;
}

.spalte-formular-ganz
{
	flex: 100% !important;
}

/* Felder */

textarea, 
.spalte-formular-ganz label, 
.spalte-formular-halb label
{
	width: 100% !important;
	margin-bottom: 10px;
	color: white !important;
}

textarea
{
	height: 200px !important;
	margin-top: 10px;
	background: white !important;
	color: black !important;
}

.spalte-formular-ganz label, 
.spalte-formular-halb label
{
	opacity: 1 !important;
	font-size: 1em !important;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], select, textarea
{
	border: none !important;
	color: black;
	padding: 15px;
	margin-top: 10px;
	background: white !important;
	border-radius: 2px;
    /* font-family: "Montserrat", Sans-serif; */	
}

select
{
	border-right: 10px solid transparent !important;
}

select option
{
	color: black;
}

::placeholder,
select option:first-child,
input[name=welche-kategorie] 
{
  color: black;
  opacity: 0.6; 
}

.welche-kategorie select option:first-child
{
	color: black;
}

input[name=welche-kategorie] 
{
    pointer-events: none;
}

/* Checkboxen Datenschutz, etc. */

.datenschutz .wpcf7-form-control .wpcf7-list-item
{
	margin-left: 0 !important;
	float: left;
	margin-right: 5px;
}

.datenschutz
{
	display: flex;
	margin-bottom: 0;
    /* font-family: "Montserrat", Sans-serif; */	
}

.datenschutz .wpcf7-form-control-wrap
{
	margin-top: -3px;
}

.datenschutz .text, 
.datenschutz .text a,
.datenschutz .wpcf7-list-item-label
{
	margin-left: 5px;
	color: white;
	/* font-size: 12px; */
	line-height: 140%;
}

.datenschutz a,
.datenschutz .text a
{
 color: #b07c4b;
}

.datenschutz a:hover,
.datenschutz .text a:hover
{
 color: white;	
}

/* Senden-Button */

.wpcf7-submit.sendenbutton
{
	margin-top: 20px !important;
	background-color: #b07c4b !important;
	color: white !important;
	font-weight: bold !important;
	font-size: 16px !important;
    font-family: "Roboto", Sans-serif !important; 	
	border: 0px solid white !important;
	padding: 10px !important;
	display: block !important;
	width: 100% !important;
	text-transform: uppercase !important;
	border-radius: 3px;
	padding: 12px 24px !important;
	height: auto !important;
	line-height: 100% !important;
}

.zeile-formular.formularbutton p
{
	width: 100% !important;
}

.wpcf7-submit.sendenbutton:hover
{
	background-color: #b07c4b !important;
	color: white !important;
}

/* Fehleranzeige */

.screen-reader-response
{
    color: white;
	display: none;
}

.wpcf7-response-output
{
	color: white;
	padding: 15px !important;
	/* background-color: #064898; */
    text-align: center;
	border: 2px solid white;
    margin: 0px 0px 20px 0px !important;
	line-height: 140%;
}

.wpcf7-not-valid-tip
{
	color: red;
    font-size: 12px;
    display: inline-block;
	position: relative;
    width: auto;
	margin-top: 8px;
	
	/* Variante mit Background */
	color: white !important;
    background-color: red;
    padding: 5px !important;
	margin-top: 10px;
}

.wpcf7-not-valid-tip:before
{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 10px;
    border: 5px solid transparent;
    border-top: 0;
    border-bottom: 5px solid red;
    transform: translate(-50%, calc(-100% - 0px));
}

@media (max-width: 767px) 
{

	/* Anfrageformular */

	.zeile-formular
	{
		display: block;
	}
	
	.zeile-formular.formularbutton
	{
		display: flex;
	}
	
	input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], select, textarea
	{
		font-size: 14px;
		padding: 15px;
	}
}