@charset "UTF-8";
/* CSS Document */
#cart-container{
	position: relative;
	height: 375px;
	color: darkslategrey;
}

#cart-buttons{
	position: absolute;
	right: 20px;
	top: -20px;
}

#cart-buttons a{
	margin-left: 5px;
}

#cart-buttons img{
	height:  20px;
}

#cart_products-container{
	height: 300px;
	width: 100%;
	position: absolute;
	top: 10px;
	left: 0px;
	font-size: larger;
	overflow: auto;
}

#cart_products-list li{
	margin-bottom: 5px;
	padding: 5px;
}

#cart_products-list li:nth-child(even){
	background-color: cornsilk;
}

.cart_product-remove_button, .cart_product-image, .cart_product-labels, .cart_product-quantity_buttons, .cart_product-quantity, .cart_product-sub_total{
	float: left;
	display: inline;
	line-height: 50px;
}

.cart_product-right{	
	float: right;
}

.cart_product-remove_button img{
	height: 20px;
	vertical-align: middle;
}

.cart_product-image{
	overflow: hidden;
	height: 50px;
	width: 50px;
	border: thin solid black;
	margin-left: 3px;
}

.cart_product-image img{
	height: 100%;
}

.cart_product-labels{
	width: 180px;
	margin-left: 3px;
}

.cart_product-title{
	padding-bottom: 2px;
	border-bottom: 1px #EEE solid;
	margin-bottom: 2px;
	line-height: 16px;
}

.cart_product-listing_title{
	line-height: 12px;
	font-size: smaller;
}

.cart_product-quantity_buttons{
	vertical-align: middle;
	margin-right: 3px;
}

.cart_product-increment-button{
	margin-top: 10px;
}

.cart_product-increment-button, .cart_product-decrement-button{
	line-height: 14px;
	font-size: smaller;
}

.cart_product-quantity-input{
	text-align: right;
	font-weight: bold;
}

.cart_product-sub_total{
	font-weight: bold;
	vertical-align: middle;
	text-align: right;
	width: 75px;
}

#cart-customer-select img, #cart-create_order-container img{
	height: 25px;
}

#cart-total-section{
	position: absolute;
	bottom: 30px;
	right: 0px;
	font-size: 18px;
	width: 100%;
	background-color: #036;
	color: white;
	padding: 5px;
	text-align: right;
	height: 18px;
	overflow: hidden;
}

#cart-total-label{
	float: left;
	display: inline;
	margin-left: 220px;
}

#cart-total-amount{
	position: absolute;
	font-weight: bold;
	right: 5px;
}

#cart-bottom{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
}

#cart-customer-select{
	float: left;
	display: inline;
	margin-right: 5px;
}
#cart-customer-info{
	float: left;
	display: inline;
	font-size: larger;
	
	height: 25px;
	width: 250px;
	word-break:break-all;
	line-height: 24px;
}

#cart-create_order-container{
	float: right;
	display: inline;
	font-size: larger;
}