<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.catalog {
	margin-bottom: 50px;
}

.group__banner {
	width: 100%;
	position: relative;
}

.group__banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.group__banner.results h1 {
	font-size: 34px;
	margin: 40px 0;
}

.group__banner-heading {
	position: relative;
	padding-top: 30px;
	color: #fff;
}

.results .group__banner-heading {
	color: var(--color-text-primary);
	padding: 0;
}

.filter__group {
	display: flex;
    justify-content: space-between;
    align-items: center;
	position: relative;
	font-size: .9rem;
	border-top: 1px solid #d4d4d8;
	width: 100%;
	text-align: left;
	text-transform: capitalize;
}

.filter__group a {
	padding: 9px 12px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.filter__groups-button svg {
	height: 12px;
	width: 12px;
	transition: transform .25s ease-in-out;
}

.filter__groups-button {
	cursor: pointer;
	display: block;
	padding: 9px 12px;
}

.products__list {
	gap: 40px 20px;
}

.filter__subgroup {
	display: none;
}

.filter__group-wrapper.opened &gt; .filter__subgroup {
	display: block;
}

.filter__group-wrapper.opened &gt; .filter__group svg{
	transform: rotate(180deg);
}

.filter__group-wrapper--checkbox {
	display: flex;
    gap: 10px;
    align-items: center;
    height: 33px;
}

.filter__group-wrapper--checkbox input[type="checkbox"] {
  	appearance: none;
  	-webkit-appearance: none;
	width: 14px;
    height: 14px;
}


.filter__group-wrapper--checkbox input[type="checkbox"]:before {
	content: "";
    display: inline-block;
    position: relative;
    border: 1px solid #bfbfbf;
    transition: border-color .25s ease-in-out, background-color .25s ease-in-out;
	width: 12px;
    height: 12px;
}

.filter__group-wrapper--checkbox input[type="checkbox"]:checked:before {
    border: 1px solid #000;
    background-color: #000;
}

.sub-1 .filter__group a {
	padding-left: 20px;
}

.sub-2 .filter__group a {
	padding-left: 30px;
}

.sub-3 .filter__group a {
	padding-left: 40px;
}

.sub-4 .filter__group a {
	padding-left: 50px;
}

.sub-5 .filter__group a {
	padding-left: 60px;
}

.sub-6 .filter__group a {
	padding-left: 70px;
}

.filter__groups li.active &gt; .filter__group &gt; a {
	color: var(--color-text-accent);
	font-weight: 600;
}

.filter__groups li.active&gt;.filter__group &gt; button path {
	stroke: var(--color-text-accent);
}

.sorter {
	margin-bottom: 20px;
	text-align: end;
}

.sorter__form {
	position: relative;
}

.sorter__form svg {
	position: absolute;
	top: 50%;
	right: .625rem;
	margin-top: -3px;
	pointer-events: none;
}

.sorter__select {
	font-family: 'gotham_roundedbold' !important;
	font-size: 12px !important;
	color: #BBC791 !important;
	line-height: normal !important;
	border: 1px solid #8F8820 !important;
	border-radius: 3px !important;
	height: 46px !important;
	appearance: none;
	min-width: 200px;
	padding: 5px 35px 5px 10px !important;
}

.filter__button {
	margin-bottom: 15px;
}

.filter__actions button {
	cursor: pointer;
	font-family: 'gotham_roundedbold', serif;
	color: var(--color-text-secondary);
}

.sse-container:not(.sse-container-first) {
	margin-top: 40px;
}

@media(max-width: 768px) {
	.filter {
		display: none;
	}

	.filter__group-wrapper--checkbox {
		padding: 0px 12px;
	}

	.filter.opened {
		display: block;
	}

	.filter {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 100;
		background: #fff;
		overflow: auto;
	}

	.filter__groups {
		background: #fff;
	}

	.filter__actions {
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: right;
		padding: 25px;
		border-bottom: 1px solid #d4d4d8;
	}

	.filter__group {
		font-size: 1rem;
	}
}

@media(min-width: 769px) {
	.filter__actions {
		display: none;
	}
	
	.products__list {
		grid-template-columns: 1fr 1fr;
	}

	.catalog {
		display: grid;
		grid-auto-flow: column;
		grid-template-columns: 210px 1fr;
		grid-gap: 24px;
	}

	.catalog__searchResults {
		display: block;
	}

	.filter__button {
		display: none;
	}

	.group__banner.results h1 {
		font-size: 34px;
	}
}

@media(min-width: 1220px) {
	.products__list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.catalog {
		grid-template-columns: 250px 1fr;
	}
}

/* @media(min-width: 1340px) {
	.products__list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
} */</pre></body></html>