.poke-gallery {
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
  width: 100%
  display:inline-block;
}

.poke-gallery-div {
  width:100%;
  text-align:center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .poke-gallery {
    width: 50%;
    box-sizing: border-box;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}

.modal-nav {
  font-size: 2em;
  position: absolute;
  top: 50%;
  width: 5%;
  cursor: pointer;
  color: white;
  font-weight: bold;
  user-select: none;
  transition: 0.3s;
}

.modal-nav:hover {
  color: #bbb;
}

#modalPrev {
  left: 0;
}

#modalNext {
  right: 0;
}

.modal-prev-img,
.modal-next-img {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  cursor: pointer;
  color: white;
  font-weight: bold;
  user-select: none;
  transition: 0.3s;
}

.modal-prev-img:hover,
.modal-next-img:hover {
  color: #bbb;
}

.modal-prev-img {
  left: -5%; /* Adjust the value as needed */
}

.modal-next-img {
  right: -5%; /* Adjust the value as needed */
}

@media only screen and (max-width: 767px) {
  .modal-prev-img,
  .modal-next-img {
    width: 10%; /* Adjust the width for smaller screens */
  }
}

.alternate-frames {
  color: black;
}
.tokens {
  color: black;
}