.alm-zoom-image-slider {
  width: 100%;
}

.alm-zoom-swiper {
  position: relative;
  width: 100%;
  /* Height is controlled by Bricks control "Slider height". */
  overflow: hidden;
  max-height: 100%;
}

.alm-zoom-swiper .swiper-wrapper {
  height: 100%;
  align-items: stretch;
  max-height: 100%;
  justify-content: flex-start;
}

.alm-zoom-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-height: 100%;
  min-height: 0;
  /* Allows flex children to shrink within fixed height */
}

.alm-zoom-slide-link {
  display: flex;
  height: 100%;
  width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 0;
  min-height: 0;
  /* Allows image to shrink instead of overflowing */
  overflow: hidden;
}

.alm-zoom-slide-image {
  height: 100%;
  width: auto;
  max-width: none;
  max-height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
}

/* Arrows */
.alm-zoom-swiper .swiper-button-prev,
.alm-zoom-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  margin-top: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.alm-zoom-swiper .swiper-button-prev {
  left: 12px;
}

.alm-zoom-swiper .swiper-button-next {
  right: 12px;
}

.alm-zoom-swiper .swiper-button-prev::after,
.alm-zoom-swiper .swiper-button-next::after {
  content: "";
  font-size: 20px;
  color: #111;
  width: 20px;
  height: 20px;
}

.alm-zoom-swiper .swiper-button-prev::after {
  transform: scale(-1);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') center center no-repeat;
  background-size: contain;
}

.alm-zoom-swiper .swiper-button-next::after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40" focusable="false"><path d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z"></path></svg>') center center no-repeat;
  background-size: contain;
}

/* Fraction pagination: "1 / 3" */
.alm-zoom-swiper .swiper-pagination {
  position: absolute;
  left: 125px;
  bottom: 0;
  z-index: 10;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 1);
  border-radius: 8px 8px 0px 0px;
  color: rgba(0,0,0,.6);
  font-size: 1.125rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.alm-zoom-swiper .swiper-pagination-fraction {
  width: auto;
  font-weight: 600;
}

.alm-zoom-swiper .swiper-pagination-current,
.alm-zoom-swiper .swiper-pagination-total {
  color: inherit;
}