.om-booking-dashboard,
.om-purchase-flow {
	--om-purple: #007881;
	--om-purple-dark: #005b63;
	--om-teal: #00969d;
	--om-blue: #155fa6;
	--om-orange: #f97316;
	--om-coral: #ef4f45;
	--om-pink: #df3d8f;
	--om-soft: #f4faf9;
	--om-warm: #fff8f3;
	--om-border: #d9e7e5;
	--om-ink: #17363d;
	--om-muted: #62767b;
	max-width: 980px;
	margin: 32px auto;
	color: var(--om-ink);
}

.om-booking-dashboard *,
.om-purchase-flow * {
	box-sizing: border-box;
}

.om-dashboard-hero,
.om-flow-hero {
	padding: 10px 0 24px;
	border-bottom: 1px solid var(--om-border);
	color: var(--om-ink);
	background: transparent;
}

.om-dashboard-hero::after,
.om-flow-hero::after {
	display: none;
	content: none;
}

.om-dashboard-hero h2,
.om-flow-hero h1 {
	margin: 6px 0;
	color: var(--om-ink);
	font-weight: 700;
	letter-spacing: -.025em;
}

.om-dashboard-hero p,
.om-flow-hero p {
	max-width: 680px;
	margin: 6px 0;
	color: var(--om-muted);
}

.om-kicker {
	display: block;
	color: var(--om-purple);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.om-dashboard-hero .om-kicker,
.om-flow-hero .om-kicker {
	color: var(--om-purple);
}

.om-dashboard-section {
	margin: 18px 0;
	padding: 22px;
	border: 1px solid var(--om-border);
	border-radius: 12px;
	background: #fff;
}

.om-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.om-section-heading h2,
.om-section-heading h3 {
	margin: 3px 0;
}

.om-credit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
}

.om-credit {
	display: grid;
	gap: 3px;
	padding: 16px;
	border: 1px solid var(--om-border);
	border-top: 3px solid var(--om-type-color, var(--om-purple));
	border-radius: 9px;
	background: #fff;
}

.om-credit::before {
	display: none;
	content: none;
}

.om-credit span {
	font-size: 30px;
	font-weight: 750;
	color: var(--om-ink);
}

.om-credit small {
	color: var(--om-muted);
}

.om-slot-list,
.om-booking-list {
	display: grid;
	gap: 8px;
}

.om-slot,
.om-booking {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border: 0;
	border-bottom: 1px solid var(--om-border);
	border-radius: 0;
	background: transparent;
}

.om-slot:last-child,
.om-booking:last-child {
	border-bottom: 0;
}

.om-slot-date {
	display: grid;
	place-items: center;
	min-width: 54px;
	padding: 8px;
	border: 1px solid var(--om-border);
	border-radius: 8px;
	background: #fff;
	color: var(--om-purple);
}

.om-slot-date strong {
	font-size: 22px;
	line-height: 1;
}

.om-slot-date span {
	font-size: 11px;
	text-transform: uppercase;
}

.om-slot-main,
.om-booking > div {
	flex: 1;
}

.om-slot h4 {
	margin: 3px 0;
	font-size: 17px;
}

.om-slot p,
.om-booking small {
	display: block;
	margin: 3px 0;
	color: var(--om-muted);
}

.om-places,
.om-booking-status {
	padding: 4px 8px;
	border: 1px solid var(--om-border);
	border-radius: 999px;
	background: #fff;
	color: #5f5863;
	font-size: 12px;
	font-weight: 700;
}

.om-slot em {
	color: var(--om-muted);
	font-size: 12px;
}

.om-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid var(--om-purple) !important;
	border-radius: 7px !important;
	background: var(--om-purple) !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	cursor: pointer;
}

.om-button:hover {
	border-color: var(--om-purple-dark) !important;
	background: var(--om-purple-dark) !important;
}

.om-button-secondary {
	border-color: var(--om-border) !important;
	background: #fff !important;
	color: var(--om-ink) !important;
}

.om-message,
.om-flow-login {
	padding: 16px;
	border: 1px solid var(--om-border);
	border-radius: 9px;
	background: #fff;
	color: var(--om-muted);
}

.om-flow-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0;
	margin: 22px 0 30px;
	list-style: none;
}

.om-flow-steps li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	background: transparent;
	color: var(--om-muted);
}

.om-flow-steps strong {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--om-purple);
	border-radius: 50%;
	background: #fff;
	color: var(--om-purple);
}

.om-products-section {
	margin: 20px 0 30px;
	padding: 0;
	border: 0;
	background: transparent;
}

