body {
	background-color: #feca25;
}
#aplicacion .encabezado{
	background-color: #fff;
	justify-content: space-between;
	padding: 1rem;
}

#aplicacion .encabezado .logo{
	display: flex;
	gap: 2rem;
	object-fit: contain !important;
}
#aplicacion .encabezado .logo img{
	object-fit: contain !important;
}
#aplicacion .encabezado{
	background-image: url('/img/logo_circulos.png');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
}

#ninguna{
	background-color: black;
}

#espera .qr{
	width: 400px;
	height: 400px;
	/*
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 50vmin;
	height: 50vmin;
	margin: auto;*/
}
#aplicacion{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#tablero{
	position: relative;
	z-index: 2;

	display: grid;
	/* grid-template-columns: etiquetas auto; */
	/* grid-template-rows: [titulos] auto [puntajes] auto [respuestas] auto [tiempos] auto [fin-filas];
	grid-template-columns: [etiquetas] auto [jugador0] auto [jugador1] auto [jugador2] auto [fin-columnas]; */
	grid-template-columns: [titulos] auto [puntajes] 1fr [fin-filas];
	grid-template-rows: [etiquetas] auto [jugador0] auto [jugador1] auto [jugador2] auto [jugador3] auto [jugador4] auto [fin-columnas];

	gap: 0.5rem;

	background-color: #feca25;
	padding: 20px;
	border-radius: .75rem;
	font-size: 0.8rem;
}
#tablero.clase-espera{
	position: absolute;
	z-index: 10;
	top: 30px;
	transform: none !important;
	right: 30px;
	left: auto;
	padding: 10px 30px;
	padding-bottom: 0px;
}

#tablero .numero-ranking{
	font-size: 3em;
	color: black;
}
#tablero.clase-espera .numero-ranking{
	font-size:  0.8rem;
}

#tablero .datos {
	display: flex;
	
}
#tablero.clase-espera .datos {
	display: contents;
}

#tablero .etiqueta {
	grid-row: etiquetas;
	text-align: center;
	align-self: end;
	color: black;
	font-size: 15px;
}
#tablero.clase-espera .etiqueta{
	font-size: 13px;
}
#tablero .titulo {
	grid-column: titulos;
	color: white;
	display: flex;
	align-items: center;
	/* flex-direction: column; */
	gap: 0.4rem;
	min-width: 500px
}
#tablero.clase-espera .titulo{
	min-width: auto;
}


#tablero .titulo span{
	text-align: center;
}

#tablero .titulo .identificador{
	text-align: center;
	font-weight: bold;
	font-size: 2em;
	line-height: 1;
}

#tablero .titulo .nombre{
	text-align: center;
	font-size: 3em;
	max-width: 16ch;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: black;
}
#tablero.clase-espera .titulo .nombre{
	font-size: 1.2em;
}
#tablero.clase-espera .titulo .identificador{
	font-size: 1.6em;
}

#tablero .dato{
	background-color: white;
	color: black;
	text-align: center;
	font-weight: 500;
	padding: 0.1rem 0.2rem;
	min-width: 120px;
	font-size: 3em;
	border-radius: 0.2rem;
}
#tablero.clase-espera .dato{
	min-width: auto;
	font-size: 15px;
}

#tablero .puntaje {
	grid-column: puntajes;
}
#tablero .respuesta {
	grid-column: respuestas;
}
#tablero .tiempo {
	grid-column: tiempos;
}

#tablero .jugador0 .titulo,
#tablero .jugador0 .dato {
	grid-row: jugador0;
}

#tablero .jugador1 .titulo,
#tablero .jugador1 .dato {
	grid-row: jugador1;
}

#tablero .jugador2 .titulo,
#tablero .jugador2 .dato {
	grid-row: jugador2;
}

#tablero .jugador3 .titulo,
#tablero .jugador3 .dato {
	grid-row: jugador3;
}

#tablero .jugador4 .titulo,
#tablero .jugador4 .dato {
	grid-row: jugador4;
}

