.ProductTile {
	position: relative;
	border-radius: 1px;
	text-align: center;
	background-color: #fff;
}

.ProductTile:hover {
	z-index: 500;
}

.ProductTile .title {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 16px;
	overflow: hidden;
	width: 33.333%;
	text-align: left;
}

.ProductTile .preview {
	position: absolute;
	width: 700px;
	min-height: 300px;
	margin-left: -320px;
	margin-top: -50px;
	background-color: #fff;
	z-index: 400;
	border: 1px solid #cdcdcd;
}


.ProductTile .thumbnail {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	transition: all 100ms ease-in;
	width: 100%;
	max-height: 100%;
}
.ProductTile .thumbnail.hasPlaceholder {
	background-position: center bottom;
	background-color: var(--Dexter-Color);
}

.ProductTile .suffix {
	padding: 12px;
}
.ProductTile .suffix .control {
	width: 33.333%;
	position: relative;
}
.ProductTile .suffix .productPrice {
	margin-bottom: 2px;
}
.ProductTile .suffix .basket {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -100%);
	margin-bottom: 0;
	border: none;
	cursor: pointer;
	background: none;
	background-image: url('../../images/icons/basket.32x32.png');
	background-size: cover;
	margin-left: 8px;
	width: 32px;
	height: 32px;
	display: inline-block;
}
.ProductTile .suffix .basket.loading {
	background-image: none;
}
.ProductTile .suffix .basket.true {
	filter: hue-rotate(130deg) brightness(1.6);
}
.ProductTile .suffix .basket .LoadingSpinner {
	position: absolute;
	top: 1px;
	left: 1px;
	opacity: 0;
	transition: transform 100ms;
}
.ProductTile .suffix .basket.loading .LoadingSpinner {
	opacity: 1;
}
.ProductTile .suffix .variant {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #fff;
	box-shadow: 0 0 0 0 #000;
	margin-right: 10px;
	cursor: pointer;
	transition: all 100ms;
	box-sizing: border-box;
	padding-left: 10px;
}
.ProductTile .suffix .variant:not(.active):hover {
	transform: scale(1.1);
	box-shadow: 0 0 0 1px #000;
}
.ProductTile .suffix .variant.active {
	box-shadow: 0 0 0 2px #000;
}
