/**
 * Wandertage Frontend Styles
 * @since 1.3
 *
 * TODO: CSS Duplikate entfernen
 * TODO: CSS Frontend Deklarationen Schrift einheitlich benennen
 * TODO: CSS Größen einheitlich benennen
 */
@import url("local_fonts.css");

/* ======================
   ROOT & TYPO-SKALA
====================== */

:root {
	/* Farben (Globetrotter-inspiriert) */
	--gt-bg-neutral: #f5f3ef;
	--gt-bg-neutral: #e7e2dc;
	--gt-green: #21412c;
	--gt-yellow: #ffd800;
	--gt-text: #333333;
	--gt-text-gray: #555555;
	--gt-text-muted: #777777;
	--gt-border: #fff;

	/* Typografie – einheitliche Basis (1rem = 16px) */
	--font-size-base: 1rem;
	/* 16px */
	--font-size-small: 0.875rem;
	/* 14px */
	--font-size-xs: 0.75rem;
	/* 12px */
	--font-size-h3: 1.25rem;
	/* 20px */
	--font-size-h2: 1.5rem;
	/* 24px */
	--font-size-medium: 1.125rem;
	/* 18px */

	/* Spacing */
	--spacing-unit: 1rem;
	--spacing-xs: calc(var(--spacing-unit) * 0.25);
	--spacing-s: calc(var(--spacing-unit) * 0.5);
	--spacing-m: var(--spacing-unit);
	--spacing-l: calc(var(--spacing-unit) * 1.5);
	--spacing-xl: calc(var(--spacing-unit) * 2.5);
}

/* Global utility */
.wt-hidden {
	display: none !important;
}

body.wandertage-active {
	font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
	background-color: #fafafa;
	color: #222;
	font-size: var(--font-size-base);
}

.wt-hike-list,
.wt-hike-list button,
.wt-hike-list input,
.wt-hike-list select,
.wt-hike-list textarea,
.wt-modal-content,
.wt-modal-content button,
.wt-modal-content input,
.wt-modal-content select,
.wt-modal-content textarea {
	font-family: "Barlow", sans-serif;
}

/* ======================
   Hike-Liste
====================== */

.wt-hike-list {
	max-width: 100%;
	margin: var(--spacing-xl) auto;
	background: #fff;
}

/* ======================
   ACCORDION & HIKES
====================== */

.wt-hike-item {
	overflow: hidden;
	background: var(--gt-bg-neutral);
}

.wt-hike-item:nth-child(2n) {
	background-color: #fff;
}

.wt-hike-item+.wt-hike-item {
	border-top: 1px solid #e0e0e0;
}

.wt-hike-label {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: var(--spacing-s);
	font-size: var(--font-size-base);
	border: none;
	outline: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.2s ease;
}

.wt-hike-label:hover {
	background-color: #e5ddd1;
}

/* Nummer: wie Bad-Schandau – kein Hintergrund, nur fett */
.wt-hike-number {
	font-weight: 700;
	color: var(--gt-text);
	margin-right: var(--spacing-s);
	min-width: 2.35em;
	text-align: left;
	text-transform: uppercase;
}

