.orx-template-swiper-wrap {
  --sh-template-swiper-content-width: 1200px;
  --sh-template-swiper-pagination-gap: 8px;
  --sh-template-swiper-pagination-margin-top: 24px;
  --sh-template-swiper-pagination-mobile-margin-top: 18px;
  --sh-template-swiper-bullet-width: 8px;
  --sh-template-swiper-bullet-height: 8px;
  --sh-template-swiper-bullet-active-width: 28px;
  --sh-template-swiper-bullet-radius: 999px;
  --sh-template-swiper-bullet-color: #6EBEA5;
  --sh-template-swiper-bullet-opacity: 0.35;
  --sh-template-swiper-bullet-active-opacity: 1;
  --sh-template-swiper-bullet-transition: all 0.25s ease;

  width: calc(100vw - ((100vw - var(--sh-template-swiper-content-width)) / 2));
  max-width: none;
  margin-right: calc(-1 * ((100vw - var(--sh-template-swiper-content-width)) / 2));
  overflow: hidden;
}

.orx-template-swiper {
  width: 100%;
  overflow: visible;
}

.orx-template-swiper.swiper {
  display: block;
  position: relative;
}

.orx-template-swiper .swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  position: relative;
  width: 100%;
  align-items: stretch;
  transition-property: transform;
  z-index: 1;
}

.orx-template-swiper .swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: auto;
  transition-property: transform;
}

.orx-template-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sh-template-swiper-pagination-gap);
  margin-top: var(--sh-template-swiper-pagination-margin-top);
  position: relative;
  z-index: 2;
}

.orx-template-swiper-pagination .swiper-pagination-bullet {
  width: var(--sh-template-swiper-bullet-width);
  height: var(--sh-template-swiper-bullet-height);
  border-radius: var(--sh-template-swiper-bullet-radius);
  background: var(--sh-template-swiper-bullet-color);
  opacity: var(--sh-template-swiper-bullet-opacity);
  margin: 0 !important;
  transition: var(--sh-template-swiper-bullet-transition);
}

.orx-template-swiper-pagination .swiper-pagination-bullet-active {
  width: var(--sh-template-swiper-bullet-active-width);
  height: var(--sh-template-swiper-bullet-height);
  border-radius: var(--sh-template-swiper-bullet-radius);
  background: var(--sh-template-swiper-bullet-color);
  opacity: var(--sh-template-swiper-bullet-active-opacity);
}

@media (max-width: 1200px) {
  .orx-template-swiper-wrap {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .orx-template-swiper-pagination {
    margin-top: var(--sh-template-swiper-pagination-mobile-margin-top);
  }
}
