.cart-container {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
}
.cart-item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border: 1px solid black;
	width: 100%;
}
.cart-item.footer {
	order: 1;
	border: none;
}
.cart-item-content {
	margin: 10px;
	text-align: center;
}
.counter {
	display: flex;
	flex-direction: row;
	background: gray;
	height: 20px;
}
.btn-close {
	align-self: flex-start;
	margin-right: 2px;
	width: 20px;
	text-align: center;
}
.btn-close:hover {
	color: #ff861d;
	cursor: pointer;
}
.item-name-link {
	text-decoration: none;
	color: black;
}
.btn-cart {
	 color: white;
	 border: 1px solid black;
	 cursor: pointer;
}

.btn-add-to-cart {
	background-color: #d80000;
	color: white;
	cursor: pointer;
	margin-left: 10px;
	padding: 5px 20px;
	border: 1px solid black;
	border-radius: 3px;
	transition: 0.25s ease-in-out;
}
.btn-add-to-cart.added {
	background-color: #ff861d;
}
.btn-add-to-cart:hover {
	background-color: #ff861d;
}