.auction-status-hero {
	margin-bottom: 2em;
	padding: 2em 1em;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	color: #000;
}

.auction-status-hero h1 {
	color: #000;
	font-weight: 700;
	font-size: 28px !important;
}

.auction-status-hero p {
	color: inherit;
	margin-top: 0.5em;
}

.auction-status-intro {
	margin-top: 1em;
	margin-bottom: 2em;
	text-align: center;
	margin-inline: auto;
}

.auction-status-intro p {
	margin-bottom: 1em;
}

.auction-status-disclaimer {
	text-align: right;
	margin-bottom: 16px;
	margin-top: 32px;
}

.location-wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	margin-bottom: 1rem;
}

.location-status {
	padding: 1em 0;
	border-bottom: 2px solid #ccc;

	view-transition-class: location-status;
	view-transition-name: match-element;
}

::view-transition-group(*) {
	animation-duration: 0.5s;
}

::view-transition-old(*),
::view-transition-new(*) {
	height: 100%;
	opacity: 1;
}

.location-status--normal {
	box-shadow: none;
}

.location-status--normal .location-status__summary {
	opacity: 0.6;
}

.status-key {
	background: #f7f7f7;
	color: #666;
	padding: 6px 20px;
	margin-top: 16px;
}

.location-status__indicator {
	width: 1em;
	height: 1em;
	min-width: 1em;
	min-height: 1em;
	max-width: 1em;
	max-height: 1em;
	border-radius: 50%;
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: middle;
	box-shadow: inset -2px -2px 4px 1px rgba(0, 0, 0, 0.2);
	grid-area: status;
}

.location-status__indicator.red,
.icon.red {
	background-color: #dd3b32;
}
.location-status__indicator.yellow,
.icon.yellow {
	background-color: #eabb2d;
}
.location-status__indicator.green,
.icon.green,
.icon.normal {
	background-color: #477f37;
}

.location-status__title {
	font-size: 18px;
	font-weight: 500;
	color: #005ba8;
	flex-grow: 1;
	white-space: nowrap;
	flex-basis: auto;
	grid-area: title;
	display: flex;
	align-content: center;
}

.location-status__summary {
	font-size: 1.2em;
	display: flex;
	justify-content: space-between;
	gap: 1em;
	align-items: center;
	gap: 0.5em;
	flex-shrink: 1;
	flex-basis: auto;
	white-space: nowrap;
	transition: opacity 0.3s ease;
}

.location-status__summary-text {
	overflow: hidden;
	text-overflow: ellipsis;
	flex-shrink: 1;
	color: #005ba8;
	max-width: 100%;
	grid-area: summary;
	text-align: right;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.25em;
}

.location-status__dropdown-icon {
	transform: rotate(-90deg);
	transform-origin: center;
}

.location-status[open] .location-status__summary {
	opacity: 1;
}

.location-status[open] .location-status__dropdown-icon {
	transform: rotate(0);
}

.location-status[open] .location-status__details-toggle-label {
	display: none;
}

.location-status__labels {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin-block: 1em;
	list-style: none;
	padding-left: 0;
}

.location-status__labels li {
	display: flex;
	align-items: center;
}

.location-status__favorite-button {
	background: none !important;
	border: none !important;
	opacity: 0.75;
	transition: opacity 0.3s ease;
	align-self: flex-start;
}

.location-status__favorite-button:hover {
	opacity: 1;
}

.location-status__favorite-button-hide-inactive {
	display: none;
	color: #005ba8;
}

.location-status__favorite-button--active {
	opacity: 1;
}

.location-status__favorite-button--active
	.location-status__favorite-button-hide-inactive {
	display: block;
}

.location-status__favorite-button--active
	.location-status__favorite-button-hide-active {
	display: none;
}

.location-status__favorite-button-hide-active {
	color: #666;
}

.location-status__favorite-button-hide-active:hover {
	color: #005ba8;
}

.location-status__favorite-button img {
	width: 30px;
}

@media (max-width: 600px) {
	.location-status {
		padding: 8px;
		padding-right: 16px;
		overflow: hidden;
	}
	.location-status__summary {
		flex-direction: column;
	}
	.location-status__summary-text {
		text-align: left;
		font-size: 14px;
		width: 100%;
	}
	.location-status__title {
		font-size: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		flex-shrink: 1;
		max-width: 100%;
		width: 100%;
	}
}

/* Utility classes and style overrides */
.flex {
	display: flex;
	gap: 3em;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}
.flex-align-center {
	align-items: center;
}
.flex-justify-center {
	justify-content: center;
}
.flex-justify-space-between {
	justify-content: space-between;
}

.gap-3 {
	gap: 3em;
}

.col {
	flex: 1;
	min-width: 200px;
}

