body {
  font-family: 'Roboto', sans-serif;
}
.game {
  user-select: none;
  line-height: 0;
  margin-left: 10px;
}
.game .board {
  position: relative;
}
.game .background,
.game .overlay {
  position: absolute;
  width: 640px;
  height: 640px;
}
.game .piece {
  user-select: none;
  cursor: pointer;
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.6;
}
.game .dice {
  opacity: 0.6;
}
.game .dice.active {
  opacity: 1;
  cursor: pointer;
}
.game .slot {
  height: 40px;
  width: 40px;
  background-color: transparent;
  border-radius: 50%;
  opacity: 1;
}
.game .slot.active {
  cursor: pointer;
  box-shadow: 0px 0px 10px 6px #bc90df;
}
.game .slot.active::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px 8px #b9f7ae;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.game .slot.active:hover::after {
  opacity: 1;
}
.game .slot.active.black {
  background-color: #888888;
}
.game .slot.active.blue {
  background-color: #59eaff;
}
.game .slot.active.brown {
  background-color: #cf9d78;
}
.game .slot.active.green {
  background-color: #b9f7ae;
}
.game .slot.active.orange {
  background-color: #fea44f;
}
.game .slot.active.red {
  background-color: #fe706f;
}
.game .slot.active.violet {
  background-color: #bc90df;
}
.game .slot.active.white {
  background-color: #e4e6e5;
}
.game .slot.active.yellow {
  background-color: #fff959;
}
.game .slot.square {
  border-radius: 0%;
  height: 48px;
  width: 48px;
}
.components {
  display: none;
  visibility: hidden;
}
.modal.pdf {
  min-width: 800px;
}
#lang-card img {
  width: 100%;
}
#game-players {
  text-align: center;
}
#game-players input,
#game-players button {
  font-size: 24px;
}
#game-players input {
  padding: 2px 4px;
}
.blocker {
  background-color: transparent !important;
}
