@charset "UTF-8";

#header
{
	height: 10%;
	font-weight: bold;
	font-size: x-large;
	text-align: center;
	background-color: red;
}

#nav
{
	width: 200px;
	height: 100%;
	float: left;
	background-color: green;
}

#nav ul
{
	list-style:none;
}

#cart
{
	float: right;
	background-color: orange;
}

#cart_title
{
	display: block;
	text-align: center;
}

#cart div
{
	display: none;
}

#cart:hover div
{
	display: block;
}

#cart_contents
{
	width: 200px;
}

#cart .cart_content:nth-child(odd)
{
	background-color: white;
	color: black;
}

#cart .cart_content:nth-child(even)
{
	background-color: black;
	color: white;
}

.cart_product
{
	text-align: left;
}

.cart_quantity_control
{
	text-align: right;
}

#cart_total
{
	/*display: table-cell;*/
	text-align: center;
}

#cart_checkout
{
	text-align: right;
}

#products
{
	height: 100%;
	margin-left: 200px;
	padding: 10px;
	background-color: aqua;
}

#product_detail
{
	height: 100%;
	margin-left: 200px;
	padding: 10px;
	background-color: aqua;
}

#product_detail img
{
	float: left;
	margin-right: 10px;
}

ul.product
{
	list-style:none;
	overflow:auto;
}

ul.product li
{
	width: 140px;
	height: 180px;
	display: inline-block;
	
	background-color: white;
	
	border: 1px black solid;
	margin: 8px;
	border-radius: 12px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
	
	text-align: center;
	vertical-align: middle;
}

ul.product li div
{
	width: 140px;
	height: 140px;
	
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

ul.product li a
{
	color: #222222;
	text-decoration: none;
}

ul.product li img
{
	border: none 0px;
}

#footer
{
	clear: both;
	height: 10%;
	background-color: purple;
}