.om-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.om-product-card {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	min-height: 190px;
	padding: 20px;
	border: 1px solid var(--om-border);
	border-radius: 10px;
	background: #fff;
}

.om-product-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.om-product-copy {
	align-self: stretch;
	display: flex;
	flex-direction: column;
}

.om-product-card h3 {
	margin: 10px 0 5px;
	font-size: 19px;
}

.om-product-card p {
	margin: 4px 0;
	color: var(--om-muted);
}

.om-product-card small {
	display: block;
	margin-top: auto;
	padding-top: 12px;
	color: var(--om-muted);
	font-weight: 700;
}

.om-product-pill {
	align-self: flex-start;
	padding: 4px 8px;
	border: 1px solid #d8ccee;
	border-radius: 999px;
	background: #fff;
	color: var(--om-purple);
	font-size: 12px;
	font-weight: 800;
}

.om-product-buy {
	display: grid;
	flex: 0 0 auto;
	gap: 10px;
	text-align: center;
}

.om-product-buy > strong {
	font-size: 24px;
	color: var(--om-ink);
}

.om-calendar-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.om-calendar-toolbar h2 {
	text-transform: capitalize;
}

.om-calendar-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--om-border);
	border-radius: 7px;
	background: #fff !important;
	color: var(--om-ink, #251f29) !important;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.om-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(82px, 1fr));
	border-top: 1px solid var(--om-border);
	border-left: 1px solid var(--om-border);
}

.om-calendar-weekday {
	padding: 8px;
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.om-calendar-day,
.om-calendar-weekday {
	border-right: 1px solid var(--om-border);
	border-bottom: 1px solid var(--om-border);
}

.om-calendar-day {
	min-height: 105px;
	padding: 6px;
}

.om-calendar-day.is-outside {
	background: var(--om-soft);
	color: #aaa;
}

.om-calendar-number {
	display: block;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 800;
}

.om-calendar-event {
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;
	margin: 3px 0;
	padding: 5px;
	overflow: hidden;
	border: 1px solid #e4ddea !important;
	border-left: 3px solid var(--om-event-color) !important;
	border-radius: 3px;
	background: #f7f4fa !important;
	color: var(--om-ink, #251f29) !important;
	font-size: 11px;
	line-height: 1.35;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.om-calendar-event > span:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.om-calendar-event:hover,
.om-calendar-event:focus-visible {
	border-color: #cfc2dc !important;
	background: #eee8f3 !important;
	color: var(--om-ink, #251f29) !important;
}

.om-calendar-detail {
	margin-top: 14px;
	padding: 15px 16px;
	border: 1px solid var(--om-border);
	border-left: 3px solid var(--om-purple);
	border-radius: 7px;
	background: #fff;
}

.om-calendar-detail h3 {
	margin: 4px 0;
}

.om-calendar-detail p {
	margin: 6px 0;
}

.om-calendar-detail-type {
	display: flex;
	align-items: center;
	gap: 7px;
}

.om-calendar-icon {
	display: inline-flex;
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	color: var(--om-ink, #251f29);
}

.om-calendar-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.om-calendar-action {
	margin: 14px 0 0;
}

.om-calendar-unavailable,
.om-slot-unavailable {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--om-border);
	border-radius: 7px;
	color: var(--om-muted);
	font-size: 12px;
	font-weight: 700;
}

.om-client-portal {
	--om-purple: #007881;
	--om-purple-dark: #005b63;
	--om-teal: #00969d;
	--om-blue: #155fa6;
	--om-orange: #f97316;
	--om-coral: #ef4f45;
	--om-pink: #df3d8f;
	--om-soft: #f4faf9;
	--om-warm: #fff8f3;
	--om-border: #d9e7e5;
	--om-ink: #17363d;
	--om-muted: #62767b;
	max-width: 1040px;
	margin: 32px auto;
	color: var(--om-ink);
}

.om-client-portal * {
	box-sizing: border-box;
}

.om-portal-heading,
.om-portal-user-heading {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--om-border);
}

.om-portal-heading h1,
.om-portal-user-heading h1 {
	margin: 6px 0;
	color: var(--om-ink);
	font-size: clamp(28px, 4vw, 42px);
	letter-spacing: -.035em;
}

.om-portal-heading p,
.om-portal-user-heading p,
.om-section-heading p {
	max-width: 680px;
	margin: 6px 0;
	color: var(--om-muted);
}

.om-portal-user-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.om-portal-logout {
	color: var(--om-muted);
	font-weight: 700;
	text-decoration: none;
}

.om-portal-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	margin: 18px 0;
	padding: 5px;
	border: 1px solid var(--om-border);
	border-radius: 10px;
	background: var(--om-soft);
}

.om-portal-nav a {
	padding: 10px 12px;
	border-radius: 7px;
	color: var(--om-muted);
	font-size: 13px;
	font-weight: 750;
	text-align: center;
	text-decoration: none;
}

.om-portal-nav a:hover,
.om-portal-nav a:focus-visible {
	color: var(--om-ink);
	background: #f1eef3;
}

.om-portal-nav a.is-active {
	color: var(--om-ink);
	background: #fff;
	box-shadow: 0 1px 2px rgba(37, 31, 41, .08);
}

.om-register-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(260px, .8fr);
	gap: 18px;
	margin-top: 24px;
}

.om-register-form,
.om-register-help,
.om-portal-section {
	padding: 24px;
	border: 1px solid var(--om-border);
	border-radius: 12px;
	background: #fff;
}

.om-register-form {
	display: grid;
	gap: 16px;
}

.om-register-form label:not(.om-register-consent):not(.om-honeypot) {
	display: grid;
	gap: 7px;
}

.om-register-form label > span {
	font-weight: 700;
}

.om-register-form input:not([type="checkbox"]) {
	width: 100%;
	min-height: 44px;
	padding: 9px 11px;
	border: 1px solid #cfcbd2;
	border-radius: 7px;
	background: #fff;
}

.om-register-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.om-register-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--om-muted);
	font-size: 13px;
}