/* Tag-Label zwischen Nummer und Titel */
.wt-hike-tag-label {
	font-family: 'Oswald', sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: var(--spacing-s);
	padding: var(--spacing-xs) var(--spacing-s);
	height: 100%;
	background: var(--gt-green);
	color: #ffffff;
	font-size: var(--font-size-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Titel rechts neben der Nummer */
.wt-hike-title {
	flex: 1;
	font-weight: 600;
	color: var(--gt-text);
	margin-left: var(--spacing-xs);
	font-size: var(--font-size-base);
}

/* Dauer/Strecke rechts */
.wt-hike-meta {
	font-family: 'Oswald', sans-serif;
	color: var(--gt-text-muted);
	font-size: var(--font-size-small);
	white-space: nowrap;
}

/* Verfügbarkeit: Noch X Plätze / Ausgebucht */


.wt-hike-availability-label {
	display: inline-block;
	padding: var(--spacing-xs) var(--spacing-s);
	background-color: var(--gt-text-gray);
	font-size: var(--font-size-small);
	color: #fff;
	text-transform: uppercase;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
}

/* Wenige Plätze */


/* Ausgebucht */


/* Panel-Inhalt */
.wt-hike-content {
	display: none;
	gap: 2rem;
	padding: 1.4rem 0rem;
	background: #ffffff;
	border-top: 1px solid #e6e6e6;
	font-size: var(--font-size-base);
}

.wt-hike-content.wt-open,
.wt-hike-item.wt-active .wt-hike-content {
	display: block;
	animation: slideDown 0.2s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Details im Panel */

.wt-hike-desc,
.wt-event-description {
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
	display: flow-root;
}

.wt-hike-desc-inner {
	display: block;
}

.wt-hike-desc p,
.wt-event-description p {
	margin-bottom: 1rem;
}

.wt-hike-desc p:last-child,
.wt-event-description p:last-child {
	margin-bottom: 0;
}

.wt-hike-desc img,
.wt-event-description img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.wt-hike-desc .wt-btn,
.wt-event-description .wt-btn {
	margin-top: 1.4rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wt-hike-desc .wt-btn:hover,
.wt-event-description .wt-btn:hover {
	transform: translateY(-2px);
}

.wt-hike-desc .alignleft,
.wt-event-description .alignleft {
	float: left;
	margin: 0.5rem 1.5rem 1rem 0;
}

.wt-hike-desc .alignright,
.wt-event-description .alignright {
	float: right;
	margin: 0.5rem 0 1rem 1.5rem;
}

.wt-hike-desc .aligncenter,
.wt-event-description .aligncenter {
	display: block;
	margin: 1rem auto;
}

@media (max-width: 600px) {

	.wt-hike-desc .alignleft,
	.wt-hike-desc .alignright,
	.wt-event-description .alignleft,
	.wt-event-description .alignright {
		float: none;
		display: block;
		margin: 1rem auto;
		width: 100%;
	}
}


.wt-hike-full-info {
	margin-top: var(--spacing-s);
	font-size: var(--font-size-small);
	font-weight: 600;
	color: var(--gt-text-gray);
}

.wt-hike-details {
	list-style: none;
	padding: 1.3rem 1.5rem;
	margin: 0 0 1.5rem 2rem;
	background: #f7f7f7;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 0.9rem;
	min-width: 17rem;
	float: right;
}

.wt-hike-details-heading {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.wt-hike-details-heading h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #000;
}

.wt-hike-details li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 0.6rem;
	margin-bottom: 0;
}

.wt-hike-details li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.wt-hike-details strong {
	font-weight: 600;
	color: #000;
	min-width: 130px;
}

.wt-hike-details .wt-asset-icon {
	width: 18px;
	height: 18px;
	margin-left: 4px;
	opacity: 0.85;
	vertical-align: middle;
}

/* Hinweiszeile Personalausweis */
.wt-hike-details .wt-hike-bring-id {
	margin-top: var(--spacing-xs);
	border-top: 1px solid #f0f0f0;
	padding-top: var(--spacing-xs);
	color: var(--gt-text);
	font-weight: 600;
}

/* Höhenmeter auf einer Zeile */
.wt-elevation-metrics {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.wt-elevation-item {
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}

.wt-elevation-separator {
	color: #999;
	font-weight: 500;
}


/* ======================
   DAY GROUPS
====================== */

.wt-day-group {
	margin-bottom: var(--spacing-xl);
	border-top: 3px solid #d7e3d7;
	padding-top: var(--spacing-l);
}

.wt-day-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	padding: var(--spacing-s) var(--spacing-xs) var(--spacing-xs);
}

/* Titel links */
.wt-day-title {
	flex: 1;
	font-size: var(--font-size-h2);
	font-weight: 600;
	color: #00421b;
	letter-spacing: 0.0625rem;
	text-transform: uppercase;
}

/* Rechts: Dauer / Strecke Icons mit fixer Spaltenbreite */
.wt-day-header .floatright {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
}

.wt-day-header .wt-dauer,
.wt-day-header .wt-strecke,
.wt-hike-meta {
	width: 2.5rem;
	/* ggf. an die Breite der Meta-Spalte anpassen */
	text-align: center !important;
}

/* (alte day-meta bleibt für andere Kontexte nutzbar) */
.wt-day-meta {
	display: flex;
	gap: 1.2em;
	align-items: center;
	color: #333;
	font-weight: 600;
	font-size: var(--font-size-small);
}

.wt-meta-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3em;
}

.wt-dist-icon::after,
.wt-time-icon::after {
	font-weight: normal;
	color: #666;
	font-size: var(--font-size-small);
}

.wt-dist-icon::after {
	content: " km";
}

.wt-time-icon::after {
	content: " h";
}

/* ======================
   BUTTONS
====================== */

.wt-btn,
.wt-add-person,
#wt-checkout-btn,
.wt-btn-primary {
	background: #2b6a2b;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: var(--spacing-s) var(--spacing-m);
	cursor: pointer;
	font-size: var(--font-size-small);
	font-weight: 600;
	text-align: center;
	transition: background-color 0.2s ease, transform 0.1s ease;
	display: inline-block;
}

.wt-btn:hover,
.wt-add-person:hover,
#wt-checkout-btn:hover,
.wt-btn-primary:hover {
	background-color: #1e511e;
	transform: translateY(-1px);
}

.wt-btn-secondary {
	background: #ddd;
	color: #333;
	font-size: var(--font-size-small);
}

.wt-btn-secondary:hover {
	background: #ccc;
}

#wt-checkout-btn {
	width: 100%;
	margin-bottom: var(--spacing-s);
}

.wt-tag.wt-btn {
	background-color: #eef6e0;
	border: 1px solid #7aa663;
	color: #355f2e;
	padding: var(--spacing-xs) var(--spacing-s);
}

/* ======================
   BADGES
====================== */

.wt-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: bold;
	text-align: center;
	margin-left: var(--spacing-s);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
	font-size: var(--font-size-xs);
}

.wt-badge.wt-hidden {
	display: none;
}

.wt-badge:not(.small) {
	width: 24px;
	height: 24px;
	background: #ffeb3b;
	color: #1b5e20;
	font-size: var(--font-size-base);
}

.wt-badge.small {
	background: #ffd700;
	color: #1e5e1e;
	width: 1.2em;
	height: 1.2em;
}

