.meb-public-booking {
	--meb-color-text-primary: #0F1315;
	--meb-color-text-muted: #6a7380;
	--meb-color-text-soft: #5a6678;
	--meb-color-text-body: #4c5868;
	--meb-color-text-contrast: #23384a;
	--meb-color-text-secondary: #334155;
	--meb-color-text-dark: #1d2327;
	--meb-color-text-inverse: #ffffff;
	--meb-color-text-inverse-soft: rgba(240, 244, 248, 0.95);
	--meb-color-progress-muted: #8a95a5;
	--meb-color-accent: #0082FF;
	--meb-color-accent-hover: #0063C2;
	--meb-color-accent-soft: #eef4f8;
	--meb-color-accent-soft-hover: rgba(31, 85, 112, 0.08);
	--meb-color-border: #d6dde6;
	--meb-color-border-progress: #cfd6e0;
	--meb-color-border-input: #ccd0d4;
	--meb-color-border-avatar-strong: rgba(255, 255, 255, 0.28);
	--meb-color-border-avatar-soft: rgba(255, 255, 255, 0.22);
	--meb-color-bg-white: #ffffff;
	--meb-color-bg-duration: #c6d1de;
	--meb-color-bg-calendar: rgb(255 255 255 / 85%);
	--meb-color-bg-day-default: rgba(255, 255, 255, 0.12);
	--meb-color-bg-overlay: rgba(255, 255, 255, 0.72);
	--meb-color-bg-skeleton-base: #e6ebf1;
	--meb-color-bg-skeleton-highlight: #ffffff;
	--meb-color-calendar-text: #0f4058;
	--meb-color-calendar-message: #114a62;
	--meb-color-disabled-text: #1b5f77;
	--meb-color-meta-label: rgba(28, 83, 104, 0.85);
	--meb-color-meta-value: #1c5368;
	--meb-color-page-meta-value: #24384b;
	--meb-color-empty: #646970;
	--meb-color-danger: #8a2424;
	--meb-color-danger-border: #d63638;
	--meb-color-danger-bg: #fcf0f1;
	--meb-shadow-shell: 0 1px 8px rgba(30, 41, 59, 0.14);
	--meb-shadow-button: 0 6px 14px rgba(15, 64, 88, 0.18);
	--meb-shadow-slot: 0 4px 10px rgba(15, 64, 88, 0.12);
	--meb-shadow-focus: 0 0 0 3px rgba(31, 85, 112, 0.16);
	--meb-shadow-progress-pulse-start: 0 0 0 4px rgba(31, 85, 112, 0.1);
	--meb-shadow-progress-pulse-mid: 0 0 0 7px rgba(31, 85, 112, 0.2);
	--meb-radius-sm: 6px;
	--meb-radius-md: 6px;
	--meb-radius-lg: 6px;
	--meb-radius-xl: 8px;
	--meb-radius-2xl: 20px;
	--meb-font-size-base: 16px;
	--meb-font-size-title: 30px;
	--meb-font-size-heading: 18px;
	--meb-font-size-label: 12px;
	--meb-font-size-button: 16px;
	--meb-font-size-small: 14px;
	--meb-font-size-xs: 13px;
	--meb-font-weight-semibold: 600;
	--meb-font-weight-bold: 700;
	--meb-line-height-base: 1.45;
	--meb-line-height-heading: 1.3;
	--meb-spinner-track: #d5dde7;
	padding: 24px 0 40px;
	font-size: var(--meb-font-size-base);
	line-height: var(--meb-line-height-base);
}

.meb-public-booking .meb-public-booking__inner {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 16px;
}

body.single-meeting_event {
	height: 100% !important;
}

body.meb-standalone-page .meb-public-booking {
	background: #e9edf2;
	height: 100%;
}

.meb-public-booking .meb-progress {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	max-width: 720px;
	margin: 0 auto 24px;
}

.meb-public-booking .meb-progress__item {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: var(--meb-color-progress-muted);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: var(--meb-font-weight-semibold);
	letter-spacing: 0.06em;
	text-align: center;
}

