* { margin: 0; padding: 0; }

body {
  background: #eceff3;
}

div {
  background-repeat: no-repeat;
}

kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
}

a:link {
  color: #107d9c;
  text-decoration: none;
}

a:visited {
  color: #12835d;
}

a:hover {
  color: #2a109c;
  text-decoration: underline;
}

a:active {
  color: blue;
}

#infoBox .label.destaque-negativo {
  color: red;
  font-size: 1.3em;
}

#infoBox .label.destaque-positivo {
  color: green;
  font-size: 1.3em;
}

#infoBox {
  left: 432px;
  padding: 10px;
}

#infoBox p {
  color: #6B7C93;
  font-size: 1em;
  line-height: 1.4em;
}

#infoBox .label::before {
  content: attr(data-identifier) ": ";
  font-weight: bold;
}

#infoBox .label::after {
  content: attr(data-sufix);
}

.info-box p {
  font-family: monospace;
  font-weight: bold;
  font-size: 1em;
  line-height: 1.4em;
}

.caixa {
  font-family: monospace;
  position: absolute;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px #32325a1a;
  background-color: white;
  border: rgb(72, 78, 160) 1px solid;
}

#tabuleiro {
  margin: 10px;
  overflow: hidden;
  position: relative;
  width: calc( var(--tabuleiro-largura, 600) * 1px );
  height: calc( var(--tabuleiro-altura, 600) * 1px );

  cursor: none; /* esconder cursor */
  /* desabilitar a seleção do texto */
  -webkit-user-select: none; /* Safari */
     -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none; /* Non-prefixed version, currently
                                supported by Chrome and Opera */
}

#tabuleiro > div {
  width: 100%;
  height: 100%;
  position: absolute;
}

#container-jogo > div {
  position: absolute;

  -webkit-filter: blur( calc( var(--splash-blur) * 1px ) );
     -moz-filter: blur( calc( var(--splash-blur) * 1px ) );
       -o-filter: blur( calc( var(--splash-blur) * 1px ) );
      -ms-filter: blur( calc( var(--splash-blur) * 1px ) );
          filter: blur( calc( var(--splash-blur) * 1px ) );
}

#container-splash {
  text-align: center;
  visibility: var(--splash-visibility, hidden);
  z-index: 1000;
  background: rgba(232, 232, 238, 0.692);
}

#container-splash > div {
  position: relative;
  top: 40%;
  padding: 1%;
}

[class^="gif-"] {
  -webkit-animation-play-state: var(--game-state, paused);
          animation-play-state: var(--game-state, paused);
}
