
/* CART CONTENT */
.cart-content {
	display: flex;
	flex-direction: column;
}

.cart-head {
	font-weight: 600;
}

.cart-row {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: .75rem 0;
	align-items: center;
	max-height: 100px;
	border-bottom: 1px solid #ddd;
}

.cart-row>div {
	max-height: 100%;
}
.cart-row>div:nth-child(1) {
	width: 10%;
	display: flex;
	justify-content: center;
}

.cart-row>div:nth-child(2) {
	width: 60%;
	display: flex;
	align-items: center;
}

.cart-row>div:nth-child(3) {
	width: 30%;
	text-align: center;
}

.cart-quantity-price {
	display: flex;
	justify-content: space-between;
}

.cart-quantity-price>div {
	width: 50%;
	display: flex;
	justify-content: center;
}

.cart-row-total-single-price {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media only screen and (max-width: 600px) {
	.cart-head {
		display: none;
	}

	.cart-quantity-price {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.cart-quantity-price>div {
		width: 100%;
		margin-top: .5rem;
	}
}

.cart-row a {
	display: flex;
	max-height: 100px;
	gap: 1rem;
}

.cart-row picture {
	padding: .25rem;
}

.remove-product {
	background-color: white;
	border: none;
	box-shadow: none;
	color: red;
	cursor:pointer;
	margin: .25rem 0;
	padding: 0;
}

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

.quantity-counter__input {
	width: 2rem;
	height: 2rem;
	border: 2px solid #ccc;
	background-color: white;
	line-height: 1.5rem;
	border-radius: .5rem;
	text-align: center;
	font-size: 14px;
}

.quantity-counter button {
	background-color: white;
	border: none;
	box-shadow: none;
	padding: 0;
	height: 2rem;
	width: 2rem;
	cursor: pointer;
}

.quantity-counter path {
	stroke: #6d6d6d;
	stroke-width: 1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cart-row-price {
	font-size: 16px;
}

.cart-single-price {
	color: #999898;
	font-style: italic;
}

.cart-totals {
	border-bottom: 1px solid #ddd;
	padding: 1rem 0 ;
}

.cart-totals-row {
	display: flex;
	justify-content: space-between;
	padding: .25rem 0;
}

.cart-empty-message {
	width: 100%;
	color: #856404;
	background-color: #fff3cd;
	padding: 1rem;
}

.back-next-button-group {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.inner-button-group {
	width: 380px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
}

.sum {
	display: flex;
	align-items: center;
	justify-content: space-between;
}