.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 {
	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 {
	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;
}

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

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

.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%;
	}
}

.ash-webform--demo .ash-webform-button {
	margin-top: 22px;
}

.ash-webform-label,
.ash-webform-demo-times__heading {
	display: block;
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	color: #252a48;
}

.ash-webform-demo-calendar input[type="date"] {
	color-scheme: light;
}

.ash-webform-demo-help,
.ash-webform-demo-slot-status {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: #646970;
}

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

.ash-webform-demo-slot-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.ash-webform-demo-slot {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid rgba(82, 89, 145, 0.35);
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #343b70;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.ash-webform-demo-slot:hover,
.ash-webform-demo-slot:focus {
	border-color: #535d9b;
	background: #f4f5fb;
	outline: 2px solid transparent;
}

.ash-webform-demo-slot.is-selected,
.ash-webform-demo-slot[aria-pressed="true"] {
	border-color: #535d9b;
	background: #535d9b;
	color: #fff;
}

.ash-webform-demo-slot.is-unavailable,
.ash-webform-demo-slot:disabled {
	border-color: rgba(82, 89, 145, 0.16);
	background: #f1f2f5;
	color: #7c8191;
	opacity: 0.42;
	cursor: not-allowed;
}

.ash-webform-demo-slot.is-unavailable:hover,
.ash-webform-demo-slot.is-unavailable:focus,
.ash-webform-demo-slot:disabled:hover,
.ash-webform-demo-slot:disabled:focus {
	border-color: rgba(82, 89, 145, 0.16);
	background: #f1f2f5;
	color: #7c8191;
	outline: 0;
}

@media (max-width: 900px) {
	.ash-webform-demo-slot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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