.SwiperContainer {
  background-color: #f2f2f2;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
}

#mainSwiper {
  height: 80%;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

#stripSwiper {
  height: 20%;
  width: 90%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

#stripSwiper .swiper-wrapper {
  align-items: center;
  padding-left: 5px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgb(70, 70, 70);
  color: white;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-zoom-container {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide .swiper-zoom-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#stripSwiper .swiper-slide {
  /* width: 25%; */
  height: 80%;
  opacity: 0.4;
  overflow: hidden;
  border: 2px solid #f2f2f2;
}
#stripSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #ffa500;
  transform: scale(1.05);
}
#stripSwiper .swiper-slide-thumb-active:hover {
  cursor: pointer;
  filter: brightness(1.05);
}
.ZoomInfo {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 10;
}

:root {
  /* Swiper built-in pagination variables */
  --swiper-pagination-bullet-size: 14px; /* bigger than default 8px */
  --swiper-pagination-bullet-inactive-color: transparent; /* no fill for inactive */
  --swiper-pagination-bullet-inactive-opacity: 1; /* make sure they stay visible */
  --swiper-pagination-color: #ffa500; /* active bullet fill color */
}

/* Inactive bullets */
.swiper-pagination-bullet {
  border: 1px solid #ffa500; /* thin border */
  background: transparent; /* no fill */
  opacity: 1; /* override fading */
}
.swiper-pagination-bullet:hover {
  background: #ffa50033;
}
/* Active bullet */
.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color); /* filled */
  border-color: var(--swiper-pagination-color);
}
