/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss ***!
  \**************************************************************************************************************/
body {
  background: rgba(0, 0, 10, 0.9);
  height: 98vh;
  font-family: sans-serif;
}

.imgAnimation {
  display: none;
}
.imgAnimation.active {
  display: block;
  position: fixed;
  right: 30px;
  top: 30%;
  max-width: 300px;
  transform: rotate(40deg);
  animation: shake 0.1s ease;
}

@keyframes shake {
  from {
    max-width: 30px;
  }
  to {
    max-width: 300px;
  }
}
.startButton {
  margin: 150px auto;
  width: 200px;
  height: 60px;
  background-color: blue;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 2em;
  box-shadow: 0 0 15px white, inset 0 0 10px white;
  cursor: pointer;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-image: url(../javascript/1b8ca01a8ae502bb49db.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mainContainer.trainer-battle-container {
  background-image: url(../javascript/f96373cd44e9d00f9326.jpg);
}
.mainContainer .trainer-battle-counter {
  display: none;
  font-size: 26px;
  position: fixed;
  top: 110px;
  left: 15px;
  letter-spacing: 2px;
  font-weight: bold;
  color: white;
  background-color: green;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 15px black;
}
.mainContainer .trainer-battle-counter.active {
  display: block;
}

.myPokemonImage {
  width: 250px;
  height: auto;
  position: absolute;
  bottom: 5%;
  left: 10px;
}
.myPokemonImage.getAttacked {
  animation: pokemon_Animation_my_PokemonGetAttacked 0.5s ease;
}
@media (min-width: 1200px) {
  .myPokemonImage {
    width: 420px;
  }
}

.wildPokemonImage {
  width: 200px;
  height: auto;
  position: absolute;
  top: 30%;
  right: 30px;
  animation: flightInPokemon 1s ease;
}
.wildPokemonImage.getAttacked {
  animation: pokemon_Animation_WildPokemonGetAttacked 0.5s ease;
}
.wildPokemonImage.getDestroyed {
  animation: fadeOutPokemon 0.5s ease;
}
@media (min-width: 1200px) {
  .wildPokemonImage {
    width: 350px;
    top: 25%;
  }
}

@keyframes flightInPokemon {
  0% {
    right: 0px;
  }
  100% {
    right: 30px;
  }
}
@keyframes fadeOutPokemon {
  0% {
    right: 0px;
  }
  100% {
    right: -30px;
    width: 0px;
  }
}
@keyframes pokemon_Animation_WildPokemonGetAttacked {
  0% {
    right: 0px;
  }
  25% {
    right: 20px;
  }
  50% {
    right: 0px;
  }
  75% {
    right: 20px;
  }
  100% {
    right: 0px;
  }
}
@keyframes pokemon_Animation_my_PokemonGetAttacked {
  0% {
    left: -20px;
  }
  25% {
    left: 20px;
  }
  50% {
    left: -20px;
  }
  75% {
    left: 20px;
  }
  100% {
    left: -20px;
  }
}
.myPokeBattleCard {
  color: white;
  background-color: rgba(10, 10, 10, 0.4);
  width: 45%;
  border-radius: 15px;
  padding-left: 10px;
  font-weight: bold;
  border: 2px solid black;
  margin-left: 4%;
  font-size: 0.8em;
  display: grid;
  place-items: center;
  height: 50px;
  position: fixed;
  bottom: 0%;
  left: -4%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 10;
}
.myPokeBattleCard.active {
  box-shadow: inset 0 0 15px white;
}

.pokeBattleCard {
  color: white;
  background-color: rgba(255, 255, 255, 0.363);
  width: 50%;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  margin-left: 25%;
  border: 2px solid white;
  font-size: 1.3;
  display: grid;
  place-items: center;
  height: 50px;
  padding: 10px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: fixed; /* Stay fixed */
  top: 2%;
  left: 10%;
}
.pokeBattleCard.active {
  box-shadow: inset 0 0 15px white;
}

#myPokemonProgress {
  position: fixed;
  left: 20px;
  bottom: 50px;
  border-radius: 8px;
  z-index: 11;
  height: 20px;
}

#myPokemonXPProgress {
  position: fixed;
  left: 20px;
  bottom: 0px;
  z-index: 11;
}

#wildPokemonProgress {
  width: 70%;
  max-width: 300px;
  height: 20px;
  border-radius: 8px;
}

