@-webkit-keyframes crucipop {
  50% {
    transform: scale(1.6);
  }
}
@keyframes crucipop {
  50% {
    transform: scale(1.6);
  }
}
.fa-spin-scss {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.no-select,
.game-grid {
  /* Non-prefixed version, currently not supported by any browser */
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.j-done {
  color: #fff !important;
  background-color: #124a7d !important;
  font-weight: bold !important;
  border-color: #124a7d !important;
  -webkit-animation: crucipop 0.35s ease 1;
  animation: crucipop 0.35s ease 1;
}

.c-sidebar__list li.clue-answered {
  color: #fff;
  text-decoration: line-through;
}
.c-sidebar__list li.clue-answered::before {
  color: #124a7d;
  background-color: #fff;
}

.game-grid {
  position: relative;
  display: grid;
  background-color: #fff;
  border-radius: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 6px;
}

.cell {
  position: relative;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0;
  color: #212121;
  background-color: #fafafa;
  font-family: "Cubano", sans-serif, cursive;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 100%;
  border: 2px solid #e6e6e6;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s;
}

.trace,
.cell:hover {
  color: #fff;
  background-color: #ff9900;
  border-color: #ff9900;
  transition: background-color 0.25s;
}

.vam {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
$total: 100%;
$c5: (($total - (2*$grid-padding)) / 5) - (2*$cell-margin);
$c6: (($total - (2*$grid-padding)) / 6) - (2*$cell-margin);
$c7: (($total - (2*$grid-padding)) / 7) - (2*$cell-margin);
$c8: (($total - (2*$grid-padding)) / 8) - (2*$cell-margin);
$c9: (($total - (2*$grid-padding)) / 9) - (2*$cell-margin);
$c10: (($total - (2*$grid-padding)) / 10) - (2*$cell-margin);

.cell5  { width: $c5; height: $c5; font-size: 40px; }
.cell6  { width: $c6; height: $c6; font-size: 36px; }
.cell7  { width: $c7; height: $c7; font-size: 32px; }
.cell8  { width: $c8; height: $c8; font-size: 28px; }
.cell9  { width: $c9; height: $c9; font-size: 24px; }
.cell10  { width: $c10; height: $c10; font-size: 20px; }

.vam {
  @include vertical-align-middle();
}
*/

@media screen and (min-width: 1024px) {
  .game-grid {
    gap: 13px;
  }
}
