.catalog-filter {
	margin-bottom: 24px;
}
.catalog-filter__box {
	background-color: #f7feff;
	border-top: 4px solid #85d2e4;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	border-radius: 0 0 10px 10px;
	padding: 16px 16px 24px;
	margin-bottom: 16px;
}
.catalog-filter__portion {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
}
.catalog-filter__portion:last-child {
	margin-bottom: 0;
}
.catalog-filter .checkbox {
	padding-left: 0;
	display: inline-block;
	margin-top: 0;
	margin-bottom: 8px;
}
.catalog-filter .checkbox label::before {
	background-color: #fff;
}
@media (min-width: 768px) {
	.catalog-filter {
		margin-right: 0;
		margin-bottom: 32px;
		margin-left: 0;
	}
	.catalog-filter__box {
		display: flex;
		justify-content: space-between;
		padding-right: 0;
		padding-left: 0;
	}
	.catalog-filter__portion {
		margin-bottom: 0;
		padding-right: 24px;
		padding-left: 24px;
		border-left: 1px solid #c4e9f2;
	}
	.catalog-filter__portion:first-child {
		border-left: none;
	}
}
@media (min-width: 992px) {
	.catalog-filter__box {
		padding-right: 48px;
		padding-left: 48px;
	}
}

.tooltip {
	position: relative;
}
.tooltip__trigger {
	font-size: 1.125rem;
	color: #007cad;
	cursor: pointer;
}
.tooltip__info {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	padding: 16px;
	background-color: #edeff2;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: opacity 200ms ease-out;
	z-index: 1;
	width: calc(100vw - 32px);
	max-width: 321px;
	left: 50%;
	bottom: 100%;
	transform: translate(-50%, -24px);
}
.tooltip__info::after {
	content: "";
	display: block;
	width: 24px;
	height: 21px;
	position: absolute;
	z-index: 1;
	top: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
	background-image: conic-gradient(
		from 0 at center bottom,
		#edeff2,
		#edeff2 30deg,
		transparent 30deg,
		transparent 330deg,
		#edeff2 330deg
	);
}
.tooltip:hover .tooltip__info,
.tooltip:focus .tooltip__info,
.tooltip:focus-visible .tooltip__info,
.tooltip:focus-within .tooltip__info {
	opacity: 1;
}

.icon-button {
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
	transition: ease-out background-color 250ms, ease-out color 250ms;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	padding: 8px 16px;
	user-select: none;
	padding-right: 16px;
	grid-template-columns: 24px 1fr;
	text-align: left;
	gap: 8px;
	background-color: #1b365d;
}
.icon-button,
.icon-button:visited,
.icon-button:active,
.icon-button:hover {
	color: #fff;
}
.icon-button:hover {
	text-decoration: none;
	color: #1b365d;
	background-color: #fff;
}

.label {
	line-height: 42px;
}

.checkbox {
	position: relative;
}
.checkbox input[type="checkbox"] {
	display: none;
	opacity: 0;
	position: absolute;
	top: 4px;
	left: 2px;
}
.checkbox input:focus ~ label::before {
	border: 3px solid #61ad00;
}
.checkbox input:checked ~ label::after {
	display: block;
}
.checkbox label {
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	display: flex;
}
.checkbox label::before {
	content: "";
	display: inline-block;
	vertical-align: text-top;
	width: 18px;
	height: 18px;
	border: 1px solid #262626;
	border-radius: 3px;
	margin-right: 8px;
	flex: 0 0 auto;
}
.checkbox label::after {
	content: "";
	display: none;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 1px;
	background-color: #59940f;
}

.noresults {
	background: #f5f7fa;
	border-radius: 10px;
	padding: 24px 16px 32px;
	color: #494b4d;
	text-align: center;
}
.noresults-h {
	color: #797c80;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
}
.noresults-p {
	margin-bottom: 8px;
}
.noresults-p:last-child {
	margin-bottom: 0;
}

.mb-4 {
	margin-bottom: 24px !important;
}
.b {
	font-weight: 700;
}

@media (min-width: 992px) {
	.h3 {
		font-size: 2.25rem;
	}
}

.fader {
	opacity: 1;
	transition: opacity 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 25ms;
}
.fader--fade {
	opacity: 0;
}
