.cart-container{
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 69px; /* Height of navbar */
}

.cart-container h1{
	font-size: 2rem;
}

#cart-list{
	width: 100%;
}

.cart-item{
	border: 1px solid #fff;
	border-left: none;
	border-right: none;
	padding: 10px 50px;
	width: calc(100% - 100px);
	display: flex;
	justify-content: space-between;
}

.cart-item-img{
	height: auto;
	width: 12%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-item-desc{
	width: 80%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-item-desc h2{
	margin: 0;
	padding: 5px 0;
}
.cart-item-desc span, .cart-item-desc a{
	padding: 2px 10px;
}

.cart-item-specs{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.cart-item-specs div{
	display: flex;
	flex-direction: column;
}
.cart-item-specs span, .cart-item-specs a{
	width: fit-content;
}

.total-container{
	padding: 10px 50px;
	width: calc(100% - 100px);
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}
.total-container h2{
	width: 100%;
	display: flex;
	justify-content: space-between;
}