/* FONTS */


/* COLORES */
.blanco {
	color: #fff;
}
.principal  {
	color: #eac9c9;
}
.secundario  {
	color: #206648;
}
.terciario  {
	color: #dceff6;
}
.gris  {
	color: #333;
}

.fondo_blanco {
	background: #fff;
}
.fondo_principal  {
	background: #000;
}
.fondo_secundario  {
	background: #206648;
}
.fondo_terciario  {
	background: #dceff6;
}
.fondo_gris  {
	background: #333;
}

.borde_principal {
	border:1px solid #fff;
}
/* GENERAL */
html, body {
	background: #101010;
	width: 100%;
	height:100%;
	overflow:hidden;
}

body {
	background: #101010;
	color: #fff;
	font-family: 'Gluten', sans-serif;
	line-height: 1.2;
	margin: 0;
	font-size: 20px;
}

* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

/* LAYOUT */
#ce-wrapper {
	position: absolute;
	width: 990px;
	height: 566px;
	overflow: hidden;
	margin: auto;
	-ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
#wrapper-contenido {
	position:absolute;
	width:990px; 
	height:566px; 
	overflow:hidden;
	background: transparent;
	margin-top:0px;
	z-index:-1;
}

.contenido {
	position: relative;
	width: 990px;
	min-height: 566px;
	box-sizing: border-box;
	font-size: 14px;
}

.contenido h2 {
	font-size: 22px;
}

/* HEADER */
.header {
	
}

.titulo {
	font-family: 'comic', cursive;
    text-align: center;
    padding-top: 0;
    font-size: 34px;
    margin-left: 10px;
}

.caja-verde {
	background-color: rgba(255, 255, 255, 1);
    border: 2px solid #34c2bd;
    border-radius: 8px;
	color:#000;
    /* box-shadow: inset 0 0 2px #34c2bd, 0 0 2px #34c2bd, 0 0 2px #34c2bd;*/
}
#botonera.caja-verde, #botonera .caja-verde {
	background-color: rgba(32, 102, 72, .9);
    border: 2px solid #34c2bd;
    border-radius: 8px;
	color:#fff;
    /* box-shadow: inset 0 0 2px #34c2bd, 0 0 2px #34c2bd, 0 0 2px #34c2bd;*/
}

/* botonera */
#botonera {
	position: absolute;
    top: 5px;
    right: 6px;
    width: fit-content;
    height: 35px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