/* ======================
   MODALS
====================== */

.wt-modal,
.wt-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: var(--spacing-m);
	box-sizing: border-box;
}

.wt-modal-overlay {
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.wt-modal.wt-hidden,
.wt-floating-summary.wt-hidden {
	display: none;
}

.wt-modal-content {
	background: #fff;
	padding: var(--spacing-m) var(--spacing-m) 0 var(--spacing-m);
	border-radius: 8px;
	width: 90vw;
	max-width: 650px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	position: relative;
	font-size: var(--font-size-base);
	max-height: 85vh;
	overflow-y: auto;
}

@media (min-width: 600px) {
	.wt-modal-content {
		width: 480px;
		max-width: 650px;
		max-height: 85vh;
	}
}

#wt-checkout-modal .wt-modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	max-height: 80vh;
	overflow-y: auto;
	z-index: 1001;
}

.wt-modal-close {
	background: none;
	border: 2px solid var(--gt-bg-neutral);
	font-size: var(--font-size-medium);
	cursor: pointer;
}

/* AGB Display in Modal */
.wt-agb-display {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 1010;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
}

.wt-agb-display-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #eee;
	background: #f9f9f9;
}

.wt-agb-display-header h3 {
	margin: 0;
	font-size: 1.1rem;
}

.wt-agb-display-content {
	flex: 1;
	padding: 1.5rem;
	overflow-y: auto;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #333;
}

.wt-agb-display-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid #eee;
	background: #f9f9f9;
	text-align: right;
}

.wt-open-agb {
	color: #2b6a2b;
	text-decoration: underline;
	cursor: pointer;
}

.wt-open-agb:hover {
	text-decoration: none;
}

.wt-modal-content h3 {
	margin-top: 0;
	margin-bottom: 1em;
	color: #1b5e20;
	font-size: var(--font-size-h3);
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 0.5em;
}

/* ======================
   FORMS & INPUTS
====================== */

#wt-person-form {
	margin-top: 1em;
	border-top: 1px dashed #dddddd;
	padding-top: 0.8em;
}

.wt-person-form-outer {
	background: #f8f8f8;
	padding: 0.6rem 0.8rem;
	border-radius: 4px;
	border: 1px solid #e8e8e8;
}

.wt-person-form-outer h4 {
	margin: 0 0 0.5rem 0;
	font-size: var(--font-size-small);
	color: #444;
	font-weight: 600;
}

.wt-person-form-outer .wt-form-group {
	margin-bottom: 0.6rem;
}

.wt-person-form-outer .wt-form-row {
	gap: 0.6rem;
	margin-top: 0.6rem;
	display: flex;
	flex-direction: column;
}

@media (min-width: 600px) {
	.wt-person-form-outer .wt-form-row {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.wt-person-form-outer .wt-form-row .wt-form-group {
	margin-bottom: 0;
}

.wt-person-form-outer label {
	font-size: var(--font-size-small);
	margin-bottom: 0.25rem;
}

.wt-person-form-outer .wt-btn {
	margin: 0.8rem 0 0 0;
	padding: 0.6rem 1.2rem;
	font-size: var(--font-size-small);
	width: auto;
	min-width: 120px;
}

#wt-person-form label,
.wt-form-row label {
	display: flex;
	flex-direction: column;
	font-weight: 500;
	color: #333;
	min-width: auto;
	font-size: var(--font-size-small);
}

@media (min-width: 600px) {

	#wt-person-form label,
	.wt-form-row label {
		display: block;
		flex: 1 1 30%;
		min-width: 120px;
	}
}

.wt-person-form-outer label {
	font-size: var(--font-size-small);
	color: #555;
	font-weight: 500;
	margin-bottom: 0.3rem;
	min-width: auto;
	flex: none;
}

#wt-person-form input,
#wt-person-form select,
.wt-form-group input,
.wt-form-group select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: var(--font-size-small);
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

#wt-person-form input:focus,
#wt-person-form select:focus,
#wt-checkout-form input:focus,
#wt-checkout-form select:focus {
	outline: none;
	border-color: #1b5e20;
	box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.1);
}

/* Checkout Formular Styling wie Person-Modal */
#wt-checkout-form {
	margin: 0;
}

#wt-checkout-form input,
#wt-checkout-form select {
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: var(--font-size-small);
	box-sizing: border-box;
	transition: border-color 0.2s ease;
	width: 100%;
}

#wt-checkout-form label {
	font-weight: 500;
	color: #1b5e20;
	font-size: var(--font-size-small);
	display: block;
	margin-bottom: 0.15rem;
}

#wt-checkout-form .wt-form-group {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Desktop: Labels neben den Feldern */
@media (min-width: 768px) {

	#wt-checkout-form input,
	#wt-checkout-form select {
		flex: 1;
		width: auto;
	}

	#wt-checkout-form label {
		display: flex;
		align-items: center;
		min-width: 120px;
		margin-right: 0.5rem;
		margin-bottom: 0;
		white-space: nowrap;
	}

	#wt-checkout-form .wt-form-group {
		flex-direction: row;
		align-items: center;
		gap: 8px;
	}
}

