.tps_productRelated_items {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	padding: 20px;
}

.tps_productRelated_item {
	width: 150px;
	display: grid;
	grid-template-rows: 180px auto 20px 30px;
	grid-gap: 5px;
}

.tps_productRelated_itemImage {
	width: 100%;
	height: 170px;
	background-position: center;
	border: 1px solid #D1D1D1;
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 10px;
}

.tps_productRelated_itemTitle {
	text-align: center;
	margin-bottom: 10px;
}

.tps_productRelated_afterSale {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tps_productRelated_defaultPrice {
	text-decoration: line-through;
	font-size: 14px;
	text-align: center;
	margin-right: 5px;
}

.tps_productRelated_itemSelect {
	color: #fff;
	background: #0e0e0e;
	transition: 0.3s;
	font-size: 14px;
	padding: 5px 20px;
	cursor: pointer;
	text-align: center;
	width: 110px;
}

.tps_productRelated_itemSelectBox {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.tps_productRelated_salePrice {
	font-size: 14px;
	text-align: center;
	color: #C3363B;
}

.tps_productRelated_price {
	width: 100%;
	text-align: center;
}

.tps_productRelated_selectedProduct
.tps_productRelated_itemImage {
	border: 5px solid #B59C89;
}

.tps_productRelated_selectedProduct
.tps_productRelated_itemSelect {
	background: #B59C89;
}

.tps_productRelated_hidden {
	display: none!important;
}

.tps_productRelated_priceLoaderBox {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.tps_productRelated_priceLoader {
	position: relative;
	width: 100px;
	height: 20px;
	background: #eee;
	border-radius: 5px;
	overflow: hidden;
	display: inline-block;
}

.tps_productRelated_priceLoader::before {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
	animation: slide 1.5s infinite;
}

@keyframes slide {
	100% {
		left: 100%;
	}
}

.tps_productRelated_defaultPriceBox {
	display: flex;
	align-items: center;
}

.tps_productRelated_defaultPriceBox span {
	width: 100%;
}