@media (min-width: 768px) {
	.col.border-left {
		position: relative;
	}

	.col.border-left::before {
		content: "";
		display: block;
		width: 0;
		height: 100%;
		position: absolute;
		top: 0;
		left: -2.5em;
		border-left: 1px solid #eee;
	}
}

.col-auto {
	flex: 0 0 auto;
	max-width: 100%;
	width: auto;
}

.container {
	max-width: 1050px;
	margin: 0 auto;
	padding: 1em;
}
.panel {
	margin: 1em 0;
}

.panel table {
	width: 100%;
	border-collapse: collapse;
	background-color: transparent;
	margin-inline: -0.5em;
	margin-top: 0.5em;
}
.panel table tbody > tr:nth-child(1n + 1) > td,
.panel table tbody > tr:nth-child(1n + 1) > th,
.panel table tbody > tr:nth-child(2n + 1) > td,
.panel table tbody > tr:nth-child(2n + 1) > th {
	background: none;
}

.panel table td,
.panel table th {
	padding: 0.5em;
	text-align: left;
	border: 0;
}

.text-center {
	text-align: center;
}
.mb-4 {
	margin-bottom: 1em;
}
.mt-4 {
	margin-top: 1em;
}
.ml-4 {
	margin-left: 1em;
}
.mr-2 {
	margin-right: 0.25em;
}
.mr-4 {
	margin-right: 1em;
}

.pt-4 {
	padding-top: 1em;
}
.pb-4 {
	padding-bottom: 1em;
}
.pl-4 {
	padding-left: 1em;
}
.pr-4 {
	padding-right: 1em;
}

.field,
input.field,
select.field {
	font: inherit;
	width: 100%;
	padding: 0.5em 0.75em;
	height: 40px;
	line-height: 1;
	border: 1px solid #6f6f6f !important;
	border-radius: 4px;
	font-size: 18px;
	background: white;
	color: #666;
}

.field:focus,
input.field:focus,
select.field:focus,
.field:focus-visible,
input.field:focus-visible,
select.field:focus-visible {
	outline: 2px solid #fff;
	box-shadow: 0 0 0 4px #005ba8;
}

.search-field {
	display: flex;
	border-radius: 4px;
	border: 1px solid #6f6f6f;
}

.search-field:focus-within {
	outline: 2px solid #fff;
	box-shadow: 0 0 0 4px #005ba8;
}

.search-field .field,
.search-field input.field {
	border: none !important;
	padding-left: 0 !important;
}

.search-field .field:focus .search-field input.field:focus,
.search-field .field:focus-visible,
.search-field input.field:focus-visible {
	outline: none;
	box-shadow: none;
}

.search-icon {
	height: 40px;
	aspect-ratio: 1 / 1;
	color: #6f6f6f;
	border-radius: 0 4px 4px 0;
}

.icon {
	background-color: currentColor;
	mask: var(--icon);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 20px 20px;
	height: 40px;
	width: 40px;
	display: inline-block;
}

.status-icon {
	mask-size: 26px 26px;
	height: 26px;
	width: 26px;
}

@media (max-width: 1024px) {
	.flex {
		gap: 2em;
	}
}

@media (max-width: 600px) {
	.auction-status-hero {
		margin-bottom: 0;
	}

	.flex {
		gap: 1em;
	}

	.status-icon {
		display: block;
	}

	.status-key {
		margin-top: 0;
		font-size: 14px;
	}

	.status-field {
		max-width: none !important;
	}
}

.status-icon-small {
	mask-size: 20px 20px;
	height: 20px;
	width: 20px;
}

.favorite-icon {
	transform: translateY(10px);
	mask-size: 26px 26px;
	height: 26px;
	width: 26px;
}

.icon-search {
	--icon: url(../img/heroicons/icon-search.svg);
}

.icon-heart {
	--icon: url(../img/heroicons/icon-heart.svg);
}

.icon-heart-solid {
	--icon: url(../img/heroicons/icon-heart-solid.svg);
}

.icon-chevron-down {
	--icon: url(../img/heroicons/icon-chevron-down.svg);
}

.icon-advisory,
.icon-yellow {
	--icon: url(../img/heroicons/icon-advisory.svg);
}

.icon-critical,
.icon-red {
	--icon: url(../img/heroicons/icon-critical.svg);
}

.icon-normal,
.icon-green {
	--icon: url(../img/heroicons/icon-normal.svg);
}

.status-field {
	max-width: 200px;
	appearance: none;
	background: url(../img/heroicons/icon-chevron-down.svg) no-repeat
		calc(100% - 6px) center #fff !important;
	background-size: 26px !important;
}

label.field-label,
.field-label {
	display: block;
	margin-bottom: 0.25em;
	color: #666;
}