.buttonContainer {
  display: flex;
  justify-content: right;
  background-color: rgba(0, 0, 10, 0.384);
  padding: 10px;
  border-radius: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.actionButton {
  width: 20%;
  height: 30px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  border: 4px solid gray;
  color: white;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  position: relative;
  cursor: pointer;
}
.actionButton span {
  position: absolute;
  top: -20px;
  right: 0;
  min-width: 20px;
  height: 20px;
  background-color: red;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  font-size: 0.9em;
}

.infBox {
  position: fixed;
  top: 22%;
  left: 2%;
  width: 60%;
  height: auto;
  z-index: 11;
  background-color: rgba(255, 255, 255, 0.3);
  border: 3px solid black;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  padding: 3%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.pokeball {
  display: none;
}
.pokeball.active {
  z-index: 1000;
  display: block;
  position: fixed;
  width: 70px;
  height: 70px;
  background-image: url(../javascript/f711221fda0b0236aad5.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  top: 50%;
  left: 70%;
  animation: throwPokeball 0.3s ease;
  width: 50px;
  height: 50px;
}

@keyframes throwPokeball {
  0% {
    top: 100%;
    left: 0px;
  }
  25% {
    top: 80%;
    left: 10%;
  }
  50% {
    top: 60%;
    left: 30%;
  }
  75% {
    top: 40%;
    left: 60%;
    width: 60px;
    height: 60px;
  }
  100% {
    top: 50%;
    left: 70%;
    width: 50px;
    height: 50px;
  }
}
.buttonContainer2 {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.377);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 300px;
  z-index: 14;
}
.buttonContainer2 .actionButton2 {
  width: 250px;
  color: white;
  background-color: black;
  height: 30px;
  margin: 15px;
  font-size: 1.4em;
  border-radius: 10px;
  position: relative;
  z-index: 1000;
  cursor: pointer;
}

.menueButton {
  position: fixed;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  color: white;
  box-shadow: inset 0 0 15px white, 0 0 10px white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.7em;
  z-index: 15;
  cursor: pointer;
}

.menueWindow {
  display: none;
}
.menueWindow .closebutton {
  position: fixed;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  color: white;
  box-shadow: inset 0 0 15px white, 0 0 10px white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1em;
  cursor: pointer;
}
.menueWindow.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 20;
  transition: all 1s ease;
}
.menueWindow .poketeamContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  background-color: rgba(0, 0, 0, 0.721);
}
.menueWindow .poketeamContainer .pokemonMiniCont {
  width: 50px;
  height: 50px;
  margin: 10px;
  background-color: black;
  padding: 10px;
  border-radius: 50%;
  box-shadow: inset 0 0 10px gray, 0 0 10px white;
  cursor: pointer;
}
.menueWindow .pokeTeamContainer {
  margin-top: 20px;
}
.menueWindow .pokeTeamContainer .pokeRow {
  display: flex;
  color: black;
  align-items: center;
  justify-content: space-evenly;
}
.menueWindow .pokeTeamContainer .pokeRow .pokemonMiniCont {
  width: 50px;
  height: 50px;
  margin: 10px;
  background-color: black;
  padding: 10px;
  border-radius: 50%;
  box-shadow: inset 0 0 10px gray, 0 0 10px white;
  cursor: pointer;
}
.menueWindow .pokeTeamContainer .pokeRow .nameProgressCont {
  width: 140px;
}
.menueWindow .pokeTeamContainer .pokeRow .nameProgressCont .namefield {
  font-size: 1em;
  padding: 0;
  padding-left: 5px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.709);
}
.menueWindow .pokeTeamContainer .pokeRow .nameProgressCont .teamPokeProgress {
  max-width: 100px;
}
.menueWindow .pokeTeamContainer .pokeRow .itemButton {
  background-color: blue;
  color: white;
  font-size: 0.7em;
  padding: 5px;
  border-radius: 10px;
}
.menueWindow .menuCont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  background-color: rgba(0, 0, 0, 0.721);
}
.menueWindow .menuCont .munulink {
  text-decoration: none;
  color: white;
  height: 30px;
  background: linear-gradient(to right, rgb(16, 22, 35), rgb(8, 8, 125));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid gray;
  border-radius: 10px;
  margin: 5px;
  font-weight: bold;
}

.closebutton2 {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  color: white;
  box-shadow: inset 0 0 15px white, 0 0 10px white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1em;
  cursor: pointer;
}

.defeat {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: blur(30px);
  filter: blur(3px);
}

