.ash-webform,
.ash-webform * {
	box-sizing: border-box;
}

.ash-webform {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
}

.ash-webform input,
.ash-webform textarea,
.ash-webform select {
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	border: 0;
	border-bottom: 1px solid rgba(82, 89, 145, 0.28);
	border-radius: 0;
	outline: 0;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none;
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
	color: #252a48;
}

.ash-webform textarea {
	min-height: 130px;
	resize: vertical;
}

.ash-webform input:focus,
.ash-webform textarea:focus,
.ash-webform select:focus {
	border-bottom-color: currentColor;
	box-shadow: none;
}

.ash-webform input::placeholder,
.ash-webform textarea::placeholder {
	color: rgba(37, 42, 72, 0.85);
	opacity: 1;
}

.ash-webform input:-webkit-autofill,
.ash-webform input:-webkit-autofill:hover,
.ash-webform input:-webkit-autofill:focus,
.ash-webform textarea:-webkit-autofill,
.ash-webform textarea:-webkit-autofill:hover,
.ash-webform textarea:-webkit-autofill:focus {
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: #252a48;
	caret-color: #252a48;
	box-shadow: 0 0 0 1000px transparent inset;
	transition: background-color 9999s ease-out 0s;
}

.ash-webform-grid {
	display: grid;
	gap: 22px 40px;
	width: 100%;
}

.ash-webform-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ash-webform-field--full {
	grid-column: 1 / -1;
}

.ash-webform-field--grow {
	flex: 1 1 auto;
	min-width: 180px;
}

.ash-webform-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 58px;
	padding: 14px 34px;
	border: 0;
	border-radius: 999px;
	outline: 0;
	box-shadow: none;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.ash-webform-button:hover,
.ash-webform-button:focus {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

.ash-webform-button:disabled {
	opacity: 0.72;
	cursor: wait;
	filter: none;
	transform: none;
}

.ash-webform-button--orange {
	background: #ff5a00;
	color: #fff;
}

.ash-webform-button--purple {
	background: #535d9b;
	color: #fff;
}

.ash-webform--newsletter {
	background: transparent;
}

.ash-webform-newsletter-row {
	display: flex;
	align-items: center;
	gap: 34px;
	width: 100%;
}

.ash-webform--newsletter input {
	padding-left: 16px;
	padding-right: 16px;
}

.ash-webform--footer {
	color: #fff;
	background: transparent;
}

.ash-webform--footer input,
.ash-webform--footer textarea {
	border-bottom-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.ash-webform--footer input::placeholder,
.ash-webform--footer textarea::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.ash-webform--footer input:-webkit-autofill,
.ash-webform--footer input:-webkit-autofill:hover,
.ash-webform--footer input:-webkit-autofill:focus,
.ash-webform--footer textarea:-webkit-autofill,
.ash-webform--footer textarea:-webkit-autofill:hover,
.ash-webform--footer textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff;
	caret-color: #fff;
}


/*
 * The footer sits on a dark Avada background. Use a deliberately stronger,
 * shortcode-scoped selector so theme form rules cannot turn these controls
 * white or replace their white text.
 */
html body .ash-webform.ash-webform--footer input:not([type="hidden"]),
html body .ash-webform.ash-webform--footer textarea {
	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.42) !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	caret-color: #fff !important;
}

html body .ash-webform.ash-webform--footer input:not([type="hidden"])::placeholder,
html body .ash-webform.ash-webform--footer textarea::placeholder {
	color: rgba(255, 255, 255, 0.76) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.76) !important;
	opacity: 1 !important;
}

html body .ash-webform.ash-webform--footer input:not([type="hidden"]):focus,
html body .ash-webform.ash-webform--footer textarea:focus {
	border-bottom-color: #fff !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #fff !important;
}

html body .ash-webform.ash-webform--footer input:not([type="hidden"]):-webkit-autofill,
html body .ash-webform.ash-webform--footer input:not([type="hidden"]):-webkit-autofill:hover,
html body .ash-webform.ash-webform--footer input:not([type="hidden"]):-webkit-autofill:focus,
html body .ash-webform.ash-webform--footer textarea:-webkit-autofill,
html body .ash-webform.ash-webform--footer textarea:-webkit-autofill:hover,
html body .ash-webform.ash-webform--footer textarea:-webkit-autofill:focus {
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: #fff !important;
	caret-color: #fff !important;
	box-shadow: 0 0 0 1000px transparent inset !important;
}

