html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.swiper-container {
  width: 100%;
}

.gallery-top {
  width: 100%;
      margin-top: 50px;
}

.gallery-top .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-top img {
  width: 90%;
  height: auto;
  transition: width 0.3s ease;
  cursor: zoom-in;
}

.gallery-top img.expanded {
  width: 100%;
  cursor: zoom-out;
}

/* Thumbnail styles */
.gallery-thumbs {
  margin-top: 10px;
  padding: 10px 0;
  box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
  width: 20%;
  opacity: 0.4;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: auto;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: black;
}
.swiper-version {
position: fixed;
z-index: 10;
background: black;
left: 0;
right: 0;
width: fit-content;
margin: auto;
padding: 20px;
top: 5px;
}
.swiper-version p {
color: white;
}
span.current {
    text-decoration: underline;
}
.sub {
    font-size: 10px;
    line-height: 9px;
}