/*# sourceMappingURL=catalog.css.map*/

.catalog__container {
	padding-top: 60px;
	padding-bottom: 60px;
	display: flex;
	flex-flow: column wrap;
}

@media (min-width:1024px) {
	.catalog__container {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

.catalog__container h1 {
	padding: 0 0 16px;
	grid-column: span 4;
	order: 1;
}

@media (min-width:1440px) {
	.catalog__container h1 {
		padding: 0 0 8px;
	}
}

@media (min-width:1024px) {
	.catalog__container {
		display: grid;
		grid-gap: 16px;
		grid-template-columns: 1fr 3fr;
	}
}

@media (min-width:1440px) {
	.catalog__container {
		grid-gap: 32px;
	}
}

.filters-thumb {
	display: none;
}

@media (min-width:1024px) {
	.filters-thumb {
		display: block;
	}
}

.catalog__sticky-filters {
	scrollbar-color: #16807e #fff;
	scrollbar-width: 3px;
	display: none;
}

.catalog__sticky-filters::-webkit-scrollbar {
	width: 1px;
}

.catalog__sticky-filters::-webkit-scrollbar-track {
	background-color: rgba(22, 128, 126, .2);
	border-radius: 2px;
}

.catalog__sticky-filters::-webkit-scrollbar-thumb {
	background-color: #16807e;
	border-radius: 0;
}

@media (min-width:667px) {
	.catalog__sticky-filters::-webkit-scrollbar {
		width: 3px;
	}
	
	.catalog__sticky-filters::-webkit-scrollbar-track {
		border-radius: 16px;
	}
}

.catalog__sticky-filters.active {
	display: block;
}

@media (min-width:1024px) {
	.catalog__sticky-filters {
		max-height: calc(var(--app-height) - var(--header-height) - 56px);
		position: sticky;
		top: calc(var(--header-height) + 48px);
		overflow-y: auto;
		display: block;
	}
}

.cat-head-gal {
	display: grid;
	grid-gap: 24px;
	grid-template-columns: 100%;
	grid-column: 2/3;
	order: 2;
	width: 100%;
	margin: 32px 0;
}

@media (min-width:1024px) {
	.cat-head-gal {
		order: 3;
		margin: 0;
	}
}

@media (min-width:667px) {
	.cat-head-gal {
		grid-template-columns: 66% 31.5%;
	}
}

.catalog__main-col {
	display: flex;
	flex-direction: column;
	grid-column: 2/3;
	order: 4;
}

.catalog__filters-col {
	grid-row: span 2;
	order: 3;
	display: flex;
	flex-flow: column wrap;
	gap: 16px;
}

.catalog__filters-col.longer {
	grid-row: span 3;
}

@media (min-width:1024px) {
	.catalog__filters-col {
		order: 2;
	}
}

.catalog__filters-bar {
	display: flex;
	margin: 0 -16px;
	padding: 8px 16px;
	justify-content: space-between;
	align-items: center;
	background: #fbfbfb;
}

.catalog__filters-bar button {
	border: none;
	background: none;
	padding: 4.5px 33px 4.5px 0;
	display: flex;
	gap: 8px;
	align-items: center;
	color: #575c5f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.catalog__filters-bar button svg {
	width: 24px;
	height: 24px;
}

@media (min-width:1024px) {
	.catalog__filters-bar {
		display: none;
	}
}

.cat-head-arrows {
	display: flex;
	align-items: center;
	gap: 32px;
	order: 1;
}

@media (min-width:667px) {
	.cat-head-arrows {
		order: 0;
		justify-self: end;
		align-self: center;
	}
}

.cat-head-arrows .slider-arrows__btn {
	width: 24px;
	height: 24px;
	box-shadow: none;
}

.cat-head-arrows .slider-arrows__btn:not(.swiper-button-disabled) {
	cursor: pointer;
}

@media (hover:hover) {
	.cat-head-arrows .slider-arrows__btn:hover {
		background-color: transparent;
	}
}

@media (hover:hover) {
	.cat-head-arrows .slider-arrows__btn:hover path {
		fill: #16807e;
	}
}

.cat-head-arrows .slider-arrows__btn svg {
	width: 70%;
	height: 70%;
}

.catalog__additional-controls {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 24px;
}

.catalog__additional-controls + .catalog__grid {
	margin-top: 24px;
}

.catalog__count {
	font-size: 16px;
}

.catalog__sort-place {
	width: 100%;
}

@media (min-width:667px) {
	.catalog__sort-place {
		order: 1;
		width: auto;
	}
}

.catalog__grid {
	display: grid;
	grid-gap: 48px 24px;
	margin-top: 40px;
}

@media (min-width:667px) {
	.catalog__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width:768px) {
	.catalog__grid {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 64px;
	}
}

.catalog__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}

@media (min-width:768px) {
	.catalog__btn {
		margin-top: 64px;
	}
}

.cat-head-gal__slider.swiper {
	overflow: visible;
}

@media (min-width:1024px) {
	.cat-head-gal__slider.swiper {
		overflow: hidden;
	}
}

.catalog {
	overflow: hidden;
}

@media (min-width:1024px) {
	.catalog {
		overflow: visible;
	}
}