.ash-webform--footer .ash-webform-button,
.ash-webform--contact .ash-webform-button,
.ash-webform--partner .ash-webform-button {
	margin-top: 22px;
}

.ash-webform--contact,
.ash-webform--partner {
	background: transparent;
}

.ash-webform select {
	appearance: auto;
	cursor: pointer;
}

.ash-webform-turnstile {
	width: 100%;
	margin-top: 18px;
}

.ash-webform-turnstile:empty {
	display: none;
}

.ash-webform-notice {
	width: 100%;
	margin: 0 0 18px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
}

.ash-webform-notice--success {
	border-color: #9ad2a5;
	background: rgba(233, 250, 236, 0.95);
	color: #185c25;
}

.ash-webform-notice--error {
	border-color: #e2a4aa;
	background: rgba(255, 239, 241, 0.95);
	color: #8a1c28;
}

.ash-webform-notice[hidden] {
	display: none !important;
}

.ash-webform-trap {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.ash-webform-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 720px) {
	.ash-webform-grid--two {
		grid-template-columns: 1fr;
	}

	.ash-webform-field--full {
		grid-column: auto;
	}

	.ash-webform-newsletter-row {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.ash-webform-button {
		width: 100%;
	}
}


/* Professional demo-booking flow. */
html body .ash-webform.ash-webform--demo {
	--ash-demo-purple: #5b4bdb;
	--ash-demo-purple-dark: #4635c3;
	--ash-demo-ink: #171a2b;
	--ash-demo-muted: #686d7c;
	--ash-demo-line: #e3e5eb;
	--ash-demo-soft: #f7f7fb;
	max-width: 1120px;
	margin: 0 auto;
	color: var(--ash-demo-ink);
}

.ash-demo-booker,
.ash-demo-confirmation {
	overflow: hidden;
	border: 1px solid var(--ash-demo-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(29, 35, 66, 0.10);
}

.ash-demo-booker {
	display: grid;
	grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.1fr);
	min-height: 620px;
}

.ash-demo-booker[hidden],
.ash-demo-step[hidden],
.ash-demo-confirmation[hidden] {
	display: none !important;
}

.ash-demo-event-card {
	padding: 42px 34px;
	border-right: 1px solid var(--ash-demo-line);
	background: linear-gradient(160deg, #fbfaff 0%, #f4f2ff 100%);
}

.ash-demo-event-card__logo {
	display: block;
	width: min(100%, 220px);
	height: auto;
	margin: 0 0 26px;
	object-fit: contain;
	object-position: left center;
}

.ash-demo-event-card h2,
.ash-demo-confirmation h2 {
	margin: 0 0 16px;
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.15;
	color: var(--ash-demo-ink);
}

.ash-demo-event-card__description {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ash-demo-muted);
}

.ash-demo-event-meta {
	display: grid;
	gap: 14px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.ash-demo-event-meta li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #424657;
}

.ash-demo-event-meta li span {
	width: 20px;
	font-size: 17px;
	color: var(--ash-demo-purple);
	text-align: center;
}

.ash-demo-step {
	min-width: 0;
	padding: 38px;
}

.ash-demo-step h3,
.ash-demo-time-panel h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	color: var(--ash-demo-ink);
}

.ash-demo-schedule-grid {
	display: grid;
	grid-template-columns: minmax(360px, 1.35fr) minmax(210px, 0.65fr);
	gap: 28px;
}

.ash-demo-calendar-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 28px;
}

.ash-demo-calendar-nav {
	display: grid;
	grid-template-columns: 34px minmax(140px, auto) 34px;
	align-items: center;
	gap: 5px;
}