.itemContainer {
  display: none;
}
.itemContainer.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.itemContainer .itemWrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}
.itemContainer .item {
  padding: 15px;
  box-shadow: inset 0 0 15px white;
  margin-right: 15px;
  border-radius: 8px;
  width: 150px;
  text-align: center;
  letter-spacing: 1.5px;
  background-color: blue;
  font-weight: bold;
  cursor: pointer;
}
.itemContainer .amountLabel {
  width: 70px;
  background-color: red;
  height: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 1.3em;
}

.pokemonTrainer {
  width: 200px;
  position: fixed;
  top: 110px;
  left: 70px;
  display: none;
}
.pokemonTrainer.active {
  display: block;
}

h1 {
  color: yellow;
  text-align: center;
  font-family: sans-serif;
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0;
}

.container {
  width: 42vw;
  max-width: 300px;
  min-width: 140px;
  height: auto;
  border-radius: 30px;
  margin: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 5px 3px 10px white;
  border: 2px solid gray;
}

.container img {
  width: 100%;
  margin: 0;
}

.pokedexName {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 10pt;
  color: white;
  padding-bottom: 15px;
  text-align: center;
  margin: 0;
}

.greenContainer {
  background: radial-gradient(lightgreen, black);
}

.orangeContainer {
  background: radial-gradient(orange, black);
}

.blueContainer {
  background: radial-gradient(rgb(84, 187, 221), black);
}

.yellowContainer {
  background: radial-gradient(yellow, black);
}

.purpleContainer {
  background: radial-gradient(purple, black);
}

.brownContainer {
  background: radial-gradient(rgb(128, 105, 0), black);
}

.greyContainer {
  background: radial-gradient(grey, black);
}

