:root {
  --bs-link-color-rgb: #293033;
  --bs-link-hover-color-rgb: #212629;
}

/*
// Add your own theme-colors.
$theme-colors: (
  "primary": $primary,
  "secondary": $secondary,
  "light": $white-smoke-light
  //"highlight": $white,
);

$theme-colors: map-remove($theme-colors, "dark", "light");
*/
/**
 * Helper function for downsize mixin.
 */
/**
 * Downsize a CSS property using the viewport to affect calc().
 *
 * @param {string} $property: The property to be affected.
 * @param {string|list} $min: The min value / values.
 * @param {string|list} $max: The max value / values.
 * @param {string} $viewport: The biggest viewport, which the property must be calculated. NOTE: we use media-breakpoint-down here!
 * @param {boolean} $default: True if the default property must be set, regardless of the viewport size.
 * @param {list} $min-limit: A list containing the min viewport and the min value.
 */
.swiper.swiper-horizontal {
  --swiper-pagination-bullet-horizontal-gap: 8px;
}

.swiper {
  padding-bottom: 48px;
  --paginationWidth: 0;
}
.swiper .swiper-pagination {
  bottom: 10px;
  font-family: AOKBuenosAiresText;
  font-weight: 600;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #6d767c;
  opacity: 1;
  border-radius: 9999px;
  transition: width 0.25s ease;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #18ab42;
  width: 2rem;
  transition: width 0.25s ease;
}
.swiper .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
  background-color: #18ab42;
  scale: 1.33;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: auto;
  bottom: 0;
  color: #6d767c;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  content: "";
}
.swiper .swiper-button-prev svg,
.swiper .swiper-button-next svg {
  width: 1em;
  height: 1em;
}
.swiper .swiper-button-prev {
  left: calc(50% - 48px);
  transform: translateX(-50%);
}
.swiper .swiper-button-next {
  left: calc(50% + 48px);
  transform: translateX(-50%);
}
.swiper[data-pill-pagination] .swiper-button-prev,
.swiper[data-pill-pagination] .swiper-button-next {
  bottom: 2px;
}
.swiper[data-pill-pagination] .swiper-button-prev {
  left: calc(50% - 20px - var(--paginationWidth));
  transform: translateX(-50%);
}
.swiper[data-pill-pagination] .swiper-button-next {
  left: calc(50% + 20px + var(--paginationWidth));
  transform: translateX(-50%);
}
.swiper .swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}
