/**
 * 4All Funnel Forms – Frontend-Styles
 * Alle Klassen sind mit .fourall-funnel / .ff- gekapselt.
 * Die Markenfarbe kommt über die CSS-Variable --ff-primary.
 */

.fourall-funnel {
	--ff-primary: #2563eb;
	--ff-primary-rgb: 37, 99, 235;
	--ff-text: #0f172a;
	--ff-muted: #64748b;
	--ff-border: #e2e8f0;
	--ff-surface: #f8fafc;
	--ff-bg: #ffffff;
	--ff-radius: 16px;
	--ff-radius-sm: 10px;
	--ff-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
	--ff-shadow-hover: 0 4px 12px rgba(15, 23, 42, .08), 0 16px 40px rgba(15, 23, 42, .10);

	max-width: 680px;
	margin: 0 auto;
	color: var(--ff-text);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

.fourall-funnel *,
.fourall-funnel *::before,
.fourall-funnel *::after {
	box-sizing: border-box;
}

/* ------------------------------------------------------------------ Ladezustand */
.fourall-funnel .ff-loading {
	display: flex;
	justify-content: center;
	padding: 48px 0;
}
.fourall-funnel .ff-spinner {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 3px solid var(--ff-border);
	border-top-color: var(--ff-primary);
	animation: ff-spin .7s linear infinite;
}
@keyframes ff-spin { to { transform: rotate(360deg); } }

.fourall-funnel .ff-noscript {
	padding: 24px;
	background: var(--ff-surface);
	border: 1px solid var(--ff-border);
	border-radius: var(--ff-radius);
	text-align: center;
}

/* ------------------------------------------------------------------ Karte / Rahmen */
.fourall-funnel .ff-card {
	background: var(--ff-bg);
	border: 1px solid var(--ff-border);
	border-radius: var(--ff-radius);
	box-shadow: var(--ff-shadow);
	overflow: hidden;
}

/* ------------------------------------------------------------------ Fortschritt */
.fourall-funnel .ff-progress {
	padding: 26px 44px 0;
}
.fourall-funnel .ff-progress-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--ff-muted);
	font-weight: 600;
	letter-spacing: .01em;
}
.fourall-funnel .ff-progress-pct { color: var(--ff-primary); }
.fourall-funnel .ff-progress-track {
	height: 6px;
	background: var(--ff-border);
	border-radius: 999px;
	overflow: hidden;
}
.fourall-funnel .ff-progress-bar {
	height: 100%;
	width: 0;
	background: var(--ff-primary);
	border-radius: 999px;
	transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------------------------------------------ Schritt-Inhalt */
.fourall-funnel .ff-step {
	padding: 40px 44px;
}
.fourall-funnel .ff-step-title {
	margin: 4px 0 10px;
	font-size: 23px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--ff-text);
}
.fourall-funnel .ff-step-subtitle {
	margin: 0 0 30px;
	color: var(--ff-muted);
	font-size: 15px;
	line-height: 1.5;
}

