.section{
	display: flex;
	flex-wrap: wrap;
	gap: 8px 32px;
	margin: 15px 0 32px;
}
.section > .column-left .section-list li a{
  display: block;
}
.section > .column-left .section-list li span{
  cursor: pointer;
}
.section > .column-left{
	flex: 0 0 275px;
}
.section > .column-right{
	flex: 1;
}

.section > .filter{
	flex: 0 0 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--separator-second-color);
}
.section .pagination{
	flex: 0 0 100%;
}
.pagination{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 90px;
}
.pagination__count{
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
	margin-bottom: 4px;
}
.pagination__progress{
	height: 4px;
	width: 274px;
	background-color: var(--separator-second-color);
	position: relative;
}
.pagination__progress span{
	position: absolute;
	background-color: var(--grey-color);
	left: 0;
	top: 0;
	bottom: 0;
}
.pagination__link-more .btn{
	width: 274px;
	max-width: 274px;
	margin-top: 16px;
}
.filter-button{
	background-image: url(/upload/icon/filter.svg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 28px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	cursor: pointer;
	color: var(--text-color);
}
.filter-button span{
	color: var(--grey-color);
	margin-left: 8px;
}
.section-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.section-list > ul > li > span:after{
	content: '';
	width: 24px;
	height: 24px;
	background-image: url(/upload/icon/arrow-mobile-list.svg);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(180deg);
	transition: all .2s linear;
}
.section-list > ul > li:has(ul.active) > span:after{
	transform: rotate(0);
}
.section-list > ul > li > span{
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 0;
	padding: 12px 0;
	position: relative;
	border-bottom: 1px solid var(--separator-second-color);
	display: block;
}
.section-list > ul > li ul {
	display: none;
	padding: 12px 0 12px 16px;
	border-bottom: 1px solid var(--separator-second-color);
	flex-direction: column;
	gap: 16px;
}
.section-list > ul > li ul.active{
	display: flex;
	animation: showBlock 0.5s linear forwards;
}
.section-list > ul > li ul a{
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--text-color);
	text-decoration: none;
}
.section-list > ul > li ul a:hover{
  color: var(--text-color-hover);
}
.filter{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
}
.filter-list{
	flex: 1;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 56px;
	display: none;
}
.heading-title h1.big-size{
	font-size: 23px;
	line-height: 32px;
	font-weight: 300;
}
body .breadcrumbs {
	margin: 0 0 15px;
}
.heading-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.filter-list li{
	background-image: url(/upload/icon/down-small.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 24px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}
.filter-list li:last-child{
	flex: 1;
	text-align: right;
}
.filter-modal{
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	padding: 32px;
	transform: translateX(100%);
	transition: all .2s linear;
	overflow: auto;
	z-index: 1002;
	height: 100%;
	width: 669px;
	background-color: var(--white-color);
}
.filter-modal::-webkit-scrollbar-track
{
	border: 1px solid #D9D9D9;
	background-color: #fff;
}

.filter-modal::-webkit-scrollbar
{
	width: 8px;
	background-color: #fff;
}

.filter-modal::-webkit-scrollbar-thumb
{
	background-color: #D9D9D9;
}
.filter-modal__heading{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--separator-second-color);
}

.filter-modal__item__title:after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 24px;
	height: 24px;
	background-image: url(/upload/icon/down-small.png);
	background-repeat: no-repeat;
	background-position: center;
	margin: auto;
	transition: all .2s linear;
}
.filter-modal .filter-close {
	background-image: url(/upload/icon/x.png);
	background-repeat: no-repeat;
	background-position: right center;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	padding-right: 28px;
	cursor: pointer;
}
.filter-modal .filter-close:hover{
	color: var(--text-color-hover);
}
.filter-modal .filter-reset{
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	cursor: pointer;
	transition: color .2s linear;
}
.filter-modal .filter-reset:hover{
	color: var(--secondary-color);
}
.filter-selected span{
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 6px 25px 6px 8px;
	background: var(--separator-color);
	font-size: 12px;
	font-weight: 300;
	margin-right: 8px;
	margin-bottom: 8px;
	background-image: url(/upload/icon/filter-delete.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 8px) center;
	cursor: pointer;
	transition: all .2s linear;
}
.filter-selected span:hover{
	background-color: var(--separator-second-color);
}
.filter-selected{
	display: flex;
	flex-wrap: wrap;
}
.filter-modal__item__title{
	padding: 16px 0;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: var(--text-color);
	border-bottom: 1px solid var(--separator-second-color);
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="16" fill="none"><path fill="%231C1C1C" d="M7.02151 5.57751L1.90242 0.332302C1.69346 0.119464 1.4108 0 1.11616 0C0.821521 0 0.538854 0.119464 0.329895 0.332302C0.225362 0.438535 0.142393 0.564924 0.0857721 0.704178C0.0291514 0.843433 0 0.992796 0 1.14365C0 1.29451 0.0291514 1.44387 0.0857721 1.58313C0.142393 1.72238 0.225362 1.84877 0.329895 1.955L5.46013 7.18878C5.56466 7.29501 5.64763 7.4214 5.70425 7.56066C5.76087 7.69991 5.79003 7.84927 5.79003 8.00013C5.79003 8.15099 5.76087 8.30035 5.70425 8.4396C5.64763 8.57886 5.56466 8.70525 5.46013 8.81148L0.329895 14.0453C0.119885 14.2589 0.00131592 14.5493 0.000270155 14.8526C-0.000775612 15.1558 0.115789 15.4471 0.324319 15.6622C0.532849 15.8774 0.816264 15.9989 1.11222 16C1.40817 16.0011 1.69241 15.8816 1.90242 15.668L7.02151 10.4228C7.64807 9.77996 8 8.90862 8 8.00013C8 7.09164 7.64807 6.2203 7.02151 5.57751Z"/></svg>');
	background-repeat: no-repeat;
	background-position: right center;
	cursor: pointer;
	display: flex;
	gap: 8px;
}