/* BUTTONS */
.btn-botonera {
	/* width: 50px; */
    height: 25px;
    margin: 0px 3px;
    /* background: url(../img/boton-icono.png) top center no-repeat; */
    /* background-size: 100%; */
    object-fit: cover;
}
.btn-botonera:hover {
	cursor: pointer;
	opacity:.8;
}
.btn-botonera img {
	margin-top:0;
	filter: brightness(6);
}
#volumen, #ayuda, #info, #creditos {
	position:absolute;
	width: 100%;
    height: 100%;
	background: rgba(0,0,0,.7);
	z-index: 9999999;
}
.popup-index {
	position: absolute;
    height: auto;
    font-size: 14px;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 15px;
    background: rgba(0,0,0,.9);
    z-index: 3;
}
#volumen .popup-index {
	top: 120px;
	left: 260px;
	width: 490px;
}
#ayuda .popup-index {
	top: 120px;
	left: 210px;
	width: 600px;
}
#info .popup-index {
	top: 120px;
	left: 210px;
	width: 600px;
}
#creditos .popup-index {
	top: 120px;
	left: 210px;
	width: 600px;
}
.popup-index .cerrar {
	position:absolute;
	top:10px;
	right:20px;
	font-size:24px;
	cursor:pointer;
}
#volumen .slidecontainer {
	width: 90%;
	display: inline-block;
}
#ayuda .popup {
	top: 110px;
	left: 200px;
	width: 590px;
	font-size:14px;
	align-items:flex-start;
}
#creditos .popup {
	top: 110px;
	left: 200px;
	width: 590px;
	font-size:14px;
	align-items:flex-start;
}
#volumen .popup-index h2, #volumen .popup-index .numero, #ayuda .popup-index h2, #creditos .popup-index h2 {
	font-family: 'comic';
	font-size: 24px;
	margin-top: 0;
}
/* RANGE INPUT FOR VOLUME */
input[type=range] {
	width: 100%;
	margin: 10px 0;
	background-color: transparent;
	-webkit-appearance: none;
  }
  input[type=range]:focus {
	outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
	background: #00c3be;
	border: 1px solid #206648;
	border-radius: 5px;
	width: 100%;
	height: 5px;
	cursor: pointer;
  }
  input[type=range]::-webkit-slider-thumb {
	margin-top: -11px;
	width: 25px;
	height: 25px;
	background: #206648;
	border: 1px solid #206648;
	border-radius: 22px;
	cursor: pointer;
	-webkit-appearance: none;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
	background: #00c3be;
  }
  input[type=range]::-moz-range-track {
	background: #00c3be;
	border: 1px solid #206648;
	border-radius: 5px;
	width: 100%;
	height: 5px;
	cursor: pointer;
  }
  input[type=range]::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #206648;
	border: 1px solid #206648;
	border-radius: 22px;
	cursor: pointer;
  }
  input[type=range]::-ms-track {
	background: transparent;
	border-color: transparent;
	border-width: 11px 0;
	color: transparent;
	width: 100%;
	height: 5px;
	cursor: pointer;
  }
  input[type=range]::-ms-fill-lower {
	background: #00c3be;
	border: 1px solid #206648;
	border-radius: 10px;
  }
  input[type=range]::-ms-fill-upper {
	background: #00c3be;
	border: 1px solid #206648;
	border-radius: 10px;
  }
  input[type=range]::-ms-thumb {
	width: 25px;
	height: 25px;
	background: #206648;
	border: 1px solid #206648;
	border-radius: 22px;
	cursor: pointer;
	margin-top: 0px;
	/*Needed to keep the Edge thumb centred*/
  }
  input[type=range]:focus::-ms-fill-lower {
	background: #00c3be;
  }
  input[type=range]:focus::-ms-fill-upper {
	background: #00c3be;
  }
  @supports (-ms-ime-align:auto) {
	/* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
	input[type=range] {
	  margin: 0;
	  /*Edge starts the margin from the thumb, not the track as other browsers do*/
	}
  }

/* INFO */
#info {
	text-align:center;
}
#info h2 {
	font-size:24px;
}
/* CREDITOS */
#creditos {
	position:absolute;
	width: 100%;
    height: 100%;
	background: rgba(0,0,0,.7);
	z-index: 99999;
}
.creditos {
	position: absolute;
    height: auto;
	display: flex;
    align-items: center;
	justify-content: center;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#cerrar-creditos {
	position: absolute;
    top: 50px;
    right: 35px;
    font-size: 30px;
    z-index: 999;
    color: #333;
    background: rgba(255, 255, 255, .5);
    width: 30px;
    text-align: center;
}
.pagina-creditos {
	width: 920px;
    position: absolute;
    top: 50px;
    left: 35px;
}
.boton-creditos {
	position: absolute;
	top:45%;
	width:60px;
}
/* MENU INFERIOR */
#btn-mapa {
	position: absolute;
    bottom: 10px;
    left: 10px;
    width: 70px;
	height:70px;
	border-radius: 50%;
	overflow: hidden;
    z-index: 999;
}
#btn-circon {
	position: absolute;
    bottom: 10px;
    right: 10px;
    width: 70px;
	height:70px;
	border-radius: 50%;
	overflow: hidden;
    z-index: 1000;
}
#pistas {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
	height:100%;
	z-index:999;
	background:rgba(0,0,0,.5);
}
#pista-circon {
	position: absolute;
    bottom: 90px;
    right: 10px;
    width: 200px;
	font-size: 12px;
    padding: 10px;
	transform-origin: 80% 140%;
    z-index: 999;
}
#pista-circon::after {
	content: "";
    position: absolute;
    bottom: -29px;
    right: 35px;
    width: 20px;
    height: 30px;
    background: url(../img/pico2.png) center top no-repeat;
    background-size: 100%;
    z-index: -1;
    filter: drop-shadow(1px 2px 0px #34c2bd);
}
#btn-candado {
	position: absolute;
    top: 5px;
    right: 220px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* CODIGO CANDADO */
