.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.swiper-btn-container {
  display: flex;
  align-items: center;
}

.swiper-pagination {
  --swiper-pagination-fraction-color: var(--color-black);
  width: 80px;
  position: static;
  font-size: 20px;
}

.slick-track {
  display: flex !important;
  justify-content: center;
}

.swiper-nav {
  margin-top: 45px;
  display: flex;
}

.swiper-nav-item {
  font-size: 1.458vw;
  font-family: 'pretendard-bold';
  color: var(--color-gray300);
  position: relative;
  cursor: pointer;
}

.swiper-nav-item._on {
  color: var(--color-black);
}

.doc-swiper-nav,
.best-swiper-nav {
  --swiper-pagination-bullet-opacity: 1 !important;
  --swiper-pagination-bullet-inactive-opacity: 1 !important;
}

.best .swiper-nav-item._on::after,
.doc-swiper-nav .swiper-nav-item._on::after,
.doc-swiper-nav .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  background-color: var(--color-orange500);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

@media (min-width: 344px) and (max-width: 767px) {
  .swiper-btn-container {
    justify-content: center;
  }

  .swiper-btn-container button {
    width: 25px;
    height: 25px;
  }

  .swiper-btn-container button img {
    width: 100%;
    height: 100%;
  }

}