/**
IF YOU NEED TO IMPORT OTHER MODULES
YOU MAY NEED TO COPY THEIR NODE_MODULE
SCSS CONTENTS INTO THIS FILE
 */
.swiper .swiper-wrapper {
  align-items: center;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}
.swiper-button-prev:hover, .swiper-button-prev:focus, .swiper-button-next:hover, .swiper-button-next:focus {
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.5));
}
.swiper-button-prev svg, .swiper-button-next svg {
  width: 3rem;
  height: 3rem;
}

.swiper-button-prev {
  left: 0;
}
@media (min-width: 768px) {
  .swiper-button-prev {
    transform: translateX(-100%);
  }
}

.swiper-button-next {
  right: 0;
}
@media (min-width: 768px) {
  .swiper-button-next {
    transform: translateX(100%);
  }
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  gap: 5px;
  margin-top: 1rem;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  flex: 0 0 25px;
  height: 3px;
  background-color: var(--bs-gray-300);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
}
.swiper-pagination .swiper-pagination-bullet:hover {
  cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  height: 22px;
  position: relative;
  width: 100%;
  z-index: 2;
  top: -9px;
}

.swiper-notification {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.swiper-notification:not(caption) {
  position: absolute !important;
}