/* Address-Rows: Zwei Inputs pro Zeile */
#wt-checkout-form .wt-form-address-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 0;
}

#wt-checkout-form .wt-form-address-group label {
	display: block;
	margin-bottom: 0.15rem;
	margin-right: 0;
	white-space: normal;
}

#wt-checkout-form .wt-address-inputs {
	display: flex;
	gap: 4px;
	flex: 1;
}

#wt-checkout-form .wt-address-inputs input {
	flex: 1;
}

#wt-checkout-form .wt-address-inputs input[name="house"] {
	flex: 0 0 80px;
}

#wt-checkout-form .wt-address-inputs input[name="zip"] {
	flex: 0 0 100px;
}

/* Desktop: Label neben Address-Inputs */
@media (min-width: 768px) {
	#wt-checkout-form .wt-form-address-group {
		flex-direction: row;
		align-items: flex-start;
		gap: 8px;
	}

	#wt-checkout-form .wt-form-address-group label {
		display: flex;
		align-items: center;
		min-width: 120px;
		margin-right: 0.5rem;
		margin-bottom: 0;
		white-space: nowrap;
		flex-shrink: 0;
	}

	#wt-checkout-form .wt-address-inputs {
		flex: 1;
		gap: 8px;
	}
}

.wt-form-row,
.wt-form-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 0.8em;
	flex-direction: column;
}

@media (min-width: 768px) {

	.wt-form-row,
	.wt-form-grid {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

/* Kompakte 3-Spalten-Anordnung für Person-Form */
.wt-person-form-outer .wt-form-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-top: 0.6rem;
}

.wt-person-form-outer .wt-form-row .wt-form-group {
	margin-bottom: 0;
}

.wt-form-group {
	display: flex;
	flex-direction: column;
}

#wt-checkout-form .wt-form-group.wt-full {
	width: 100%;
}

#wt-checkout-form .wt-form-group.wt-half {
	width: 100%;
}

#wt-checkout-form .wt-form-group.wt-two-thirds {
	width: 100%;
}

#wt-checkout-form .wt-form-group.wt-one-third {
	width: 100%;
}

#wt-checkout-form input[name="house"] {
	max-width: 80px;
}

/* Desktop: Mehrspaltiges Formular-Layout */
@media (min-width: 768px) {
	#wt-checkout-form .wt-form-group.wt-full {
		width: 100%;
	}

	#wt-checkout-form .wt-form-group.wt-half {
		width: calc(50% - 2px);
	}

	#wt-checkout-form .wt-form-group.wt-two-thirds {
		width: calc(66.66% - 2px);
	}

	#wt-checkout-form .wt-form-group.wt-one-third {
		width: calc(33.33% - 2px);
	}
}

.wt-form-group.wt-full {
	width: 100%;
}

.wt-form-group.wt-half {
	width: 100%;
}

.wt-form-group.wt-two-thirds {
	width: 100%;
}

.wt-form-group.wt-one-third {
	width: 100%;
}

@media (min-width: 768px) {
	.wt-form-group.wt-full {
		width: 100%;
	}

	.wt-form-group.wt-half {
		width: calc(50% - 2px);
	}

	.wt-form-group.wt-two-thirds {
		width: calc(66.66% - 2px);
	}

	.wt-form-group.wt-one-third {
		width: calc(33.33% - 2px);
	}
}

.wt-agb-checkbox,
.wt-agb-label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
	font-size: var(--font-size-small);
}

.wt-error-msg {
	display: none;
	color: #dc3232;
	font-size: var(--font-size-small);
	margin-top: 4px;
	padding: 4px 8px;
	background: #ffe6e6;
	border-left: 3px solid #dc3232;
	border-radius: 3px;
	opacity: 0;
	transform: translateY(-5px);
	transition: all 0.2s ease;
}

.wt-error-msg.wt-show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.wt-person-form-outer .wt-error-msg {
	grid-column: 1 / -1;
	width: auto;
}

.wt-person-form-outer .wt-form-row .wt-error-msg {
	width: auto;
}


/* ======================
   INLINE PERSON FORM
====================== */

.wt-hike-participants-section {
	margin-top: 1.2rem;
	/*	background-color: rgba(231, 226, 220, 0.25);*/
	/*	border: 1px solid #e0e0e0;*/
	border-radius: 8px;
	padding: 0rem;
	max-width: 30rem;
}

.wt-known-persons-tags {
	margin-bottom: 10px;
	font-size: var(--font-size-small);
}

.wt-participants-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	margin-bottom: 0.8rem;
}

.wt-selected-persons-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 1rem;
	min-height: 2rem;
}

.wt-no-participants {
	font-style: italic;
	color: #777;
	font-size: 0.85rem;
	margin-left: 0.5rem;
}

.wt-selected-label,
.wt-known-persons-label {
	font-weight: 400;
	font-family: var(--wp--preset--font-family--oswald);
	color: #555;
	font-size: 0.9rem;
	white-space: nowrap;
}

.wt-person-list-items {
	margin: 0 !important;
	display: inline-flex !important;
}

.wt-known-persons-tags {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.8rem;
	align-items: baseline;
}

.wt-person-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
}

