.webonly{
    display: table;
  }
  .mobile_only{
    display: none;
  }


/*
	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/
	@media
	  only screen 
    and (max-width: 760px), (min-device-width: 768px) 
    and (max-device-width: 1024px)  {

		/* Force table to not be like tables anymore */
		/* .Mobile_shopping_cart, thead, tbody, th, td, tr {
			display: block;
		} */

		/* Hide table headers (but not display: none;, for accessibility) */
		.Mobile_shopping_cart thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

    .Mobile_shopping_cart tr {
      background: #ccc;
      padding: 5px 5px;
      border: 1px solid red;
      margin: 0 0 1rem 0;
    }
      
    .Mobile_shopping_cart tr:nth-child(odd) {
      background: #ccc;
      padding: 5px 5px;
      border: 1px solid red;
    }
    
		.Mobile_shopping_cart td {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 42%;
		}

		.Mobile_shopping_cart td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 0;
			left: 6px;
			width: 45%;
			padding-right: 10px;
			white-space: nowrap;
      font-weight: bold;
      font-size: 14px;
		}

		/*
		Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
		*/
		.Mobile_shopping_cart td:nth-of-type(1):before { content: "Image : ";margin: 9% 0%; }
		.Mobile_shopping_cart td:nth-of-type(2):before { content: "Product Name : ";margin: 4% 0%; }
		.Mobile_shopping_cart td:nth-of-type(3):before { content: "Price : ";margin: 4% 0%; }
		.Mobile_shopping_cart td:nth-of-type(4):before { content: "Size : ";margin: 4% 0%; }
		.Mobile_shopping_cart td:nth-of-type(5):before { content: "Qty : ";margin: 4% 0%; }
		.Mobile_shopping_cart td:nth-of-type(6):before { content: "Subtotal : ";margin: 4% 0%; }
		.Mobile_shopping_cart td:nth-of-type(7):before { content: "Remove : ";margin: 4% 0%; }	
	
  .Mobile_shopping_cart .product_title_td{
    height: 130px;
    padding-top: 10px;
  }
  .Mobile_shopping_cart .product_price_td{
    height: 50px;
    padding-top: 15px;
  }
  .Mobile_shopping_cart .product_weight_td{
    height: 50px;
    padding-top: 15px;
  }
  .Mobile_shopping_cart .product_qty_td{
    height: 50px;
    padding-top: 5px;
  }
  .Mobile_shopping_cart .product_totla_td{
    height: 50px;
    padding-top: 17px;
  }
  .Mobile_shopping_cart .product_remove_td {
	  height: 36px;
	  margin: 15px 0px;
  }

  .webonly{
    display: none;
  }
  .mobile_only{
    display: block;
  }

  .cart-price {
    font-size: 14px;
    font-weight: bold;
  }

  .price{
    font-size: 14px;
  }

  .product_title_td a{
    font-size: 14px;
    font-weight: bold;
    color: red;
  }
  .product_flawor{
    font-weight: bold;
}

}