/* Ein-/Ausblende-Animation */
.fourall-funnel .ff-animate-in {
	animation: ff-fade-in .35s ease both;
}
@keyframes ff-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------ Auswahl-Karten */
.fourall-funnel .ff-options {
	display: grid;
	gap: 14px;
}
.fourall-funnel .ff-option {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	text-align: left;
	padding: 20px 22px;
	background: var(--ff-bg);
	border: 1.5px solid var(--ff-border);
	border-radius: var(--ff-radius-sm);
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease, background .15s ease;
	font: inherit;
	color: inherit;
}
.fourall-funnel .ff-option:hover {
	border-color: rgba(var(--ff-primary-rgb), .5);
	box-shadow: var(--ff-shadow-hover);
	transform: translateY(-1px);
}
.fourall-funnel .ff-option:focus-visible {
	outline: none;
	border-color: var(--ff-primary);
	box-shadow: 0 0 0 3px rgba(var(--ff-primary-rgb), .25);
}
.fourall-funnel .ff-option.is-selected {
	border-color: var(--ff-primary);
	background: rgba(var(--ff-primary-rgb), .05);
}
.fourall-funnel .ff-option-icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(var(--ff-primary-rgb), .1);
	color: var(--ff-primary);
	overflow: hidden;
}
.fourall-funnel .ff-option-icon svg { width: 24px; height: 24px; }
.fourall-funnel .ff-option-image { background: transparent; }
.fourall-funnel .ff-option-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fourall-funnel .ff-option-body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fourall-funnel .ff-option-label { display: block; font-weight: 600; font-size: 16px; line-height: 1.35; }
.fourall-funnel .ff-option-desc { display: block; font-size: 13.5px; color: var(--ff-muted); line-height: 1.45; }
.fourall-funnel .ff-option-check {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--ff-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background .15s ease, border-color .15s ease;
}
.fourall-funnel .ff-option.is-selected .ff-option-check {
	background: var(--ff-primary);
	border-color: var(--ff-primary);
}
.fourall-funnel .ff-option-check svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s ease; }
.fourall-funnel .ff-option.is-selected .ff-option-check svg { opacity: 1; }

/* ------------------------------------------------------------------ Schieberegler */
.fourall-funnel .ff-slider-value {
	text-align: center;
	font-size: 40px;
	font-weight: 800;
	color: var(--ff-primary);
	line-height: 1;
	margin-bottom: 4px;
}
.fourall-funnel .ff-slider-unit {
	text-align: center;
	color: var(--ff-muted);
	font-size: 14px;
	margin-bottom: 24px;
}
.fourall-funnel input[type="range"].ff-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 999px;
	background: var(--ff-border);
	outline: none;
	margin: 8px 0 6px;
}
.fourall-funnel input[type="range"].ff-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ff-primary);
	border: 4px solid #fff;
	box-shadow: 0 2px 6px rgba(var(--ff-primary-rgb), .5);
	cursor: pointer;
}
.fourall-funnel input[type="range"].ff-range::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--ff-primary);
	border: 4px solid #fff;
	box-shadow: 0 2px 6px rgba(var(--ff-primary-rgb), .5);
	cursor: pointer;
}
.fourall-funnel .ff-range-scale {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--ff-muted);
}

/* ------------------------------------------------------------------ Eingabefelder */
.fourall-funnel .ff-field { margin-bottom: 16px; }
.fourall-funnel .ff-field:last-child { margin-bottom: 0; }
.fourall-funnel .ff-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ff-text);
}
.fourall-funnel .ff-label .ff-req { color: #dc2626; margin-left: 2px; }
.fourall-funnel .ff-input,
.fourall-funnel .ff-textarea {
	width: 100%;
	padding: 13px 14px;
	font: inherit;
	color: var(--ff-text);
	background: var(--ff-bg);
	border: 1.5px solid var(--ff-border);
	border-radius: var(--ff-radius-sm);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.fourall-funnel .ff-textarea { resize: vertical; min-height: 120px; }
.fourall-funnel .ff-input:focus,
.fourall-funnel .ff-textarea:focus {
	outline: none;
	border-color: var(--ff-primary);
	box-shadow: 0 0 0 3px rgba(var(--ff-primary-rgb), .18);
}
.fourall-funnel .ff-input.ff-has-error,
.fourall-funnel .ff-textarea.ff-has-error {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .15);
}
.fourall-funnel .ff-number-wrap { position: relative; display: flex; align-items: center; }
.fourall-funnel .ff-number-suffix {
	position: absolute;
	right: 14px;
	color: var(--ff-muted);
	font-size: 14px;
	pointer-events: none;
}
.fourall-funnel .ff-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fourall-funnel .ff-field-error {
	color: #dc2626;
	font-size: 13px;
	margin-top: 6px;
	display: none;
}
.fourall-funnel .ff-field-error.is-visible { display: block; }

/* ------------------------------------------------------------------ Einwilligung */
.fourall-funnel .ff-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 18px;
	font-size: 14px;
	color: var(--ff-muted);
}
.fourall-funnel .ff-consent input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--ff-primary);
	flex: 0 0 auto;
}
.fourall-funnel .ff-consent a { color: var(--ff-primary); }