/* Button styled like a person-tag pill */
button.wt-add-person-inline {
	display: inline-flex;
	align-items: baseline;
	background: #d4ecd4;
	color: #1b5e20;
	border: 0px dashed #1b5e20;
	border-radius: 20px;
	padding: 0.2em;
	font-size: var(--font-size-small);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
	font-family: inherit;
	font-weight: 500;
}

button.wt-add-person-inline:hover {
	background: #b8dfb8;
	border-color: #145214;
}

button.wt-add-person-inline .wt-plus-icon {
	margin-right: 4px;
	font-weight: bold;
	font-size: 1.1em;
}

.wt-inline-person.wt-error-msg {
	display: block;
	color: #d11212;
	font-size: 13px;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	margin-top: 0;
}

.wt-error-msg.wt-active {
	height: auto;
	opacity: 1;
	margin-top: 5px;
}

/* Loading Spinner für Preis-Summary */
.wt-summary-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	color: #666;
	font-style: italic;
}

.wt-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-top-color: #2271b1;
	border-radius: 50%;
	margin-right: 10px;
	animation: wt-spin 0.8s linear infinite;
}

@keyframes wt-spin {
	to {
		transform: rotate(360deg);
	}
}

.wt-inline-person-form-container {
	margin-top: 15px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
	margin-top: 0;
}

.wt-inline-person-form-container.wt-inline-open {
	max-height: 500px;
	opacity: 1;
	margin-top: 15px;
}

/* Input & Select styling (gleich wie im alten Modal) */
.wt-inline-person-form-container input,
.wt-inline-person-form-container select {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: var(--font-size-small);
	box-sizing: border-box;
	transition: border-color 0.2s ease;
	background: #fff;
	color: var(--gt-text);
	font-family: inherit;
}

.wt-inline-person-form-container input:focus,
.wt-inline-person-form-container select:focus {
	outline: none;
	border-color: #1b5e20;
	box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.1);
}

.wt-inline-form-actions {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

.wt-plus-icon {
	font-weight: bold;
	margin-right: 4px;
	font-size: 1.1em;
}

.wt-inline-form-actions .wt-btn {
	width: auto;
	margin: 0;
}

/* ======================
   PERSONS & TAGS
====================== */

.wt-person-list,
.wt-existing-tags {
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e0e0e0;
}

.wt-person-list h4,
.wt-existing-tags h4 {
	margin: 0 0 0.5rem;
	font-size: var(--font-size-base);
	color: #2e7d32;
}

.wt-person-list-items,
.wt-person-list ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	align-items: flex-start;
	align-content: flex-start;
	flex-direction: row;
	justify-content: flex-start;
}

.wt-person-list-items li {
	background: #f3f4f6;
	padding: 0 0.2rem 0 0.8rem;
	margin: 0 0 0.3rem 0;
	height: 1.8rem;
	border-radius: 20px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0em;
	color: #000000;
	font-size: var(--font-size-small);
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.wt-person-list-items li:hover {
	background: #e5e7eb;
	border-color: #ef4444;
}

.wt-person-list-items .wt-placeholder {
	opacity: 0.65;
	font-style: italic;
	background: #f5f5f5;
	border-radius: 4px;
	padding: 0.4em 0.6em;
	white-space: normal;
}

.wt-person-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	margin-bottom: 0em;
}

.wt-person-tag {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: #e0f0e0;
	color: #284b28;
	border-radius: 20px;
	padding: 0 0.2rem 0 0.8rem;
	height: 1.8rem;
	font-size: var(--font-size-small);
	cursor: pointer;
	transition: all 0.2s ease;
	gap: 8px;
	border: 1px solid transparent;
}

.wt-person-tag::before {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	order: 2;
	/* Plus nach rechts schieben für Symmetrie zum X */
	width: 1.4rem;
	height: 1.4rem;
	background: #1b5e20;
	color: #ffffff;
	border-radius: 50%;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1;
}

.wt-person-tag:hover {
	background: #cde7cd;
	border-color: #1b5e20;
}

/* Spezifische Styles für BEREITS AUSGEWÄHLTE Personen (Grau) */
.wt-person-tag.wt-selected-person {
	background: #f3f4f6;
	border: 1px solid #ccc;
	color: #000000;
	cursor: pointer;
	padding: 0 0.2rem 0 0.8rem;
}

.wt-person-tag.wt-selected-person:hover {
	background: #e5e7eb;
	border-color: #ef4444;
}

.wt-person-tag.wt-selected-person::before {
	content: none;
}

.wt-tag {
	background: #eef5ff;
	border: 1px solid #8cb6ff;
	padding: 4px 8px;
	border-radius: 4px;
	cursor: pointer;
	font-size: var(--font-size-xs);
	transition: background 0.2s;
}

.wt-tag:hover {
	background: #dce9ff;
}

