body {
	font-family: Arial;
	color: #211a1a;
	font-size: 0.9em;
}

#shopping-cart {
	margin: 40px;
}

#shopping-cart table {
	width: 100%;
	background-color: #F0F0F0;
}

#shopping-cart table td {
	background-color: #FFFFFF;
}

.txt-heading {
	color: #211a1a;
	border-bottom: 1px solid #E0E0E0;
	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;
}
#btnContinue {
	background-color: #ffffff;
	border: #d00000 1px solid;
	padding: 5px 10px;
	color: #d00000;
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 0px;
}
#btnCheckout {
	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-section{
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}

.product-item {
	width: 31.3%;
	float: left;
	margin: 1%;
}
.product-item {
/*	border-radius: 5px;
	float: left;*/
	position: relative;
	color: white;
	background: rgba(0,0,0,0);
	/*margin: 30px 30px 0px 0px;*/
	border: #E0E0E0 1px solid;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  	transition: 0.2s;
  	max-width: 290px;
  	/*border-radius: 5px;*/
}
.product-item:hover{
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
	cursor: pointer;
	margin-top: 3px;
	margin-bottom: 3px;
	border-width: 4px;
}
.product-image:hover {
	transition: 0.2s;
	/*height: 220px;;*/
}
.product-image {

/*	height: 155px;
	width: 250px;*/
	/*border-radius: 5px;*/
	/*max-width: 290px;*/
	height: auto;
	background-color: #FFF;
	width: 100%;
padding-top: 60%;
  /*height: auto;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    background-clip: border-box;
    /*transition: background-size 0.5s;*/
    transition: 0.5s;
/*    transition-timing-function: cubic-bezier(.07,1.41,.82,1.41);*/
}

.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{
	flex: 70%;
	font-size: 0.8em;
	font-weight: 700;
}


.product-title .tags{
	padding: 0 10px;
}

.product-price {
	align-content: center;
	font-size: 0.8em;
	font-weight: 600;
	text-align: center;
	flex:14%;
	float:right;
/*	position: absolute;
	right: 5px;
	bottom: 5px;*/
	color: #f1f1f1;
	padding: 5px;
	background-color: #242423;
	border-radius: 4px;
}

.cart-action {
	float: right;
}

.product-quantity {
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
}

.product-tile-footer {
	  display: flex;
    padding: 5px 5px 0px 5px;
    overflow: auto;
}

.cart-item-image {
	width: 60px;
    height: 60px;
    border-radius: 50%;
    border: #E0E0E0 1px solid;
    padding: 5px;
    vertical-align: middle;
    margin-right: 15px;
}
.no-records {
	text-align: center;
	clear: both;
	margin: 38px 0px;
}


/*tablet setting*/
@media(max-width:900px){
/*	h1{
		font-size: 40px;
		text-align: center;
		padding-left: 0px;
	}	*/
.nav-header-main ul li a{   
    display: none;
  }

	.product-item {
		width: 48%;
	}
/*	nav ul li {
		display: block;
	}*/
}

/*mobile setting*/
@media(max-width:550px){
/*	h1{
		font-size: 28px;

	}*/
	.product-item {
		width: 98%;
	}
}