.filter-modal__item__title.active {
	border-bottom: none;
}
.filter-modal__item__content.half-width a{
	text-decoration: none;
}
.filter-modal__item__title.active:after{
	transform: rotate(180deg);
}

.filter-modal__item__title span{
	color: var(--grey-color);
}
.filter-modal__item__content{
	display: none;
	flex-wrap: wrap;
	gap: 16px;
	border-bottom: 1px solid var(--separator-second-color);
	padding: 16px 0;
	flex-direction: column;
}
.filter-modal__item__content.half-width{
	gap: 16px;
}
.filter-modal__item__content.half-width > *{
	flex: 0 0 calc(50% - 8px);
}
.filter-modal__item__content .filter-price{
	flex: 0 0 100%;
}
.filter-modal__item__content.active{
	display: flex;
	animation: showBlock 0.5s linear forwards;
}
.filter-modal__item__content.half-width .filter-modal__item__reset,
.filter-modal__item__reset{
	flex: 0 0 100%;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	cursor: pointer;
	color: var(--text-color);
	transition: all .2s linear;
}
.filter-modal__item__reset:hover{
	color: var(--secondary-color);
}


.range-slider {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.price-input {
	width: 80px;
	padding: 0;
	text-align: center;
	font-size: 14px;
	border: none;
	border-radius: 4px;
}
input.price-input.min-price {
	text-align: left;
}
input.price-input.max-price {
	text-align: right;
}
.slider-container {
	position: relative;
	width: 100%;
	order: -1;
	height: 12px;
}

.slider-track {
	position: absolute;
	height: 1px;
	width: 100%;
	background: #D7D7D7;
	top:8px;
	transform: translateY(-50%);
}

.range {
	position: absolute;
	width: 100%;
	height: 12px;
	background: none;
	-webkit-appearance: none;
	pointer-events: none;
}

.range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 12px;
	height: 12px;
	background: #1E1E1E;
	border-radius: 0;
	pointer-events: all;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.range::-moz-range-thumb {
	width: 12px;
	height: 12px;
	background: #1E1E1E;
	border-radius: 0;
	pointer-events: all;
	cursor: pointer;
}

.active-track {
	position: absolute;
	height: 3px;
	background: #1E1E1E;
	top: 8px;
	transform: translateY(-50%);
	z-index: 1;
}
.card-width-button{
	display: flex;
	gap: 8px;
}
.card-width-button .active path{
	stroke: var(--button-color);
}
.card-list-full-width > *{
	flex: 0 0 100% !important;
	max-width: 100% !important;
}
.filter-button{
	font-size: 0;
}
@media (max-width: 1050px) {
	.filter-button,
	.section > .column-left{
		flex: 0 0 200px;
	}
}
@media (max-width: 1000px) {
	.filter-button{
		flex: 0 0 auto;
	}
	.filter-modal{
		top: 0;
	}
	.section > .column-right{
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
	}
	.section-product-list{
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		position: relative;
		padding: 0 5px;
	}
}
@media (max-width: 850px) {
	.section{
		margin-top: 20px;
	}
	.section > .column-left,
	.filter-list{
		display: none;
	}
	.filter-modal .checkbox-color__color{
		width: 24px;
		flex: 0 0 24px;
		height: 24px;
	}
	.filter-modal__item.sort .checkbox-text{
		font-size: 12px;
		line-height: 16px;
	}
}
@media (max-width: 670px) {
	.filter-modal{
		width: 100%;
		transform: translateY(100%);
		height: 80vh;
		top: auto;
		bottom: 0;
	}
	.filter-modal__body {
		height: calc(80vh - 160px);
		overflow: auto;
	}
	.catalog-section__filter__buttons {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 18px 16px;
		box-shadow: 0px -3px 4px 0px #0000000D;
	}
	.heading-title{
		justify-content: space-between;
	}
}
@media (max-width: 600px) {
	.filter .card-width-button{
		display: none;
	}

	.filter{
		justify-content: space-between;
		padding-bottom: 0;
		border-bottom: none;
	}
	.heading{
		display: none;
	}
	.filter-modal__item.sort .filter-modal__item__content.half-width{
		gap: 8px;
	}
	.filter-modal__item.sort .checkbox-text{
		font-size: 11px;
		min-width: calc(25% - 4px);
		flex: 0 0 calc(50% - 4px);
	}
	.filter-modal{
		padding: 15px;
	}
}
@media (max-width: 460px) {
	.filter-modal .filter-close{
		font-size: 0;
	}
}

@media (min-width: 601px) {
	.card-width-button{
		display: none;
	}
}