/* 

source: https://css-tricks.com/responsive-data-tables/

Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 610px
and also mobile phones specifically.
*/
@media 
only screen and (max-width: 610px),
(min-device-width: 480px) and (max-device-width: 767px)  {

table.table.product_table {
clear: both;
}

table.table.product_table td {
border: 0px;

}


/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}




/* Hide table headers (but not display: none;, for accessibility) */



.product_table tr.product_table_head { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

.product_table tr { border: 1px solid #ccc; }


.product_table td { 
		/* Behave  like a "row" */
		border-bottom: 0px;
		border-top: 0px;

		/*border-bottom: 1px solid #eee; */
		position: relative;
		padding-left: 6px; 
	}


.product_table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}


/* Label the data - not used because this has problems with bootstrap */
/*
.product_table td:nth-of-type(1):before { content: "Image"; }
.product_table td:nth-of-type(2):before { content: "Product"; }
.product_table td:nth-of-type(3):before { content: "Format"; }
.product_table td:nth-of-type(4):before { content: "Grade"; }
.product_table td:nth-of-type(5):before { content: "List Price"; }*/

}

}/*------ end @media ---------------*/