/*!
* @author Steven Masala [me@smasala.com]
* Github: https://github.com/smasala/responsive-tables-js
* @license: MIT https://tldrlegal.com/license/mit-license
* Responsive Tables
* @version 1.0.0
*/

table.table span[data-type="responsive"]{
	display:none;
}

@media only screen and (max-width:766px){
	table.table span[data-type="responsive"]{
		display:inline-block;
		vertical-align:top;
		width: 50%;
	}
	
	table.table, table.table thead, table.table tbody, table.table th, table.table td, table.table tr { 
		-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
		box-sizing: border-box;         /* Opera/IE 8+ */
		display: block; 
	}
	
	html.ie9 table.table, html.ie9 table.table thead, html.ie9 table.table tbody, html.ie9 table.table th, html.ie9 table.table td, html.ie9 table.table tr{
		float: left;
		clear: both;
		width: 100%
	}
	
	table.table td{
		border: none;
	}
	
	table.table th{
		display:none;
	}
	
}