.meb-public-booking .meb-progress__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 11px;
	left: calc(50% + 16px);
	right: calc(-50% + 16px);
	height: 2px;
	background: var(--meb-color-border-progress);
	border-radius: 999px;
}

.meb-public-booking .meb-progress__item.is-complete:not(:last-child)::after {
	background: var(--meb-color-accent);
}

.meb-public-booking .meb-progress__dot {
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--meb-color-border-progress);
	background: var(--meb-color-bg-white);
	display: inline-block;
	box-sizing: border-box;
}

.meb-public-booking .meb-progress__item.is-active .meb-progress__dot {
	border-color: var(--meb-color-accent);
	box-shadow: 0 0 0 5px rgba(31, 85, 112, 0.14);
	animation: meb-progress-pulse 1.6s ease-in-out infinite;
}

.meb-public-booking .meb-progress__item.is-complete .meb-progress__dot {
	background: var(--meb-color-accent);
	border-color: var(--meb-color-accent);
}

.meb-public-booking .meb-progress__item.is-complete .meb-progress__dot::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	width: 5px;
	height: 9px;
	border-right: 2px solid var(--meb-color-bg-white);
	border-bottom: 2px solid var(--meb-color-bg-white);
	transform: rotate(40deg);
}

.meb-public-booking .meb-progress__item.is-active .meb-progress__label {
	color: #425056;
}

.meb-public-booking .meb-progress__item.is-complete .meb-progress__label {
	color: var(--meb-color-accent);
}

.meb-public-booking .meb-page-title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 20px;
}

.meb-public-booking h1.meb-page-title {
	margin: 0;
	font-size: var(--meb-font-size-title);
	font-weight: 400;
	line-height: 1.25;
	color: var(--meb-color-text-primary);
}

.meb-public-booking .meb-booking-shell {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--meb-radius-2xl);
	overflow: hidden;
	background: var(--meb-color-bg-white);
	box-shadow: var(--meb-shadow-shell);
}

.meb-public-booking .meb-booking-shell--single {
	display: block;
	padding: 28px;
}

