/*
 * BERLIVING Tippgeber-Formular – neues, kantiges Design
 * Abgeleitet aus dem BERLIVING Tippgeber-Provisionsrechner v5.
 * Alle Regeln sind auf .tippgeber-form begrenzt.
 */

.tippgeber-form {
	--bltf-gold: var(--blv-gold, #BD9A68);
	--bltf-gold-dark: var(--blv-gold-dk, #A6854F);
	--bltf-green: var(--blv-green, #003027);
	--bltf-cream: var(--blv-cream, #F6F2EA);
	--bltf-paper: var(--blv-paper, #FEFFFB);
	--bltf-ink: var(--blv-ink, #202020);
	--bltf-body: var(--blv-body, #797978);
	--bltf-line: var(--blv-line, rgba(189, 154, 104, 0.30));
	--bltf-serif: var(--blv-serif, "Vidaloka", Georgia, serif);
	--bltf-sans: var(--blv-sans, "Montserrat", sans-serif);

	width: 100%;
	max-width: 1104px;
	margin-inline: auto;
	padding: clamp(30px, 4vw, 52px) clamp(22px, 3vw, 46px);
	color: var(--bltf-body);
	font-family: var(--bltf-sans);
	background: var(--bltf-cream);
	border-top: 1px solid var(--bltf-line);
	border-bottom: 1px solid var(--bltf-line);
}

.tippgeber-form,
.tippgeber-form *,
.tippgeber-form *::before,
.tippgeber-form *::after {
	box-sizing: border-box;
}

.tippgeber-form .form-intro {
	margin: 0 0 30px;
}

.tippgeber-form .form-intro::before {
	display: block;
	margin: 0 0 14px;
	color: var(--bltf-gold-dark);
	font-family: var(--bltf-sans);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	content: "BERLIVING Tippgeber";
}

.tippgeber-form .form-intro h2 {
	margin: 0 0 14px;
	color: var(--bltf-ink);
	font-family: var(--bltf-serif);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: 0;
}

.tippgeber-form .form-intro p,
.tippgeber-form .section-head p {
	color: var(--bltf-body);
	font-family: var(--bltf-sans);
}

.tippgeber-form .form-intro p {
	max-width: 72ch;
	margin: 0 0 12px;
	font-size: 15.5px;
	line-height: 1.8;
}

.tippgeber-form .form-intro p:last-child {
	margin-bottom: 0;
}

.tippgeber-form .form-trust-note {
	position: relative;
	padding-left: 23px;
	color: var(--bltf-green) !important;
	font-size: 13px !important;
	font-weight: 600;
}

.tippgeber-form .form-trust-note::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--bltf-gold-dark);
	content: "\2713";
}

.tippgeber-form .form-section {
	margin: 0 0 18px;
	padding: clamp(22px, 3vw, 32px);
	background: var(--bltf-paper);
	border: 1px solid var(--bltf-line);
}

.tippgeber-form .form-section-optional {
	border-left: 3px solid var(--bltf-gold);
}

.tippgeber-form .section-head {
	margin: 0 0 24px;
}

.tippgeber-form .section-head h3 {
	margin: 0 0 10px;
	color: var(--bltf-ink);
	font-family: var(--bltf-serif);
	font-size: clamp(1.3rem, 2.4vw, 1.65rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
}

.tippgeber-form .section-head h3 span {
	color: var(--bltf-gold-dark);
	font-family: var(--bltf-sans);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tippgeber-form .section-head p {
	max-width: 70ch;
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}

.tippgeber-form .row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 20px 18px;
	margin: 0;
}

.tippgeber-form .col-md-4,
.tippgeber-form .col-md-6,
.tippgeber-form .col-md-12 {
	width: auto;
	max-width: none;
	padding: 0;
}

.tippgeber-form .col-md-4 {
	grid-column: span 4;
}

.tippgeber-form .col-md-6 {
	grid-column: span 6;
}

.tippgeber-form .col-md-12 {
	grid-column: 1 / -1;
}

.tippgeber-form .form-grp {
	margin: 0;
}

.tippgeber-form .form-grp > label {
	display: block;
	margin: 0 0 9px;
	color: var(--bltf-gold-dark);
	font-family: var(--bltf-sans);
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.tippgeber-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.tippgeber-form input[type="text"],
.tippgeber-form input[type="email"],
.tippgeber-form input[type="tel"],
.tippgeber-form select,
.tippgeber-form textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	color: var(--bltf-ink);
	font-family: var(--bltf-sans);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	background: #fff;
	border: 1px solid var(--bltf-line);
	border-radius: 0;
	outline: 0;
	box-shadow: none;
	transition: border-color 0.25s, box-shadow 0.25s;
	-webkit-appearance: none;
	appearance: none;
}

.tippgeber-form input[type="text"],
.tippgeber-form input[type="email"],
.tippgeber-form input[type="tel"],
.tippgeber-form select {
	min-height: 50px;
}

.tippgeber-form select {
	padding-right: 44px;
	background-image: linear-gradient(45deg, transparent 50%, var(--bltf-green) 50%), linear-gradient(135deg, var(--bltf-green) 50%, transparent 50%);
	background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.tippgeber-form textarea {
	min-height: 170px;
	resize: vertical;
}

.tippgeber-form input::placeholder,
.tippgeber-form textarea::placeholder {
	color: #969691;
	opacity: 1;
}

.tippgeber-form input[type="text"]:focus,
.tippgeber-form input[type="email"]:focus,
.tippgeber-form input[type="tel"]:focus,
.tippgeber-form select:focus,
.tippgeber-form textarea:focus {
	border-color: var(--bltf-gold);
	box-shadow: 0 0 0 3px rgba(189, 154, 104, 0.18);
}

.tippgeber-form .form-section-consent {
	padding: 20px 22px;
	border-left: 3px solid var(--bltf-gold);
}

.tippgeber-form .form-check .wpcf7-list-item {
	display: block;
	margin: 0;
}

.tippgeber-form .form-check label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	margin: 0;
	color: var(--bltf-body);
	font-family: var(--bltf-sans);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	cursor: pointer;
}

.tippgeber-form .form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	border-radius: 0;
	accent-color: var(--bltf-green);
	cursor: pointer;
}

.tippgeber-form a {
	color: var(--bltf-gold-dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tippgeber-form a:hover,
.tippgeber-form a:focus {
	color: var(--bltf-green);
}

.tippgeber-form .recaptcha-wrap {
	display: flex;
	justify-content: center;
	margin: 24px 0;
	overflow: hidden;
}

.tippgeber-form .form-submit {
	text-align: left;
}

.tippgeber-form input[type="submit"].wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	min-height: 52px;
	margin: 0;
	padding: 15px 25px;
	color: #fff;
	font-family: var(--bltf-sans);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.15em;
	text-align: center;
	text-transform: uppercase;
	background: var(--bltf-green);
	border: 1px solid var(--bltf-green);
	border-radius: 999px;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}

.tippgeber-form input[type="submit"].wpcf7-submit:hover,
.tippgeber-form input[type="submit"].wpcf7-submit:focus,
.tippgeber-form input[type="submit"].wpcf7-submit:active {
	color: var(--bltf-green) !important;
	background: var(--bltf-cream) !important;
	border-color: var(--bltf-green) !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	transform: none !important;
}

.tippgeber-form input[type="submit"].wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.tippgeber-form .wpcf7-spinner {
	margin: 0 0 0 12px;
}

.tippgeber-form .wpcf7-not-valid {
	border-color: #9f2d25 !important;
	box-shadow: 0 0 0 3px rgba(159, 45, 37, 0.10) !important;
}

.tippgeber-form .wpcf7-not-valid-tip {
	margin-top: 7px;
	color: #9f2d25;
	font-family: var(--bltf-sans);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.5;
}

.wpcf7 form:has(.tippgeber-form) .wpcf7-response-output {
	max-width: 1104px;
	margin: 18px auto 0;
	padding: 16px 18px;
	color: #fff;
	font-family: var(--bltf-sans, "Montserrat", sans-serif);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	background: var(--bltf-green, #003027);
	border: 1px solid var(--bltf-green, #003027);
	border-left: 3px solid var(--bltf-gold, #BD9A68);
	border-radius: 0;
}

@media (max-width: 767px) {
	.tippgeber-form {
		padding: 28px 20px;
	}

	.tippgeber-form .row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.tippgeber-form .col-md-4,
	.tippgeber-form .col-md-6,
	.tippgeber-form .col-md-12 {
		grid-column: 1;
	}

	.tippgeber-form .form-submit {
		text-align: left;
	}

	.tippgeber-form input[type="submit"].wpcf7-submit {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 380px) {
	.tippgeber-form .recaptcha-wrap > * {
		transform: scale(0.88);
		transform-origin: center center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tippgeber-form input,
	.tippgeber-form select,
	.tippgeber-form textarea {
		transition: none;
	}
}

/* ================================================================
 * Allgemeines BERLIVING Design für alle weiteren CF7-Formulare
 * Das speziell aufgebaute Tippgeberformular wird hier ausgenommen.
 * ================================================================ */

.wpcf7 {
	--blcf7-gold: var(--blv-gold, #BD9A68);
	--blcf7-gold-dark: var(--blv-gold-dk, #A6854F);
	--blcf7-green: var(--blv-green, #003027);
	--blcf7-cream: var(--blv-cream, #F6F2EA);
	--blcf7-paper: var(--blv-paper, #FEFFFB);
	--blcf7-ink: var(--blv-ink, #202020);
	--blcf7-body: var(--blv-body, #797978);
	--blcf7-line: var(--blv-line, rgba(189, 154, 104, 0.30));
	--blcf7-serif: var(--blv-serif, "Vidaloka", Georgia, serif);
	--blcf7-sans: var(--blv-sans, "Montserrat", sans-serif);
}

.wpcf7 form:not(:has(.tippgeber-form)) {
	width: 100%;
	max-width: 1104px;
	margin-inline: auto;
	padding: clamp(30px, 4vw, 52px) clamp(22px, 3vw, 46px);
	color: var(--blcf7-body);
	font-family: var(--blcf7-sans);
	background: var(--blcf7-cream);
	border-top: 1px solid var(--blcf7-line);
	border-bottom: 1px solid var(--blcf7-line);
	border-radius: 0 !important;
	box-shadow: none;
}

.wpcf7 form:not(:has(.tippgeber-form)),
.wpcf7 form:not(:has(.tippgeber-form)) *,
.wpcf7 form:not(:has(.tippgeber-form)) *::before,
.wpcf7 form:not(:has(.tippgeber-form)) *::after {
	box-sizing: border-box;
}

.wpcf7 form:not(:has(.tippgeber-form)) h2,
.wpcf7 form:not(:has(.tippgeber-form)) h3,
.wpcf7 form:not(:has(.tippgeber-form)) h4 {
	margin: 0 0 14px;
	color: var(--blcf7-ink);
	font-family: var(--blcf7-serif);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
}

.wpcf7 form:not(:has(.tippgeber-form)) h2 {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.wpcf7 form:not(:has(.tippgeber-form)) h3 {
	font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}

.wpcf7 form:not(:has(.tippgeber-form)) p {
	margin: 0 0 20px;
	color: var(--blcf7-body);
	font-family: var(--blcf7-sans);
	font-size: 15px;
	line-height: 1.75;
}

.wpcf7 form:not(:has(.tippgeber-form)) p:last-of-type {
	margin-bottom: 0;
}

.wpcf7 form:not(:has(.tippgeber-form)) label {
	display: block;
	color: var(--blcf7-gold-dark);
	font-family: var(--blcf7-sans);
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.wpcf7 form:not(:has(.tippgeber-form)) label > .wpcf7-form-control-wrap,
.wpcf7 form:not(:has(.tippgeber-form)) .form-grp > .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-top: 9px;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="text"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="email"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="tel"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="url"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="number"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="date"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="file"],
.wpcf7 form:not(:has(.tippgeber-form)) select,
.wpcf7 form:not(:has(.tippgeber-form)) textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	color: var(--blcf7-ink);
	font-family: var(--blcf7-sans);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-transform: none;
	background-color: #fff;
	border: 1px solid var(--blcf7-line);
	border-radius: 0 !important;
	outline: 0;
	box-shadow: none;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="text"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="email"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="tel"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="url"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="number"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="date"],
.wpcf7 form:not(:has(.tippgeber-form)) select {
	min-height: 50px;
}

.wpcf7 form:not(:has(.tippgeber-form)) select {
	padding-right: 44px;
	background-image: linear-gradient(45deg, transparent 50%, var(--blcf7-green) 50%), linear-gradient(135deg, var(--blcf7-green) 50%, transparent 50%);
	background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

.wpcf7 form:not(:has(.tippgeber-form)) textarea {
	min-height: 170px;
	resize: vertical;
}

.wpcf7 form:not(:has(.tippgeber-form)) input::placeholder,
.wpcf7 form:not(:has(.tippgeber-form)) textarea::placeholder {
	color: #969691;
	opacity: 1;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="text"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="email"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="tel"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="url"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="number"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="date"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="file"]:focus,
.wpcf7 form:not(:has(.tippgeber-form)) select:focus,
.wpcf7 form:not(:has(.tippgeber-form)) textarea:focus {
	border-color: var(--blcf7-gold);
	box-shadow: 0 0 0 3px rgba(189, 154, 104, 0.18);
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-checkbox,
.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-radio,
.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-acceptance {
	display: block;
	margin-top: 9px;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-list-item {
	margin: 0 18px 8px 0;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-list-item label {
	display: inline-grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: start;
	gap: 9px;
	color: var(--blcf7-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="checkbox"],
.wpcf7 form:not(:has(.tippgeber-form)) input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	border-radius: 0 !important;
	accent-color: var(--blcf7-green);
	cursor: pointer;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 52px;
	margin: 0;
	padding: 15px 25px;
	color: #fff;
	font-family: var(--blcf7-sans);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.15em;
	text-align: center;
	text-transform: uppercase;
	background: var(--blcf7-green);
	border: 1px solid var(--blcf7-green);
	border-radius: 999px !important;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit:hover,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit:focus,
.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit:active {
	color: var(--blcf7-green) !important;
	background: var(--blcf7-cream) !important;
	border-color: var(--blcf7-green) !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	transform: none !important;
}

.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-spinner {
	margin: 0 0 0 12px;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-not-valid {
	border-color: #9f2d25 !important;
	box-shadow: 0 0 0 3px rgba(159, 45, 37, 0.10) !important;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-not-valid-tip {
	margin-top: 7px;
	color: #9f2d25;
	font-family: var(--blcf7-sans);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.5;
}

.wpcf7 form:not(:has(.tippgeber-form)) .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 16px 18px;
	color: #fff;
	font-family: var(--blcf7-sans);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	background: var(--blcf7-green);
	border: 1px solid var(--blcf7-green);
	border-left: 3px solid var(--blcf7-gold);
	border-radius: 0 !important;
}

.wpcf7 form:not(:has(.tippgeber-form)) .row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 20px 18px;
	margin: 0;
}

.wpcf7 form:not(:has(.tippgeber-form)) .col-md-4,
.wpcf7 form:not(:has(.tippgeber-form)) .col-md-6,
.wpcf7 form:not(:has(.tippgeber-form)) .col-md-12 {
	width: auto;
	max-width: none;
	padding: 0;
}

.wpcf7 form:not(:has(.tippgeber-form)) .col-md-4 {
	grid-column: span 4;
}

.wpcf7 form:not(:has(.tippgeber-form)) .col-md-6 {
	grid-column: span 6;
}

.wpcf7 form:not(:has(.tippgeber-form)) .col-md-12 {
	grid-column: 1 / -1;
}

@media (max-width: 767px) {
	.wpcf7 form:not(:has(.tippgeber-form)) {
		padding: 28px 20px;
	}

	.wpcf7 form:not(:has(.tippgeber-form)) .row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.wpcf7 form:not(:has(.tippgeber-form)) .col-md-4,
	.wpcf7 form:not(:has(.tippgeber-form)) .col-md-6,
	.wpcf7 form:not(:has(.tippgeber-form)) .col-md-12 {
		grid-column: 1;
	}

	.wpcf7 form:not(:has(.tippgeber-form)) input[type="submit"].wpcf7-submit {
		width: 100%;
		min-width: 0;
	}
}

/*
 * Abschließender Schutz vor später geladenen Theme-, Elementor- und CF7-Regeln.
 * Das neue BERLIVING Design verwendet durchgehend gerade Kanten.
 */
.contact-form-wrap.tippgeber-form,
.contact-form-wrap.tippgeber-form .form-intro,
.contact-form-wrap.tippgeber-form .form-section,
.contact-form-wrap.tippgeber-form .form-grp,
.contact-form-wrap.tippgeber-form .form-check,
.contact-form-wrap.tippgeber-form .wpcf7-form-control-wrap,
.contact-form-wrap.tippgeber-form input[type="text"],
.contact-form-wrap.tippgeber-form input[type="email"],
.contact-form-wrap.tippgeber-form input[type="tel"],
.contact-form-wrap.tippgeber-form input[type="checkbox"],
.contact-form-wrap.tippgeber-form select,
.contact-form-wrap.tippgeber-form textarea,
.wpcf7 form:has(.contact-form-wrap.tippgeber-form) .wpcf7-response-output {
	border-radius: 0 !important;
}

/* Einheitlicher Absende-Button in allen CF7-Formularen. */
.wpcf7 form input[type="submit"].wpcf7-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 240px !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 15px 25px !important;
	color: #fff !important;
	font-family: var(--blv-sans, "Montserrat", sans-serif) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.15em !important;
	text-align: center !important;
	text-transform: uppercase !important;
	background-color: #003027 !important;
	background-image: none !important;
	border: 1px solid #003027 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	cursor: pointer !important;
}

/* Hover/Fokus: Creme mit dunkelgrüner Schrift. */
.wpcf7 form input[type="submit"].wpcf7-submit:hover,
.wpcf7 form input[type="submit"].wpcf7-submit:focus,
.wpcf7 form input[type="submit"].wpcf7-submit:focus-visible,
.wpcf7 form input[type="submit"].wpcf7-submit:active {
	color: #003027 !important;
	background-color: #F6F2EA !important;
	background-image: none !important;
	border: 1px solid #003027 !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	filter: none !important;
	opacity: 1 !important;
	transform: none !important;
}

/* Erfolgreiche Übermittlung: dunkelgrün. */
.wpcf7 form.sent .wpcf7-response-output {
	color: #fff !important;
	background: #003027 !important;
	border: 1px solid #003027 !important;
	border-left: 3px solid #BD9A68 !important;
	border-radius: 0 !important;
}

/* Fehler, unvollständige Pflichtfelder oder Versandprobleme: rot. */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	color: #fff !important;
	background: #A33A32 !important;
	border: 1px solid #A33A32 !important;
	border-left: 3px solid #70231E !important;
	border-radius: 0 !important;
}

@media (max-width: 767px) {
	.wpcf7 form input[type="submit"].wpcf7-submit,
	.wpcf7 form input[type="submit"].wpcf7-submit:hover,
	.wpcf7 form input[type="submit"].wpcf7-submit:focus,
	.wpcf7 form input[type="submit"].wpcf7-submit:active {
		width: 100% !important;
		min-width: 0 !important;
	}
}