#cronometro{
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 0.5rem;
	z-index: 1;
}

#cronometro .tiempo{
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;

	transform: translateY(-50%);

	text-align: center;
	line-height: 1;
	font-size: 27px;
	font-weight: bold;
	color: #696969;

}
#carrera {
	display: none;
}
#carrera .pista{
	display: block;
	width: 100%;
	position: absolute;
	/*height: 400px;;*/
	bottom: 0;
}


#carrera .pista__fondo{
	display: block;
	width: 100%;
	max-height: 80vh;
}



#carrera .jugador{
	width: 9%;
	/* outline: 1px solid #000; */
	height: auto;
	aspect-ratio: 251/333;
	background-size: 100% auto;
	transition: bottom 1s ease-in, left 1s ease-out;
	display: none;
}

#carrera .jugador.F{
	background-image: url('../img/personajes/mujer_corriendo.png');
}

#carrera .jugador.M{
	background-image: url('../img/personajes/hombre_corriendo.png');
}

#carrera .jugador.F.corriendo{
	-webkit-animation: corriendo 0.5s steps(10) infinite;
	animation: corriendo 0.5s steps(10) infinite;
	background-position: center bottom;
}

#carrera .jugador.M.corriendo{
	-webkit-animation: corriendo 0.5s steps(9) infinite;
	animation: corriendo 0.5s steps(9) infinite;
	background-position: center bottom;
}

@-webkit-keyframes corriendo {
	from {
		background-position: center top;
	}
	to {
		background-position: center bottom;
	}
}
@keyframes corriendo {
	from {
		background-position: center top;
	}
	to {
		background-position: center bottom;
	}
}

#carrera .jugador.A{
	bottom: 48%;
	left: -10%;
}

#carrera .jugador.A.avance-0{
	bottom: 48%;
	left: 10%;
}

#carrera .jugador.A.avance-1{
	bottom: 48%;
	left: 28%;
}


#carrera .jugador.A.avance-2{
	bottom: 48%;
	left: 48%;
}


#carrera .jugador.A.avance-3{
	bottom: 48%;
	left: 72%;
}

#carrera .jugador.A.avance-4{
	bottom: 48%;
	left: 91%;
}



#carrera .jugador.B{
	bottom: 36%;
	left: -10%;
}

#carrera .jugador.B.avance-0{
	bottom: 36%;
	left: 4%;
}

#carrera .jugador.B.avance-1{
	bottom: 36%;
	left: 23%;
}


#carrera .jugador.B.avance-2{
	bottom: 36%;
	left: 44%;
}


#carrera .jugador.B.avance-3{
	bottom: 36%;
	left: 67%;
}

#carrera .jugador.B.avance-4{
	bottom: 36%;
	left: 81%;
}



#carrera .jugador.C{
	bottom: 19%;
	left: -10%;
}

#carrera .jugador.C.avance-0{
	bottom: 19%;
	left: 0%;
}

#carrera .jugador.C.avance-1{
	bottom: 19%;
	left: 18%;
}


#carrera .jugador.C.avance-2{
	bottom: 19%;
	left: 38%;
}


#carrera .jugador.C.avance-3{
	bottom: 19%;
	left: 61%;
}

#carrera .jugador.C.avance-4{
	bottom: 19%;
	left: 75%;
}

#pregunta.pagina{
	display: grid;
	grid-template-areas: "area";
	place-items: center;
	padding: 36px;
	z-index: 3;
}


#pregunta .contenedor{
	width: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	overflow: hidden;
	padding: 15px;
}

#pregunta .contenido{
	text-align: center;
	padding: 2rem;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 2.2rem;
	line-height: 1.25;
	color: #5a5a59;
	font-weight: bold;
	border-radius: 15px;
}


#pregunta .opciones{
	display: flex;
	flex-wrap: wrap;
    gap: 1rem;
}

#pregunta .opcion{
	color: #fff;
	font-weight: bold;
	padding: 0.5rem;
	text-align: left;
	font-size: 22px;
	flex: 1 1 calc(50% - 0.5rem);
	position: relative;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: stretch;
	text-align: center;
}


