/* Gallery Slider - frontend styles */
.gs-gallery-wrapper {
  width: 100%;
  box-sizing: border-box;
}
.gs-swiper {
  width: 100%;
}
.gs-swiper .swiper-wrapper {
  align-items: center;
}
.gs-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gs-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gs-gallery-wrapper .swiper-button-next,
.gs-gallery-wrapper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: rgba(0, 0, 0, 0.80);
}
.gs-gallery-wrapper .swiper-button-next:after,
.gs-gallery-wrapper .swiper-button-prev:after{
    font-size: 20px;
    color: #fff;
}

.gs-gallery-wrapper .swiper-pagination {
  bottom: 10px;
}

.gs-gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gs-gallery-wrapper .swiper-pagination-bullet{
    background: #000;
    opacity: 1;
}

.gs-gallery-wrapper .swiper-pagination-bullet-active{
    background: #fff;
}

.gs-gallery-wrapper .swiper-slide{
    height: auto !important;
}