/* ------------------------------------------------------------------ mosparo-Box */
.fourall-funnel .ff-mosparo { margin-top: 18px; }

/* ------------------------------------------------------------------ Honeypot (unsichtbar) */
.fourall-funnel .ff-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ------------------------------------------------------------------ Navigation */
.fourall-funnel .ff-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
}
.fourall-funnel .ff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	font: inherit;
	font-weight: 600;
	border-radius: var(--ff-radius-sm);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background .15s ease, box-shadow .15s ease, transform .1s ease, opacity .15s ease;
}
.fourall-funnel .ff-btn-primary {
	background: var(--ff-primary);
	color: #fff;
	margin-left: auto;
}
.fourall-funnel .ff-btn-primary:hover { box-shadow: 0 6px 18px rgba(var(--ff-primary-rgb), .4); transform: translateY(-1px); }
.fourall-funnel .ff-btn-primary:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(var(--ff-primary-rgb), .35); }
.fourall-funnel .ff-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.fourall-funnel .ff-btn-ghost {
	background: transparent;
	color: var(--ff-muted);
	border-color: var(--ff-border);
}
.fourall-funnel .ff-btn-ghost:hover { color: var(--ff-text); border-color: var(--ff-muted); }
.fourall-funnel .ff-btn-spinner {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .5);
	border-top-color: #fff;
	animation: ff-spin .7s linear infinite;
}

/* ------------------------------------------------------------------ Formfehler global */
.fourall-funnel .ff-form-error {
	margin-top: 16px;
	padding: 12px 14px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: var(--ff-radius-sm);
	font-size: 14px;
	display: none;
}
.fourall-funnel .ff-form-error.is-visible { display: block; }

