* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
} 

body {
	background: #000;
	background-image: url('../img/fondo.jpg'); 
	background-size: 100vw auto;
	background-repeat: none;
	background-attachment: fixed;
	background: cover;
	font-family: 'Roboto', sans-serif;
	font-size: 16px; 
	text-transform: uppercase; 
	color: #fff;
}

.encabezado {
	display: flex;	
	height: 30vh;
	font-size: 20px;
	text-align: center;
	justify-content: center;
	align-items: center;	
}
.encabezado img {
	
	max-height: 293px;

}
#equipos {
	display: flex;
}
.equipo {
	width: 50%;
	height: 80vh;
}
.equipocolumnas {
	display: flex;
}
.equipocolumna {
	display: flex;	
	width: 20%;
	height: 80vh;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#alert {
	display: none;
}
.puntos{
	width: 60%;
	font-size: 25em;
	color: #fff;
	cursor: pointer;
}
.reset {
	cursor: pointer;
}
#sorteo{
	position: absolute;
	width: 50vw;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	font-size: 20em;
	top: 22vh;
	left: 50%;
	margin-left: -25vw;

	text-align: center;
}

#numeros{
	position: absolute;
	width: 300px;
	color: #fff;
	background-color: rgba(185, 183, 89, 0.5);
	font-size: 1.6em;
	top: 20vh;
	left: 0%;
	padding-left: 2px;
	margin: 10px;
}
.numero {
	border: 1px solid #000;
	clear: both;
}
.numerojugador {
	width: 240px;
	float: left;
	overflow: hidden;
}
.numerosorteado {
	width: 50px;
	float: left;
}

#contenedor{
	margin: 10px auto;
	width: 800px;
	height: 115px;
}

.reloj{
	float: left;
	font-size: 170px;
	font-family: Helvetica;
	color: #fff;
}
.boton{
	outline: none;
	border: 1px solid #363431;
	color: white;
	width: 128px;
	height: 30px;
	text-shadow: 0px -1px 1px black;
	font-size: 20px;
	border-radius: 5px;
	font-family: Helvetica;
	cursor: pointer;
	background-image: linear-gradient(#3aad02,#2c6f05);
}
.boton:active{
	background-image: linear-gradient(#2c6f05,#3aad02);
}
.boton:hover{
	box-shadow: 0px 0px 14px #3aad02;
}
.resultado {
	text-align: center;
	justify-content: center;
	align-items: center;
}
.nombre {
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
}
label {
	color: #fff;
	font-size: 35px;
}
.rojo {
	background: #99242c;
}
.tt {
	color: #fff;
	font-size: 150px;
	margin: 0;
	padding: 0;
}
.tm {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 25px;
}
.tl {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 25px;
}
.time {
	color: #fff;
	font-size: 60px;
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: DodgerBlue;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.h1premio {
	font-size: 50px;
	color: #fff;
	text-align: center;
}

table {
    width:100%;
    background: #fff;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 2px;
    text-align: left;
}
table#t01 tr:nth-child(even) {
    background-color: #eee;
}
table#t01 tr:nth-child(odd) {
   background-color: #fff;
}
table#t01 th {
    background-color: black;
    color: white;
}