.swiper {
  height: 100%;
  width: 100%;
}
.swiper .navigation {
  margin-block-start: var(--size-40);
}
.swiper .swiper-control-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  position: initial;
  margin-block-end: var(--size-8);
}
.swiper .swiper-pagination.swiper-pagination-lock {
  display: none !important;
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background-color: var(--bc-swiper-bullet-background-default);
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: var(--size-12);
  height: var(--size-12);
  background-color: var(--bc-swiper-bullet-background-selected);
  box-shadow: var(--size-0) var(--size-0) var(--size-0) var(--size-2) var(--bc-swiper-bullet-border-selected);
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:not(.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active):hover {
  background-color: var(--bc-swiper-bullet-background-hover);
  box-shadow: var(--size-0) var(--size-0) var(--size-0) var(--size-2) var(--bc-swiper-bullet-border-hover);
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:not(.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active):active {
  background-color: var(--bc-swiper-bullet-background-active);
  box-shadow: var(--size-0) var(--size-0) var(--size-0) var(--size-2) var(--bc-swiper-bullet-border-active);
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus-visible {
  background-color: var(--bc-swiper-bullet-background-focus);
  box-shadow: var(--size-0) var(--size-0) var(--size-0) var(--size-2) var(--bc-swiper-bullet-border-focus);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  pointer-events: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: var(--size-56);
  height: var(--size-56);
  position: initial;
  margin: var(--size-0);
  color: var(--bc-swiper-button-foreground-default);
  border: var(--size-1) solid var(--bc-swiper-button-border-default);
  border-radius: var(--size-56);
  background: var(--bc-swiper-button-background-default);
  gap: var(--size-0);
  box-shadow: 0 1px 3px 0 rgba(41, 0, 100, 0.3);
  transition: var(--bc-transition-all-medium-cubic);
}
.swiper .swiper-button-next.swiper-button-disabled,
.swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
  filter: grayscale(1);
}
.swiper .swiper-button-next.swiper-button-lock,
.swiper .swiper-button-prev.swiper-button-lock {
  display: none !important;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  content: "";
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: var(--bc-transition-all-medium-cubic);
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  color: var(--bc-swiper-button-foreground-hover);
  border-color: var(--bc-swiper-button-border-hover);
  background: var(--bc-swiper-button-background-hover);
}
.swiper .swiper-button-next:hover:after,
.swiper .swiper-button-prev:hover:after {
  background-color: var(--bc-color-orange-800);
}
.swiper .swiper-button-next:active,
.swiper .swiper-button-prev:active {
  color: var(--bc-swiper-button-foreground-active);
  border-color: var(--bc-swiper-button-border-active);
  background: var(--bc-swiper-button-background-active);
}
.swiper .swiper-button-next:focus-visible,
.swiper .swiper-button-prev:focus-visible {
  color: var(--bc-swiper-button-foreground-focus);
  border-color: var(--bc-swiper-button-border-focus);
  background: var(--bc-swiper-button-background-focus);
  outline: none;
}
.swiper .swiper-button-next.swiper-button-dark,
.swiper .swiper-button-prev.swiper-button-dark {
  color: var(--bc-swiper-button-foreground-dark-default);
  border: var(--size-1) solid var(--bc-swiper-button-border-dark-default);
  background: var(--bc-swiper-button-background-dark-default);
}
.swiper .swiper-button-next.swiper-button-dark:hover,
.swiper .swiper-button-prev.swiper-button-dark:hover {
  color: var(--bc-swiper-button-foreground-dark-hover);
  border-color: var(--bc-swiper-button-border-dark-hover);
  background: var(--bc-swiper-button-background-dark-hover);
}
.swiper .swiper-button-next.swiper-button-dark:hover:after,
.swiper .swiper-button-prev.swiper-button-dark:hover:after {
  background-color: var(--bc-color-orange-200);
}
.swiper .swiper-button-next.swiper-button-dark:active,
.swiper .swiper-button-prev.swiper-button-dark:active {
  color: var(--bc-swiper-button-foreground-dark-active);
  border-color: var(--bc-swiper-button-border-dark-active);
  background: var(--bc-swiper-button-background-dark-active);
}
.swiper .swiper-button-next.swiper-button-dark:active::after,
.swiper .swiper-button-prev.swiper-button-dark:active::after {
  background-color: var(--bc-color-orange-700);
}
.swiper .swiper-button-next.swiper-button-dark:focus-visible,
.swiper .swiper-button-prev.swiper-button-dark:focus-visible {
  color: var(--bc-swiper-button-foreground-dark-focus);
  border-color: var(--bc-swiper-button-border-dark-focus);
  background: var(--bc-swiper-button-background-dark-focus);
  outline: none;
}
.swiper .swiper-button-next {
  margin-inline-start: var(--size-56);
}
.swiper .swiper-button-next:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevron-right.svg");
          mask-image: url("../../../assets/img/icons/chevron-right.svg");
}
.swiper .swiper-button-prev {
  margin-inline-end: var(--size-56);
}
.swiper .swiper-button-prev:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevron-left.svg");
          mask-image: url("../../../assets/img/icons/chevron-left.svg");
}/*# sourceMappingURL=swiper.css.map */