/* ------------------------------------------------------------------ Erfolgsansicht */
.fourall-funnel .ff-success {
	text-align: center;
	padding: 48px 28px;
}
.fourall-funnel .ff-success-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(var(--ff-primary-rgb), .12);
	color: var(--ff-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ff-pop .4s cubic-bezier(.34, 1.56, .64, 1) both;
}
.fourall-funnel .ff-success-icon svg { width: 38px; height: 38px; }
@keyframes ff-pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.fourall-funnel .ff-success-title { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.fourall-funnel .ff-success-text { color: var(--ff-muted); font-size: 16px; max-width: 420px; margin: 0 auto; }

/* ------------------------------------------------------------------ Auswahl: horizontales Kachel-Layout */
.fourall-funnel .ff-options-cards {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
}
.fourall-funnel .ff-options-cards .ff-option {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding: 26px 18px;
}
.fourall-funnel .ff-options-cards .ff-option-icon {
	width: 72px;
	height: 72px;
	border-radius: 16px;
}
.fourall-funnel .ff-options-cards .ff-option-icon svg { width: 34px; height: 34px; }
.fourall-funnel .ff-options-cards .ff-option-body {
	align-items: center;
	text-align: center;
	gap: 4px;
}
.fourall-funnel .ff-options-cards .ff-option-label { font-size: 16px; }
.fourall-funnel .ff-options-cards .ff-option-check {
	position: absolute;
	top: 12px;
	right: 12px;
}
.fourall-funnel .ff-options-cards .ff-option { position: relative; }

/* ------------------------------------------------------------------ Responsive */
@media (max-width: 560px) {
	.fourall-funnel { font-size: 15px; }
	.fourall-funnel .ff-step { padding: 26px 22px; }
	.fourall-funnel .ff-progress { padding: 20px 22px 0; }
	.fourall-funnel .ff-step-title { font-size: 20px; }
	.fourall-funnel .ff-grid-2 { grid-template-columns: 1fr; }
	.fourall-funnel .ff-slider-value { font-size: 34px; }
	.fourall-funnel .ff-btn { padding: 12px 20px; }
	.fourall-funnel .ff-option-icon { width: 42px; height: 42px; }
	.fourall-funnel .ff-options-cards { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------------------------ Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
	.fourall-funnel * {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/* ==================================================================
 * Danke-Seite ([fourall_funnel_danke])
 * ================================================================== */

.fourall-funnel-thanks {
	--ff-primary: #2563eb;
	--ff-primary-rgb: 37, 99, 235;
	--ff-text: #0f172a;
	--ff-muted: #64748b;
	--ff-border: #e2e8f0;
	--ff-bg: #ffffff;
	max-width: 640px;
	margin: 0 auto;
	color: var(--ff-text);
}

.fourall-funnel-thanks .ff-thanks-title {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
}

.fourall-funnel-thanks .ff-thanks-text {
	margin: 0 0 26px;
	color: var(--ff-muted);
	font-size: 16px;
	line-height: 1.6;
}

.fourall-funnel-thanks .ff-thanks-empty p {
	color: var(--ff-muted);
}

/* ---------------------------------------------- Zusammenfassung */

.fourall-funnel-thanks .ff-thanks-summary {
	margin: 0 0 30px;
	padding: 22px 24px;
	border: 1px solid var(--ff-border);
	border-radius: 14px;
	background: var(--ff-bg);
}

.fourall-funnel-thanks .ff-thanks-summary h3 {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 700;
}

.fourall-funnel-thanks .ff-thanks-summary dl {
	margin: 0;
	display: grid;
	grid-template-columns: minmax(120px, 34%) 1fr;
	gap: 10px 18px;
}

.fourall-funnel-thanks .ff-thanks-summary dt {
	margin: 0;
	font-weight: 600;
	color: var(--ff-text);
}

.fourall-funnel-thanks .ff-thanks-summary dd {
	margin: 0;
	color: var(--ff-muted);
	word-break: break-word;
}

@media (max-width: 560px) {
	.fourall-funnel-thanks .ff-thanks-summary dl { grid-template-columns: 1fr; gap: 4px; }
	.fourall-funnel-thanks .ff-thanks-summary dd { margin-bottom: 10px; }
}

/* ---------------------------------------------- Übermittelte Dateien */

.fourall-funnel-thanks .ff-thanks-files {
	margin-top: 26px;
	padding: 22px 24px;
	border: 1px solid var(--ff-border);
	border-radius: 14px;
	background: var(--ff-bg);
}

.fourall-funnel-thanks .ff-thanks-files h3 {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
}

.fourall-funnel-thanks .ff-thanks-files ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fourall-funnel-thanks .ff-thanks-files li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid var(--ff-border);
	border-radius: 10px;
	font-size: 14px;
}

.fourall-funnel-thanks .ff-thanks-file-name { font-weight: 600; word-break: break-word; }
.fourall-funnel-thanks .ff-thanks-file-meta { color: var(--ff-muted); font-size: 13px; white-space: nowrap; }

/* ==================================================================
 * Datei-Upload im Kontakt-Schritt
 * ================================================================== */

.fourall-funnel .ff-upload-field {
	margin-top: 6px;
}

.fourall-funnel .ff-upload-intro {
	margin: 0 0 10px;
	color: var(--ff-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.fourall-funnel .ff-upload-drop {
	position: relative;
	border: 2px dashed var(--ff-border);
	border-radius: 12px;
	padding: 22px 18px;
	text-align: center;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}

.fourall-funnel .ff-upload-drop:hover,
.fourall-funnel .ff-upload-drop.is-over {
	border-color: var(--ff-primary);
	background: rgba(var(--ff-primary-rgb), .04);
}

.fourall-funnel .ff-upload-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.fourall-funnel .ff-upload-hint {
	margin: 0;
	color: var(--ff-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.fourall-funnel .ff-upload-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fourall-funnel .ff-upload-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid var(--ff-border);
	border-radius: 10px;
	background: rgba(var(--ff-primary-rgb), .04);
	font-size: 14px;
}

.fourall-funnel .ff-upload-name {
	flex: 1 1 auto;
	font-weight: 600;
	word-break: break-word;
}

.fourall-funnel .ff-upload-meta {
	flex: 0 0 auto;
	color: var(--ff-muted);
	font-size: 13px;
	white-space: nowrap;
}

.fourall-funnel .ff-upload-remove {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	line-height: 1;
	font-size: 19px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--ff-muted);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}

.fourall-funnel .ff-upload-remove:hover {
	background: #fee2e2;
	color: #b91c1c;
}

/* ---------------------------------------------- Freitext im Schritt */

.fourall-funnel .ff-step-content {
	margin: 0 0 20px;
	color: var(--ff-muted, #64748b);
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

.fourall-funnel .ff-step-content p { margin: 0 0 10px; }
.fourall-funnel .ff-step-content p:last-child { margin-bottom: 0; }

.fourall-funnel .ff-step-content h3,
.fourall-funnel .ff-step-content h4 {
	margin: 14px 0 8px;
	color: var(--ff-text, #0f172a);
	line-height: 1.3;
}

.fourall-funnel .ff-step-content ul,
.fourall-funnel .ff-step-content ol {
	margin: 0 0 10px;
	padding-left: 22px;
	text-align: left;
	display: inline-block;
}

.fourall-funnel .ff-step-content li { margin: 2px 0; }

.fourall-funnel .ff-step-content a {
	color: var(--ff-primary, #2563eb);
	text-decoration: underline;
}

/* ---------------------------------------------------------------
 * Auswahlfelder im Kontakt-Schritt
 * --------------------------------------------------------------- */
.ff-choicegroup {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ff-choice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid #d9dde3;
	border-radius: 8px;
	cursor: pointer;
	line-height: 1.4;
}

.ff-choice:hover {
	border-color: #b9c0ca;
}

.ff-choice input {
	margin: 2px 0 0;
	flex: 0 0 auto;
}

.ff-choice-single {
	border: 0;
	padding: 0;
}

.ff-select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23555' d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 18px;
	padding-right: 34px;
}

/* ---------------------------------------------------------------
 * Wandernde Beschriftung (nur bei gesetztem Platzhalter)
 *
 * Die Beschriftung bleibt immer im DOM und behält ihren Platz - sie
 * wird nur ein- und ausgeblendet. Damit springt beim Tippen nichts,
 * und Screenreader lesen sie unabhängig vom Sichtzustand vor.
 * --------------------------------------------------------------- */
.ff-field.ff-floating .ff-label {
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .15s ease, transform .15s ease;
	pointer-events: none;
}

.ff-field.ff-floating.ff-filled .ff-label,
.ff-field.ff-floating:focus-within .ff-label {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

/* Platzhalter etwas zurückhaltender als der eingegebene Wert. */
.ff-field.ff-floating .ff-input::placeholder {
	color: #6b7280;
	opacity: 1;
}

/* Im Fokus tritt der Platzhalter zurück, damit die Beschriftung führt. */
.ff-field.ff-floating .ff-input:focus::placeholder {
	color: #9ca3af;
}

/* ---------------------------------------------------------------
 * Mehrfachauswahl bei Auswahlschritten
 * --------------------------------------------------------------- */
.ff-options-hint {
	margin: 0 0 10px;
	font-size: 14px;
	color: #6b7280;
	width: 100%;
}

.ff-option.is-disabled {
	opacity: .45;
	cursor: not-allowed;
}

.ff-option.is-disabled:hover {
	border-color: inherit;
	box-shadow: none;
	transform: none;
}

/* Bei Mehrfachauswahl signalisiert eckiger statt runder Marker,
   dass sich Angaben kombinieren lassen. */
.ff-options-multi .ff-option-check {
	border-radius: 5px;
}
