
.out_cart { display: inline-block; }
.in_cart{ 	display: none; }

.cartBlock { float: left; width: 50%; }
.cartBlock > div { margin: 10px; padding: 15px; border: 1px solid #e4e4e4; border-radius: 10px;}


.cartAdded {  
    display: none;
    position: fixed;
    top: 120px;
    right: 30px;
    padding: 15px;
    border-radius: 10px;
    background: #ff9d00;
    color: #fff;
	font-weight: bold;
	font-size: 110%;	
	z-index: 10000;
}
		
.orderTable { border-collapse: collapse; margin-bottom: 1em; }
.orderTable TR:nth-child(odd) { background: #e4e4e4; }
.orderTable TR:nth-child(even) { background: #f1f1f1; }
.orderTable TD, .orderTable TH { border: 1px solid silver; padding: 3px 5px; }

.orderTable TD:nth-child(1) img { width: 80px; }
.orderTable TD:nth-child(4) input { width: 20px; }
.orderTable TD:nth-child(4) { text-align: center; }
.orderTable TD.del img { width: 16px; min-width: 16px; }

.orderTable TH { text-align: center; }

.orderTable, .orderTable A { color: #333; }


input[name=promo] { width: 100px; }



@media only screen and (max-width : 620px){ 
	.cartBlock{ width: 100%; } 
	.cartBlock > div { margin: 10px 0; }
	.orderTable TH:nth-child(3), .orderTable TD:nth-child(3) { display: none; }
}