.b-main-title-header{
	text-transform: uppercase;
	font-size: 42px;
	margin:0;
	letter-spacing: 0;
	padding:30px 0;
	text-align: center;
}

.pagination{
	width:100%;
	margin:20px auto;
}
.pag-item{
	background: transparent;
	box-shadow:none;
	text-decoration: none;
}
.pag-item:hover{
	background: var(--view-btn);
	color:#000;
	box-shadow:none;
}

.catalog-section{
	padding:0 0 30px;
}

.catalog-section-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

.row::before {
	display: initial;
}
.catalog-wrapper .filter,
.catalog-wrapper .products{
	background: #f6f8f9;
}

.filter.active{
	display: block;
}

.sorting{
	display: flex;
	width:100%;
}

.sorting-block{
	display: flex;
	align-items:center;
	justify-content: space-between;
	padding: 0 10px 0 0;
}

.sorting-wrapper{
	display: flex;
	flex-flow:row nowrap;
	align-items:center;
	justify-content: space-between;
	width:100%;
	padding:10px 0;
	background: var(--blue);
	border-radius:5px;
	margin:0 0 5px 0;
}

.sorting-price,
.sorting-count{
	display: flex;
}
.sorting-item{
	padding:0 10px;
}
.sorting-item.selected a{
	color:yellow;
}
.sorting-item a{
	display: flex;
	flex-flow:nowrap;
	font-size:14px;
	color:#ffffff;
	font-weight:600;
}
.sorting-item a:hover,
.sorting-item a:focus{
	color:yellow;
}
.sorting-item.selected a svg,
.sorting-item a:hover svg,
.sorting-item a:focus svg{
	fill:yellow;
}
.sorting-icon{
	width:17px;
}

.sorting-icon svg{
	fill:#fff;
}

.sorting-icon__revers{
	transform: rotateX(180deg);
}

.sorting-text{
	padding: 0 0 0 5px;
}

.sorting-view{
	display: flex;
	flex-flow:row nowrap;
	justify-content: space-between;
	align-items:center;
}
.sorting-view_block,
.sorting-view_list{
	width:16px;
	margin-left:10px;
	cursor: pointer;
}
.sorting-view_block.active svg,
.sorting-view_list.active svg{
	fill:yellow;
}
.sorting-view svg{
	width:100%;
	fill:#fff;
}

.sorting-price_mobile,
.filter-btn_mobile{
	width:20px;
	height:20px;
	margin-left:10px;
}

.sorting-price_mobile{
	margin-left:30px;
}

.filter-btn svg,
.sorting-item_mobile svg{
	width:100%;
	height:100%;
	fill:#fff;
}

.sorting-mobile{
	align-items:center;
	justify-content: space-between;
	display: none;
}

.filter-closer{
	position: absolute;
	top:15px;
	right:20px;
	width:18px;
	height:18px;
	z-index: 50;
	display: none;
}
.filter-closer svg{
	width:100%;
	height:100%;
	fill:var(--blue);
}

.prod-slider{
	position: relative;
	padding:0 20px!important;
}

.slider-control{
	position: absolute;
	top:35px;
	right:25px;
	display: flex;
	flex-flow:row nowrap;
	align-items:center;
	justify-content: space-between;
	width:90px;
}
.next-slider,
.prev-slider{
	width:40px;
	height: 40px;
	background-color:var(--blue);
	display: flex;
	align-items:center;
	justify-content: center;
	color:#fff;
	cursor: pointer;
	padding:10px;
	border-radius: 5px;
}

.next-slider:hover,
.prev-slider:hover{
	background: var(--red);
}

.next-slider svg,
.prev-slider svg{
	fill:#fff;
	width:40px;
	height: 40px;
}

.btn-buy{
	background: var(--blue)!important;
}
.btn-buy:hover{
	background: var(--red)!important;
}
.btn-view {
	border: 1px solid var(--blue)!important;
	color: var(--blue)!important;
}

@media screen and (max-width: 767px){
	.sorting-mobile{
		display: flex;
	}
	.sorting-price{
		display: none;
	}
	.filter {
		display: none;
	}
	.sorting-wrapper{
		margin:0;
	}
	.filter-closer{
		display: block;
	}
}

@media screen and (max-width: 480px){
	.slider-control{
		width:80px;
		top: 20px;
		right: 5px;
	}
	.b-main-title-header{
		font-size:30px;
		text-align: left;
		padding: 20px 5px 20px;
	}
	.prev-slider,
	.next-slider{
		width:35px;
		height:35px;
	}
	.next-slider svg,
	.prev-slider svg{
		width:35px;
		height: 35px;
	}
	.sorting-item a{
		font-size:12px;
	}
	.sorting{
		padding:5px;
	}
	.prod-slider,
	.catalog-section{
		padding:0!important;
	}

}