.pe-filters {
	margin-bottom: 32px;
}

.pe-filters__fab {
	cursor: pointer;
	display: inline-flex;
	position: fixed;
	z-index: 10040;
	right: 16px;
	bottom: 16px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 20px 12px;
	transition: background-color 0.25s ease-in-out, transform 0.25s ease-in-out;
	border: 0;
	border-radius: 999px;
	background-color: #0C5E79;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	color: #fff;
	font-family: 'GravurCondensedBold', 'Arial', sans-serif;
	font-size: 1.077rem;
	line-height: 1;
	text-transform: uppercase;
	appearance: none;
}

.pe-filters__fab:hover,
.pe-filters__fab:focus {
	background-color: #1a6d88;
}

.pe-filters__fab-icon {
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M10 18v-2h4v2zm-4-5v-2h12v2zM3 8V6h18v2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.pe-filters__backdrop {
	position: fixed;
	z-index: 10045;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.45);
}

.pe-filters__panel {
	display: flex;
	position: fixed;
	z-index: 10050;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	flex-direction: column;
	background-color: #fff;
	transform: translate3d(0, 100%, 0);
	transition: transform 0.25s ease-in-out;
	pointer-events: none;
}

.pe-filters__panel.is-open,
body.pe-filters-open .pe-filters__panel {
	transform: translate3d(0, 0, 0) !important;
	pointer-events: auto !important;
}

.pe-filters__panel-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #CFE1EB;
}

.pe-filters__panel-title {
	margin: 0 !important;
	color: #8F352A;
	font-family: 'GravurCondensedBold', 'Arial', sans-serif;
	font-size: 1.538rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.pe-filters__panel-close {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #0C5E79;
	font-size: 2.154rem;
	line-height: 1;
	appearance: none;
}

.pe-filters__panel-body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #F7FAFB;
}

.pe-filters__panel-footer {
	display: grid;
	flex-shrink: 0;
	gap: 12px;
	padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #CFE1EB;
	background-color: #fff;
}

.pe-filters__panel-footer-actions {
	display: grid;
	gap: 8px;
}

.pe-filters__reset,
.pe-filters__apply {
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding-top: 14px;
	padding-bottom: 12px;
	box-sizing: border-box;
	text-align: center;
}

.pe-filters__apply {
	display: inline-flex;
	background-color: #0C5E79;
	color: #fff;
}

.pe-filters__reset {
	display: none;
	border: 2px solid #0C5E79;
	background-color: transparent;
	color: #0C5E79;
}

.pe-filters__reset:hover,
.pe-filters__reset:focus {
	background-color: rgba(12, 94, 121, 0.08);
	color: #0C5E79;
}

.pe-filters__reset.is-visible {
	display: inline-flex;
}

.pe-filters__count {
	display: none;
}

.pe-filters__form {
	display: grid;
	gap: 0;
	padding: 8px 0 24px;
}

.pe-filters__group {
	margin: 0;
	padding: 0;
	border: 0;
	border-bottom: 1px solid #CFE1EB;
	background-color: #fff;
}

.pe-filters__group.is-open .pe-filters__options {
	display: flex;
}

.pe-filters__group.is-open .pe-filters__question-icon {
	transform: rotate(180deg);
}

.pe-filters__question {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 16px 20px;
	border: 0;
	background: transparent;
	color: #8F352A;
	font-family: 'GravurCondensedBold', 'Arial', sans-serif;
	font-size: 1.231rem;
	line-height: 1.3;
	text-align: left;
	appearance: none;
}

.pe-filters__question-icon {
	display: block;
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	margin-left: 12px;
	transition: transform 0.25s ease-in-out;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%238F352A' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.pe-filters__options {
	display: none;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 20px 16px;
}

.pe-filters__option {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 10px 14px 8px;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
	border: 2px solid #0C5E79;
	background-color: #fff;
	color: #0C5E79;
	font-family: 'Swiss721 BT', 'Arial', sans-serif;
	font-size: 1.077rem;
	line-height: 1.3;
}

.pe-filters__option:hover,
.pe-filters__option:focus-within {
	background-color: rgba(12, 94, 121, 0.08);
}

.pe-filters__option.is-active {
	background-color: #0C5E79;
	color: #fff;
}

.pe-filters__option--skip {
	border-style: dashed;
}

.pe-filters__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.pe-filters__actions--desktop {
	display: none;
}

.pe-filters__heading {
	display: none;
}

html.pe-filters-open,
body.pe-filters-open {
	overflow: hidden;
}

.pe-results__empty {
	margin: 0 auto 24px;
	color: #444444;
	font-family: 'Swiss721 BT', 'Arial', sans-serif;
	font-size: 1.231rem;
	line-height: 1.5;
	text-align: center;
}

.pe-results__secondary-intro {
	margin: 0 0 16px;
}

.pe-results__secondary-cell {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	margin-top: 12px;
	margin-bottom: 8px;
	padding-top: 16px;
	border-top: 1px solid #CFE1EB;
}

.pe-results__secondary-text {
	margin: 0;
	color: #0C5E79;
	font-family: 'GravurCondensedBold', 'Arial', sans-serif;
	font-size: 1.231rem;
	text-transform: uppercase;
}

.js-pe-card.is-pe-secondary .card {
	opacity: 0.92;
}

.js-pe-card.is-filtered-out,
.js-pe-card[hidden] {
	display: none !important;
}

@media (min-width: 860px) {
	.pe-filters {
		margin-bottom: 40px;
		padding: 32px 0;
		background-color: #F7FAFB;
	}

	.pe-filters__fab,
	.pe-filters__backdrop,
	.pe-filters__panel-header {
		display: none;
	}

	.pe-filters__heading {
		display: block;
		margin: 0 0 28px;
		color: #8F352A;
		font-family: 'GravurCondensedBold', 'Arial', sans-serif;
		font-size: 2.154rem;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.pe-filters__panel-footer {
		display: block;
		margin-top: 8px;
		padding: 0;
		border-top: 0;
		background: transparent;
	}

	.pe-filters__panel-footer-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		align-items: stretch;
	}

	.pe-filters__reset {
		width: auto;
		min-height: 52px;
	}

	.pe-filters__reset.is-visible {
		display: inline-flex;
	}

	.pe-filters__apply {
		display: none;
	}

	.pe-filters__panel {
		display: block;
		position: static;
		transform: none;
		pointer-events: auto;
		background: transparent;
	}

	.pe-filters__panel-body {
		overflow: visible;
		background: transparent;
	}

	.pe-filters__form {
		gap: 28px;
		padding: 0;
	}

	.pe-filters__group {
		border-bottom: 0;
		background: transparent;
	}

	.pe-filters__group.is-open .pe-filters__options,
	.pe-filters__group .pe-filters__options {
		display: flex;
	}

	.pe-filters__question {
		cursor: default;
		pointer-events: none;
		margin-bottom: 12px;
		padding: 0;
		font-size: 1.125rem;
	}

	.pe-filters__question-icon {
		display: none;
	}

	.pe-filters__options {
		display: flex;
		padding: 0;
	}

	.pe-filters__actions--desktop {
		display: flex;
		justify-content: flex-start;
	}

	html.pe-filters-open,
	body.pe-filters-open {
		overflow: auto;
	}
}