.meb-public-booking .meb-booking-shell__left {
	background: linear-gradient(180deg, #161A2C 0%, #1759BD 100%);
	color: var(--meb-color-text-inverse);
	padding: 30px 26px;
}

.meb-public-booking .meb-booking-shell__right {
	background: var(--meb-color-bg-white);
	padding: 30px 28px;
}

.meb-public-booking h2.meb-booking-shell__title {
	margin: 10px 0 8px;
	color: var(--meb-color-text-inverse);
	font-size: 22px;
	font-weight: var(--meb-font-weight-semibold);
	line-height: var(--meb-line-height-heading);
	text-align: center;
}

.meb-public-booking .meb-booking-shell__logo-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.meb-public-booking .meb-booking-shell__logo {
	display: block;
	width: 116px;
	max-width: 70%;
	height: auto;
	margin: 0 auto;
}

.meb-public-booking .meb-event-summary__subtitle {
	margin: 16px 0 8px;
	color: var(--meb-color-text-inverse);
	font-size: var(--meb-font-size-heading);
	font-weight: var(--meb-font-weight-semibold);
	line-height: var(--meb-line-height-heading);
}

.meb-public-booking .meb-event-meta {
	margin: 0 0 14px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.meb-public-booking .meb-event-meta__label {
	font-size: var(--meb-font-size-label);
	font-weight: var(--meb-font-weight-semibold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--meb-color-meta-label);
}

.meb-public-booking .meb-event-meta__value {
	font-size: var(--meb-font-size-base);
	font-weight: 400;
	color: var(--meb-color-meta-value);
}

.meb-public-booking .meb-event-meta--page-title {
	align-items: center;
	margin: 0;
}

.meb-public-booking .meb-event-meta--page-title .meb-event-meta__label {
	color: var(--meb-color-text-muted);
}

.meb-public-booking .meb-event-meta--page-title .meb-event-meta__value {
	color: var(--meb-color-page-meta-value);
}

.meb-public-booking .meb-event-description {
	margin-bottom: 20px;
}

.meb-public-booking .meb-event-description__content p {
	margin: 0 0 8px;
	font-size: var(--meb-font-size-base);
	line-height: 1.5;
}

.meb-public-booking .meb-booking-duration {
	margin-bottom: 16px;
}

.meb-public-booking .meb-booking-duration__value {
	background: var(--meb-color-bg-duration);
	color: var(--meb-color-text-soft);
	text-align: center;
	padding: 8px 10px;
	border-radius: var(--meb-radius-sm);
	font-weight: var(--meb-font-weight-semibold);
}

.meb-public-booking .meb-attendees-photos {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
}

.meb-public-booking .meb-attendees-photos__single {
	width: 108px;
	height: 108px;
	border-radius: 18px;
	object-fit: cover;
	border: 2px solid var(--meb-color-border-avatar-strong);
}

.meb-public-booking .meb-attendees-photos__collage {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	max-width: 174px;
}

.meb-public-booking .meb-attendees-photos__item {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	object-fit: cover;
	border: 2px solid var(--meb-color-border-avatar-soft);
}

.meb-public-booking .meb-attendees-summary {
	margin: 0 0 18px;
	text-align: center;
	font-size: var(--meb-font-size-base);
	line-height: var(--meb-line-height-base);
	color: var(--meb-color-text-inverse-soft);
}

.meb-public-booking h3.meb-booking-step__heading--month {
	margin-bottom: 10px;
	text-align: center;
}

.meb-public-booking .meb-booking-step__field {
	margin-bottom: 16px;
}

.meb-public-booking .meb-booking-step__label.meb-booking-step__label {
	display: inline-block;
	margin-bottom: 6px;
	font-weight: var(--meb-font-weight-semibold);
	font-size: var(--meb-font-size-label);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--meb-color-text-muted);
}

.meb-public-booking .meb-timezone-select {
	min-width: 260px;
	width: 100%;
	height: 35px;
    padding: 0 6px;
	border: 1px solid var(--meb-color-border);
	border-radius: var(--meb-radius-lg);
	background: var(--meb-color-bg-white);
	color: var(--meb-color-text-primary);
}

.meb-public-booking .meb-timezone-search-wrap {
    display: flex;
	height: 35px;
    margin-bottom: 10px;
    gap: 10px;
}

.meb-public-booking .meb-timezone-search-wrap .meb-timezone-search {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--meb-color-border);
	border-radius: var(--meb-radius-lg);
}

.meb-public-booking .meb-timezone-search-wrap .meb-timezone-search-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.meb-public-booking .meb-timezone-search-wrap .meb-timezone-search-clear {
	border: 1px solid var(--meb-color-border);
	background: var(--meb-color-bg-white);
	color: var(--meb-color-text-secondary);
	border-radius: var(--meb-radius-sm);
	padding: 0 10px;
	cursor: pointer;
}

.meb-public-booking .meb-booking-step__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.meb-public-booking .meb-booking-step__heading.meb-booking-step__heading {
	margin: 0 0 8px;
	color: var(--meb-color-text-primary);
	font-size: var(--meb-font-size-heading);
	font-weight: var(--meb-font-weight-semibold);
	line-height: var(--meb-line-height-heading);
}

.meb-public-booking .meb-booking-step--details .meb-booking-step__heading.meb-booking-step__heading {
	font-size: 24px;
	font-weight: 400;
}

.meb-public-booking .meb-selected-date-label {
	margin: -2px 0 14px;
	color: var(--meb-color-text-soft);
	font-size: var(--meb-font-size-small);
	line-height: 1.4;
}

.meb-public-booking .meb-booking-shell__left .meb-booking-step__heading.meb-booking-step__heading {
	color: var(--meb-color-text-inverse);
}

.meb-public-booking .meb-slot-list {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	gap: 8px;
}

