.catalog__item {
	position: relative;
	padding: 25px 30px 0px;
	margin: 0px;
	text-align: center;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	width: 25%;
}

.catalog__item-info {
	font-size: 14px;
	text-align: left;
	color: #464646;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	margin: 0;
}

.catalog__item-price {
	/* padding: 15px 20px; */
	border-radius: 8px;
	/* background: #3d752b; */
	color: #000000;
	margin: 0px 0 10px;
	text-align: left;
	position: relative;
}

.catalog__item-price .old-price {
	color: #959595;
	display: block;
	font-weight: 600;
	white-space: nowrap;
}

.catalog__item-price .price {
	font-weight: 600;
	white-space: nowrap;
}

.catalog__item-price-flex{
	display: flex;
	justify-content: space-between;
}
.catalog__item-price .disc-price {
	
	border-radius: 5px;
	background-color: rgb(244, 98, 0);
	white-space: nowrap;
	max-width: 100px;
	width: 100%;
	display: flex;
	justify-content: center;
	color: #fff;
	align-items: center;
	font-size: 16px;
	padding: 0.25em;
	font-weight: 500;
	position: relative;
	top: -2px;
	margin-left: 3px;
}

.catalog__item-stick {
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	top: 13px;
	left: 0;
	width: 100%;
	min-height: 24px;
}

.catalog__item-stick.card .stick-card {
	display: block;
}

.catalog__item-stick.sale .stick-sale {
	display: block;
}

.catalog__item-stick.hit .stick-hit {
	display: block;
}
.catalog__item-stick.new .stick-new {
	display: block;
}
.catalog__item-stick.coupon .stick-coupon {
	display: block;
}

.catalog__item-img {
	margin: 10px 0px 30px 0px;
	height: 160px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.catalog__item-img img {
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	font-family: "object-fit: contain; object-position: center";
	max-height: 160px;
	width: 100%;
}

.catalog__item-title {
	font-size: 14px;
	text-align: left;
	color: #6f6f6f;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	margin: 0 0 15px 0;
}