html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	overflow: hidden;
	background-color: #111111;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#counter {
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%
}

#buttons {
	width: 100%;
	height:16px;
}

.button {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0px;
	padding: 0px;
}

.button_pause {
	background-image: url("../img/pause.png");
}

#team-info-panel {
	position: absolute;
	top: 16px;
	left: 0px;
	background-color: rgba(0,0,0,0.5);
	padding: 5px;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

.team-color {
	width: 9px;
	height: 9px;
	display: inline-block;
	border: 1px solid black;
	position: relative;
}

.team-color:before {
    background: none;
    border: 1px solid rgba(255,255,255,.7);
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    pointer-events: none;
}

.team-count {
	padding-left: 5px;
}