.table
{
	width: 100%;
	max-width: 100%;
	min-height: .01%;
	border-spacing: 0;
	border-collapse: collapse;
	overflow-x: auto;
}

.table > tbody > tr > td , .table > tbody > tr > th , 
.table > tfoot > tr > td , .table > tfoot > tr > th , 
.table > thead > tr > td , .table > thead > tr > th
{
	padding: 8px;
	font-size: 0.875em;
	line-height: 1.4285em;
	border-top: 1px solid #ddd;
	vertical-align: top;
}

.table > thead > tr > td , .table > thead > tr > th
{

	border-bottom: 2px solid #ddd;
	vertical-align: bottom;
}

.table-striped > tbody > tr
{
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; }

.table-hover > tbody > tr:hover 
{
	color: rgba(0 , 0 , 0 , 0.87);
	background-color: #f5f5f5;
}