
.contenedor-juegos{
  background: white;
  padding: 20px;
}
.navegacion-juegos {
    width: 100%;
    background-color: #5d96be;
    color: white;
    display: flex;
    padding: 10px;
}
.navegacion-juegos span{
    flex:1;
    cursor: pointer;
}
.navegacion-juegos span:last-child{
    text-align: right;
}

iframe.iframe-juego {
    border: none;
    max-width: 100%;
    width: 1800px;
    height: 850px;
    padding: 19px;
    background: white;
    overflow: hidden;
}

.contenedor-iframe{
    display: flex;
    align-items: center;
    gap: 10px;
}

.contenedor-iframe span{
    color: #484848;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.contenedor-iframe span:hover{
    opacity: 0.7;
}

:fullscreen iframe,
  iframe:fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contenedor-botones{
    
    margin: auto;
    width: 100%;
    justify-content: center;
    gap: 30px;
    position: unset;
    padding: 0px;
    text-align: center;
    bottom: 0;
    left: 0;
    background: transparent;
    margin-top: -50px;
  }
  .contenedor-botones #menu-pie{
    
    background-color: rgba(0,0,0,.2);
    padding:10px;
    margin-top:-174px;
    position: relative;
    margin-left: -80px;
    margin-right: -80px;
  }
  .contenedor-botones #boton-menu-pie{
        background-color: #878282;
    font-size: 16px;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    margin: 0 -80px;
    color:white;
  }


  .entry-content{
    margin-top: -20px !important;
  }
  .contenedor-contador{
    text-align: center;
    font-size: 24px;
    color: #53aaaa;
    font-weight: 600;
  }

  :fullscreen > .contenedor-contador{
    margin-bottom: -60px;
  }


  #menu-pie button {
    background: transparent;
    border: 2px solid #474444;
    border-radius: 50%;
    padding: 0;
    width: 50px;
    height: 50px;
    color: #474444;
    font-weight: 600;
}




#concentracion,#juego_actual,#total_juegos{

    border: 1px solid;
    padding: 2px 20px;
    background: gray;
    color: white;
    margin: 10px;
    display: inline-block;
    border-radius: 10px;
}
#juego_actual{
  background:white;
  color:gray;
}
#concentracion{
 cursor: pointer;
}

:fullscreen > .contenedor-botones #concentracion,:fullscreen > .contenedor-botones #boton-menu-pie{
  display: none;
}

:fullscreen > .contenedor-botones #menu-pie{
  display: block;
  margin-top: 0;
}

div.contenedor-botones.tableta{
  position: fixed;
  bottom:0;
  left: 0;
  
}
div.contenedor-botones.tableta #boton-menu-pie{
  display: none;
}
div.contenedor-botones.tableta #menu-pie{
  display: block;
  margin-top:0;
}

:fullscreen > .contenedor-iframe{
  overflow: auto;
  height: 100vh;
}


.lista-juegos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.imagen-juego {
  border-radius: 5px;
  padding: 0;
  box-sizing: border-box;
  min-width: 500px;
  max-width: 100% ;
}
.imagen-juego:hover{
  margin-top:-5px;
  transition: all 0.2s ease;
}
.imagen-juego img {
  cursor: pointer;
  width: 500px;
}

.botones-acciones {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botones-acciones button {
  background-color:rgb(252, 170, 0);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 600;
}

.botones-acciones button:hover,.botones-acciones button:active{
  opacity: 0.7;
  background-color: rgb(252, 170, 0);
}

#imagenZoom {
  width: 800px;
  max-width: 800px;
}
#dialogZoom{
  width: 840px;
  overflow: hidden;
}
.identificador{
  margin-top: -40px;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
}

.identificador span:first-child{
  flex: 1;
 padding-left: 30px;
}
.identificador span:last-child{
  flex: 1;
  text-align: right;
  padding-right: 30px;
}

#mensaje {
  background: beige;
  margin: 10px 0;
  padding: 5px 10px;
  color: brown;
  font-size: 20px;
  box-shadow: 0 0 11px 0px rgba(0,0,0,.2);
  border-radius: 10px;
  display: inline-block;
  position: fixed;
  top: 20px;
  transform: translate(50%, 0);
}
#mensaje:empty {
  display: none;
}
p.actual {
  font-weight: bold;
  font-style: italic;
  font-size: 20px;
  color: green;
  margin: 10px 0;
  
}

#grabando {
  border-width: 2px;
  border-style: dashed;
  padding: 5px 10px;
  position: absolute;
  border-radius: 25px;
  color: red;
  font-weight: bold;
  margin-left: 300px;
  margin-top: 5px;
}

.no-grava{
  color:red
}

.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 15;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 15;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
.acciones button,.botones-acciones button {
  background-color: transparent;
  border: 1px solid steelblue;
  border-radius: 5px;
  margin: 0 10px;
  padding: 5px 10px;
  box-sizing: border-box;
  color: steelblue;
  display: inline-flex;
  gap: 10px;


}

.acciones button:hover,.botones-acciones button:hover {
  background-color: white;
  color:steelblue
}
.acciones button img,.botones-acciones button img {
  width: 30px;
  height: 30px;
}

.mis-cuadernos .imagen-juego{ 
 min-width: 250px; 
 max-width: 250px;
}

span.nueva{
  float: right;
  margin-top: 10px;
  margin-right: -55px;
  z-index: 99;
  color: green;
  font-style: italic;
  border: 1px solid;
  font-size: smaller;
  padding: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}