.meb-public-booking .meb-slot-list .meb-slot-list__item {
	border: 1px solid var(--meb-color-border);
	background: var(--meb-color-bg-white);
	padding: 8px 14px;
	cursor: pointer;
	border-radius: var(--meb-radius-sm);
	text-align: center;
	font-size: var(--meb-font-size-base);
	line-height: 1.35;
	color: var(--meb-color-text-body);
}

.meb-public-booking .meb-slot-list .meb-slot-list__item:hover {
	border-color: var(--meb-color-accent);
	background: var(--meb-color-accent-soft);
	color: var(--meb-color-text-contrast);
}

.meb-public-booking .meb-slot-list .meb-slot-list__item.is-selected {
	border-color: var(--meb-color-accent);
	background: var(--meb-color-accent-soft);
	color: var(--meb-color-text-contrast);
}

.meb-public-booking .meb-calendar {
	background: #ffffff;
	border-radius: 12px;
	padding: 14px 10px 10px 10px;
	position: relative;
}

.meb-public-booking .meb-calendar__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.meb-public-booking .meb-calendar__month-title {
	font-weight: var(--meb-font-weight-bold);
	color: var(--meb-color-calendar-text);
}

.meb-public-booking .meb-calendar__nav-btn {
	border: 0;
	background: transparent;
	line-height: 1;
	padding: 0;
	width: 28px;
	height: 28px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
}

body.meb-standalone-page .meb-public-booking .meb-event-summary__subtitle {
	color: var(--meb-color-text-inverse);
}

body.meb-standalone-page .meb-public-booking .meb-booking-shell__left .meb-booking-step__heading.meb-booking-step__heading,
body.meb-standalone-page .meb-public-booking h3.meb-booking-step__heading--month,
body.meb-standalone-page .meb-public-booking h2.meb-booking-shell__title {
	color: var(--meb-color-text-inverse);
}

.meb-public-booking .meb-calendar__nav-btn:hover {
	opacity: 1;
}

.meb-public-booking .meb-calendar__nav-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.meb-public-booking .meb-calendar__nav-icon {
	width: 12px;
	height: 12px;
	display: block;
	fill: var(--meb-color-calendar-text);
}

.meb-public-booking .meb-calendar__weekdays,
.meb-public-booking .meb-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 6px;
}

.meb-public-booking .meb-calendar__weekdays {
	margin-bottom: 6px;
}

.meb-public-booking .meb-calendar__body {
	position: relative;
	min-height: 230px;
}

.meb-public-booking .meb-calendar__message {
	margin-top: 10px;
	font-size: var(--meb-font-size-xs);
	color: var(--meb-color-calendar-message);
}

.meb-public-booking .meb-calendar__weekday {
	font-size: var(--meb-font-size-label);
	font-weight: var(--meb-font-weight-bold);
	text-align: center;
	color: var(--meb-color-calendar-text);
	text-transform: uppercase;
}

.meb-public-booking .meb-calendar__day {
	min-height: 36px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	font-weight: 600;
}

.meb-public-booking .meb-calendar__day--empty {
	background: transparent;
}

.meb-public-booking .meb-calendar__day.is-disabled {
	opacity: 0.35;
	color: var(--meb-color-disabled-text);
}

.meb-public-booking button.meb-calendar__day {
	cursor: pointer;
	background: var(--meb-color-bg-day-default);
	color: var(--meb-color-calendar-text);
}

.meb-public-booking button.meb-calendar__day.is-available {
	position: relative;
    padding: 0;
    background-color: transparent;
    color: var(--meb-color-accent);
    border-color: var(--meb-color-accent);
    border-radius: var(--meb-radius-lg);
}

/* button.meb-calendar__day.is-available::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(15, 64, 88, 0.7);
} */

.meb-public-booking button.meb-calendar__day.is-selected {
	background: var(--meb-color-accent);
    color: var(--meb-color-bg-white);
    border-color: var(--meb-color-accent);
    padding: 0;
}

.meb-public-booking button.meb-calendar__day.is-selected::after {
	background: rgba(255, 255, 255, 0.9);
}

.meb-public-booking .meb-slot-list.is-disabled {
	opacity: 0.75;
}

