<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
  background-image: none;
}

.swiper_attached {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  height: 48px;
}
.swiper-pagination {
  position: relative;
  display: flex;
  gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  position: relative;
  top: unset;
  margin-top: 0;
  transition: opacity 0.4s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-pagination-bullet {
  border: none;
  opacity: 1;
  transition: 0.3s;
  background-image: url(../image/icon_slide.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  background-color: transparent;
}

.swiper-pagination-bullet-active {
  background-image: url(../image/icon_slide_active.svg);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
}

.swiper-button-prev {
  transform: scaleX(1);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none;
}
</pre></body></html>