@charset "utf-8";
/* CSS Document */

/* 
Generic Styling, for Desktops/Laptops 
*/
.shipping table { 
  width: 100%; 
  border-collapse: collapse;
  margin: 20px 0; 
}
/* Zebra striping */

.shipping tr:nth-of-type(odd) { 
  background: #F7FBFF; 
}

.shipping th { 
  background: #3598DB;
  border-bottom: 1px solid #1E84C9;
  color: white;  
}

.shipping td {
  border-top: 1px solid #eee; 
}

.shipping tr:last-child {
  border-bottom: 1px solid #eee; 
}

.shipping td, .shipping th { 
  padding: 11px; 
  text-align: left; 
  font-size: 12px;
}

/* 
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 */
	.shipping table, .shipping thead, .shipping tbody, .shipping th, .shipping td, .shipping tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.shipping thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.shipping tr { border: 1px solid #ccc; margin-bottom: 10px; }
	
	.shipping td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding: 6px 6px 6px 50%;
	}
	
	.shipping td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 12px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align: left;
	}
	
	/*
	Label the data
	*/
	
	.shipping td:nth-of-type(1):before { content: "up to 2.00kg"; }
	.shipping td:nth-of-type(2):before { content: "2.01kg to 10.00kg"; }
	.shipping td:nth-of-type(3):before { content: "10.01kg to 24.00kg"; }
	.shipping td:nth-of-type(4):before { content: "24.01kg to 40.00kg"; }
	.shipping td:nth-of-type(5):before { content: "40.01kg to 60.00kg"; }
	.shipping td:nth-of-type(6):before { content: "60.01kg to 100.00kg"; }
	.shipping td:nth-of-type(7):before { content: "100.01kg to 200.00kg"; }
	.shipping td:nth-of-type(8):before { content: "200.01kg to 500.00kg"; }

}