/**
 * shopping list  styling
 */
body {
	font-family:Comfortaa, cursive;
	font-size: 13px;
	
	box-sizing: border-box;
	margin-top: 30px;
}

body .banner {
	position: fixed;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 20px;
	
	line-height: 20px;
	
	margin: 0;
	padding: 5px;
	
	background-color: #0a0;
	color: #fff;
	
	text-align: center;
	
	cursor: pointer;
}

body .banner > .counter {
}
body .banner > .price {
}

body > .wrapper {
	text-align: center;
}

.items {
	display:inline-block;
	border-bottom: 2px solid #fff;
}

.items table tr td {
	text-align: center;
}

.items table tr td img {
	height: 140px;
}

.items table tr td .Caption {
	display: block;
}

.items table tr td .ShopQty {
	display: inline-block;
}

.items.no_shop_val {
	border-bottom: 0px solid #bbb;
}
