/**
 * Public styles for LAX Elite Reservations.
 */

:root {
	--ler-dark: #070B11;
	--ler-ink: #17202c;
	--ler-muted: #64707f;
	--ler-gold: #C8A45D;
	--ler-green: #008000;
	--ler-light: #F7F7F7;
	--ler-soft: #FAFBFC;
	--ler-border: #DADDE2;
	--ler-error: #b42318;
	--ler-warning: #b7791f;
	--ler-radius: 8px;
	--ler-shadow: 0 18px 48px rgba(7, 11, 17, 0.09);
}

.ler-reservation-form-wrap,
.ler-reservation-form-wrap * {
	box-sizing: border-box;
}

.ler-reservation-form-wrap {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: 10px;
	box-shadow: var(--ler-shadow);
	color: var(--ler-dark);
	margin: 0 auto;
	max-width: 1120px;
	overflow: clip;
	padding: 34px;
	width: 100%;
}

.ler-form-title {
	color: var(--ler-dark);
	font-size: 32px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 26px;
}

.ler-form-message,
.ler-form-errors,
.ler-wizard-alert {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	border-left: 4px solid var(--ler-gold);
	border-radius: var(--ler-radius);
	color: var(--ler-ink);
	margin-bottom: 20px;
	padding: 14px 16px;
}

.ler-form-message.is-success {
	background: #f1faf3;
	border-left-color: var(--ler-green);
}

.ler-form-message.is-error,
.ler-form-errors,
.ler-wizard-alert {
	background: #fff3f3;
	border-color: #f3c5c1;
	border-left-color: var(--ler-error);
}

.ler-form-errors p {
	font-weight: 700;
	margin: 0 0 8px;
}

.ler-form-errors ul {
	margin: 0;
	padding-left: 20px;
}

.ler-wizard-progress {
	align-items: flex-start;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 32px;
	position: relative;
}

.ler-wizard-progress::before {
	background: var(--ler-border);
	content: "";
	height: 2px;
	left: 8%;
	position: absolute;
	right: 8%;
	top: 19px;
	z-index: 0;
}

.ler-progress-step {
	background: transparent;
	border: 0;
	color: var(--ler-muted);
	cursor: default;
	display: grid;
	gap: 8px;
	justify-items: center;
	padding: 0;
	position: relative;
	text-align: center;
	z-index: 1;
}

.ler-progress-step span {
	align-items: center;
	background: #fff;
	border: 2px solid var(--ler-border);
	border-radius: 50%;
	display: flex;
	font-weight: 800;
	height: 40px;
	justify-content: center;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
	width: 40px;
}

.ler-progress-step strong {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.ler-progress-step.is-active span {
	background: var(--ler-dark);
	border-color: var(--ler-gold);
	box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.15);
	color: #fff;
}

.ler-progress-step.is-active strong {
	color: var(--ler-dark);
}

.ler-progress-step.is-complete span {
	background: var(--ler-green);
	border-color: var(--ler-green);
	color: #fff;
}

.ler-wizard-step[hidden],
.ler-return-trip-section[hidden] {
	display: none;
}

.ler-step-heading {
	border-bottom: 1px solid var(--ler-border);
	margin-bottom: 24px;
	padding-bottom: 16px;
}

.ler-step-heading h3 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
}

.ler-ride-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.ler-ride-layout-full {
	grid-template-columns: 1fr;
}

.ler-form-grid {
	display: grid;
	gap: 18px 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ler-field {
	margin: 0;
}

.ler-field-wide {
	grid-column: 1 / -1;
}

.ler-field label,
.ler-extra-stop label {
	color: var(--ler-dark);
	display: block;
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 7px;
}

.ler-field label span {
	color: var(--ler-error);
}

.ler-field input,
.ler-field select,
.ler-field textarea,
.ler-extra-stop input {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	box-sizing: border-box;
	color: var(--ler-dark);
	font: inherit;
	min-height: 48px;
	padding: 11px 13px;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
	width: 100%;
}

.ler-field input::placeholder,
.ler-field textarea::placeholder,
.ler-extra-stop input::placeholder {
	color: #8a94a3;
	opacity: 1;
}

.ler-field textarea {
	min-height: 112px;
	resize: vertical;
}

.ler-field input:focus,
.ler-field select:focus,
.ler-field textarea:focus,
.ler-extra-stop input:focus {
	border-color: var(--ler-gold);
	box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.18);
	outline: 0;
}