.hstack {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.Listwrapper {
  width: 100%;
  height: 100vw;
}

.resetGameButton {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 20px;
  background-color: red;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: inset 0 0 10px white;
}

.halfContainer {
  width: 100%;
  border: 1px solid black;
  color: white;
  display: flex;
  justify-content: start;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.halfContainer.bottom {
  background-color: rgb(20, 23, 20);
  padding-bottom: 20px;
}
.halfContainer.top {
  background-color: rgb(13, 17, 19);
  height: auto;
}
.halfContainer h3 {
  z-index: 14;
  color: white;
  width: 100%;
}
.halfContainer .catchedPokemonContaier {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow-y: scroll;
  max-height: 40vh;
}
.halfContainer .catchedPokemonContaier .pokemonContaier {
  width: 140px;
  height: 100px;
  border-bottom: 3px solid black;
  background-color: rgb(34, 34, 34);
  position: relative;
  margin: 15px 8px;
  border-radius: 10px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier.isMember {
  background-color: rgb(17, 50, 12);
}
.halfContainer .catchedPokemonContaier .pokemonContaier p {
  font-size: 0.8em;
}
.halfContainer .catchedPokemonContaier .pokemonContaier.tp {
  width: 65px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier.tp img {
  width: 70px;
  height: 70px;
  margin-top: 20px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier .addButton {
  position: absolute;
  top: 0px;
  right: 0%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 5px;
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  box-shadow: inset 0 0 10px white;
  cursor: pointer;
}
.halfContainer .catchedPokemonContaier .pokemonContaier .deleteButton {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 5px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  box-shadow: inset 0 0 10px white;
  cursor: pointer;
}
.halfContainer .catchedPokemonContaier .pokemonContaier .movedownButton {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  padding: 5px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  box-shadow: inset 0 0 10px white;
  color: white;
  cursor: pointer;
}
.halfContainer .catchedPokemonContaier .pokemonContaier img {
  width: 80px;
  height: 80px;
  margin-top: 25px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier p {
  margin-top: -5px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier .infobox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: -10px;
}
.halfContainer .catchedPokemonContaier .pokemonContaier .infobox p {
  background-color: black;
  padding: 4px;
  border-radius: 10px;
  margin: 5px;
  box-shadow: inset 0 0 10px white;
  font-size: 0.8em;
}

.label {
  color: yellow;
  text-align: center;
}

.healButton {
  background-color: green;
  color: white;
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 10px white;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.shopButton {
  background-color: blue;
  color: white;
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 10px white;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}

.detailBtn {
  position: absolute;
  left: 40%;
  top: 3%;
  font-size: 0.7em;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background-color: blue;
  color: yellow;
  box-shadow: inset 0 0 5px white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sellBtn {
  position: absolute;
  left: 5px;
  top: 80%;
  font-size: 0.7em;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: inset 0 0 5px yellow;
  color: yellow;
  cursor: pointer;
}

.detailCard {
  display: none;
}
.detailCard.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.455);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.detailCard .catchDetails {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.279);
  left: 5px;
  top: 50px;
  border-radius: 10px;
}
.detailCard .catchDetails p {
  margin: 0;
  color: black;
  background-color: transparent !important;
  font-size: 0.8em;
}
.detailCard .contentContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
.detailCard .contentContainer h2 {
  width: 100%;
  color: white;
  text-align: center;
  font-size: 2em;
  margin: 0;
}
.detailCard .contentContainer img {
  width: 100%;
  max-width: 170px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.279);
  border-radius: 15px;
}
.detailCard .contentContainer .statsContainer {
  display: flex;
  margin-top: 5px;
  background-color: rgba(255, 255, 255, 0.279);
  border-radius: 15px;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.detailCard .contentContainer .move_button {
  color: white;
  background-color: rgb(52, 51, 51);
  padding: 5px;
  margin-right: 15px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}
.detailCard .contentContainer .move_button.move_active {
  background-color: green;
}
.detailCard .contentContainer p {
  color: white;
  background-color: black;
  padding: 5px;
  margin-right: 15px;
  text-align: center;
  border-radius: 8px;
}
.detailCard .detailCloseButton {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal {
  display: none;
}
.modal.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: 1200;
  color: white;
  flex-direction: column;
  text-align: center;
  justify-content: start;
}
.modal .move_active {
  margin: 15px;
  width: 90%;
  box-shadow: inset 0 0 10px white;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.repl-poke .content {
  background-color: rgb(33, 33, 33);
  margin-bottom: 25px;
}
.modal.repl-poke .replace-pokecont {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop {
  display: none;
}
.shop.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.455);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.shop .contentContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.861);
}
.shop .contentContainer .money {
  margin-top: 100px;
  color: yellow;
  font-size: 1.5em;
}
.shop .contentContainer .miniwrapper-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.shop .contentContainer .miniwrapper-shop .buttonPokeball {
  background-color: red;
  color: white;
  font-weight: bold;
  margin-right: 15px;
  width: 150px;
  height: 40px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.shop .contentContainer .miniwrapper-shop .amountlabel {
  background-color: gray;
  padding: 10px;
  font-weight: bold;
}
.shop .contentContainer .buybutton {
  background-color: blue;
  color: white;
  font-weight: bold;
  margin-top: 105px;
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
}
.shop .detailCloseButton {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gen_option_field {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px auto;
  align-items: center;
}
.gen_option_field h4 {
  color: white;
  margin-right: 20px;
}
.gen_option_field .optionfield {
  height: 30px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: inset 0 0 10px black;
}
.gen_option_field .refreshbutton {
  color: white;
  background-color: blue;
  border-radius: 10px;
  padding: 10px;
  margin-right: 15px;
  box-shadow: inset 0 0 10px white;
  font-size: 0.8em;
}

.todayPokemonListWindow {
  display: none;
}
.todayPokemonListWindow.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.455);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.todayPokemonListWindow .contentContainerForPokemon {
  margin-top: 20px;
}
.todayPokemonListWindow .contentContainerForPokemon h2 {
  color: white;
  text-align: center;
}
.todayPokemonListWindow .contentContainerForPokemon .pokemonListCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow-y: scroll;
}
.todayPokemonListWindow .contentContainerForPokemon .pokemonListCont .pokeBox {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  background-color: rgb(18, 153, 165);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  padding: 6px;
  margin: 4px;
  text-align: center;
  font-weight: bold;
  box-shadow: inset 0 0 50px white;
}
.todayPokemonListWindow .contentContainerForPokemon .pokemonListCont .pokeBox img {
  width: 50px;
  height: 50px;
}
.todayPokemonListWindow .PokelistClosebutton {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.joystick {
  background-color: rgb(4, 38, 41);
  position: fixed;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 300px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.joystick .leftrightdiv {
  display: flex;
  justify-content: space-around;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.joystick .joystickButton {
  margin: 10px;
  background-color: black;
  padding: 3px;
  color: white;
  border-radius: 8px;
  height: 50px;
  min-width: 70px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.battleInitForeground {
  background-color: black;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.battleInitForeground.active {
  animation: blinkEffekt 1s ease infinite;
}

@keyframes blinkEffekt {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.gyroButton {
  position: fixed;
  bottom: 0;
}

.gyroOutput {
  position: fixed;
  top: 50%;
  left: 20px;
  color: white;
  font-size: 0.7em;
}
