/* [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/app/games/page.css [app-client] (css) */
.games {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.gameLink {
  color: #fff;
  text-decoration: none;
}

.gameLink:hover {
  color: #9cf;
}

.gameList {
  grid-template-columns: repeat(auto-fit, 23%);
  justify-content: center;
  place-items: center;
  width: 85vw;
  height: auto;
  transition: all .8s;
  display: grid;
}

.gameItem {
  text-align: center;
  cursor: pointer;
  background-color: #0003;
  border-radius: 15px;
  width: 350px;
  height: 580px;
  margin: 35px 0;
  transition: all .8s;
  position: relative;
  box-shadow: 0 3px 15px #0003;
}

.gameItem:hover {
  cursor: pointer;
  transition: all .3s ease-in;
  box-shadow: 0 3px 15px #00000080;
}

.gameItem .bgImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  height: 500px;
}

.gameItem h1 {
  padding: 10px 0 2px;
  font-size: 18px;
  transition: all .8s;
}

.gameItem .gameProgressCircle {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gameItem.loading .gameProgressCircle {
  display: flex;
}

@media only screen and (max-width: 1920px) {
  .gameList {
    width: 90vw;
    transition: all .8s;
  }
}

@media only screen and (max-width: 1800px) {
  .gameList {
    width: 96vw;
    transition: all .8s;
  }

  .gameItem h1 {
    font-size: 17px;
    transition: all .8s;
  }

  .gameItem {
    width: 330px;
  }
}

@media only screen and (max-width: 1650px) {
  .gameList {
    grid-template-columns: repeat(auto-fit, 30%);
    width: 85vw;
    transition: all .8s;
  }

  .gameItem {
    width: 350px;
    margin: 30px 0;
    transition: all .8s;
  }
}

@media only screen and (max-width: 1400px) {
  .gameList {
    width: 96vw;
    transition: all .8s;
  }

  .gameItem h1 {
    font-size: 17px;
    transition: all .8s;
  }

  .gameItem {
    width: 330px;
  }
}

@media only screen and (max-width: 1200px) {
  .gameList {
    grid-template-columns: repeat(auto-fit, 48%);
    width: 80vw;
    transition: all .8s;
  }

  .gameItem {
    width: 350px;
    margin: 25px 0;
    transition: all .8s;
  }
}

@media only screen and (max-width: 950px) {
  .gameList {
    width: 100%;
  }

  .gameItem {
    width: 330px;
    margin: 20px 0;
    transition: all .8s;
  }
}

@media only screen and (max-width: 800px) {
  .gameList {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gameItem {
    width: 350px;
    margin: 20px 0;
    transition: all .8s;
  }
}

@media only screen and (max-width: 450px) {
  .gameItem h1 {
    font-size: 16px;
    transition: all .8s;
  }

  .gameItem {
    width: 320px;
    margin: 20px 0;
    transition: all .8s;
  }
}

@media only screen and (max-width: 400px) {
  .gameItem {
    width: 300px;
    margin: 20px 0;
    transition: all .8s;
  }
}

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