

#shopping-cart {
	width:800px;
	margin: 0px auto;
	overflow:auto;
}

#cart_table_container{
	width: 800px;
	overflow-x:auto;
}

#shopping-cart table td, #shopping-cart table td,{
	white-space: nowrap;
	word-break: keep-all;
}

#product-grid {
	margin: 20px;
}

#shopping-cart table {
	width: 100%;
	background-color: #F0F0F0;
}

#shopping-cart table td {
	background-color: #FFFFFF;
}

.txt-heading {
	color: #211a1a;
	overflow: auto;
}

#btnEmpty {
	background-color: #ffffff;
	border: #d00000 1px solid;
	padding: 5px 10px;
	color: #d00000;
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 0px;
}

.btnAddAction {
    padding: 5px 10px;
    margin-left: 5px;
    background-color: #efefef;
    border: #E0E0E0 1px solid;
    color: #211a1a;
    float: right;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

#product-grid .txt-heading {
	margin-bottom: 18px;
}

.product-item {
	float: none;
	background: #ffffff;
	margin:20px 0px ;
	border: #E0E0E0 1px solid;
	width: 33%;
	display: inline-block !important;
	border-radius:10px;
}

.product-image {
	text-align: center;
	width: 100%;
	height: auto;
}

.product-image img{
	width: 90%;
	height: auto;
	background-color: #FFFFFF;
	border-top: 5px solid #909090;
}

.clear-float {
	clear: both;
}

.demo-input-box {
	border-radius: 2px;
	border: #CCC 1px solid;
	padding: 2px 1px;
}

.tbl-cart {
	font-size: 0.9em;
}

.tbl-cart th {
	font-weight: normal;
}

.product-title {
	width:100%;
	margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.product-price {
	width:100%;
	text-align: center;
	margin-bottom:15px;
}

.cart-action {
	width: 100%;
	float: right;
}

.product-quantity {
	float:left;
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
}

.product-tile-footer {
    padding: 20px;
    overflow: auto;
}

.cart-item-image {
	width: 50px;
    height: 50px;
    border-radius: 50%;
    border: #B7B7B7 1px solid;
    padding: 5px;
    vertical-align: middle;
    margin-right: 15px;
}
.no-records {
	text-align: center;
	clear: both;
	margin: 10px 0px;
	font-size: 16px !important;
	border-top:1px solid #808080;
	padding-top:10px;
}

div#cart_table_container table.tbl-cart th,
div#cart_table_container table.tbl-cart td{
  padding: 10px !important;
}

@media(max-width: 1000px){
	.product-title,.product-price{
	    text-align: center !important;
	}
	#shopping-cart {
		width:90% !important;
		margin: 0px auto !important;
	}
	.product-item {
		width: 49% !important;
		display: inline-block !important;
	}
	.cart-action {
		width: 100%;
		display: block;
		margin-top: 20px;
	}
}

@media(max-width: 600px){
	.product-item {
		width: 100% !important;
		margin:0px auto !important;
		display: inline-block !important;
	}
	.product-tile-footer .product-title {
	    text-align: center !important;
	}
}