.wt-remove,
.wt-remove-person {
	background: #ef4444;
	border: none;
	color: #ffffff;
	cursor: pointer;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	margin-left: 8px;
	line-height: 1;
	font-weight: bold;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.wt-remove:hover,
.wt-remove-person:hover {
	background-color: #dc2626;
	transform: scale(1.1);
}

.wt-hike-list {
	max-width: 100%;
	margin: var(--spacing-xl) auto;
	background: #fff;
	position: relative;
	/* Anker für Sticky Summary */
}

/* ======================
   RE-DESIGNED FLOATING SUMMARY (MOBILE OPTIMIZED)
====================== */

.wt-floating-summary {
	position: -webkit-sticky;
	position: sticky;
	bottom: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ccd0d4;
	box-shadow: none;
	border-radius: 8px;
	z-index: 100;
	/* Reduziert, damit Modals/Menüs darüber liegen können */
	width: 60vw;
	max-width: 900px;
	font-family: inherit;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	margin-top: 2rem;
	/* Abstand zum Listenende */
}

.wt-summary-inner {
	display: flex;
	flex-direction: column;
}

/* Kompakte Zeile */
.wt-summary-compact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background: #fff;
	z-index: 10;
	position: relative;
}

.wt-summary-info-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	flex: 1;
	user-select: none;
	overflow: hidden;
	/* Ermöglicht Text-Kürzung */
}

.wt-summary-stats {
	font-weight: 700;
	color: var(--gt-green, #21412c);
	font-size: 0.95rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Selektions-Indikator (Gelber Störer mit Haken) */
.wt-selected-indicator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gt-yellow, #ffd800);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	margin-right: 0.8rem;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wt-selected-indicator img {
	width: 2rem;
	height: 2rem;
	display: block;
}

.wt-label-person-tag {
	background-color: var(--gt-yellow, #ffd800);
	color: #000;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: none;
	line-height: 1.2;
}

.wt-summary-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #f0f0f0;
	border-radius: 50%;
	transition: transform 0.3s ease, background 0.2s ease;
}

.wt-icon-chevron {
	width: 6px;
	height: 6px;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	transform: rotate(-135deg);
	/* Pointing up */
	margin-top: 3px;
	transition: transform 0.3s ease;
}

.wt-summary-info-trigger:hover .wt-summary-toggle-icon {
	background: #e0e0e0;
}

/* Drawer Detail-Bereich */
.wt-summary-content {
	max-height: 0;
	overflow-y: auto;
	background: #fdfdfb;
	border-top: 0 solid #eee;
	transition: max-height 0.3s ease-out, padding 0.3s ease, border-width 0.1s;
	padding: 0 1.25rem;
}

.wt-summary-content .wt-summary-person {
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.wt-summary-content .wt-summary-person:last-child {
	border-bottom: none;
}

.wt-summary-content strong {
	color: #333;
	font-size: 0.9rem;
}

.wt-summary-content small {
	color: #666;
	display: block;
	margin-top: 2px;
	font-size: 0.8rem;
}

/* Open State */
.wt-floating-summary.wt-is-open .wt-summary-content {
	max-height: 300px;
	padding: 0.5rem 1.25rem 1.25rem 1.25rem;
	border-top-width: 1px;
}

.wt-floating-summary.wt-is-open .wt-icon-chevron {
	transform: rotate(45deg);
	/* Pointing down */
	margin-top: -2px;
}

/* Checkout Button Anpassung für Mobile */
#wt-checkout-btn {
	margin: 0 !important;
	padding: 0.6rem 1.25rem !important;
	font-size: 0.9rem !important;
	white-space: nowrap;
	width: auto !important;
	box-shadow: 0 4px 12px rgba(43, 106, 43, 0.2);
}

@media (max-width: 480px) {
	.wt-summary-stats {
		font-size: 0.85rem;
	}

	#wt-checkout-btn {
		padding: 0.5rem 0.75rem !important;
		font-size: 0.85rem !important;
	}
}

/* ======================
   CHECKOUT & SUMMARY
====================== */

.wt-checkout-content {
	font-size: var(--font-size-base);
	display: flex;
	flex-direction: column;
	height: auto;
	max-height: 80vh;
	width: 90vw;
	max-width: min(800px, 90vw);
}

@media (min-width: 768px) {
	.wt-checkout-content {
		min-width: 800px;
		width: auto;
		max-width: 800px;
	}
}

#wt-summary-table {
	margin-bottom: -15px;
}

#wt-summary-table .person {
	margin-bottom: 12px;
}

#wt-summary-table .hikes {
	margin-left: 20px;
	font-size: var(--font-size-small);
}

.wt-summary-person-block {
	padding: 12px 15px;
	border: none;
	border-radius: 8px;
	background: #e0f0e0;
	margin-bottom: 15px;
}

.wt-summary-person-block h3 {
	margin: 0 0 8px 0;
	color: #1b5e20;
	font-size: var(--font-size-base);
}

.wt-summary-person-header {
	display: flex;
	justify-content: space-between;
	font-size: var(--font-size-medium);
	margin-bottom: 8px;
}

.wt-summary-hike-list {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
	font-size: var(--font-size-small);
}

.wt-summary-hike-list li {
	list-style: none;
	color: #2e7d32;
	padding: 2px 0;
}

.wt-summary-price-details {
	margin-left: 10px;
}

.wt-summary-price-row {
	display: flex;
	justify-content: space-between;
}

.wt-summary-total {
	font-size: var(--font-size-medium);
	font-weight: bold;
	border-top: 1px solid #e0f0e0;
	padding-top: 10px;
	color: #1b5e20;
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #e0f0e0;
}

.wt-customer-summary {
	padding: 12px 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #e0f0e0;
}

