/* 
Generic Styling, for Desktops/Laptops 
*/
table.pro-table { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
.pro-table tr:nth-of-type(odd) { 

}
.pro-table th { 
  font-weight: bold; 
}
.pro-table td, .pro-table th { 
  padding: 6px; 
  border-top: 1px solid #DDD; 
}
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	.pro-table table, .pro-table thead, .pro-table tbody, .pro-table th, .pro-table td, .pro-table tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	.pro-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	/*.pro-table tr { border: 1px solid #ccc; }*/
	
	.pro-table td { 
		/* Behave  like a "row" */
		border: none;
		/*border-bottom: 1px solid #eee;*/ 
		position: relative;
		padding-left: 50% !important;
		width: auto !important;
	}
	
	.pro-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;
		font-weight: 700;
	}

						.pro-table td:nth-of-type(1):before { content: "Rank"; }
						.pro-table td:nth-of-type(2):before { content: "Rider"; }
						.pro-table td:nth-of-type(3):before { content: "Country"; }					
						.pro-table td:nth-of-type(4):before { content: "Team"; }
						.pro-table td:nth-of-type(5):before { content: "Points"; }
					}
					
					
	