#tablero {
	position:absolute;
	top:0px;
	left: 0px;
	width: 100%;
	height: 100%;	
}
#fondo-tablero {
	position: absolute;
	top: 0;	
	left: 0;
	width: 100%;
	height:100%;
}
.ficha {
	z-index:2;
	opacity:1;
	filter: grayscale(0%);
}
.ficha.inactiva {
	z-index:1;
	opacity:.5;
	filter: grayscale(100%);
}
.boton {
	padding: 10px 20px;
	margin-top:10px;
	background: rgb(232,207,62);
	background: linear-gradient(180deg, rgba(232,207,62,1) 0%, rgb(255, 64, 0) 100%);
	font-family: 'Bangers';
	font-size: 20px;
	display:inline-block;
}
.boton.oculto {
	display:none;
}
.boton.inactivo {
	background:#999;
}
#controles {
	position: absolute;
    top: 36px;
    left: 0px;
    width: 100%;
    height: 605px;
    background: rgba(0, 0, 0, .5);
	z-index:2;
}
#jugadores {
	width: 400px;
    margin-bottom: 50px;
}
.jugador {
	position:relative;
	text-align:left;
}
.jugador-ficha img {
	margin-top:-9px;
}
.jugador-texto p {
	margin-bottom: 2px;
    font-family: 'Bangers';
	white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
}
#jugador-nombre {
	outline: none;
    border: none;
    width: 240px;
    border-radius: 10px;
    padding: 3px 10px;
	color: #333;
}
.separacion-jugador {
	height:6px;
}
#seleccion-ficha {
	display:flex;
	justify-content:center;
}
.feedback-wrapper {
	position:absolute;
	top: -40px;
    left: -40px;
    width: 600px;
    height: 430px;
	overflow:hidden;
}
#pregunta-wrapper {
	position: absolute;
    top: 105px;
    left: 90px;
    width: 810px;
    height: 405px;
    padding: 20px;
    background: transparent;
    border-radius: 20px;
    z-index: 20;
    overflow: hidden;
}
#pregunta, #sabiasque {
	width: 100%;
    height: 100%;
	padding:0;
}
.pregunta-texto {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: left;
	height:100%;
	overflow: hidden;
}
.pregunta-imagen {
    padding:0;
	overflow: hidden;
}
.pregunta-imagen .copy {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	padding:10px;
	background:rgba(255,255,255,.8);
	font-size:10px;
	font-style:italic;
	text-align: center;
	word-break: break-all;
}
.enunciado {
	width: 100%;
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px dashed #aaa;
}
.opcion {
    background: #f9f9f9;
	color:#333;
    border: 2px solid #fff;
    box-shadow: 0px 0px 3px 1px rgba(0,0,0,.3);
    padding: 5px 10px;
    font-size: 14px;
    width: 320px;
    border-radius: 10px;
}
.opcion.inactiva {
	cursor: not-allowed;
}
.opcion.correcta {
    background: #20ba10;
	color:#fff;
}
.opcion.incorrecta {
    background: #e02e0b;
	color:#fff;
}
.feedback, .feedback-ko, .feedback-ok  {
	position:absolute;
	bottom:-10px;
	right:0px;
	width:220px;
}
.instrucciones {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height:100%;
}
.popup {
	margin:0 auto;
    width: 400px;
	overflow:hidden;
	background: rgba(255,255,255,.98);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,.3);
	border-radius:20px;
	padding:20px;
	text-align:center;
}
.popup.oculto {
	display:none;
}
.popup-cerrar {
	position:absolute;
	top:5px;
	right:10px;
	font-size:20px;
	color:#333;
	cursor: pointer;
}
.categoria.acierto:before {
	content: '\f058';
	font-family: 'Font Awesome 5 Pro';
	color: #0f0;
	font-size: 50px;
	font-weight: 600;
	position: absolute;
	top: 20px;
	left:25px;
}
.categoria.fallo:before {
	content: '\f057';
	font-family: 'Font Awesome 5 Pro';
	color: #f00;
	font-size: 50px;
	font-weight: 600;
	position: absolute;
	top: 20px;
	left:25px;
}