@keyframes animate-line {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: -10% 50%;
  }
  51% {
    background-position: 150% 50%;
  }
  100% {
    background-position: -10% 50%;
  }
}
.bb-container-swiper-pagination-wrapper {
  gap: 8px;
  position: relative;
}
.bb-container-swiper-pagination-wrapper .bullet {
  transition: all 0.3s cubic-bezier(0.28, 0, 0, 1) 0s;
  position: relative;
  height: 8px;
  border-radius: 50px;
  width: 8px;
  background: var(--bacbobinage-white);
  cursor: pointer;
  opacity: 0.7;
  z-index: 5;
}
.bb-container-swiper-pagination-wrapper .bullet.active {
  width: 60px;
  background: var(--bacbobinage-secondary);
  background: linear-gradient(90deg, var(--bacbobinage-secondary) 33%, #ffaf89 50%, var(--bacbobinage-secondary) 67%);
  background-size: 400% 400%;
  animation: animate-line 2s infinite;
  animation-timing-function: linear;
  opacity: 1;
  pointer-events: none;
}
.bb-container-swiper-pagination-wrapper .bullet:after {
  transition: all 0.2s cubic-bezier(0.28, 0, 0, 1) 0s;
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  transform: scale(1);
  transform-origin: center;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background: var(--bacbobinage-white);
  opacity: 0;
  z-index: -1;
}
.bb-container-swiper-pagination-wrapper .bullet:hover:after {
  transform: scale(1.8);
  opacity: 0.15;
}

/*# sourceMappingURL=container-swiper-pagination.css.map */
