<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#shoppingCart {
	box-sizing: border-box;
}

#shoppingCart .item {
	height: 200px; 
	width: 100%;
	border-bottom: 0px solid #000000;
	padding: 10px;
	margin-bottom: 10px;
	clear: both;
}

#shoppingCart .name {
	font-weight: bold;
}

#shoppingCart .information {
	float: left;
	width: 50%;
}

.information div.tableRow div {
	font-size: 14px;
}

#shoppingCart .image {
	float: left;
	width: 45%;
	height: 170px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 10px;

}

#shoppingCart .qty {
	display: inline-block;
	text-align: left;
	width: 40%;
}

#shoppingCart.total {
	display: inline-block;
	text-align: right;
	width: 50%;
}</pre></body></html>