body {
  background-color: black;
}

@media only screen and (max-width: 486px) {
  .game-container, .top-toolbar {
    border-width: 0px;
    min-width: -webkit-fill-available;
  }
}
@media (min-width: 486px) {
  .game-container, .top-toolbar {
    border-width: 0px;
    width: 430px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .wordleKeyboard .keyboard-character:hover {
    color: white !important;
    background-color: goldenrod !important;
  }
  table.high-score-name td.cursor-blink:before {
    content: "_";
    animation: blink 1s infinite;
  }
  input.high-score-mobile {
    display: none;
  }
}
@media (any-pointer: coarse) {
  table.high-score-name {
    display: none;
  }
}
#root {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

#wordle-canvas {
  width: 25%;
  height: 50%;
  position: absolute;
  left: 37.5vw;
  top: 25vh;
  z-index: -1;
  background-color: black;
}

.ripple {
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  animation: ripple 60s linear infinite;
}

.bouncing-bars {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
  color: goldenrod;
  font-size: 2em;
  font-weight: bold;
  animation: bounce 2s infinite;
}

.throb {
  animation: throb 1s infinite;
}

.text-zoom-in {
  animation: text-zoom-in 3s;
}

.modal-zoom-in {
  animation: modal-zoom-in 1s;
}

.fade-in-out {
  animation: fade-in-out 2s;
}

.glow {
  animation: glow 10s;
}

@keyframes modal-zoom-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes text-zoom-in {
  0% {
    font-size: 0;
    opacity: 0;
  }
  40% {
    font-size: 2.5em;
    opacity: 1;
  }
  80% {
    font-size: 2em;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes throb {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.5);
  }
}
@keyframes concentric {
  0% {
    background-size: 20px 20px;
  }
  100% {
    background-size: 200px 200px;
  }
}
@keyframes ripple {
  0% {
    background-size: 1rem 1rem;
    box-shadow: 0 0 0 0rem rgba(218, 165, 32, 0.2), 0 0 0 1rem rgba(255, 255, 255, 0.2), 0 0 0 2rem rgba(255, 255, 255, 0.2), 0 0 0 5rem rgba(255, 255, 255, 0.2);
  }
  100% {
    background-size: 8rem 8rem;
    box-shadow: 0 0 0 10rem rgba(255, 255, 255, 0.2), 0 0 0 2rem rgba(255, 255, 255, 0.2), 0 0 0 5rem rgba(255, 255, 255, 0.2), 0 0 0 8rem black;
  }
}
.btn-primary {
  background-color: green;
}

.btn-primary:hover {
  /* color: goldenrod; */
  background-color: rgba(0, 128, 0, 0.8);
}

#message {
  color: red;
  background-color: yellow;
}

.page-title {
  background-image: linear-gradient(to right, gray, goldenrod, gray);
  color: white;
  padding: 0.1em 0em;
  border-radius: 25px;
}

.wb-icon {
  font: var(--fa-font-solid);
  font-size: 1em;
  line-height: 1em;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: goldenrod;
  cursor: pointer;
  font-size: 1.4em;
}
.wb-icon.hint-icon {
  font-size: 1.5em;
}
.wb-icon.hint-icon::before {
  content: "\f0eb";
}
.wb-icon.leaderboard-icon::before {
  content: "\f091";
}
.wb-icon.new-game-icon::before {
  content: "\e0b7";
}

.wordleGrid {
  border-spacing: 0.5rem;
  border: 2px solid grey;
  border-collapse: separate;
}
.wordleGrid td {
  border: 2px solid lightgray;
  width: 2em;
  height: 2em;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  /* line-height: 3em; */
}
.wordleGrid tr.invalid-word {
  /* text-decoration: line-through; */
  background-color: red;
  color: white;
}
.wordleGrid tr.row-complete td {
  color: white;
}
.wordleGrid tr.row-complete td.right-letter {
  background-color: #C9B458;
}
.wordleGrid tr.row-complete td.right-position {
  background-color: green;
}
.wordleGrid tr.row-complete td.wrong-letter {
  background-color: gray;
}
.wordleGrid tr.hidden {
  background-color: grey;
}
.wordleGrid tr.hidden td {
  padding: 0px;
}
.wordleGrid tr.hidden td::before {
  content: "X";
  color: goldenrod;
  font-family: "Font Awesome 6 Free";
  font-size: 30px;
}

.game-container {
  background-color: white;
  opacity: 0.99;
  border: 3px solid goldenrod;
  border-radius: 10px;
  transition: box-shadow 0.5s ease-in-out;
  box-shadow: 0px 0px 13px 8px #9d9135;
  padding: 1em 0.5em;
}

#wordleScore {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100px;
  /* text-align: center; */
  font-size: 2em;
  opacity: 0.5;
  text-shadow: 0 0 2px black;
  color: gold;
}