.om-register-consent input {
	margin-top: 3px;
}

.om-register-help {
	align-self: start;
	background: var(--om-soft);
}

.om-register-help h2 {
	margin: 8px 0;
}

.om-register-help p {
	margin: 0 0 20px;
	color: var(--om-muted);
}

.om-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.om-button-wide {
	width: 100%;
}

.om-portal-notice {
	margin: 18px 0;
	padding: 13px 15px;
	border: 1px solid var(--om-border);
	border-radius: 8px;
	background: #fff;
}

.om-portal-notice-error {
	border-color: #fecaca;
	background: #fff7f7;
	color: #991b1b;
}

.om-portal-notice-success {
	border-color: #bbf7d0;
	background: #f5fff8;
	color: #166534;
}

.om-portal-section {
	margin: 18px 0;
}

.om-portal-quick-section {
	margin: 24px 0 0;
}

.om-quick-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.om-quick-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 112px;
	padding: 18px;
	border: 1px solid var(--om-border);
	border-radius: 10px;
	background: #fff;
	color: var(--om-ink) !important;
	text-decoration: none !important;
}

.om-quick-card:hover,
.om-quick-card:focus-visible {
	border-color: #cfc7d4;
	background: var(--om-soft);
}

.om-quick-card > span:nth-child(2) {
	min-width: 0;
}

.om-quick-card strong,
.om-quick-card small {
	display: block;
}

.om-quick-card strong {
	margin-bottom: 5px;
}

.om-quick-card small {
	overflow: hidden;
	color: var(--om-muted);
	font-size: 12px;
	line-height: 1.4;
	text-overflow: ellipsis;
}

.om-quick-card b {
	color: var(--om-muted);
	font-size: 18px;
}

.om-quick-card-icon,
.om-list-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.om-quick-card-icon {
	width: 42px;
	height: 42px;
	border: 1px solid var(--om-border);
	border-radius: 50%;
	background: var(--om-soft);
}

.om-type-heading,
.om-product-heading {
	display: flex;
	align-items: center;
	gap: 9px;
}

.om-product-heading {
	justify-content: space-between;
}

.om-type-icons {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #4d4652;
}

.om-type-icon {
	display: inline-flex;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
}

.om-type-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.om-quick-card-icon .om-type-icons {
	gap: 0;
}

.om-quick-card-icon .om-type-icon {
	width: 21px;
	height: 21px;
	flex-basis: 21px;
}

.om-list-icon {
	width: 38px;
	height: 38px;
	border: 1px solid var(--om-border);
	border-radius: 50%;
	background: var(--om-soft);
}

.om-list-icon .om-type-icon {
	width: 23px;
	height: 23px;
	flex-basis: 23px;
}

.om-portal-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.om-portal-product {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	min-height: 200px;
	padding: 18px;
	border: 1px solid var(--om-border);
	border-radius: 9px;
	background: #fff;
}

.om-portal-product h3 {
	margin: 10px 0 5px;
	font-size: 19px;
}

