.products-tile-list {
	list-style-type: none;
	margin: 0;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	clear: both;
	padding: 0.5px;
}
.products-tile-list>li, .products-tile-list>tr {
	display: block;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	max-width: calc(25% + 1px);
	margin-right: -1px;
	margin-bottom: -1px;
}
.products-tile-list .product-tile-item {
	position: relative;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	height: 100%;
	border: 1px solid #EDEBDF;
	background-color: #fff;
	padding: 20px;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	z-index: 0;
}
.products-tile-list .ptli-label-cont {
	display: block;
	position: absolute;
	z-index: 2;
	top: 15px;
	left: -6px;
	list-style-type: none;
}
.products-tile-list .ptli-label-cont i {
	display: block;
	position: relative;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}
.products-tile-list .ptli-label-cont i.hit {
	width: 35px;
	height: 53px;
	background-image: url('../img/card-tile/card-hit.svg');
}
.products-tile-list .ptli-label-cont i.discount {
	width: 53px;
	height: 70px;
	background-image: url('../img/card-tile/card-discount.svg');
}
.products-tile-list .ptli-label-cont i.rare_variety {
	width: 53px;
	height: 70px;
	background-image: url('../img/card-tile/rare.svg');
}
.products-tile-list .ptli-label-cont i.new {
	width: 63px;
	height: 80px;
	background-image: url('../img/card-tile/new.svg');
}
.products-tile-list .ptli-label-cont i+i {
	margin-top: -40px;
}
.products-tile-list .ptli-label-cont i+i.new {
	margin-top: -50px;
}
.products-tile-list .discount-amount-cont {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-o-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-align-items: stretch;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 9px;
}
.products-tile-list .discount-amount-cont>span {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	line-height: 1;
	min-height: 20px;
	padding: 0 5px;
	margin-right: 5px;
}
.products-tile-list .discount-amount-cont>span.general {
	background-color: #CD3144;
	color: #FFF;
}
.products-tile-list .discount-amount-cont>span.personal {
	color: #fff;
	background-color: #A1D65C;
}
/* .products-tile-list>li.product-hit:before,
.products-tile-list>tr.product-hit:before{
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	top: 15px;
	left: -16px;
	width: 46px;
	height: 53px;
	background: url('../img/card-tile/card-hit.svg') center no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.products-tile-list>tr>td {display: block;}
.products-tile-list>li.product-discount:before,.products-tile-list>tr.product-discount:before{
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	top: 7px;
	left: -17px;
	width: 63px;
	height: 70px;
	background: url('../img/card-tile/card-discount.svg') center no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
} */
.products-tile-list .product-tile-item:hover {
	border-color: #e77c5b;
	z-index: 1;
}
.products-tile-list .ptli-img {
	display: block;
	position: relative;
	margin-bottom: 25px;
}
.products-tile-list .ptli-img:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.products-tile-list .ptli-img>img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.ptli-score {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.star-rating-list {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.star-rating-list>li {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 15px;
	display: block;
}
.star-rating-list[data-rating="5"]>li:before,
.star-rating-list>li:before {
	content: '';
	display: block;
	padding-top: 100%;
	background: url('../img/card-tile/filled-star.svg') center no-repeat;
	background-size: cover;
}
.star-rating-list[data-rating^="0"]>li:nth-child(n+1):before,
.star-rating-list[data-rating^="1"]>li:nth-child(n+2):before,
.star-rating-list[data-rating^="2"]>li:nth-child(n+3):before,
.star-rating-list[data-rating^="3"]>li:nth-child(n+4):before,
.star-rating-list[data-rating^="4"]>li:nth-child(n+5):before {
	background: url('../img/card-tile/blanked-star.svg') center no-repeat;
	background-size: cover;
}
.products-tile-list .star-rating-list {
	margin-right: 5px;
	margin-left: -2px;
}
.products-tile-list .ptli-reviews-count {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: block;
	line-height: 1;
	color: #605F5F;
	font-size: 13px;
	text-decoration: none;
}
.products-tile-list .ptli-reviews-count>a {
	display: block;
}
.products-tile-list .ptli-reviews-count:hover {
	color: #e77c5b;
}
.products-tile-list .ptli-title {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	min-height: 65px;
	padding: 5px 0;
	font-weight: 700;
	font-size: 16px;
	color: #694A3F;
	font-style: italic;
	line-height: 1.29;
}
.products-tile-list .ptli-title:hover {
	color: #cd3144;
}
.ptli-total {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	min-height: 48px;
	margin-top: auto;
}
.ptli-total .ptli-total-info {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.product-tile-item .current-price {
	font-size: 22px;
	font-weight: 700;
	color: #CD3144;
	margin-right: 6px;
}
.product-tile-item .old-price {
	font-size: 14px;
	color: #897E7A;
	text-decoration: line-through;
}
.product-tile-item .availability {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	font-size: 14px;
	font-weight: 700;
	color: #009FB1;
}
.product-tile-item .ptli-btn {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	position: relative;
	outline: none;
	border: none;
	color: transparent;
	font-size: 0;
	padding: 0 13px;
	height: 48px;
	background-color: #CD3144;
	-webkit-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
}
.product-tile-item .ptli-btn:before {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	content: '\e807';
	color: #FFF;
	font-family: "font_icons";
	font-size: 22px;
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 100%;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.product-tile-item .ptli-btn:after {
	content: '';
	display: block;
	position: absolute;
	inset: 3px;
	border: 2px dashed #FFFFFF;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.product-tile-item .ptli-btn:hover:after {
	border-style: solid;
	inset: 2px;
}
.product-tile-item .ptli-btn:active {
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
	background-color: #b92d3d;
}
.product-tile-item .not-available,
.product-tile-item .expects {
	display: block;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	font-size: 18px;
	font-weight: 300;
	color: #7B7B7B;
}
.product-tile-item .not-available {
	color: #CF323C;
}
.new-and-rec-cont {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-o-flex-flow: row wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-align-items: stretch;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	margin: 0 -10px;
	max-width: 102%;
	max-width: calc(100% + 20px);
}
.new-and-rec-cont .nar-col {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-o-flex-flow: column nowrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-ms-align-items: stretch;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	padding: 0 10px;
	max-width: 50%;
}
.new-and-rec-cont .product-other-title {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.new-and-rec-cont .nar-col .products-tile-list {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	width: 100%;
}
.new-and-rec-cont .nar-col .products-tile-list>li {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	max-width: calc(50% + 1px);
}
/*in row*/
.products-tile-list>[data-view="favorite"] {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	max-width: 100%;
}
.full-width .products-tile-list>[data-view="favorite"] {
	max-width: 50%;
}
[data-view="favorite"] .product-tile-item {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	gap: 15px;
}
.product-tile-item__delete {
	display: block;
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	--s: 20px;
	width: var(--s);
	height: var(--s);
	background: url("../img/btn-close-red.svg") center/90% no-repeat;
	-webkit-transition: var(--def-tn);
	-o-transition: var(--def-tn);
	transition: var(--def-tn);
	will-change: transform;
	cursor: pointer;
}
.product-tile-item__delete:hover {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}
.product-tile-item__favor {
	display: block;
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	padding: 0;
	--s: 20px;
	width: var(--s);
	height: var(--s);
	-webkit-transition: var(--def-tn);
	-o-transition: var(--def-tn);
	transition: var(--def-tn);
	will-change: auto;
	cursor: pointer;
}
.product-tile-item__favor:hover,
.product-tile-item__favor.active {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-filter: drop-shadow(1px 1px 1px rgba(38, 38, 38, 0.1));
	filter: drop-shadow(1px 1px 1px rgba(38, 38, 38, 0.1));
}
.product-tile-item__favor:before,
.product-tile-item__favor:after {
	display: block;
	content: '';
	position: absolute;
	inset: 0;
	background: url('../img/favor-icon.svg') center/contain no-repeat;
	-webkit-transition: var(--def-tn);
	-o-transition: var(--def-tn);
	transition: var(--def-tn);
}
.product-tile-item__favor:after {
	background: url('../img/favor-icon-filled.svg') center no-repeat;
}
.product-tile-item__favor.active:before,
.product-tile-item__favor:not(.active):after {
	opacity: 0;
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
}
[data-view="favorite"] .product-tile-item__favor.active:after {
	background: url('../img/btn-close-red.svg') center/90% no-repeat;
}
[data-view="favorite"] .product-tile-item__start {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 180px;
}
[data-view="favorite"] .ptli-score {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
[data-view="favorite"] .product-tile-item__options {
	margin-bottom: 10px;
}
[data-view="favorite"] .product-tile-item .ptli-specifications {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	margin-bottom: 0;
	border: 1px solid #EDEBDF;
	padding: 5px;
	border-radius: 5px;
	margin-right: 10px;
	display: none;
}
[data-view="favorite"] .product-tile-item .ptli-specifications:has(.ptli-s-item) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
[data-view="favorite"] .product-tile-item .ptli-specifications .ptli-s-item {
	padding: 0;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 100%;
}
[data-view="favorite"] .ptli-title {
	min-height: auto;
	margin-bottom: .65em;
}
[data-view="favorite"] .ptli-img {
	margin-bottom: 16px;
}
[data-view="favorite"] .ptli-img.slider .slick-dots {
	bottom: -16px;
}
[data-view="favorite"] .ptli-img.slider .slick-dots>li {
	height: 14px;
}
[data-view="favorite"] .product-tile-item__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: -webkit-min-content;
	min-width: -moz-min-content;
	min-width: min-content;
}
[data-view="favorite"] .product-tile-item__info .ptli-total {
	margin-top: auto;
	gap: 10px;
}
[data-view="favorite"] .discount-amount-cont {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	margin: 0 0 0.4rem;
}
[data-view="favorite"] .discount-amount-cont>span {
	margin: 0;
}
[data-view="favorite"] .ptli-total-buy {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
[data-view="favorite"] .product-tile-item .ptli-btn {
	font-size: 16px;
	color: #fff;
}
[data-view="favorite"] .product-tile-item .ptli-btn:before {
	margin-right: 10px;
}
/*in row*/
@media (max-width: 1200px) {
	.full-width .products-tile-list>[data-view="favorite"] {
		max-width: 100%;
	}
}
@media (max-width: 991px) {
	.products-tile-list>li, .products-tile-list>tr {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%;
		max-width: 50%;
	}
	.new-and-rec-cont .nar-col {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.products-tile-list>li, .products-tile-list>tr {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 33.33333333333333%;
		flex: 1 1 33.33333333333333%;
		max-width: calc(33.33333333333333% + 1px);
	}
	.products-tile-list>[data-view="favorite"] {
		flex: 0 1 50%;
		max-width: 50%;
	}
	.full-width .products-tile-list>[data-view="favorite"] {
		max-width: 50%;
	}
	[data-view="favorite"] .product-tile-item__start {
		width: 160px;
	}
	[data-view="favorite"] .product-tile-item {
		padding: 10px;
	}
	[data-view="favorite"] .product-tile-item .ptli-specifications {
		margin-right: 0;
	}
	[data-view="favorite"] .product-tile-item .ptli-btn {
		font-size: 0;
	}
	[data-view="favorite"] .product-tile-item .ptli-btn:before {
		margin-right: 0;
	}
}
@media (max-width: 768px) {
	[data-view="favorite"] .product-tile-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	[data-view="favorite"] .product-tile-item .ptli-specifications {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	[data-view="favorite"] .product-tile-item .ptli-specifications .ptli-s-item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(100% / 3);
		flex: 1 1 calc(100% / 3);
		margin-bottom: 0;
	}
	[data-view="favorite"] .product-tile-item__start {
		width: 100%;
	}
}
@media (max-width: 640px) {
	.product-tile-item .ptli-total-buy {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		margin-top: 10px;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: stretch;
		-ms-flex-pack: stretch;
		justify-content: stretch;
		min-height: 33px;
	}
	.product-tile-item .not-instock {
		margin: 0 auto;
	}
	.ptli-total {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		min-height: auto;
	}
	.product-tile-item .ptli-btn {
		width: 100%;
		height: 33px;
		color: #FFF;
		text-transform: uppercase;
		font-size: 14px;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	[data-view="favorite"] .product-tile-item .ptli-btn {
		font-size: 14px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 1rem;
	}
	.product-tile-item .ptli-btn:before {
		margin-right: 8px;
		font-size: 15px;
	}
	.products-tile-list .ptli-reviews-count {
		font-size: 11px;
	}
	.product-tile-item .ptli-btn:after {
		border-width: 1px;
	}
	.product-tile-item .ptli-btn:hover:after {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	.product-tile-item .ptli-total-info {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.product-tile-item .availability {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		padding-right: 3px;
		font-size: 12px;
	}
	.product-tile-item .ptli-total-price {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		padding-left: 3px;
		margin-left: auto;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		text-align: right;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		white-space: nowrap;
	}
	.product-tile-item .old-price {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		font-size: 12px;
	}
	.product-tile-item .current-price {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		font-size: 16px;
		margin-right: 0;
	}
	.ptli-total .not-available,
	.ptli-total .expects {
		font-size: 14px;
		text-align: center;
	}
	[data-view="favorite"] .product-tile-item .ptli-total-info {
		display: grid;
		grid-template-areas:
			". discount"
			"amount price";
		grid-template-columns: 1fr auto;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: .4rem .8rem;
	}
	[data-view="favorite"] .discount-amount-cont {
		grid-area: discount;
		justify-self: end;
		margin: 0;
	}
	[data-view="favorite"] .ptli-total-price {
		grid-area: price;
	}
	[data-view="favorite"] .availability {
		grid-area: amount;
	}
}
@media (max-width: 480px) {
	.product-tile-item .current-price {
		font-size: 14px;
	}
	.products-tile-list>li, .products-tile-list>tr {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%;
		max-width: 50%;
	}
	.product-tile-item .product-tile-item {
		padding: 10px;
	}
	.product-tile-item .ptli-title {
		font-size: 14px;
		min-height: auto;
	}
	.product-tile-item .star-rating-list>li {
		width: 11px;
	}
	.product-tile-item .ptli-reviews-count {
		font-size: 10px;
	}
	[data-view="favorite"] .product-tile-item .ptli-specifications .ptli-s-item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
}
@media (max-width: 320px) {
	.products-tile-list>li, .products-tile-list>tr {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .product-tile-item .ptli-btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}