* {
  font-family: 'FiraCode', monospace;
  word-break: break-word;
  box-sizing: border-box;
}
html {
  min-height: 100vh;
  min-height: 100svh;
}
body {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #111;
  color: #bbb;
}
body.bloqueado {
  overflow: hidden;
}
.contenido {
  padding-bottom: 100px;
}
a {
  text-decoration: none;
  color: #9d9;
}
a:hover {
  text-decoration: underline;
}
.lista-bb {
  color: #eee;
}
.lista-bb .codigos input[type=number] {
  width: 100px;
  border: none;
}
.lista-bb .codigos .code-actual code {
  border-color: #f44;
}
.lista-bb .codigos .code-actual code:hover {
  background: #030303;
}
.lista-bb .codigos code {
  color: #8f4;
  background: #222;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border-right: solid 2px transparent;
}
.lista-bb .codigos code:focus {
  outline: 1px solid rgba(100, 0, 255, 0.7) !important;
  background: #030303;
}
.lista-bb .codigos code:hover {
  background: #1a1a1a;
}
.utiles {
  position: fixed;
  right: 0;
  top: 50%;
  width: 40px;
  text-align: right;
}
.utiles nav {
  position: absolute;
  top: -80px !important;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 6px;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  transition: all 0.1s;
}
.utiles nav:hover {
  background: #000000;
}
.utiles nav a,
.utiles nav button {
  border: 1px solid transparent;
}
.utiles * {
  display: inline-block;
}
footer {
  margin-top: auto;
  padding: 20px;
  background: #000;
}
footer p {
  color: #666;
}
@keyframes titilar_anim {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #ffff00;
  }
  100% {
    border-color: transparent;
  }
}
.titilar {
  animation: titilar_anim 1s infinite;
}
#notificacion {
  position: fixed;
  top: 0;
  right: 0;
  text-align: right;
  padding: 10px;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.2s;
}
#notificacion.activa {
  opacity: 1;
}