.om-portal-product p {
	margin: 0;
	color: var(--om-muted);
}

.om-portal-product footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--om-border);
}

.om-portal-product footer > strong {
	font-size: 22px;
}

.om-portal-product form {
	margin: 0;
}

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

.om-portal-columns .om-portal-section {
	margin: 0;
}

.om-portal-slot-list {
	display: grid;
	gap: 0;
}

.om-portal-slot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--om-border);
}

.om-portal-slot:last-child {
	border-bottom: 0;
}

.om-portal-slot strong,
.om-portal-slot small {
	display: block;
}

.om-portal-slot > div {
	min-width: 0;
	flex: 1;
}

.om-portal-slot small {
	margin-top: 3px;
	color: var(--om-muted);
}

.om-portal-slot > a {
	flex: 0 0 auto;
	color: var(--om-purple);
	font-size: 12px;
	font-weight: 800;
}

@media (max-width: 760px) {
	.om-booking-dashboard,
	.om-purchase-flow,
	.om-client-portal {
		width: 100%;
		margin: 18px auto;
		padding: 0 14px;
	}

	.om-flow-steps,
	.om-product-grid,
	.om-register-layout,
	.om-register-grid,
	.om-portal-product-grid,
	.om-portal-columns,
	.om-quick-grid {
		grid-template-columns: 1fr;
	}

	.om-portal-nav {
		display: flex;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.om-portal-nav a {
		min-width: max-content;
		flex: 0 0 auto;
		padding-inline: 14px;
	}

	.om-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.om-section-heading > a {
		white-space: nowrap;
	}

	.om-portal-user-heading h1 {
		overflow-wrap: anywhere;
	}

	.om-portal-user-heading,
	.om-portal-product footer,
	.om-portal-slot {
		align-items: flex-start;
		flex-direction: column;
	}

	.om-portal-slot,
	.om-booking {
		position: relative;
	}

	.om-portal-section,
	.om-register-form,
	.om-register-help {
		padding: 17px;
	}

	.om-portal-slot form,
	.om-portal-slot > a,
	.om-booking form,
	.om-booking .om-button,
	.om-portal-slot .om-button {
		width: 100%;
	}

	.om-list-icon {
		position: absolute;
	}

	.om-portal-slot > div,
	.om-booking > div {
		width: 100%;
		padding-left: 50px;
	}

	.om-flow-steps {
		gap: 12px;
	}

	.om-product-card:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.om-product-card,
	.om-slot,
	.om-booking {
		align-items: flex-start;
		flex-direction: column;
	}

	.om-product-buy {
		width: 100%;
		text-align: left;
	}

	.om-calendar {
		overflow: auto;
	}

	.om-calendar-grid {
		min-width: 680px;
	}

	.om-dashboard-section {
		padding: 16px;
	}
}

@media (max-width: 480px) {
	.om-client-portal {
		padding: 0 10px;
	}

	.om-portal-user-heading h1 {
		font-size: 29px;
	}

	.om-portal-section,
	.om-register-form,
	.om-register-help {
		padding: 14px;
		border-radius: 9px;
	}

	.om-credit-grid {
		grid-template-columns: 1fr;
	}

	.om-quick-card {
		min-height: 96px;
		padding: 14px;
	}

	.om-portal-product footer {
		width: 100%;
	}

	.om-portal-product footer form,
	.om-portal-product footer .om-button {
		width: 100%;
	}
}

/* Palette de marque inspirée du logo Optimouvements. */
.om-dashboard-hero,
.om-flow-hero,
.om-portal-heading,
.om-portal-user-heading {
	border-bottom: 3px solid transparent;
	border-image: linear-gradient(90deg, var(--om-orange), var(--om-coral), var(--om-pink), var(--om-blue), var(--om-teal)) 1;
}

.om-button {
	box-shadow: none !important;
}

.om-button:focus-visible,
.om-calendar-nav:focus-visible,
.om-portal-nav a:focus-visible,
.om-quick-card:focus-visible {
	outline: 3px solid rgba(0, 150, 157, .22);
	outline-offset: 2px;
}

.om-flow-steps li:nth-child(2) strong {
	border-color: var(--om-blue);
	color: var(--om-blue);
}

.om-flow-steps li:nth-child(3) strong {
	border-color: var(--om-pink);
	color: #b5256d;
}

.om-credit:nth-child(4n+1) {
	border-top-color: var(--om-teal);
}

.om-credit:nth-child(4n+2) {
	border-top-color: var(--om-coral);
}

.om-credit:nth-child(4n+3) {
	border-top-color: var(--om-blue);
}

.om-credit:nth-child(4n) {
	border-top-color: var(--om-pink);
}

.om-type-icon-pilates,
.om-credit .om-type-icon-pilates {
	color: var(--om-coral);
}

.om-type-icon-sport,
.om-credit .om-type-icon-sport {
	color: var(--om-teal);
}

.om-quick-card {
	border-top-width: 3px;
}

.om-quick-card:nth-child(1) {
	border-top-color: var(--om-pink);
}

.om-quick-card:nth-child(1) .om-quick-card-icon {
	border-color: #f4bfd7;
	background: #fff3f8;
}

.om-quick-card:nth-child(2) {
	border-top-color: var(--om-blue);
}

.om-quick-card:nth-child(2) .om-quick-card-icon {
	border-color: #bfd8ef;
	background: #f2f8fd;
}

.om-quick-card:nth-child(3) {
	border-top-color: var(--om-orange);
}

.om-quick-card:nth-child(3) .om-quick-card-icon {
	border-color: #fed1aa;
	background: var(--om-warm);
}

.om-quick-card:hover,
.om-quick-card:focus-visible {
	border-right-color: #bdd8d5;
	border-bottom-color: #bdd8d5;
	border-left-color: #bdd8d5;
	background: #fbfefd;
}

.om-portal-product,
.om-product-card {
	border-top-width: 3px;
}

.om-portal-product:nth-child(4n+1),
.om-product-card:nth-child(4n+1) {
	border-top-color: var(--om-teal);
}

.om-portal-product:nth-child(4n+2),
.om-product-card:nth-child(4n+2) {
	border-top-color: var(--om-coral);
}

.om-portal-product:nth-child(4n+3),
.om-product-card:nth-child(4n+3) {
	border-top-color: var(--om-blue);
}

.om-portal-product:nth-child(4n),
.om-product-card:nth-child(4n) {
	border-top-color: var(--om-pink);
}

.om-product-pill {
	border-color: #b8ddda;
	background: #f2fbfa;
	color: var(--om-purple);
}

.om-portal-nav a.is-active {
	box-shadow: inset 0 -3px 0 var(--om-teal);
}

.om-calendar-event .om-calendar-icon {
	color: var(--om-event-color);
}

.om-calendar-event.om-event-pilates {
	--om-event-color: var(--om-coral) !important;
	border-color: #f5cec9 !important;
	background: #fff7f5 !important;
}

.om-calendar-event.om-event-sport {
	--om-event-color: var(--om-teal) !important;
	border-color: #bfe1df !important;
	background: #f2fbfa !important;
}

.om-calendar-event.om-event-pilates:hover,
.om-calendar-event.om-event-pilates:focus-visible {
	background: #ffede9 !important;
}

.om-calendar-event.om-event-sport:hover,
.om-calendar-event.om-event-sport:focus-visible {
	background: #e5f7f5 !important;
}

.om-calendar-detail.om-detail-pilates {
	border-left-color: var(--om-coral);
}

.om-calendar-detail.om-detail-sport {
	border-left-color: var(--om-teal);
}

.om-slot-date {
	border-color: #fed4b0;
	background: var(--om-warm);
	color: #b94608;
}

.om-places,
.om-booking-status {
	border-color: #bfe1df;
	background: #f2fbfa;
	color: #006c74;
}

.om-type-icon-online,
.om-credit .om-type-icon-online {
	color: var(--om-blue);
}

.om-calendar-event.om-event-online {
	--om-event-color: var(--om-blue) !important;
	border-color: #bfd8ef !important;
	background: #f2f8fd !important;
}

.om-calendar-event.om-event-online:hover,
.om-calendar-event.om-event-online:focus-visible {
	background: #e6f2fb !important;
}

.om-calendar-detail.om-detail-online {
	border-left-color: var(--om-blue);
}

.om-zoom-access {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.om-zoom-access .om-zoom-button {
	min-height: 34px;
	padding: 6px 12px;
	border-color: var(--om-blue) !important;
	background: var(--om-blue) !important;
	font-size: 13px;
}

.om-zoom-access small {
	margin: 0;
}

.om-zoom-pending {
	display: inline-flex;
	margin-top: 9px;
	padding: 7px 9px;
	border: 1px solid #bfd8ef;
	border-radius: 7px;
	background: #f2f8fd;
	color: #15528d;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 640px) {
	.om-zoom-access {
		align-items: stretch;
		flex-direction: column;
	}
}