.meb-public-booking .meb-slot-list-container {
	position: relative;
	min-height: 240px;
}

.meb-public-booking .meb-loading-overlay {
	position: absolute;
	inset: 0;
	background: var(--meb-color-bg-overlay);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 5;
}

.meb-public-booking .meb-loading-overlay.is-visible {
	display: flex;
}

.meb-public-booking .meb-loading-overlay--slots {
	align-items: flex-start;
	padding-top: 6px;
}

.meb-public-booking .meb-spinner {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 3px solid var(--meb-spinner-track);
	border-top-color: var(--meb-color-accent);
	animation: meb-spin 0.8s linear infinite;
}

.meb-public-booking .meb-skeleton-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.meb-public-booking .meb-skeleton-row {
	height: 44px;
	border-radius: var(--meb-radius-sm);
	background: linear-gradient(90deg, var(--meb-color-bg-skeleton-base) 25%, var(--meb-color-bg-skeleton-highlight) 37%, var(--meb-color-bg-skeleton-base) 63%);
	background-size: 400% 100%;
	animation: meb-skeleton 1.2s ease-in-out infinite;
}

.meb-public-booking .meb-slot-list.is-loading {
	pointer-events: none;
	visibility: hidden;
}

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

@keyframes meb-skeleton {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

@keyframes meb-progress-pulse {
	0% {
		box-shadow: var(--meb-shadow-progress-pulse-start);
	}
	50% {
		box-shadow: var(--meb-shadow-progress-pulse-mid);
	}
	100% {
		box-shadow: var(--meb-shadow-progress-pulse-start);
	}
}

@media (prefers-reduced-motion: reduce) {
	.meb-public-booking .meb-progress__item.is-active .meb-progress__dot {
		animation: none;
	}
}

.meb-public-booking .meb-booking-step__actions {
	margin-top: 20px;
    display: flex;
    justify-content: end;
}

.meb-public-booking .meb-action-error {
	margin-top: 10px;
	margin-bottom: 0;
	color: var(--meb-color-danger);
	font-size: var(--meb-font-size-small);
}

.meb-public-booking .meb-booking-form {
	max-width: 560px;
}

.meb-public-booking .meb-booking-form label {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #425056BF;
}

.meb-public-booking .meb-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 12px;
}