#pregunta .opcion .letra{
	border-radius: 100%;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	color: #fff;
	font-weight: bold;
	font-size: 30px;
	background-color: #ee383d;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	/* position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%); */
}

#pregunta .opcion .texto{
	flex: 1 1 100%;
	display: block;
	font-size: 35px;
}

#pregunta .respuesta{
	grid-area: area;
	text-align: center;
	padding: 2rem;
	font-size: 2rem;
	color: #fff;
	background: #01c566;
	font-weight: bold;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
	width: auto;
	padding-left: 100px;
	padding-right: 100px;
	border: 2px solid #fff;
}
/*
#podio .encabezado{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	justify-content: center;
}*/

#podio .plataforma{
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	max-width: 60%;
}


#podio .plataforma__fondo{
	display: block;
	width: 100%;
	max-height: 40vh;
}

#podio .ganador{
	display: block;
	width: 25%;
	transform: translateX(-50%);
	position: absolute;
}

#podio .ganador .nombre{
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #001f8e;
	color: white;
	padding: 0.5em 1em;
	text-align: center;
	margin-bottom: 0.5em;
	border-radius: .5em;
	font-weight: bold;
	/* max-width: 200%; */
	/* text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden; */
}

/*
#podio .ganador .nombre::after{
	content: '';
	position: absolute;
	bottom: -0.5em;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 0.5em solid transparent;
	border-right: 0.5em solid transparent;
	border-top: 0.5em solid black;
}*/


#podio .puesto-2 .nombre{
	top: 0;
	left: -37%;
	right: auto;
	bottom: auto;
	transform: none;
	margin-left: 0.5em;
	margin-bottom: 0;
}

#podio .puesto-2 .nombre::after{
	left: -0.5em;
	top: 50%;
	transform: translateY(-50%);
	border-top: 0.5em solid transparent;
	border-bottom: 0.5em solid transparent;
	border-right: 0.5em solid black;
	border-left: none;
}

#podio .puesto-3 .nombre{
	top: 0;
	left: auto;
	right: -21%;
	bottom: auto;
	transform: none;
	margin-right: 0.5em;
	margin-bottom: 0;
}

#podio .puesto-3 .nombre::after{
	right: -0.5em;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
	border-top: 0.5em solid transparent;
	border-bottom: 0.5em solid transparent;
	border-left: 0.5em solid black;
	border-right: none;
}

#podio .ganador img{
	display: block;
	width: 100%;
	max-height: 50vh;
}

#podio .puesto-1{
	bottom: 90%;
	left: 50%;
}

#podio .puesto-2{
	bottom: 72%;
	left: 18%;
}

#podio .puesto-3{
	bottom: 59%;
	left: 79%;
}

#inicio .box-logos{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*padding-top: 12rem;*/
	
}
#inicio .logo{
	margin: 0 0;
}

.logo-espera-qr{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 600px;
	margin-top: 50px;
}

.photoback{
	width: 800px;
	height: 500px;
	border-radius: 50px;
}

.hexagon-btn { background: #030303; color: white; padding: 15px 30px; border: none; clip-path: polygon(25px 0%, calc(100% - 25px) 0%, 100% 50%, calc(100% - 25px) 100%, 25px 100%, 0% 50%); }

.correcta{
	background-color: white !important;
	color: black !important;
}
.escanea{
	font-size: 40px;
	line-height: 40px;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 55px;
}
.escanea .t1{
	font-weight: bold;
}
.escanea .t2{
	font-weight: normal;
	font-family: 'denim_wd-trialmedium' !important;
}
#instrucciones{
	background-image: url('/img/instrucciones.jpg');
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100vh !important;
}
.jugadores{
	/*background-color: red !important;*/
}

.ranking{
	background-color: white;
	padding:15px 50px;
	font-size: 50px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.datos.player{

	border-bottom-style: solid;
	border-bottom-color: #a9881b;
	border-bottom-width: 1px;
}