.swiper {
  --swiper-pagination-bullet-width: 20px;
  --swiper-pagination-bullet-height: 20px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-theme-color: #62339D;
}

.swiper-outter {
  --swiper-navigation-sides-offset: 15px;
  position: relative;
}

@media (min-width: 992px) {
  .swiper-outter {
    --swiper-navigation-sides-offset: -39px;
  }
}

.swiper-outter:hover [class*=swiper-button] {
  opacity: 1;
}

.swiper-outter:hover .swiper-button-prev {
  transform: translateX(0);
  z-index: 1;
}

.swiper-outter:hover .swiper-button-next {
  transform: translateX(0);
  z-index: 1;
}

.swiper.swiper-banner-home {
  padding: 10px;
  border-radius: 1rem;
}

.swiper.swiper-banner-home .swiper-wrapper .swiper-slide img {
  box-shadow: 0px 1px 2px 0px #0000000F, 0px 1px 3px 0px #E6DAFA40, 0px -2px 8px 0px #E6DAFA40;
  border-radius: 1rem;
}

@media (max-width: 991px) {
  .swiper.swiper-banner-home ~ .swiper-button-next,
  .swiper.swiper-banner-home ~ .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next, .swiper-button-prev {
  background: linear-gradient(100.95deg, #E0B16B -6.1%, #C99135 32.64%, #E3B674 104.91%);
  color: #FFF;
  font-weight: 800;
  padding: 12px;
  border-radius: 1rem;
  font-size: 16px;
  width: 48px;
  height: 48px;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 8px 16px 0px #00000029;
  z-index: 10;
}

@media (min-width: 992px) {
  .swiper-button-next, .swiper-button-prev {
    z-index: -1;
    opacity: 0;
  }
}

.swiper-button-next::after, .swiper-button-prev::after {
  content: '';
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.75 19.5L8.25 12L15.75 4.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media (min-width: 992px) {
  .swiper-button-prev {
    transform: translateX(150px);
  }
}

.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.25 4.5L15.75 12L8.25 19.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media (min-width: 992px) {
  .swiper-button-next {
    transform: translateX(-150px);
  }
}

.swiper-button-disabled {
  pointer-events: unset !important;
}

.swiper-pagination-bullet {
  position: relative;
  border: 1px solid transparent;
  transition: border .2s ease;
}

.swiper-pagination-bullet::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--swiper-theme-color);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity, background-color .2s ease;
}

.swiper-pagination-bullet-active {
  background-color: transparent;
  border-color: var(--swiper-theme-color);
  border-radius: 50%;
}

.swiper-pagination-bullet-active:before {
  opacity: 0;
}