#wordleHint {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: white;
  color: grey;
  border: 1px solid goldenrod;
  z-index: 99999;
  text-align: center;
  font-size: 1em;
  box-shadow: 0px 0px 12px 10px lightgoldenrodyellow;
  align-content: center;
  padding: 1em;
  border-radius: 7px;
  text-shadow: 0 0 2px;
}

.top-toolbar {
  display: flex;
  justify-content: space-between;
  height: 5vh;
  align-items: end;
}

.keyboard-row {
  display: flex;
  justify-content: center;
  margin-bottom: 7px;
}

.wordleKeyboard .keyboard-character {
  font-size: 0.8em;
  width: 10%;
  line-height: 2em;
  /* font-size:24px;
  width: 2em; */
  border: 1px solid darkgrey;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  color: gray;
  background-color: white;
  vertical-align: middle;
  /* transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; */
  /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
  box-shadow: 0px 6px 0px #2b638f;
  margin: 0.4em 0.2em;
  position: relative;
  font-weight: 700;
  /* background-color: grey; */
  border-radius: 0.4em;
  /* display: inline-block; */
}
.wordleKeyboard .keyboard-character:active {
  transform: scale(0.96);
  /* Scaling button to 0.98 to its original size */
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
  /* Lowering the shadow */
}

#wordleKeyboard .keyboard-character.right-position {
  color: white;
  background-color: green;
}
#wordleKeyboard .keyboard-character.right-letter {
  color: white;
  background-color: #C9B458;
}
#wordleKeyboard .keyboard-character.wrong-letter {
  color: white;
  background-color: gray;
}

.keyboard-character.inner {
  display: inline-block;
  /* background-color: $back; */
  border-radius: 0.6em;
  border: 0.3em solid grey;
  padding: 1em;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translate3d(0.6em, -0.6em, 0);
  transition: transform 240ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 220ms;
}

.keyboard-character.inner:active,
.click {
  transform: translate3d(0, 0, 0);
  transition: transform 120ms cubic-bezier(0.23, 1, 0.32, 1);
}

#wordle-timer {
  font-size: 1.2em;
  color: gray;
  /* background-color: grey; */
}

.modal-header {
  text-align: center;
  font-size: 1.5em;
  background-color: darkgoldenrod;
  color: white;
  justify-content: center;
}

.modal-body {
  text-align: center;
}

.modal-controls {
  align-self: center;
  width: 75%;
}

.wb-message-text {
  padding-bottom: 1em;
  text-shadow: 0px 1px 3px darkgray;
  font-size: 1.1em;
}

#wordleblitz-toast {
  color: #212b32;
  background-color: #efefef;
  border: 1px solid darkgrey;
  opacity: 1 !important;
  z-index: 99999;
  text-align: center;
  font-size: 1em;
}

.high-score {
  align-items: center;
  display: flex;
  flex-direction: column;
}

table.high-score-name {
  border-spacing: 0.5rem;
  border-collapse: separate;
  text-align: center;
}
table.high-score-name td {
  font-size: 1.8em;
  min-width: 1.5em;
  border: 2px solid darkgrey;
  text-align: center;
  color: gold;
  background-color: black;
  vertical-align: middle;
  position: relative;
  font-weight: 700;
  border-radius: 0.2em;
}

input.high-score-mobile {
  font-size: 1.2em;
  border: 2px solid darkgrey;
  text-align: center;
  color: gold;
  background-color: black;
  font-weight: 700;
  border-radius: 0.2em;
  width: 60%;
  letter-spacing: 0.6em;
  margin: 0.75em;
  text-transform: uppercase;
}

.leaderboard-popover-target {
  color: goldenrod;
  cursor: pointer;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
#highScoreDialogue {
  border: solid 0.3em grey;
  /* margin: 1em 4em; */
  border-radius: 1em;
  background-color: gold;
  width: 80%;
  align-self: center;
  -moz-text-align-last: center;
       text-align-last: center;
}

.leaderboard-popover {
  box-shadow: 10px 10px 10px grey;
}
.leaderboard-popover .popover-header {
  color: white;
  background-color: goldenrod;
  font-weight: bold;
  font-size: 1.3em;
  align-self: center;
}
.leaderboard-popover .popover-body {
  color: goldenrod;
  background-color: white;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2em;
  /* border: solid 2px grey; */
}

.star-background {
  position: relative;
  color: darkgoldenrod;
  font-weight: bold;
  width: 1.5em;
  display: inline-block;
}
.star-background::before {
  content: "\f005";
  font-family: "FontAwesome";
  font-size: 1.8em;
  position: absolute;
  left: -4px;
  top: -12px;
  color: darkgoldenrod;
  opacity: 0.5;
}

.qr-code-image {
  height: 100px;
  width: 100px;
}/*# sourceMappingURL=wordle.css.map */