.ler-field input:disabled,
.ler-field select:disabled,
.ler-field textarea:disabled,
.ler-booking-extra-quantity input:disabled {
	background: #f1f3f5;
	color: #6b7280;
	cursor: not-allowed;
	opacity: 1;
}

.ler-route-location-hidden {
	display: none;
}

.ler-field .is-readonly {
	background: #f7f9fc;
	color: #59616d;
}

.ler-field small {
	color: var(--ler-error);
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-top: 6px;
}

.ler-return-trip-section,
.ler-extra-stops-section,
.ler-advanced-pricing-section,
.ler-booking-extras-section {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	margin-top: 20px;
	padding: 18px;
}

.ler-return-trip-section h4,
.ler-extra-stops-section h4,
.ler-advanced-pricing-section h4,
.ler-booking-extras-section h4 {
	font-size: 16px;
	margin: 0 0 14px;
}

.ler-booking-extras-heading {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 16px;
}

.ler-booking-extras-heading h4 {
	margin: 0;
}

.ler-booking-extras-list {
	display: grid;
	gap: 14px;
}

.ler-booking-extras-group {
	display: grid;
	gap: 12px;
}

.ler-booking-extras-group h5 {
	color: var(--ler-muted);
	font-size: 14px;
	letter-spacing: 0.02em;
	margin: 0;
	text-transform: uppercase;
}