#codigos {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0,.7);
}
#codigo {
	position: absolute;
    top: 220px;
    left: 0;
    right: 0;
    width: 800px;
    z-index: 999;
}
#codigo .codigo-mision {
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#codigo .caja-verde {
	width: 200px;
    height: 100px;
    font-size: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.codigo-input {
	width: 100%;
    height: 60%;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
	padding-top: 15px;
}
/* MAPA */
#mapa {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 90px;
	height:100%;
	z-index:999;
	background:rgba(0,0,0,.9);
	display: flex;
	justify-content: center;
	text-align: center;
}
#mapamain {
	position: absolute;
    top: 40px;
    left: 200px;
    width: 220px;
    z-index: 999;
    background: rgba(0, 0, 0, .9);
}
.mapa-barra {
	width: 14px;
    height: 462px;
    background: #aaa;
    margin-top: 15px;
}
.btn-mapa.bloqueado {
	opacity:.1;
}
.btn-mapamain.bloqueado {
	opacity:1;
}
.btn-mapa.bloqueado:hover {
	cursor: not-allowed;
}
#mapa-1,#mapamain-1 {
	height:38px;
	background:#B31C8F;
}
#mapa-2,#mapamain-2 {
	height:38px;
	background:#E80289;
}
#mapa-3,#mapamain-3 {
	height:38px;
	background:#F2587C;
}
#mapa-4,#mapamain-4 {
	height:58px;
	background:#A0C5A6;
}
#mapa-5,#mapamain-5 {
	height:58px;
	background:#A0C5A6;
}
#mapa-6,#mapamain-6 {
	height:58px;
	background:#4BCCEC;
}
#mapa-7,#mapamain-7 {
	height:58px;
	background:#4BCCEC;
}
#mapa-8,#mapamain-8 {
	height:58px;
	background:#F4F22B;
}
#mapa-9,#mapamain-9 {
	height:58px;
	background:#F4F22B;
}
.candado-mapa {
	position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    z-index: 1;
}
#mapamain .candado-mapa {
    right: 175px;
}
.candado-mapa img {
	width:100%;
}
#candado-1, #candadomain-1 {
	top:428px;
}
#candado-2, #candadomain-2 {
	top:390px;
}
#candado-3, #candadomain-3 {
	top:353px;
}
#candado-4, #candadomain-4 {
	top:294px;
}
#candado-5, #candadomain-5 {
	top:236px;
}
#candado-6, #candadomain-6 {
	top:178px;
}
#candado-7, #candadomain-7 {
	top:120px;
}
#candado-8, #candadomain-8 {
	top:62px;
}
#candado-9, #candadomain-9 {
	top:4px;
}
#minimapa-1 {
	position: absolute;
    top: 0;
    left: 90px;
    width: 900px;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, .9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#minimapa-1, #minimapamain-1 {
	position: absolute;
    top: 0;
    left: 90px;
    width: 900px;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, .9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#minimapa-1 .bloqueado img, #minimapamain-1 .bloqueado img {
	filter: grayscale(1);
    opacity: .1;
}
.mapamaintxt {
	position: absolute;
    left: -130px;
    text-align: right;
    font-size: 16px;
    width: 110px;
}
#mapamaintxt-1 {
	color:#B31C8F;
}
#mapamaintxt-2 {
	color:#E80289;
}
#mapamaintxt-3 {
	color:#F2587C;
}
#mapamaintxt-4 {
	color:#A0C5A6;
}
#mapamaintxt-5 {
	color:#4BCCEC;
}
#mapamaintxt-6 {
	color:#F4F22B;
}

/* RELOJ */
.tiempo {
	position: absolute;
    top: 2px;
    left: 715px;
    width: 50px;
    height: 50px;
    background: url(../img/reloj.png) center center no-repeat;
    background-size: cover;
}
  /* Debug */
  #menu-debug {
	position:fixed;
	top:0;
	left:0;
	width:150px;
	height:100%;
	overflow:auto;
	background:rgba(0,0,0,.9);
	color:#fff;
	font-size:12px;

	z-index:1000;
  }
  #menu-debug.collapsed {
	left:-200px;
  }
  #menu-debug ul {
	list-style-type: none;
  }
  #menu-debug div div p {
	margin-left:20px;
  }
  .btn-debug {
	cursor:pointer;
  }