:root {
  --progress: 0;
}

.main_sl {
  position: relative;
}
.main_sl .swiper-button-next {
  right: 2.5%;
  background-size: 40% auto;
}
.main_sl .swiper-button-prev {
  left: 2.5%;
  background-size: 40% auto;
}
.main_sl .swiper-pagination {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  width: 2.5rem;
  left: auto;
  right: 1.8rem;
  bottom: 1.1rem;
  padding: 0.2rem 0.2rem 0.25rem;
  border-radius: 10rem;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(11, 11, 11, 0.3921568627);
}
.main_sl .swiper-pagination .swiper-pagination-current {
  font-size: 14px;
  color: inherit;
}
.main_sl .swiper-pagination .swiper-pagination-total {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8196078431);
}

.autoplay-progress {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: scale(1.05) translateX(-50%);
  filter: drop-shadow(4px 4px 4px rgba(11, 11, 11, 0.2509803922));
}
.autoplay-progress svg {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 3px;
  stroke: rgba(255, 255, 255, 0.768627451);
  fill: transparent;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.autoplay-progress img {
  opacity: 0.8;
  width: 37%;
}

@media (max-width: 768px) {
  .main_sl .swiper-button-next,
  .main_sl .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
  }
  .main_sl .swiper-pagination {
    opacity: 1;
    visibility: visible;
    display: inline-block;
  }
  .main_sl .autoplay-progress {
    left: auto;
    right: 1rem;
    bottom: 3rem;
    width: 4rem;
    height: 4rem;
    transform: scale(1) translateX(0%);
    filter: drop-shadow(4px 4px 4px rgba(11, 11, 11, 0.25));
  }
}