.product-swiper.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .product-swiper.swiper-container {
    min-height: 440px;
    overflow: hidden;
  }
}
.product-swiper.swiper-container-wrapper {
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  height: 440px;
  max-width: 100%;
}
@media (min-width: 480px) {
  .product-swiper.swiper-container-wrapper {
    overflow: hidden;
    flex-flow: row nowrap;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.product-swiper .swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
  min-width: 100%;
  background-repeat: no-repeat;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.product-swiper .swiper-slide-active .description,
.product-swiper .swiper-slide-active .title {
  opacity: 1;
}
.product-swiper .swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.product-swiper .swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.product-swiper .gallery-top {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-swiper .gallery-top .swiper-slide {
  background-size: contain;
}

.product-swiper .gallery-top .swiper-wrapper {
  min-height: 200px;
}
@media (min-width: 520px) {
  .product-swiper .gallery-top {
    width: 80%;
    height: 100%;
    margin-right: 10px;
  }
}
.product-swiper .gallery-thumbs {
  width: 100%;
  height: 25%;
  padding-top: 10px;
}
@media (max-width: 479px) {
  .product-swiper .gallery-thumbs {
    width: 25%;
    height: 25%;
    padding-top: 10px;
  }
}
@media (min-width: 480px) {
  .product-swiper .gallery-thumbs {
    width: 20%;
    height: 100%;
    padding: 0;
  }
}
.product-swiper .gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  .product-swiper .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.product-swiper .gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  opacity: 0.25;
  cursor: pointer;
}
@media (min-width: 480px) {
  .product-swiper .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.product-swiper .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