.ash-demo-calendar-nav strong {
	font-size: 14px;
	text-align: center;
	white-space: nowrap;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button,
html body .ash-webform.ash-webform--demo .ash-demo-calendar-day,
html body .ash-webform.ash-webform--demo .ash-demo-back,
html body .ash-webform.ash-webform--demo .ash-demo-secondary-button {
	margin: 0 !important;
	border: 0 !important;
	background-image: none !important;
	box-shadow: none !important;
	font: inherit !important;
	text-transform: none !important;
	cursor: pointer;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0 !important;
	border-radius: 50% !important;
	background: var(--ash-demo-soft) !important;
	font-size: 23px !important;
	line-height: 1 !important;
	color: var(--ash-demo-ink) !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button:hover,
html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button:focus-visible {
	background: #ece9ff !important;
	color: var(--ash-demo-purple-dark) !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.ash-demo-calendar-weekdays,
.ash-demo-calendar-days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 7px;
}

.ash-demo-calendar-weekdays {
	margin-bottom: 8px;
}

.ash-demo-calendar-weekdays span {
	padding: 4px 0;
	font-size: 11px;
	font-weight: 700;
	color: #858997;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	min-width: 0;
	min-height: 42px;
	padding: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	color: #a3a6af !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day--blank {
	visibility: hidden;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-available {
	background: #f1efff !important;
	color: var(--ash-demo-purple-dark) !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-available:hover,
html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-available:focus-visible {
	background: #dfdbff !important;
	outline: 2px solid rgba(91, 75, 219, 0.16) !important;
	outline-offset: 2px !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-selected {
	background: var(--ash-demo-purple) !important;
	color: #fff !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-disabled {
	opacity: 0.48;
	cursor: default;
}

.ash-demo-time-panel {
	padding-left: 26px;
	border-left: 1px solid var(--ash-demo-line);
}

.ash-demo-time-panel h3 {
	min-height: 52px;
	margin-bottom: 17px;
	font-size: 16px;
}

html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 9px !important;
	max-height: 390px;
	overflow-y: auto;
	padding-right: 5px;
}

html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 47px !important;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid #d7d3fb !important;
	border-radius: 8px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
	font: inherit !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--ash-demo-purple-dark) !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: 0.15s ease !important;
}

html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot:hover,
html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot:focus-visible {
	border-color: var(--ash-demo-purple) !important;
	box-shadow: 0 0 0 3px rgba(91, 75, 219, 0.10) !important;
	outline: 0 !important;
}

html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot.is-selected {
	border-color: var(--ash-demo-purple) !important;
	background: var(--ash-demo-purple) !important;
	color: #fff !important;
}

html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot.is-unavailable,
html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot:disabled {
	border-color: #ececf0 !important;
	background: #f4f4f6 !important;
	color: #a1a3aa !important;
	opacity: 1 !important;
	cursor: not-allowed !important;
}

.ash-webform-demo-slot-status {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--ash-demo-muted);
}

html body .ash-webform.ash-webform--demo .ash-demo-continue {
	width: 100%;
	min-height: 48px;
	margin-top: 18px;
	padding: 12px 20px;
	border-radius: 9px;
}

html body .ash-webform.ash-webform--demo .ash-demo-continue:disabled {
	background: #d8d8df;
	opacity: 1;
	cursor: not-allowed;
}

.ash-demo-step--details {
	max-width: 700px;
}

html body .ash-webform.ash-webform--demo .ash-demo-back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 24px !important;
	padding: 0 !important;
	background: transparent !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: var(--ash-demo-purple-dark) !important;
}

.ash-demo-selection-summary {
	display: grid;
	gap: 4px;
	margin: 18px 0 28px;
	padding: 15px 17px;
	border: 1px solid #ddd9ff;
	border-radius: 10px;
	background: #f8f7ff;
}

.ash-demo-selection-summary strong {
	font-size: 15px;
	color: var(--ash-demo-ink);
}

.ash-demo-selection-summary span {
	font-size: 13px;
	color: var(--ash-demo-muted);
}

.ash-webform--demo .ash-webform-label {
	display: block;
	margin: 0 0 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--ash-demo-ink);
}

html body .ash-webform.ash-webform--demo .ash-demo-step--details input:not([type="hidden"]) {
	padding: 12px 13px !important;
	border: 1px solid #d8dae2 !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
	font-size: 15px !important;
	color: var(--ash-demo-ink) !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-step--details input:not([type="hidden"]):focus {
	border-color: var(--ash-demo-purple) !important;
	box-shadow: 0 0 0 3px rgba(91, 75, 219, 0.10) !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-book-button {
	margin-top: 24px;
	border-radius: 9px;
}

.ash-demo-privacy {
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--ash-demo-muted);
}

.ash-demo-confirmation {
	max-width: 850px;
	margin: 0 auto;
	padding: 50px;
	text-align: center;
}

.ash-demo-confirmation__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #e9f9ef;
	font-size: 30px;
	font-weight: 800;
	color: #178642;
}

