.cart table {
	width: 100%;
	box-shadow: 0px 5px 41px -6px rgb(117 117 117 / 15%);
	border-radius: 40px;
	padding: 5vh;
}

.cart .title {
	font-family: "Sf-Compact-Display-Bold";
}

.cart .product .image-container {
	width: 6rem;
	padding-bottom: 80%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.cart .product .image-container img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cart .product .summary {

}

.cart table a {
	color: #000;
}

.cart table a:hover,
.cart table button.delete:hover
{
	color: #637D96;
}

.cart table button.delete {
	cursor: pointer;
}

.cart table tr + tr {
	border-top: 1px solid #cdcdcd;
	padding-top: 1rem;
	margin-top: 1rem;
}

.cart .price-total {
	font-family: "Sf-Compact-Display-Bold";
	font-size: 1.5rem;
}

.btn--2 {
	display: block !important;
	padding: 2vh !important;
	width: 100% !important;
}

.form-cart label {
	margin-top: 2.5vh;
}

@media only screen and (min-width: 1024px) {
	.cart .price-total,
	.cart .price,
	.cart .delete-container {
		text-align: right;
	}
}

@media only screen and (max-width: 1023px) {
	.cart table td {
		text-align: center;
	}

	.product-image-title {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.delete-container {
		margin-top: 2vh;
	}
}