.swiper-pagination {
  bottom: 0;
  transform: translate(0, 50%) !important;
}
.special-pagination-position .swiper-pagination {
  bottom: 6px;
}
@media (max-width: var(--screen-sm-max)) {
  .swiper-pagination {
    bottom: unset;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  padding: 4px;
  background: #ffffff !important;
  border: solid 1px var(--gray-300);
  opacity: 1 !important;
}
.rtl .swiper-pagination .swiper-pagination-bullet {
  margin-right: 0;
  margin-left: 4px;
}
.swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.rtl .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: auto;
  margin-left: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