.ash-demo-confirmation__eyebrow {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	color: #178642;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ash-demo-confirmation__intro {
	max-width: 590px;
	margin: 0 auto 28px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ash-demo-muted);
}

.ash-demo-confirmation__report {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--ash-demo-line);
	border-radius: 12px;
	background: var(--ash-demo-line);
	text-align: left;
}

.ash-demo-confirmation__report > div {
	display: grid;
	gap: 4px;
	padding: 15px 17px;
	background: #fff;
}

.ash-demo-confirmation__report span {
	font-size: 11px;
	font-weight: 700;
	color: #777b88;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ash-demo-confirmation__report strong {
	overflow-wrap: anywhere;
	font-size: 14px;
	color: var(--ash-demo-ink);
}

.ash-demo-confirmation__calendar {
	margin-top: 28px;
	padding: 22px;
	border-radius: 12px;
	background: var(--ash-demo-soft);
}

.ash-demo-confirmation__calendar p {
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 700;
}

.ash-demo-confirmation__actions,
.ash-demo-confirmation__footer-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.ash-demo-calendar-link,
html body .ash-webform.ash-webform--demo .ash-demo-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 15px !important;
	border: 1px solid #d8d5f4 !important;
	border-radius: 8px !important;
	background: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--ash-demo-purple-dark) !important;
	text-decoration: none !important;
}

.ash-demo-calendar-link:hover,
.ash-demo-calendar-link:focus,
html body .ash-webform.ash-webform--demo .ash-demo-secondary-button:hover,
html body .ash-webform.ash-webform--demo .ash-demo-secondary-button:focus {
	border-color: var(--ash-demo-purple) !important;
	box-shadow: 0 0 0 3px rgba(91, 75, 219, 0.08) !important;
}

.ash-demo-confirmation__footer-actions {
	margin-top: 20px;
}

@media (max-width: 980px) {
	.ash-demo-booker {
		grid-template-columns: 1fr;
	}
	.ash-demo-event-card {
		padding: 30px;
		border-right: 0;
		border-bottom: 1px solid var(--ash-demo-line);
	}
	.ash-demo-schedule-grid {
		grid-template-columns: 1fr;
	}
	.ash-demo-time-panel {
		padding: 24px 0 0;
		border-top: 1px solid var(--ash-demo-line);
		border-left: 0;
	}
	html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		max-height: none;
	}
}

@media (max-width: 680px) {
	.ash-demo-step,
	.ash-demo-confirmation {
		padding: 25px 20px;
	}
	.ash-demo-calendar-header {
		align-items: stretch;
		flex-direction: column;
	}
	.ash-demo-calendar-nav {
		grid-template-columns: 34px 1fr 34px;
	}
	html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.ash-demo-confirmation__report {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.ash-demo-event-card {
		padding: 25px 20px;
	}
	.ash-demo-calendar-weekdays,
	.ash-demo-calendar-days {
		gap: 3px;
	}
	html body .ash-webform.ash-webform--demo .ash-demo-calendar-day {
		min-height: 36px;
	}
	html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
		grid-template-columns: 1fr !important;
	}
}

@media print {
	.ash-demo-booker,
	.ash-webform-notice,
	.ash-demo-confirmation__actions,
	.ash-demo-confirmation__footer-actions {
		display: none !important;
	}
	.ash-demo-confirmation {
		display: block !important;
		border: 0;
		box-shadow: none;
	}
}