.wt-customer-summary h3 {
	margin: 0 0 10px 0;
	font-size: var(--font-size-h3);
	color: #1b5e20;
}

.wt-customer-summary p {
	margin: 5px 0;
	font-size: var(--font-size-small);
	line-height: 1.4;
}

.wt-person-price {
	font-weight: 600;
	color: #1b5e20;
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid #cde7cd;
	font-size: var(--font-size-base);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ======================
   ICONS / ASSETS
====================== */

.wt-asset-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
}

.wt-hike-details .wt-asset-icon {
	width: 16px;
	height: 16px;
}

/* ======================
   PROGRESS STEPS
====================== */

.wt-steps,
.wt-step-progress {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	font-size: var(--font-size-small);
	background: #fff;
	border-bottom: 1px solid #e0f0e0;
	position: sticky;
	top: 0;
	z-index: 10;
	flex-shrink: 0;
}

.wt-step-indicator {
	width: 49%;
	padding: 10px;
	background: #eee;
	text-align: center;
	border-radius: 4px;
	font-weight: bold;
	opacity: 0.6;
}

.wt-step-indicator.wt-active {
	background: #0073aa;
	color: #fff;
	opacity: 1;
}

.wt-step-circle {
	text-align: center;
	width: 110px;
}

.wt-step-circle span {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	border-radius: 50%;
	background: #ccc;
	color: #fff;
	font-weight: bold;
}

.wt-step-circle.wt-active span {
	background: #0073aa;
}

.wt-step-circle label {
	display: inline-block;
	font-size: var(--font-size-xs);
	margin-top: 5px;
	opacity: 0.7;
}

.wt-step-line {
	flex: 1;
	height: 3px;
	background: #ddd;
}

.wt-step {
	display: none;
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}

.wt-step.wt-active {
	display: flex;
	flex-direction: column;
}

.wt-step-2 {
	display: none !important;
}

.wt-step-2.wt-active {
	display: flex !important;
	flex-direction: column;
	flex: 1;
	padding: 0;
	overflow: hidden;
}

.wt-step-2.wt-active h2 {
	padding: 20px 20px 0 20px;
	margin: 0;
	font-size: var(--font-size-h3);
	flex-shrink: 0;
}

.wt-step-2-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.wt-step-progress {
	display: none;
}

/* Desktop: 2-Spalten Layout (Adressdaten links, Wanderungen rechts) */
@media (min-width: 900px) {
	.wt-step-2-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.wt-step-2-content .wt-summary-total {
		order: 1;
	}

	.wt-step-2-content #wt-summary-table {
		order: 2;
	}
}

/* Mobile/Tablet: 1-Spalte Layout (Adressdaten oben, Wanderungen unten) */
@media (max-width: 899px) {
	.wt-step-2-content .wt-summary-total {
		order: 1;
	}

	.wt-step-2-content #wt-summary-table {
		order: 2;
	}
}

.wt-step-2-content #wt-summary-table {
	overflow: visible;
	max-height: none;
}

.wt-step-2-content .wt-summary-total {
	overflow: visible;
	max-height: none;
}

.wt-step h2 {
	margin: 0 0 15px 0;
	font-size: var(--font-size-h3);
}

/* ======================
   FOOTERS & BUTTONS
====================== */

.wt-modal-buttons,
.wt-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	text-align: right;
	font-size: var(--font-size-small);
	padding: 12px 20px;
	border-top: 1px solid #e0f0e0;
	background: #fff;
	position: sticky;
	bottom: 0;
	z-index: 10;
	flex-shrink: 0;
}

.wt-modal-buttons .wt-btn,
.wt-modal-footer .wt-btn {
	padding: 0.6rem 1.2rem;
	font-size: var(--font-size-small);
}

.wt-modal-header {
	background: #f0f1f2;
	padding: 18px 25px;
	border-bottom: 2px solid #e2e4e7;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px 8px 0 0;
	position: sticky;
	top: 0;
	z-index: 20;
}

.wt-modal-header h2 {
	margin: 0 !important;
	padding: 0 !important;
	color: #1b5e20 !important;
	font-size: 1.4rem !important;
	font-weight: 700 !important;
	border: none !important;
}

.wt-modal-header .wt-modal-close {
	background: #e2e4e7;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #646970;
	cursor: pointer;
	transition: all 0.2s;
}

.wt-modal-header .wt-modal-close:hover {
	background: #dcdcde;
	color: #1d2327;
}

/* Fehler-Container für Checkout */
.wt-error-container {
	display: none;
	padding: 12px 20px;
	margin: 0;
	background: #fcf0f0;
	border-bottom: 1px solid #f8d7da;
	font-size: var(--font-size-small);
	color: #d63638;
}

.wt-error-container.wt-active {
	display: block;
	animation: wtFadeDown 0.3s ease;
}

@keyframes wtFadeDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wt-error-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wt-error-container li {
	margin: 4px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.wt-error-container li::before {
	content: "⚠";
	font-weight: bold;
}

/* Invalid Field Highlighting */
#wt-checkout-form input.wt-invalid,
#wt-checkout-form select.wt-invalid {
	border-color: #d63638 !important;
	background-color: #fff8f8 !important;
	box-shadow: 0 0 0 2px rgba(214, 54, 56, 0.1) !important;
}

