stock.instock i {
	color: green;
}
stock.outstock i {
	color: red;
}
.row_catalog {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.row_catalog .product_item a {
	justify-content: left;
	display: flex;
	height: 100%;
	transition: all .3s;
	padding: 20px 20px;
	font-size: 13px;
	position: relative;
	line-height: 1.2;
}
.row_catalog .product_item {
	border: 1px solid #f3f3f3;
	border-radius: 8px;
	box-sizing: border-box;
	width: calc(50% - 5px);
	background: #fff;
}
.row_catalog .product_item .product_image {
	padding-right: 15px;
	align-content: center;
}
.row_catalog .product_item:hover {
	box-shadow: 0 0 18px rgba(0,0,0,.13);
	border: 1px solid hsla(0,0%,91.8%,.7);
}
.row_catalog .product_item .product_info {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.row_catalog .product_item .product_info .product_brend {
	text-align: left;
}
.row_catalog .product_item .product_info .product_brend img {
	max-width: 70px;
	max-height: 20px;
}
.row_catalog .product_item .product_price {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.row_catalog .product_item .product_price price {
	display: block;
	font-weight: bold;
	font-size: 16px;
}

.row_catalog .product_item .product_price .mainProductsSliderItemBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}
.row_catalog .product_item .product_price .mainProductsSliderItemBottom .mainProductsSliderItemOffersCount {
  height: 20px;
  line-height: 20px;
  background: #f5f5f5;
  border-radius: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  color: #858585;
}
.row_catalog .product_item .product_price .mainProductsSliderItemBottom .mainProductsSliderItemPrice {
  font-size: 16px;
  line-height: 18px;
  color: #262626;
}

.catalog_wrap .bx-pagination .bx-pagination-container ul li span {
	background: #f3f3f3;
	border-radius: 4px;
	width: 33px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	display: block;
}
.bx-pagination .bx-pagination-container ul li.bx-active span {
	background: #EAEAEA;
	color: #434343;
}
.catalog_wrap .bx-pagination .bx-active {
	border-radius: 4px;
}
.catalog_wrap .bx-pagination .bx-pagination-container ul li a {
	width: unset;
	height: unset;
}
.catalog_wrap .bx-pag-prev {
	position: relative;
	margin-right: 40px !important;
}
.catalog_wrap .bx-pag-next {
	position: relative;
}
.catalog_wrap .bx-pag-prev span {
	display: none !important;
}
.catalog_wrap .bx-pag-prev:before {
	content: '';
	background-image: url('/local/templates/beloma/images/arrow-prev.svg');
	width: 32px;
	height: 18px;
	display: block;
	position: absolute;
	left: 0;
}
.catalog_wrap .bx-pag-next span {
	display: none !important;
}
.catalog_wrap .bx-pag-next:before {
	content: '';
	background-image: url('/local/templates/beloma/images/arrow-next.svg');
	width: 32px;
	height: 18px;
	display: block;
	position: absolute;
	left: 0;
}
.catalog_wrap .bx-pag-next a {
	display: block;
}
.catalog_wrap .bx-pag-next a:before {
	content: '';
	background-image: url('/local/templates/beloma/images/arrow-next.svg');
	width: 32px;
	height: 18px;
	display: block;
	position: absolute;
	left: 0;
}
.catalog_wrap .bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
	border-top: 1px solid #EAEAEA;
	border-bottom: 1px solid #EAEAEA;
	padding-top: 15px;
}
.catalog_show_next {
	padding-top: 5px;
	text-align: center;
}
.catalog_show_next a {
	color: #858585;
  font-size: 14px;
}
.catalog_show_next a svg {
	margin-left: 10px;
	margin-top: -3px;
}
.catalog_wrap .bx-pagination .bx-pagination-container ul li.bx-active span {
	background: #EAEAEA;
	color: #434343;
}

.product_image img {
	width: 130px;
}
.product__title {
	padding-top: 10px;
	font-weight: 500;
}

@media screen and (max-width: 980px) {
.row_catalog .product_item {
	width: 100%;
	height: 170px;
}

.row_catalog .product_item a {
	padding: 18px 12px;
}
.row_catalog {
    flex-direction: column;
}	
.product_image img {
	width: 100px;
}
	
}


