.game{
  background: #F5F7F8;
  border-radius: 8px;
}
.game .game-header{
  display: flex;
  border-bottom: 1px solid #eee;
  padding: .25rem;
  justify-content: space-between;
}

.game .game-timer{
  display: flex;
  align-items: center;
  text-align: center;
}
.game .game-toolbar{
  display: flex;
  align-items: center;
  text-align: center;
}
.game .game-rules{
  display: flex;
  align-items: center;
  text-align: center;
}
.game .game-timer .btn,
.game .game-toolbar .btn,
.game .game-rules .btn{
  border: 0 !important;
  background: #fff;
  margin: .5rem;
  color: #666;
  font-weight: bold;
  align-items: center;    
  border-radius: 25px;
  display: flex;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0;
  width: 38px;
  cursor:pointer;
  text-align:center;
}
.game .game-toolbar .btn.cheat{
  background: #fed035;
  color: #fff;
}
.game .game-rules .btn.rules{
  background: #000;
  color: #fff;
}
.game .game-timer .btn,
.game .game-toolbar .btn.cheat,
.game .game-rules .btn.rules {
  min-width: max-content;
  padding: 5px 25px;
}

.game .game-window{
  overflow: hidden;
  padding: 15px;
}

.game .game-ultracont{
  display:flex;
  flex-direction: column;
}
.game .game-ultracont .game-gamespacer{
  aspect-ratio:2/3;
  height: auto;
  width: 100vw; /* 100vw */
}
@media( min-width: 992px ){
  .game .game-ultracont{
    flex-direction: row;
  }
  .game .game-ultracont .game-gamespacer{
    aspect-ratio:2/3;
  height: auto;
    width: calc( 100vw - 30px - 10px - 300px ); /* 100vw - $spacings - spacebetweencolumns - game-spacer width */
  }
}


.game .game-scroller{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: scroll;
  scrollbar-width: 0;
  background:#fff;
}
.game .game-scroller::-webkit-scrollbar { 
  display: none;
}
.game .game-scaler{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
  transform-origin: 0px 0px;
  transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
  transition-duration: 0ms;
}

.game .game-playboard{
  height:185px;
  overflow: hidden;
  padding:10px;
}
.game .game-playboard .game-definition{
  text-transform: uppercase;
  font-size: 18px;
  padding-bottom:10px;
  text-align: center;
}
.game .game-playboard .game-keyboard{
  max-width: 800px;
  margin: 0 auto;
}
.game .game-playboard .game-keyboard .row{
  display: flex;
  flex-wrap: wrap;
}
.game .game-playboard .game-keyboard .key{
  align-items: center;
  background: #fff;
  color: #000 !important;
  font-weight: bold;
  border-bottom: 1px solid #b5b5b5;
  border-radius: 5px;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 5px;
  flex-grow: 1;
  width: 40px;
  margin: 0 5px 5px 5px;
}


/* ON ZOOM 
.game .game-scroller{
  transform-origin: 0px 0px;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 0ms;
  transform: translate(0px, 0px) scale(0.971715) translateZ(0px);
  
}*/