.awi-hours {
	--awi-hours-muted-opacity: .35;
	--awi-hours-arrow-size: 38px;
	width: 100%;
	max-width: 440px;
}

.awi-hours__box {
	position: relative;
	display: grid;
	grid-template-rows: auto auto auto;
	gap: 6px;
	width: 100%;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #e5edf2;
	border-radius: 12px;
	overflow: hidden;
}

.awi-hours__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: opacity .18s ease, transform .18s ease;
}

.awi-hours__row--muted {
	min-height: 56px;
	opacity: var(--awi-hours-muted-opacity);
	transform: scale(.96);
}

.awi-hours__row--current {
	min-height: 104px;
	padding: 4px calc(var(--awi-hours-arrow-size) + 18px);
	color: #1f2937;
}

.awi-hours__center-wrap {
	position: relative;
	min-width: 0;
}

.awi-hours__relative {
	display: block;
	min-height: 1.2em;
	margin-bottom: 2px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.awi-hours__relative:empty {
	visibility: hidden;
}

.awi-hours__day,
.awi-hours__time,
.awi-hours__note {
	display: block;
}

.awi-hours__day {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.awi-hours__row--muted .awi-hours__day {
	font-size: 15px;
}

.awi-hours__time {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.awi-hours__note {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.3;
	color: #6b7280;
}

.awi-hours__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 9px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.awi-hours__status--open {
	color: #137a3d;
	background: #e8f7ee;
}

.awi-hours__status--closed {
	color: #a12626;
	background: #fceaea;
}

.awi-hours__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--awi-hours-arrow-size);
	height: var(--awi-hours-arrow-size);
	padding: 0;
	color: #1483c3;
	background: #fff;
	border: 1px solid #dce7ee;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(17, 24, 39, .07);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.awi-hours__nav--prev {
	left: 0;
}

.awi-hours__nav--next {
	right: 0;
}

.awi-hours__nav svg {
	width: 48%;
	height: 48%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.awi-hours__nav:hover {
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 6px 18px rgba(17, 24, 39, .11);
}

.awi-hours__nav:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.awi-hours.is-changing .awi-hours__row {
	opacity: 0;
	transform: translateY(5px) scale(.98);
}

.awi-hours [hidden] {
	display: none !important;
}

.awi-hours-align-left .awi-hours {
	margin-left: 0;
	margin-right: auto;
}

.awi-hours-align-center .awi-hours {
	margin-left: auto;
	margin-right: auto;
}

.awi-hours-align-right .awi-hours {
	margin-left: auto;
	margin-right: 0;
}

@media (prefers-reduced-motion: reduce) {
	.awi-hours__row,
	.awi-hours__nav {
		transition: none;
	}
}

@media (max-width: 480px) {
	.awi-hours__box {
		padding-right: 14px;
		padding-left: 14px;
	}

	.awi-hours__row--current {
		padding-right: calc(var(--awi-hours-arrow-size) + 10px);
		padding-left: calc(var(--awi-hours-arrow-size) + 10px);
	}
}