/* [project]/src/components/DisplayProgressCircles.css [app-client] (css) */
.circularProcressLoader {
  -webkit-animation: 2s linear infinite progressBarSpin;
  border: 3px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: 1.5s linear infinite progressBarSpin;
  position: relative;
  border-bottom-color: #0000 !important;
}

@-webkit-keyframes progressBarSpin {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes progressBarSpin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/src/components/ShareContent.css [app-client] (css) */
.shareContent a {
  margin: 0 2px -8px;
  padding: 0 6px;
}

.shareContent svg {
  color: #9cf;
  cursor: pointer;
  fill: currentColor;
  stroke: currentColor;
  margin: 0;
  font-size: 70px;
  transition: all .6s;
}

.shareContent svg:hover {
  transition: transform .6s, color .6s;
  animation-name: share-icon-hover;
  animation-duration: 1s;
}

.shareContent .copy svg:hover {
  color: orange;
}

.shareContent .facebook svg:hover {
  color: #0866ff;
}

.shareContent .x svg:hover {
  color: #000;
}

.shareContent .whatsapp svg:hover {
  color: #25d366;
}

.shareContent .pinterest svg:hover {
  color: #bd081c;
}

.shareContent .fb-messenger svg:hover {
  color: #0078ff;
  background: #fff;
  border-radius: 10%;
  padding: 1px;
}

.shareContent .linkedin svg:hover {
  color: #0a66c2;
}

.shareContent .reddit svg:hover {
  color: #ff4500;
}

@keyframes share-icon-hover {
  0% {
    color: #fff;
  }

  5% {
    color: red;
  }

  10% {
    color: green;
  }

  15% {
    color: #00f;
  }

  20% {
    color: red;
  }

  25% {
    color: green;
  }

  30% {
    color: #00f;
  }

  35% {
    color: orange;
  }

  40% {
    color: red;
  }

  60% {
    color: orange;
  }
}

/* [project]/src/games/components/LoadGameComponent.css [app-client] (css) */
.flashContainer, .winnerContainer, .bigFlashContainer {
  text-align: center;
  white-space: nowrap;
  z-index: 6;
  pointer-events: none;
  border-radius: 10px;
  padding: 10px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bigFlashContainer {
  color: #c63;
  -webkit-text-stroke: 2px #f63;
  -webkit-text-fill-color: transparent;
  background: -webkit-radial-gradient(#3c6, #36c, #36c);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: bold;
  animation: 1s linear infinite game-big-flash-animation;
}

.flashContainer {
  color: #c00;
  background-color: #369;
  font-size: min(3vw, 3vh);
  animation: .6s linear infinite game-flash-animation;
}

.winnerContainer {
  z-index: 7;
  font-size: min(5vw, 5vh);
  font-weight: bold;
}

.winnerContainer .winnerText {
  -webkit-text-stroke: 1px #236;
  -webkit-text-fill-color: transparent;
  background: -webkit-radial-gradient(#0f0, red, #00f);
  -webkit-background-clip: text;
  background-clip: text;
  animation: 1s linear infinite winner-animation;
}

.multiPlayerInformation .player {
  width: 40px;
  height: 40px;
}

.multiPlayerInformation .player img {
  border-radius: 50%;
}

.multiPlayerInformation .player.waiting img {
  opacity: .2;
}

.multiPlayerInformation .player.waiting {
  position: relative;
}

.multiPlayerInformation .player.waiting:before {
  content: "";
  z-index: 100;
  border: 2px solid #396;
  border-right-color: #963;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: 1.5s linear infinite playerWaitingSpin;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-color: #0000 !important;
  border-bottom-color: #0000 !important;
}

.prev a span.loading, .next a span.loading {
  visibility: hidden;
}

.prev a.loading span.loading, .next a.loading span.loading {
  visibility: visible;
}

.startButton .shareGameHistoryButton svg {
  color: #9cf;
  fill: currentColor;
}

.startButtonGrid button:hover {
  background-color: #fff3;
}

.gameContainer.fullScreenMode {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.gameContainer.fullScreenMode > div {
  flex-grow: 1;
}

@keyframes playerWaitingSpin {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  100% {
    transform: translate(-50%, -50%)rotate(360deg);
  }
}

@keyframes winner-animation {
  0% {
    background: -webkit-radial-gradient(#0f0, red, #00f);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: min(5vw, 5vh);
  }

  25% {
    background: -webkit-radial-gradient(#00f, red, #0f0);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: min(7vw, 7vh);
  }

  50% {
    background: -webkit-radial-gradient(red, #0f0, #00f);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: min(5vw, 5vh);
  }

  75% {
    background: -webkit-radial-gradient(#00f, #0f0, red);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: min(7vw, 7vh);
  }

  100% {
    background: -webkit-radial-gradient(#0f0, red, #00f);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: min(5vw, 5vh);
  }
}

@keyframes game-flash-animation {
  0% {
    color: #0c0;
    font-size: min(3vw, 3vh);
  }

  50% {
    color: #cc0;
    font-size: min(3.2vw, 3.2vh);
  }

  100% {
    color: #0c0;
    font-size: min(3vw, 3vh);
  }
}

@keyframes game-big-flash-animation {
  0% {
    font-size: min(0vw, 0vh);
  }

  50% {
    font-size: min(50vw, 50vh);
  }

  100% {
    font-size: min(0vw, 0vh);
  }
}

@media (display-mode: standalone) {
  .startButton {
    margin-bottom: 0 !important;
  }
}

@media only screen and (max-width: 400px) {
  .buttonContainer {
    transform: scale(.8);
    margin: -40px auto -10px !important;
  }
}

/* [project]/src/games/components/FlashContentDisplay.css [app-client] (css) */
.gameContainerFlash .gameTitle {
  background-color: #123;
  border-radius: 8px;
  min-width: 320px;
  height: auto;
  padding: 10px 15px;
  transition: padding .6s, margin .6s;
  position: relative;
  box-shadow: 0 0 5px 5px #36c;
  margin: 20px auto !important;
}

.gameContainerFlash .gameTitle h1 {
  margin: 0 !important;
}

.gameContainerFlash .gameBoardContainer {
  aspect-ratio: 5.5 / 4;
  background-color: #369;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 600px;
  max-width: 95vw;
  min-height: 260px;
  max-height: calc(100vh - 450px);
  margin: 0 auto;
  padding: 8px;
  transition: box-shadow .6s;
  position: relative;
  box-shadow: 0 0 5px 5px #3696;
}

.gameContainerFlash.fullScreenMode {
  display: block;
}

.fullScreenMode .gameBoardContainer {
  max-width: calc(100vw - 20px);
  max-height: calc(100vh - 250px);
}

.gameContainerFlash .startButton {
  background-color: #123;
  border: 1px solid #012;
  border-radius: 8px;
  min-width: 300px;
  margin: 20px auto;
  padding: 8px 15px;
  transition: box-shadow .6s;
  position: relative;
  box-shadow: 0 0 5px 5px #36c;
}

.gameContainerFlash .startButton ul {
  margin: 0;
}

.gameContainerFlash .startButton ul li {
  margin: .3em 0;
}

/* [project]/src/app/game/[gameid]/page.css [app-client] (css) */
.game {
  width: 100%;
}

.game h1 {
  color: #9cf;
  text-align: center;
  margin-top: 50px;
  font-size: 35px;
}

.game h1 span {
  color: #3e497a;
  width: 40px;
  height: 30px;
  margin-top: 3px;
  font-size: 25px;
  transition: margin .2s linear;
}

.game h1 span.prev {
  float: left;
}

.game h1 span.next {
  float: right;
}

.game h1 span:hover {
  margin-top: 1px;
  transition: margin .2s linear;
}

.game h1 span a {
  text-decoration: none;
  transition: font-size .2s linear;
}

.game h1 span a:hover {
  font-size: 30px;
  transition: font-size .2s linear;
}

.tooltipContent {
  border-radius: 10px;
}

.tooltipContent h2 {
  color: #fff;
  text-align: center;
  margin: 5px 8px;
  font-size: 25px;
}

.tooltipContent img {
  border-radius: 5px;
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 300px;
  margin: 15px auto;
  display: block;
}

.game img {
  border-radius: 10px;
  width: 900px;
}

.game p {
  color: #3e497a;
  font-size: 40px;
}

.buttonContainer {
  text-align: center;
  width: 360px;
  margin: 25px auto 10px;
  padding: 10px 0;
  transition: all .6s;
}

.buttonContainer .button {
  margin: 0 20px;
}

.buttonContainer span.prev, .buttonContainer span.next {
  width: 60px;
  display: inline-block;
}

.buttonContainer span.prev a, .buttonContainer span.next a {
  color: #69f;
  background: #0003;
  border: 1px solid #535fed;
  border-radius: 6px;
  padding: 5px 10px 0;
  text-decoration: none;
  display: inline-block;
}

.buttonContainer .button, .buttonContainer button, .buttonContainer .button svg, .buttonContainer button svg, .buttonContainer span.prev a, .buttonContainer span.next a, .buttonContainer span.prev a svg, .buttonContainer span.next a svg {
  color: #69f;
  fill: currentColor;
  border-color: #535fed;
}

.buttonContainer .button:hover, .buttonContainer span.prev a:hover, .buttonContainer span.next a:hover {
  background: #0001;
  border-color: #99f;
}

@media only screen and (max-width: 900px) {
  .buttonContainer {
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 450px) {
  .buttonContainer {
    margin: 0 auto;
  }
}

/*# sourceMappingURL=src_08eea273._.css.map*/