@charset "UTF-8";
/* 
Generic Styling, for Desktops/Laptops 
*/
#tableCriteria {
	width: 100%;
	border-collapse: collapse;
}
/* Zebra striping
tr:nth-of-type(odd) { 
  background: #eee; 
} */
th { 
  color: white;
  font-weight: bold; 
  border-bottom: 2px solid white;
}
th:first-child {
	background-color:#353535;
}
th:nth-child(2)  {
	background-color: #BC0004;
}
th:nth-child(3)  {
	background-color: #D66000;
}
th:nth-child(4)  {
	background-color: #CBB900;
}
th:nth-child(5)  {
	background-color: #2DA401;
}
th:nth-child(6)  {
	background-color: #005CB6;
}
th:nth-child(7)  {
	background-color: #003CB7;
	}	
td, th { 
  padding: 6px; 
  text-align: left; 
}
td {
	border-bottom: 1px solid white;
}
td:first-child  {
	background-color: rgba(139,139,139,1.00);
}
td:nth-child(2)  {
	background-color: #ff0a10;
}
td:nth-child(3)  {
	background-color: #ff7b10;
}
td:nth-child(4)  {
	background-color: #ffe900;
}
td:nth-child(5)  {
	background-color: #3ee800;
}
td:nth-child(6)  {
	background-color: #1B8EFF;
}
td:nth-child(7)  {
	background-color: #1c67ff;
}
/* 
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: 768px),
(min-device-width: 769px) and (max-device-width: 1024px)  {

	/* 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) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
}
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid white; 
		position: relative;
		padding-left: 50%; 
}
td:first-child {
	background: #353535;
	color: white;
	font-size: 1em;
	margin-top: 10px;
}

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
	*/
	td:nth-of-type(1):before { content: "Onderdeel"; color: white;}
	td:nth-of-type(2):before { content: "niet";}
	td:nth-of-type(3):before { content: "slecht";}
	td:nth-of-type(4):before { content: "onvoldoende"; }
	td:nth-of-type(5):before { content: "voldoende"; }
	td:nth-of-type(6):before { content: "goed"; }
	td:nth-of-type(7):before { content: "uitstekend"; }
}