.auction-status-filters {
	padding-bottom: 16px;
	border-bottom: 2px solid #ccc;
}

address {
	font-style: normal;
	line-height: 1.5;
}
details {
	interpolate-size: allow-keywords;
}

details::details-content {
	opacity: 0;
	block-size: 0;
	overflow-y: clip;
	transition: content-visibility 1s allow-discrete, opacity 1s, block-size 0.5s;
}

details[open]::details-content {
	opacity: 1;
	block-size: auto;
}

details > summary {
	list-style: none;
	cursor: pointer;
}
details > summary::-webkit-details-marker {
	display: none;
}
details > summary::marker {
	display: none;
}

hr {
	border: none;
	border-top: 1px solid #ccc;
	margin: 1em 0;
}

.schedule-locations-wrap {
	overflow: hidden;
	margin-top: 32px;
	border: 1px solid #c9c9c9 !important;
	border-radius: 4px;
	background: #fff;
}

.schedule-locations {
	color: #000;
}

.schedule-locations a {
	font-weight: 500;
}

.schedule-locations tbody > tr:nth-child(2n + 1) > td,
.schedule-locations tbody > tr:nth-child(2n + 1) > th {
	background: #fff;
}

.schedule-locations tbody > tr:hover > td,
.schedule-locations tbody > tr:hover > th {
	background: #ebf6ff;
}

@media (min-width: 768px) {
	.schedule-locations-header {
		width: 300px;
	}
}

.schedule-locations thead {
	position: sticky;
	top: 0;
}

.schedule-locations th {
	color: #6f6f6f;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	border: none;
	border-bottom: 2px solid #c9c9c9 !important;
	background: #f5f5f5;
}

.schedule-locations td {
	border: none;
	border-top: 1px solid #c9c9c9 !important;
}

@media (max-width: 767px) {
	.schedule-locations-header {
		font-weight: 700;
	}

	.schedule-locations thead {
		display: none;
	}
	.schedule-locations td {
		display: block;
		padding: 0.75em;
		border: none;
	}

	.schedule-locations td:before {
		content: attr(data-label);
		display: block;
		padding: 4px 0;
		font-weight: 700;
		font-size: 12px;
		color: #999;
	}

	.schedule-locations td:not(:first-child) {
		padding-top: 0;
	}

	.location-status__title .status-icon {
		mask-size: 18px 18px;
		height: 18px;
		width: 18px;
		top: 4px;
		position: relative;
	}

	.location-status__favorite-button {
		padding: 0;
	}

	.location-status__summary-text {
		padding-left: 16px;
	}

	.truncate {
		flex: 1;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.also-show-holiday {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #e0e0e0;
}

.alpha-filter {
	display: flex;
	flex-wrap: wrap;
}

@media (min-width: 769px) {
	.alpha-filter {
		margin-top: 22px;
		flex-wrap: nowrap;
	}
}

.alpha-filter-link {
	color: var(--e-global-color-accent) !important;
	padding: 0 6px;
	border: none;
	background: none !important;
	cursor: pointer;
	margin: 0 0.125em;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 4px solid transparent;
	border-radius: 0 !important;
	min-width: 24px;
	text-align: center;
}

.alpha-filter-link:hover {
	background-color: #cbe5ff !important;
}

.alpha-filter-link.active {
	border-bottom-color: #003368;
}

.weather-widget-wrap {
	display: flex;
	justify-content: flex-start;
	margin-top: 1.5rem;
}

.weather-widget {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	background-color: var(--e-global-color-accent, #005ba8);
	color: #fff;
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	transition: opacity 0.3s ease;
	position: relative;
	min-width: 100px;
}

.weather-widget.loading {
	opacity: 0.75;
}

.weather-widget [data-temp] {
	font-weight: 700;
	font-size: 2rem;
	transition: opacity 0.3s ease;
}

.weather-widget-icon {
	background: no-repeat center center;
	background-image: var(--icon);
	background-size: contain;
	width: 30px;
	height: 30px;
	transition: opacity 0.3s ease;
}

.weather-widget.loading [data-temp],
.weather-widget.loading .weather-widget-icon {
	opacity: 0;
}

.weather-widget .loader {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: no-repeat center center;
	background-size: auto 80%;
	transition: all 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.weather-widget.loading .loader {
	opacity: 0.5;
	animation: loading 2.5s infinite;
}

@keyframes loading {
	0% {
		transform: scale(0.75);
		opacity: 0.25;
	}
	50% {
		transform: scale(1);
		opacity: 0.5;
	}
	100% {
		transform: scale(0.75);
		opacity: 0.25;
	}
}

.opacity-0 {
	opacity: 0;
}
