.tps_checkoutCartItem {
	display: grid;
	grid-template-columns: auto 1fr;
	font-size: 14px;
	grid-column-gap: 10px;
	padding: 0 20px 20px 0;
}

.tps_checkoutCartItem img {
	width: 85px;
	height: auto;
	object-fit: contain;
	object-position: top center;
}

.tps_checkoutCartItem_right {
	display: grid;
	grid-template-rows: auto 1fr auto auto;
}

.tps_checkoutCartItem_nameLine {
	display: flex;
	justify-content: space-between;
}

.tps_checkoutCartItem_name {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	padding-bottom: 10px;
	padding-right: 10px;
}

.tps_checkoutCartItem_description {
	line-height: 20px;
	padding-bottom: 8px;
}

.tps_checkoutCartItem_sku {
	display: none;
}

.tps_checkoutCartItem_options {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.tps_checkoutCartItem_options i {
	font-size: 14px;
	padding-right: 5px;
}

.tps_checkoutCartItem_price {
	font-size: 15px;
	justify-self: end;
}

.tps_checkoutCartItem_priceDiscountBase {
	padding-right: 5px;
	text-decoration: line-through;
}

.tps_checkoutCartItem_2col {
	font-size: 15px;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-column-gap: 10px;
	margin-top: 10px;
	align-items: flex-end;
}

.tps_checkoutCartItem_quantity {
	border: 1px solid #e9e9e9;
	width: max-content;
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	padding: 5px 10px;
	border-radius: 5px;
}

.tps_checkoutCartItem_quantity span {
	color: #676767;
	cursor: pointer;
	user-select: none;
	font-size: 25px;
}

.tps_checkoutCartItem_quantity select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	color: #000;
	font-size: 15px;
	padding: 0 10px;
	cursor: pointer;
}

.tps_checkoutCartItem_remove {
	cursor: pointer;
	text-decoration: underline;
	font-size: 14px;
}

.tps_checkoutCartItem_remove:hover {
	text-decoration: none;
}

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

.tps_checkoutCartItem_promoNameRow div:first-child {
	margin-right: 10px;
}

.tps_checkoutCartItem_promoName {
	line-height: 28px;
	color: red;
}

.tps_checkoutCartItem_promoDiscount {
	color: red;
}

@media (min-width: 768px) {
	.tps_checkoutCartItem {
		padding: 0 20px 35px 0;
	}

	.tps_checkoutCartItem_sku {
		display: block;
	}

	.tps_checkoutCartItem_name {
		font-weight: bold;
	}

	.tps_checkoutCartItem_name:hover {
		text-decoration: underline;
	}

	.tps_checkoutCartItem img {
		width: 120px;
		min-height: 150px;
	}
}
