.eb-business-hours {
	--eb-business-hours-row-bg: #e73f56;
	--eb-business-hours-row-hover-bg: #cc3047;
	--eb-business-hours-day-color: #ffffff;
	--eb-business-hours-time-color: #ffffff;
	--eb-business-hours-closed-color: #ffffff;
	--eb-business-hours-day-hover-color: #ffffff;
	--eb-business-hours-time-hover-color: #ffffff;
	--eb-business-hours-closed-hover-color: #ffffff;
	--eb-business-hours-highlight-bg: #18233f;
	--eb-business-hours-highlight-color: #ffffff;
	--eb-business-hours-highlight-accent: #ffd66b;
	--eb-business-hours-highlight-accent-width: 6px;
	--eb-business-hours-highlight-lift: 4px;
	--eb-business-hours-highlight-hover-lift: 8px;
	--eb-business-hours-highlight-glow: rgba(24, 35, 63, 0.28);
	--eb-business-hours-even-row-bg: #f04f66;
	--eb-business-hours-even-row-color: #ffffff;
	--eb-business-hours-odd-row-bg: #e73f56;
	--eb-business-hours-odd-row-color: #ffffff;
	background: #ffffff;
	border-radius: 0;
	overflow: visible;
}

.eb-business-hours__heading {
	background: #c4323b;
	color: #ffffff;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0;
	padding: 22px 24px;
	text-transform: uppercase;
}

.eb-business-hours__heading-title {
	align-items: center;
	display: inline-flex;
	gap: 12px;
}

.eb-business-hours__heading-title--icon-right {
	flex-direction: row-reverse;
}

.eb-business-hours__heading-icon,
.eb-business-hours__heading-icon i,
.eb-business-hours__heading-icon svg {
	display: inline-flex;
}

.eb-business-hours__heading-icon {
	color: currentColor;
	font-size: 24px;
	line-height: 1;
}

.eb-business-hours__heading-icon svg {
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.eb-business-hours__heading-description {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.6;
	margin-top: 10px;
	text-transform: none;
}

.eb-business-hours__rows {
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow: visible;
}

.eb-business-hours__row {
	align-items: center;
	background: var(--eb-business-hours-row-local-bg, var(--eb-business-hours-row-bg));
	box-sizing: border-box;
	border-radius: 0;
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-time-color));
	display: flex;
	gap: 16px;
	justify-content: space-between;
	overflow: hidden;
	padding: 18px 28px;
	position: relative;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(odd) {
	background: var(--eb-business-hours-odd-row-bg);
	color: var(--eb-business-hours-odd-row-color);
}

.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(odd) .eb-business-hours__day,
.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(odd) .eb-business-hours__time {
	color: var(--eb-business-hours-odd-row-color);
}

.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(even) {
	background: var(--eb-business-hours-even-row-bg);
	color: var(--eb-business-hours-even-row-color);
}

.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(even) .eb-business-hours__day,
.eb-business-hours--striped .eb-business-hours__row:not(.is-highlighted):nth-child(even) .eb-business-hours__time {
	color: var(--eb-business-hours-even-row-color);
}

.eb-business-hours__row.is-highlighted {
	background: var(--eb-business-hours-row-local-bg, var(--eb-business-hours-highlight-bg));
	box-shadow: 0 16px 34px var(--eb-business-hours-highlight-glow);
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-highlight-color));
	transform: translateX(var(--eb-business-hours-highlight-lift));
	width: calc(100% + max(calc(var(--eb-business-hours-highlight-lift) * -1), 0px));
}

.eb-business-hours__row.is-highlighted::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 48%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.eb-business-hours__row.is-highlighted::after {
	background: var(--eb-business-hours-highlight-accent);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: var(--eb-business-hours-highlight-accent-width);
}

.eb-business-hours--accent-top-bar .eb-business-hours__row.is-highlighted::after {
	height: var(--eb-business-hours-highlight-accent-width);
	left: 0;
	right: 0;
	top: 0;
	width: auto;
}

.eb-business-hours--accent-corner-tag .eb-business-hours__row.is-highlighted::after {
	background: transparent;
	border-left: calc(var(--eb-business-hours-highlight-accent-width) * 2.6) solid transparent;
	border-top: calc(var(--eb-business-hours-highlight-accent-width) * 2.6) solid var(--eb-business-hours-highlight-accent);
	height: 0;
	left: auto;
	right: 0;
	top: 0;
	width: 0;
}

.eb-business-hours--accent-dot-badge .eb-business-hours__row.is-highlighted::after {
	background: var(--eb-business-hours-highlight-accent);
	border-radius: 999px;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
	height: calc(var(--eb-business-hours-highlight-accent-width) * 2.2);
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: calc(var(--eb-business-hours-highlight-accent-width) * 2.2);
}

.eb-business-hours--accent-dot-badge .eb-business-hours__row.is-highlighted {
	padding-left: 44px;
}

.eb-business-hours--accent-double-line .eb-business-hours__row.is-highlighted::after {
	background: linear-gradient(
		90deg,
		var(--eb-business-hours-highlight-accent) 0,
		var(--eb-business-hours-highlight-accent) 40%,
		transparent 40%,
		transparent 60%,
		var(--eb-business-hours-highlight-accent) 60%,
		var(--eb-business-hours-highlight-accent) 100%
	);
	bottom: 0;
	left: 0;
	top: 0;
	width: calc(var(--eb-business-hours-highlight-accent-width) * 2);
}

.eb-business-hours__row.is-highlighted .eb-business-hours__day,
.eb-business-hours__row.is-highlighted .eb-business-hours__time {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-highlight-color));
}

.eb-business-hours__row:hover {
	background: var(--eb-business-hours-row-hover-bg);
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-time-hover-color));
}

.eb-business-hours__row.is-highlighted:hover {
	background: var(--eb-business-hours-row-hover-bg, var(--eb-business-hours-row-local-bg, var(--eb-business-hours-highlight-bg)));
	box-shadow: 0 20px 42px var(--eb-business-hours-highlight-glow);
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-time-hover-color));
	transform: translateX(var(--eb-business-hours-highlight-hover-lift));
	width: calc(100% + max(calc(var(--eb-business-hours-highlight-hover-lift) * -1), 0px));
}

.eb-business-hours__day,
.eb-business-hours__time {
	font-size: 18px;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.eb-business-hours__day {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-day-color));
	flex: 1 1 42%;
	font-weight: 500;
}

.eb-business-hours__time {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-time-color));
	flex: 1 1 auto;
	font-weight: 600;
	text-align: right;
}

.eb-business-hours__row.is-closed .eb-business-hours__time {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-closed-color));
	text-transform: uppercase;
}

.eb-business-hours__row:hover .eb-business-hours__day {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-day-hover-color));
}

.eb-business-hours__row:hover .eb-business-hours__time {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-time-hover-color));
}

.eb-business-hours__row.is-closed:hover .eb-business-hours__time {
	color: var(--eb-business-hours-row-local-color, var(--eb-business-hours-closed-hover-color));
}

@media (max-width: 767px) {
	.eb-business-hours__heading {
		font-size: 22px;
		padding: 18px 20px;
	}

	.eb-business-hours__row {
		padding: 16px 20px;
	}

	.eb-business-hours__day,
	.eb-business-hours__time {
		font-size: 16px;
	}
}
