/* Overload Game Stats CSS
   v0.1 - Something basic for development...
*/
@font-face{
	font-family:"Industry Medium";
	src:url(IndustryMedium.woff2) format("woff2"),url(IndustryMedium.woff) format("woff"),url(IndustryMedium.otf) format("opentype");font-style:normal;font-weight:500;
}
* {
	font-family:"Industry Medium"
}
body {
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	background-color: #000000;
	//font:16px Industryb, sans-serif;
}
canvas{
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
a {
	color: #CCCCCC;
}
a:visited {
	color: #C0C0C0;
}
a:active {
	color: #808080;
}
a:hover {
	color: #999999;
}
#header {
}
#gameData {
	width: auto;
}

#scoreboard {
	width: auto;
}

#killBoard {
	width: auto;
}

#graphs {
	clear: both;
}

#footer {
}
table {
	table-layout: fixed;
	border-style: solid;
	border-width: 0;
	border-collapse: collapse;
	padding:3px;
}
th, td {
	width: 1px;
	white-space: nowrap;
	border-style: solid;
	border-width: 1px;
	border-collapse: collapse;
	padding: 3px;
}
th {
	background-color: #404040;
}
.ORANGE {
	background-color: #CC6600;
}
.BLUE, .BLAU {
	background-color: #0000FF;
}
.PURPLE, .LILA {
	background-color: #800080;
}
.PINK, .ROSA {
	background-color: #FFC0CB;
}
.GREEN, .GRUN {
	background-color: #008000;
}
.RED, .ROT {
	background-color: #FF0000;
}
.AQUA {
	background-color: #00FFFF;
}
.WHITE, .WEISS {
	//background-color: #FFFFFF;
	background-color: #DCDCDC;
}
.tableTip {
	border-width: 0;
	text-align: center;
}
.graphing {
	background-color: #404040;
}
.suicide {
	background-color: #404040;
	color: #FF0000;
}
.team {
	color: #FF0000;
}
.total {
	background-color: #404040;
}
#loaderSpinner {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}