div#cart-link {
	cursor: pointer;
	transition: 0.25s;
	font-weight: bold;
}
div#cart-link:hover {
	opacity: 0.6;
	transition: 0.25s;
}
div#cart-container {
	text-align: center;
}
div#cart-inside {
	margin-bottom: 2rem;
	padding: 0.5rem 1rem 0.5rem;
	background-color: #eee;
	display: inline-block;
	border-radius: 1rem;
	box-shadow: 0 0.25rem 0.5rem 0 rgba(0,0,0,0.5);
}
table#cart-contents {
	border-spacing: 0 0.5rem;
}
table#cart-contents td {
}
table#cart-contents tr.cart-header td {
	border-bottom: 2px solid #aaa;
	font-weight: bold;
	padding-bottom: 0.5rem;
}
table#cart-contents tr.cart-summary td {
	border-top: 2px solid #aaa;
	font-weight: bold;
}
table#cart-contents tr.checkout-summary td {
	font-weight: bold;
}
table#cart-contents a {
	color: #000;
	transition: 0.25s;
}
table#cart-contents a:hover {
	opacity: 0.6;
	transition: 0.25s;
}
.cart-item {
	margin-bottom: 0.5rem;
}
.cart-item-text {
	text-align: right;
	border: 0;
	vertical-align: top;
	padding: 1rem 0 0 1rem;
}
.cart-item-title {
	text-align: left;
	width: 16rem;
	font-weight: bold;
}
.cart-item-change {
	font-size: 0.75em;
}
.cart-change-amount {
	cursor: pointer;
	margin-right: 1em;
	transition: 0.25s;
}
.cart-change-amount:hover {
	opacity: 0.6;
	transition: 0.25s;
}
.cart-item-total {
	font-weight: bold;
}
.cart-item-image {
	padding: 0;
	width: 2em;
}
.cart-item-image img {
	width: 100%;
}
.number-items {
	background-color: #d00;
	color: #fff;
	display: inline-block;
	border-radius: 2em;
	padding: 0 0.33em 0;
	margin-left: 1rem;
}
.go-to-checkout {
	text-align: left;
	padding-left: 0;
}
.free-freight {
	font-weight: normal !important;
	text-align:left;
	font-size: 0.85em;
	vertical-align: bottom;
}