.ler-booking-extra-item {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	display: grid;
	gap: 12px;
	padding: 14px;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ler-booking-extra-item.is-selected {
	background: #f6fbf7;
	border-color: var(--ler-green);
	box-shadow: 0 8px 22px rgba(0, 128, 0, 0.08);
}

.ler-booking-extra-choice {
	align-items: start;
	cursor: pointer;
	display: grid;
	gap: 10px;
	grid-template-columns: auto minmax(0, 1fr);
	margin: 0;
}

.ler-booking-extra-choice strong,
.ler-booking-extra-choice em {
	display: block;
}

.ler-booking-extra-choice input[type="checkbox"] {
	accent-color: var(--ler-green);
	margin-top: 3px;
	min-height: 18px;
	width: 18px;
}

.ler-booking-extra-choice em {
	color: var(--ler-green);
	font-style: normal;
	font-weight: 800;
	margin-top: 3px;
}

.ler-booking-extra-item p {
	color: #59616d;
	margin: 0;
}

.ler-booking-extra-quantity {
	display: grid;
	gap: 6px;
	max-width: 190px;
}

.ler-booking-extra-quantity span {
	font-size: 13px;
	font-weight: 800;
}

.ler-booking-extra-quantity input {
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	font: inherit;
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.ler-booking-extra-notes {
	margin-top: 14px;
}

.ler-booking-extras-subtotal {
	color: var(--ler-green);
	font-weight: 900;
	margin: 12px 0 0;
}

.ler-extra-stops {
	display: grid;
	gap: 12px;
}

.ler-extra-stop {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ler-extra-stop label {
	grid-column: 1 / -1;
	margin: 0;
}

.ler-add-stop,
.ler-remove-stop,
.ler-primary-button,
.ler-secondary-button,
.ler-submit-button,
.ler-route-calculate-button,
.ler-select-vehicle-button {
	align-items: center;
	border-radius: var(--ler-radius);
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 11px 16px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.ler-add-stop,
.ler-primary-button,
.ler-route-calculate-button,
.ler-submit-button {
	background: var(--ler-dark);
	border: 1px solid var(--ler-dark);
	color: #fff;
}

.ler-submit-button {
	background: var(--ler-green);
	border-color: var(--ler-green);
}

.ler-secondary-button,
.ler-remove-stop {
	background: #fff;
	border: 1px solid var(--ler-border);
	color: var(--ler-dark);
}

.ler-add-stop {
	margin-top: 12px;
}

.ler-route-panel {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	box-shadow: 0 14px 34px rgba(7, 11, 17, 0.07);
	overflow: hidden;
	position: sticky;
	top: 20px;
}

#ler-route-map {
	background: linear-gradient(135deg, #f6f7f9 0%, #eef1f5 100%);
	height: 470px;
	width: 100%;
}

.ler-route-summary-card {
	border-top: 1px solid var(--ler-border);
	padding: 18px;
}

.ler-route-summary-card h4 {
	font-size: 16px;
	margin: 0 0 12px;
}

.ler-route-summary-card dl,
.ler-booking-summary dl {
	margin: 0;
}

.ler-route-summary-card dl div,
.ler-booking-summary dl div {
	border-bottom: 1px solid #eceff3;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
	padding: 9px 0;
}

.ler-route-summary-card dt,
.ler-booking-summary dt {
	color: var(--ler-muted);
	font-weight: 800;
}

.ler-route-summary-card dd,
.ler-booking-summary dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.ler-route-calculate-button {
	margin-top: 14px;
	width: 100%;
}

.ler-route-calculate-button.is-loading {
	cursor: progress;
	opacity: 0.7;
}

.ler-route-summary {
	background: #f7f9fc;
	border: 1px solid var(--ler-border);
	border-left: 4px solid var(--ler-gold);
	border-radius: var(--ler-radius);
	color: var(--ler-ink);
	margin-top: 12px;
	padding: 12px 14px;
}

.ler-route-summary.is-success {
	background: #f1faf3;
	border-left-color: var(--ler-green);
}

.ler-route-summary.is-error {
	background: #fff3f3;
	border-color: #f3c5c1;
	border-left-color: var(--ler-error);
}

.ler-route-summary.is-loading {
	background: #f7f9fc;
	border-left-color: #59616d;
}

.ler-route-tools-inline {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	margin-top: 18px;
	padding: 16px;
}

.ler-vehicle-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ler-vehicle-filters {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 18px;
	padding: 14px;
}

.ler-vehicle-filters label {
	display: grid;
	gap: 6px;
}

.ler-vehicle-filters span {
	font-size: 13px;
	font-weight: 800;
}

.ler-vehicle-filters input,
.ler-vehicle-filters select {
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	min-height: 44px;
	padding: 9px 11px;
	width: 100%;
}

.ler-vehicle-card {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: 8px;
	cursor: pointer;
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 18px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ler-vehicle-card:hover,
.ler-vehicle-card.is-selected {
	border-color: var(--ler-gold);
	box-shadow: 0 12px 28px rgba(7, 11, 17, 0.08);
	transform: translateY(-1px);
}

.ler-vehicle-card.is-selected {
	background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
	box-shadow: 0 14px 32px rgba(7, 11, 17, 0.11);
}

.ler-vehicle-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ler-vehicle-card[hidden] {
	display: none !important;
}

.ler-vehicle-image-placeholder {
	align-items: center;
	aspect-ratio: 16 / 9;
	background: var(--ler-dark);
	border-radius: 6px;
	color: var(--ler-gold);
	display: flex;
	font-size: 42px;
	font-weight: 900;
	justify-content: center;
}

.ler-vehicle-content {
	display: grid;
	gap: 8px;
}

.ler-vehicle-content strong {
	font-size: 18px;
	line-height: 1.25;
}

.ler-vehicle-content em,
.ler-vehicle-meta,
.ler-vehicle-notes,
.ler-vehicle-price {
	color: var(--ler-muted);
	font-style: normal;
}

.ler-vehicle-meta {
	background: var(--ler-soft);
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	padding: 6px 10px;
	width: fit-content;
}

.ler-vehicle-price {
	color: var(--ler-green);
	font-weight: 800;
}

.ler-select-vehicle-button {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	color: var(--ler-dark);
	justify-content: center;
	margin-top: 4px;
}

.ler-vehicle-card.is-selected .ler-select-vehicle-button {
	background: var(--ler-green);
	border-color: var(--ler-green);
	color: #fff;
}

.ler-empty-vehicles {
	background: #fff8e5;
	border: 1px solid #efd088;
	border-radius: var(--ler-radius);
	color: #795400;
	padding: 16px;
}

.ler-partner-tracking {
	background: var(--ler-soft);
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	margin: 20px 0 0;
	padding: 12px 14px;
}

.ler-booking-summary {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ler-summary-panel {
	background: #fff;
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	box-shadow: 0 10px 26px rgba(7, 11, 17, 0.05);
	min-width: 0;
	padding: 18px;
}

.ler-summary-panel h4 {
	font-size: 17px;
	margin: 0 0 12px;
}

.ler-summary-price-panel p {
	color: var(--ler-green);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
	margin: 0;
}

.ler-summary-price-panel .ler-summary-extras {
	color: var(--ler-dark);
	font-size: 14px;
	font-weight: 800;
	margin-top: 8px;
}

.ler-pricing-summary {
	margin-top: 12px;
}

.ler-pricing-summary dl div {
	grid-template-columns: minmax(145px, 0.7fr) minmax(0, 1fr);
}

.ler-pricing-summary [data-ler-total="estimated_total"],
.ler-pricing-summary [data-ler-total="balance_due"] {
	color: var(--ler-green);
	font-weight: 900;
}

.ler-summary-price-panel .ler-hide-price-message,
.ler-summary-price-panel .ler-totals-message {
	font-size: 13px;
	font-weight: 800;
	margin-top: 8px;
}

.ler-summary-price-panel .ler-totals-message.is-error {
	color: var(--ler-error);
}

.ler-summary-price-panel .ler-totals-message.is-loading {
	color: var(--ler-muted);
}

.ler-is-calculating-totals .ler-pricing-summary {
	opacity: 0.72;
}

.ler-prices-hidden .ler-vehicle-price,
.ler-prices-hidden .ler-booking-extra-choice em,
.ler-prices-hidden .ler-booking-extras-subtotal,
.ler-prices-hidden .ler-summary-extras {
	display: none;
}

.ler-gratuity-control,
.ler-coupon-field {
	border-top: 1px solid var(--ler-border);
	display: grid;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
}

.ler-gratuity-control label,
.ler-coupon-field label {
	font-size: 13px;
	font-weight: 800;
}

.ler-gratuity-control input,
.ler-coupon-field input {
	border: 1px solid var(--ler-border);
	border-radius: var(--ler-radius);
	min-height: 42px;
	padding: 8px 10px;
	width: 100%;
}

.ler-gratuity-control small {
	color: var(--ler-green);
	font-weight: 800;
}

.ler-summary-partner {
	color: var(--ler-dark) !important;
	font-size: 14px !important;
	margin-top: 12px !important;
}

.ler-wizard-actions {
	align-items: center;
	border-top: 1px solid var(--ler-border);
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 26px;
	padding-top: 20px;
}

button[hidden] {
	display: none !important;
}

.ler-form-preloader {
	align-items: center;
	background: rgba(255, 255, 255, 0.84);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 20;
}

.ler-reservation-form {
	position: relative;
}

.ler-form-preloader[hidden],
.ler-form-preloader.is-hidden,
.no-top-navigation .ler-wizard-progress,
.ler-map-position-hidden .ler-route-panel {
	display: none !important;
}

.ler-form-preloader img {
	max-height: 80px;
	max-width: 160px;
}

.ler-form-preloader span {
	animation: ler-spin 0.8s linear infinite;
	border: 3px solid var(--ler-border);
	border-radius: 50%;
	border-top-color: var(--ler-gold);
	display: block;
	height: 38px;
	width: 38px;
}

.no-sticky-summary .ler-route-panel {
	position: static;
}

.ler-map-position-left .ler-ride-fields {
	order: 2;
}

.ler-map-position-left .ler-route-panel {
	order: 1;
}

.ler-map-position-top .ler-ride-layout,
.ler-map-position-bottom .ler-ride-layout,
.ler-summary-position-bottom .ler-booking-summary {
	grid-template-columns: 1fr;
}

.ler-map-position-top .ler-route-panel {
	order: -1;
}

.ler-map-position-bottom .ler-route-panel {
	order: 2;
}

.ler-thank-you-screen {
	background: #f1faf3;
	border: 1px solid #b7e4c4;
	border-radius: var(--ler-radius);
	color: #0f5132;
	padding: 24px;
}

.ler-thank-you-screen h3 {
	font-size: 24px;
	margin: 0 0 10px;
}

.ler-thank-you-screen p {
	margin: 0 0 18px;
}

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

.ler-field-error {
	color: var(--ler-error);
	font-size: 13px;
	font-weight: 700;
	margin: -8px 0 8px;
}

.ler-primary-button:focus-visible,
.ler-secondary-button:focus-visible,
.ler-submit-button:focus-visible,
.ler-route-calculate-button:focus-visible,
.ler-add-stop:focus-visible,
.ler-remove-stop:focus-visible,
.ler-select-vehicle-button:focus-visible,
.ler-progress-step:focus-visible {
	box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.25);
	outline: 2px solid transparent;
}

.ler-primary-button:hover,
.ler-secondary-button:hover,
.ler-submit-button:hover,
.ler-route-calculate-button:hover,
.ler-add-stop:hover,
.ler-remove-stop:hover {
	filter: brightness(0.96);
}

.ler-primary-button:hover,
.ler-submit-button:hover,
.ler-route-calculate-button:hover,
.ler-add-stop:hover,
.ler-select-vehicle-button:hover {
	transform: translateY(-1px);
}

.ler-primary-button:disabled,
.ler-secondary-button:disabled,
.ler-submit-button:disabled,
.ler-route-calculate-button:disabled,
.ler-add-stop:disabled,
.ler-remove-stop:disabled {
	cursor: not-allowed;
	opacity: 0.62;
	transform: none;
}

.ler-button-loading {
	cursor: progress;
}

.ler-reservation-form #ler-route-map.is-map-unavailable {
	align-items: center;
	color: var(--ler-muted);
	display: flex;
	font-weight: 800;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.ler-payment-panel .ler-field {
	margin: 0 0 14px;
}

.ler-payment-instructions,
.ler-payment-deposit,
.ler-payment-terms {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: var(--ler-radius);
	margin: 12px 0;
	padding: 12px 14px;
}

.ler-payment-instructions p,
.ler-payment-deposit p,
.ler-payment-terms p {
	margin: 0 0 8px;
}

.ler-payment-instructions p:last-child,
.ler-payment-deposit p:last-child,
.ler-payment-terms p:last-child {
	margin-bottom: 0;
}

.ler-payment-terms label {
	align-items: flex-start;
	display: flex;
	gap: 8px;
	line-height: 1.45;
	margin: 0;
}

.ler-payment-terms input[type="checkbox"] {
	accent-color: var(--ler-green);
	flex: 0 0 auto;
	margin-top: 3px;
	min-height: 18px;
	width: 18px;
}

.ler-driving-zone-message {
	border: 1px solid #f59e0b;
	border-radius: var(--ler-radius);
	background: #fffbeb;
	color: #92400e;
	font-size: 14px;
	margin: 0 0 16px;
	padding: 12px 14px;
}

.ler-driving-zone-message.is-error {
	background: #fef2f2;
	border-color: #fca5a5;
	color: #991b1b;
}

@media (min-width: 1024px) {
	.ler-summary-position-left .ler-booking-summary,
	.ler-summary-position-right .ler-booking-summary {
		align-items: start;
	}
}

@media (max-width: 1023px) {
	.ler-ride-layout,
	.ler-booking-summary {
		grid-template-columns: 1fr;
	}

	.ler-vehicle-filters {
		grid-template-columns: 1fr;
	}

	.ler-route-panel {
		position: static;
	}

	.ler-vehicle-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ler-reservation-form-wrap {
		border-radius: 0;
		box-shadow: none;
		padding: 20px;
	}

	.ler-form-title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.ler-wizard-progress {
		gap: 8px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		margin-bottom: 24px;
	}

	.ler-wizard-progress::before {
		display: none;
	}

	.ler-progress-step {
		gap: 6px;
	}

	.ler-progress-step span {
		font-size: 13px;
		height: 34px;
		width: 34px;
	}

	.ler-progress-step strong {
		font-size: 11px;
	}

	.ler-form-grid,
	.ler-vehicle-grid {
		grid-template-columns: 1fr;
	}

	.ler-extra-stop {
		grid-template-columns: 1fr;
	}

	#ler-route-map {
		height: 360px;
	}

	.ler-route-summary-card dl div,
	.ler-booking-summary dl div {
		grid-template-columns: 1fr;
	}

	.ler-wizard-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ler-wizard-actions button {
		width: 100%;
	}

	.ler-booking-extras-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.ler-booking-extra-quantity {
		max-width: none;
	}

	.ler-add-stop,
	.ler-remove-stop,
	.ler-primary-button,
	.ler-secondary-button,
	.ler-submit-button,
	.ler-route-calculate-button,
	.ler-select-vehicle-button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.ler-reservation-form-wrap {
		padding: 16px;
	}

	.ler-step-heading h3 {
		font-size: 21px;
	}

	.ler-wizard-progress {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ler-progress-step {
		align-items: center;
		display: flex;
		justify-items: start;
		text-align: left;
	}

	#ler-route-map {
		height: 300px;
	}

	.ler-return-trip-section,
	.ler-extra-stops-section,
	.ler-advanced-pricing-section,
	.ler-booking-extras-section,
	.ler-summary-panel,
	.ler-route-summary-card {
		padding: 14px;
	}
}
