/* V1.0 */
/*Table styling*/

.table_speedcode:first-of-type {
	margin-left: 1em;
}

.table_speedcode {
	text-align: center;
	border-collapse: collapse;
	float: left;
	margin-top: 1em;
	overflow: scroll;
}

.table_speedcode tr:nth-of-type(even) {
	background-color: rgb(221, 219, 219);
}

.table_speedcode thead tr:first-of-type th {
	background-color: #084a7e;
	color: whitesmoke;
	border: solid black 1px;
}

.table_speedcode th, .table_speedcode td {
	border: solid 1px;
	min-width: 5.1em;
	height: 2em;
}

.table_speedcode thead tr:last-of-type th {
	height: 3em;
}

.table_speedcode .th_small_viewport {
	display: none;
}

@media (max-width: 67em) {
	/*Table*/
	.table_speedcode {
		float: unset;
		margin: auto;
		margin-top: 1em;
	}
	.table_speedcode:first-of-type {
		margin: auto;
		margin-top: 1em;
	}
	.table_speedcode .th_small_viewport {
		display: table-cell;
	}
	.table_speedcode th, .table_speedcode td {
		min-width: 3.8em;
	}
	#div_performance_tables {
		overflow: auto;
	}
}