/* Step 1 Styling */
.wt-step-1 h2 {
	color: #1b5e20;
	margin-bottom: 15px;
}

.wt-step-1 .wt-form-grid {
	margin-bottom: 15px;
}

.wt-step-1 .wt-agb-checkbox {
	color: #1b5e20;
}

/* Verstecke Close Button im Checkout Dialog */
#wt-checkout-modal .wt-modal-close {
	display: none;
}

/* Button Sichtbarkeit - wird per JS gesteuert */
#wt-checkout-modal .wt-prev-step,
#wt-checkout-modal .wt-submit-booking {
	display: none;
}

/* Verstecke Abbrechen-Button im Person-Modal */
#wt-person-modal .wt-modal-buttons .wt-modal-close {
	display: none;
}

/* ======================
   SUCCESS
====================== */

.wt-success-box {
	padding: 20px;
	text-align: center;
	font-size: var(--font-size-base);
}

.wt-success-box h2 {
	color: #2a7d2a;
	margin-bottom: 15px;
}

.wt-success-box p {
	font-size: var(--font-size-medium);
	margin-bottom: 10px;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 768px) {

	/* Akkordeon-Header mobiler */
	.wt-hike-label {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.5em 0.8em;
		padding: 0.85em 0.9em;
	}

	.wt-hike-number {
		margin-right: 0;
		font-size: var(--font-size-small);
	}

	.wt-hike-title {
		font-size: var(--font-size-base);
		margin-left: 0;
		flex: 20;
	}

	.wt-hike-tag-label {
		margin-right: 0;
	}

	.wt-hike-meta {
		margin-right: 0;
		white-space: normal;
		font-size: var(--font-size-small);
		color: var(--gt-text-muted);
	}

	.wt-hike-content.wt-open,
	.wt-hike-item.wt-active .wt-hike-content {
		padding: 1.4rem 0rem;
	}

	.wt-hike-details {
		padding: 1rem 1.2rem;
	}

	.wt-hike-desc .wt-btn,
	.wt-hike-content .wt-btn.wt-add-person {
		width: 100%;
		text-align: center;
		margin-top: 0.6em;
	}
}

@media (max-width: 1024px) {

	.wt-hike-content.wt-open,
	.wt-hike-item.wt-active .wt-hike-content {
		grid-template-columns: 1.5fr 1fr;
	}
}

@media (max-width: 600px) {
	.wt-form-row {
		flex-direction: column;
	}

	.wt-modal-content {
		width: 100%;
		padding: var(--spacing-l);
	}

	/* Smartphone Label Layout */
	.wt-hike-label {
		display: grid;
		grid-template-columns: min-content 1fr min-content;
		grid-template-areas:
			"id title dauer"
			"tag title strecke"
			". badge badge"
			". avail avail";
		gap: 4px 12px;
		align-items: start;
		text-align: left;
	}

	.wt-hike-number {
		grid-area: id;
		margin: 0;
	}

	.wt-hike-tag-label {
		grid-area: tag;
		margin: 0;
		white-space: normal;
		word-wrap: break-word;
		text-align: center;
		padding: 2px 4px;
		font-size: 9px;
		max-width: 60px;
		line-height: 1.1;
	}

	.wt-hike-desc-inner {
		display: flex;
		flex-direction: column;
	}

	.wt-hike-desc-inner>p {
		order: 1;
	}

	.wt-hike-details {
		order: 5;
		display: block;
		padding: 0.4rem 0.6rem;
		margin: 0.4rem 0;
		list-style: none;
	}

	.wt-hike-participants-section {
		order: 10;
	}

	.wt-hike-details li {
		display: inline;
		margin-right: 1rem;
		border: none;
	}

	.wt-hike-details li:not(:last-child)::after {
		content: " | ";
		color: #666;
	}

	.wt-hike-details li.wt-hike-details-heading::after {
		content: "";
	}

	.wt-hike-details li.wt-hike-details-heading {
		font-weight: bold;
		display: block;
		margin-bottom: 1rem;
	}

	.wt-hike-title {
		grid-area: title;
		flex: none;
		order: unset;
		margin: 0;
		line-height: 1.3;
	}

	.wt-hike-meta.wt-dauer {
		grid-area: dauer;
		margin: 0;
		text-align: right;
	}

	.wt-hike-meta.wt-strecke {
		grid-area: strecke;
		margin: 0;
		text-align: right;
	}

	.wt-selected-indicator {
		grid-area: badge;
		margin: 0;
	}

	.wt-hike-availability {
		grid-area: avail;
		margin: 0;
	}

	.wt-floating-summary {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.wt-hike-label {
		padding-inline: 0.75em;
	}

	.wt-hike-title {
		font-size: var(--font-size-small);
	}

	.wt-hike-meta {
		font-size: var(--font-size-xs);
	}

	.wt-asset-icon {
		width: 20px;
		height: 20px;
	}

	.wt-hike-desc {
		font-size: 0.95rem;
	}

	.wt-hike-details {
		font-size: 0.85rem;
	}

	.wt-hike-details .wt-asset-icon {
		width: 16px;
		height: 16px;
	}
}