.qty-indicator{
	display: none;
}
.sticker__item.special{
	border-radius: 30px;
    background-color: #E25A68;
    color: #ffffff;
    opacity: 1;
}

#product-category .products-block {
	align-items: stretch;
}

#product-category .product-layout {
	margin-bottom: 20px;
}

#product-category .al-product-card {
	position: relative;
	height: 100%;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	padding: 15px 16px 26px;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s ease, border-color .2s ease;
}

#product-category .al-product-card:hover {
	border-color: #dedede;
	box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

#product-category .al-product-card__stickers {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

#product-category .al-product-card__sticker {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 6px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.44px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

#product-category .al-product-card__sticker--sale {
	background: #ea5b70;
}

#product-category .al-product-card__image {
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

#product-category .al-product-card__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#product-category .al-product-card__image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

#product-category .al-product-card__info {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

#product-category .al-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
	color: #8a8a8a;
	font-size: 14px;
	line-height: 1.2;
}

#product-category .al-product-card__reviews {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

#product-category .al-product-card__reviews i {
	color: #f5a623;
	font-size: 17px;
}

#product-category .al-product-card__reviews span {
	color: #777;
	text-decoration: underline;
	white-space: nowrap;
}

#product-category .al-product-card__code {
	margin-left: auto;
	color: #8a8a8a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 48%;
}

#product-category .al-product-card__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;

	min-height: 38px;
	max-height: 38px;
	margin-bottom: 14px;

	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	text-decoration: none;

	overflow: hidden;
	text-overflow: ellipsis;
}

#product-category .al-product-card__name:hover {
	color: #000;
	text-decoration: none;
}

#product-category .al-product-card__price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	margin-bottom: 16px;
	min-height: 30px;
}

#product-category .al-product-card__price-current {
	color: #333;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

#product-category .al-product-card__price-current--special {
	color: #ea5b70;
}

#product-category .al-product-card__price-old {
	color: #909090;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: line-through;
}

#product-category .al-product-card__discount {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 6px;
    border-radius: 5px;
    background: #ea5b70;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

#product-category .al-product-card__actions {
	display: grid;
	grid-template-columns: 1fr 48px 48px;
	gap: 12px;
	align-items: center;
}

#product-category .al-product-card__cart {
	height: 44px;
	border: 0;
	border-radius: 4px;
	background: #000;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0 18px;
	box-shadow: none;
}

#product-category .al-product-card__cart:hover,
#product-category .al-product-card__cart:focus {
	background: #111;
	color: #fff;
	box-shadow: none;
}

#product-category .al-product-card__cart i {
	font-size: 16px;
}

#product-category .al-product-card__icon-btn {
	width: 48px;
	height: 44px;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	background: #fff;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: none;
	position: initial;
}

.al-product-card__actions button.compare .fas{
	transform: rotate(0);
}

#product-category .al-product-card__icon-btn .fa-balance-scale{
	font-size: 15px;
}

#product-category .al-product-card__icon-btn:hover {
	border-color: #bdbdbd;
	color: #000;
	background: #fff;
}

#product-category .price-tax {
	margin-top: -8px;
	margin-bottom: 10px;
	font-size: 12px;
	color: #999;
}

@media (max-width: 767px) {
	#product-category .al-product-card {
		padding: 12px 12px 18px;
	}

	#product-category .al-product-card__image {
		height: 190px;
		margin-bottom: 14px;
	}

	#product-category .al-product-card__meta {
		font-size: 12px;
		gap: 6px;
	}

	#product-category .al-product-card__name {
		min-height: 44px;
		font-size: 14px;
	}

	#product-category .al-product-card__price-current {
		font-size: 19px;
	}

	#product-category .al-product-card__price-old {
		font-size: 14px;
	}

	#product-category .al-product-card__actions {
		grid-template-columns: 1fr 42px 42px;
		gap: 8px;
	}

	#product-category .al-product-card__cart {
		height: 40px;
		font-size: 14px;
		padding: 0 10px;
	}

	#product-category .al-product-card__icon-btn {
		width: 42px;
		height: 40px;
		font-size: 18px;
	}
}