/* Demo booking audit corrections: truthful calendar loading and mail status. */
.ash-demo-calendar-days[aria-busy="true"] {
	cursor: progress;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-loading {
	background: #f6f5fb !important;
	color: transparent !important;
	position: relative;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day.is-loading::after {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d8d5ea;
}

.ash-demo-confirmation__intro.is-warning {
	padding: 12px 15px;
	border: 1px solid #f0c36d;
	border-radius: 9px;
	background: #fff8e5;
	color: #6f4b00;
}

.ash-demo-calendar-link--join {
	border-color: var(--ash-demo-purple) !important;
	background: var(--ash-demo-purple) !important;
	color: #fff !important;
}

/* Demo flow repair: fixed typography, clear stage transitions, and Avada-safe layout. */
html body .ash-webform.ash-webform--demo,
html body .ash-webform.ash-webform--demo input,
html body .ash-webform.ash-webform--demo textarea,
html body .ash-webform.ash-webform--demo select,
html body .ash-webform.ash-webform--demo button,
html body .ash-webform.ash-webform--demo a {
	font-family: "Manrope", Arial, Helvetica, sans-serif !important;
}

html body .ash-webform.ash-webform--demo {
	font-size: 14px !important;
	line-height: 1.5;
}

html body .ash-webform.ash-webform--demo p,
html body .ash-webform.ash-webform--demo li,
html body .ash-webform.ash-webform--demo label,
html body .ash-webform.ash-webform--demo input,
html body .ash-webform.ash-webform--demo textarea,
html body .ash-webform.ash-webform--demo select,
html body .ash-webform.ash-webform--demo button,
html body .ash-webform.ash-webform--demo a,
html body .ash-webform.ash-webform--demo .ash-demo-calendar-weekdays span,
html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-status,
html body .ash-webform.ash-webform--demo .ash-demo-selection-summary strong,
html body .ash-webform.ash-webform--demo .ash-demo-selection-summary span,
html body .ash-webform.ash-webform--demo .ash-demo-confirmation__eyebrow,
html body .ash-webform.ash-webform--demo .ash-demo-confirmation__intro,
html body .ash-webform.ash-webform--demo .ash-demo-confirmation__report span,
html body .ash-webform.ash-webform--demo .ash-demo-confirmation__report strong {
	font-size: 14px !important;
}

html body .ash-webform.ash-webform--demo h1,
html body .ash-webform.ash-webform--demo h2,
html body .ash-webform.ash-webform--demo h3,
html body .ash-webform.ash-webform--demo h4,
html body .ash-webform.ash-webform--demo .ash-demo-event-card h2,
html body .ash-webform.ash-webform--demo .ash-demo-confirmation h2,
html body .ash-webform.ash-webform--demo .ash-demo-time-panel h3 {
	margin-top: 0;
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-nav button {
	font-size: 18px !important;
}

html body .ash-webform.ash-webform--demo .ash-demo-calendar-day,
html body .ash-webform.ash-webform--demo button.ash-webform-demo-slot {
	font-size: 14px !important;
}

.ash-demo-event-card__selection {
	display: grid;
	gap: 14px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--ash-demo-line);
}

.ash-demo-event-card__selection[hidden] {
	display: none !important;
}

.ash-demo-event-card__selection > div {
	display: grid;
	gap: 4px;
}

.ash-demo-event-card__selection span {
	font-size: 14px;
	font-weight: 500;
	color: var(--ash-demo-muted);
}

.ash-demo-event-card__selection strong {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ash-demo-ink);
}

.ash-demo-booker[data-ash-demo-stage="details"] .ash-demo-event-card__description {
	display: none;
}

.ash-demo-booker[data-ash-demo-stage="details"] .ash-demo-event-meta {
	margin-top: 22px;
}

.ash-demo-booker[data-ash-demo-stage="details"] .ash-demo-step--details {
	max-width: none;
}

.ash-demo-step:not([hidden]),
.ash-demo-confirmation:not([hidden]) {
	animation: ash-demo-stage-in 180ms ease-out both;
}

@keyframes ash-demo-stage-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ash-demo-step:not([hidden]),
	.ash-demo-confirmation:not([hidden]) {
		animation: none;
	}
}

/* The shortcode may be placed inside an Avada column even on a wide screen. */
html body .ash-webform.ash-webform--demo {
	width: 100%;
	container-name: ash-demo-form;
	container-type: inline-size;
}

@container ash-demo-form (max-width: 900px) {
	.ash-demo-booker {
		grid-template-columns: 1fr;
	}

	.ash-demo-event-card {
		padding: 30px;
		border-right: 0;
		border-bottom: 1px solid var(--ash-demo-line);
	}

	.ash-demo-schedule-grid {
		grid-template-columns: 1fr;
	}

	.ash-demo-time-panel {
		padding: 24px 0 0;
		border-top: 1px solid var(--ash-demo-line);
		border-left: 0;
	}

	html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		max-height: none;
	}
}

@container ash-demo-form (max-width: 560px) {
	.ash-demo-step,
	.ash-demo-confirmation,
	.ash-demo-event-card {
		padding: 24px 20px;
	}

	.ash-demo-calendar-header {
		align-items: stretch;
		flex-direction: column;
	}

	html body .ash-webform.ash-webform--demo .ash-webform-demo-slot-grid {
		grid-template-columns: 1fr !important;
	}
}