.meb-public-booking .meb-form-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.meb-public-booking .meb-booking-form__row {
	margin-bottom: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.meb-public-booking .meb-booking-form input[type="text"],
.meb-public-booking .meb-booking-form input[type="email"] {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--meb-color-border-input);
	border-radius: var(--meb-radius-xl);
	background: var(--meb-color-bg-white);
	color: var(--meb-color-text-dark);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.meb-public-booking .meb-booking-form input[type="text"]:focus,
.meb-public-booking .meb-booking-form input[type="email"]:focus {
	outline: none;
	border-color: var(--meb-color-accent);
	box-shadow: var(--meb-shadow-focus);
}

.meb-public-booking .meb-booking-form__actions {
	margin-top: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.meb-public-booking .meb-form-errors {
	border: 1px solid var(--meb-color-danger-border);
	background: var(--meb-color-danger-bg);
	padding: 10px 12px;
	margin-bottom: 12px;
}

.meb-public-booking .meb-form-errors__item {
	margin: 0 0 6px;
	color: var(--meb-color-danger);
}

.meb-public-booking .meb-form-errors__item:last-child {
	margin-bottom: 0;
}

.meb-public-booking .meb-success-actions {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.meb-public-booking .meb-button--primary[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.meb-public-booking .meb-button {
	border: 0;
	border-radius: var(--meb-radius-md);
	padding: 11px 16px;
	font-weight: var(--meb-font-weight-semibold);
	font-size: var(--meb-font-size-button);
	line-height: 1;
	background: var(--meb-color-accent);
	color: var(--meb-color-bg-white);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.meb-public-booking .meb-btn {
	position: relative;
	gap: 8px;
}

.meb-public-booking .meb-btn__label.meb-btn__label {
	display: inline-block;
	font-size: var(--meb-font-size-button);
	font-weight: var(--meb-font-weight-semibold);
	line-height: 1;
}

.meb-public-booking .meb-button.is-hidden {
	display: none;
}

.meb-public-booking .meb-button--secondary {
	background: var(--meb-color-bg-white);
	border: 1px solid var(--meb-color-accent);
	color: var(--meb-color-accent);
}

.meb-public-booking .meb-button.is-busy {
	opacity: 0.7;
	pointer-events: none;
}

.meb-public-booking button,
.meb-public-booking .meb-button,
.meb-public-booking .meb-slot-list__item {
	transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, opacity 0.2s ease;
}

.meb-public-booking .meb-button--primary:hover:not([disabled]):not(.is-loading):not(.is-busy) {
	background: var(--meb-color-accent-hover);
	box-shadow: var(--meb-shadow-button);
}

.meb-public-booking .meb-button--secondary:hover:not([disabled]):not(.is-loading):not(.is-busy) {
	background: var(--meb-color-accent-soft);
	border-color: var(--meb-color-accent-hover);
	color: var(--meb-color-accent-hover);
}

.meb-public-booking .meb-timezone-search-clear:hover:not(:disabled) {
	background: var(--meb-color-accent-soft);
	border-color: #b7c4d3;
	color: var(--meb-color-text-primary);
}

.meb-public-booking .meb-calendar__nav-btn:hover:not(:disabled) {
	opacity: 1;
}

.meb-public-booking button.meb-calendar__day.is-available:hover:not(:disabled) {
	background: var(--meb-color-accent-soft-hover);
	border-color: var(--meb-color-accent);
	color: var(--meb-color-accent-hover);
}

.meb-public-booking .meb-slot-list .meb-slot-list__item:hover:not(.is-selected) {
	box-shadow: var(--meb-shadow-slot);
}

.meb-public-booking .meb-btn.is-loading,
.meb-public-booking .meb-button.is-loading {
	opacity: 0.72;
	cursor: wait;
	pointer-events: none;
}

.meb-public-booking .meb-spinner-inline {
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: var(--meb-color-bg-white);
	border-radius: 50%;
	display: inline-block;
	animation: meb-spin 0.7s linear infinite;
}

.meb-public-booking .meb-button--secondary .meb-spinner-inline {
	border-color: rgba(31, 85, 112, 0.35);
	border-top-color: var(--meb-color-accent);
}

.meb-public-booking .meb-empty {
	color: var(--meb-color-empty);
}

@media (max-width: 767px) {
	.meb-public-booking .meb-form-row {
		grid-template-columns: 1fr;
	}

	.meb-public-booking h1.meb-page-title {
		font-size: 24px;
	}

	.meb-public-booking .meb-progress {
		gap: 8px;
		max-width: 100%;
	}

	.meb-public-booking .meb-progress__item {
		font-size: 10px;
		letter-spacing: 0.04em;
	}

	.meb-public-booking .meb-progress__item:not(:last-child)::after {
		left: calc(50% + 12px);
		right: calc(-50% + 12px);
	}

	.meb-public-booking .meb-booking-shell {
		grid-template-columns: 1fr;
	}

	.meb-public-booking .meb-booking-shell__logo {
		width: 96px;
	}

	.meb-public-booking .meb-attendees-photos__single {
		width: 92px;
		height: 92px;
	}

	.meb-public-booking .meb-attendees-photos__collage {
		max-width: 132px;
	}

	.meb-public-booking .meb-attendees-photos__item {
		width: 40px;
		height: 40px;
	}

	.meb-public-booking .meb-slot-list__item,
	.meb-public-booking .meb-calendar__day {
		font-size: 16px;
	}

	.meb-public-booking .meb-booking-step__columns {
		grid-template-columns: 1fr;
	}
}

.meb-public-booking section.meb-booking-step.meb-booking-step--details.meb-booking-shell.meb-booking-shell--single {
	max-width: 600px;
    margin: 0 auto;
}