/* seo friendly tables */
.table{
 display:table; /* Defines a Table */
 font-family:'Roboto', sans-serif;
 font-size:14px;
 color:#6c6c6c;
/* margin:10px 0;*/
 width:100%;
 float:left;

}
.table-head{
  display: table-header-group; /* Defines a table header group */
  font-family:'Roboto', sans-serif;
  font-size:11px;
}
.table-head .column{ /* Column inside the table-head */
 background:#e6e7e8;
 color:#000000;
 font-weight:600;
 border-right:1px solid #fff;

 
}
.table-head .column:hover{ /* Column hover inside the table-head */
 
}
.row{
 display:table-row; /* Defines a table row */
 font-size:12px;
 margin-top:2px;
}
.row a
{
	color:#6c6c6c;
}

.row .column:nth-child(1){ /* First column in a row */
  border-right:none;
 
}
.row .column:nth-child(4){ /* First column in a row */
 /* border-right:none;*/
 
}
.cartimage
{
  margin: auto;
  width:70px;
  position:relative;
}
.cartimage img
{
 width:100%;
}

.delete_btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin: 0 auto;
  background: #f45d25;
  color:#fff;
  font-weight:600;  
  font-family: 'Roboto', sans-serif;
}


.delete_btn a
{
 width:100%;
 height:100%;
 position:relative;
 display:inline-block;
 color:inherit;

}
.cart_qty_box {
  border: 1px solid #e3e3e3;
  height: 30px;
  text-align: center;
  color: #6c6c6c;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  width: 58%;
  max-width: 64px;
}

.moveto_bag {
  border: none;
  border-radius: 2px;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  margin:0 auto;
  background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #EC815B),
	color-stop(0.26, #FD8B61)
	);
	background-image: -o-linear-gradient(bottom, #EC815B 0%, #FD8B61 26%);
	background-image: -moz-linear-gradient(bottom, #EC815B 0%, #FD8B61 26%);
	background-image: -webkit-linear-gradient(bottom, #EC815B 0%, #FD8B61 26%);
	background-image: -ms-linear-gradient(bottom, #EC815B 0%, #FD8B61 26%);
	background-image: linear-gradient(to bottom, #EC815B 0%, #FD8B61 26%);
}
.moveto_bag a
{
	width:100%;
	height:100%;
	display:inline-block;
	color:inherit;
}
.row .column{  /* column in a last row */
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #e1e1e1;
	color:#5f5f5f;
}
.row .column:nth-child(5){
	 border-right: none;
}
.row:last-child .column:last-child{
	border-right:none;
	font-size:13px;
}
.row:last-child .column:first-child{
	border-right:0px;
}
.column{
 display:table-cell; /* Defines a table cell */
 padding:12px 20px;
 text-align:center;
 background:#fff;
}
.column:hover{
/* background:#f9f9f9;*/
}


@media all and (max-width:950px){
	.table
	{
		box-shadow:none;
	}
 .table,
 .row,
 .column,
 .column:before{
  display:block; /* Converts a table, table row, table column and table column:before into a block element */
  line-height: 30px;
 
 }
 .cartimage img
 {
 margin-left:-27px;
 }
 .table,
 .row .column:last-child{
  border-bottom:none;
 }
 .table-head{
  position:absolute; /* Hides table head but not using display none */
  top:-1000em;
  left:-1000em;
 }
 .row{
  border:1px solid #eeeeee;
  border-top:2px solid #dddddd;
  border-bottom:2px solid #dddddd;
  margin:20px 0;
 }
 .row .column:nth-child(1){ /* first column of the row */
  border-left:none;
 }
 .row .column:last-child{ /* last column of the row */
  border-right:none;
 }
 .row:last-child .column,
 .column{ /* Column in the last row and column */
  border-bottom:1px solid #eeeeee;
 }
 .column:before{ /* prints the value of data-label attribute before the column data */

  font-size:12px;
 /* content:" "attr(data-label)" //";*/ /* call the attribute value of data-label and adds a string // */
 }
}

@media all and (max-width:779px){
.row .column{
	text-align:left;
}
 .row{
  margin:10px 0;
 }
}
/* Responsive table */



















