/*
 * Colors: Base
\* -------------------------------------------------------------------------- */
/*
 * Colors: System color
\* -------------------------------------------------------------------------- */
/*
 * Colors: Overrides
\* -------------------------------------------------------------------------- */
/*
 * Colors: ADN-club
\* -------------------------------------------------------------------------- */
/** System monospace */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/* -- Not on redesign -- */
/* 1025 is used instead of 1024 because touch devices design is not specified */
/* Scrollbars customization */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $color - Final color
 * @return {String} URL encoded svg
 */
/* stylelint-disable function-parentheses-newline-inside */
/* stylelint-enable function-parentheses-newline-inside */
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/* Mixin to use if touch devices design is specified */
/** Vertical scrollbar with custom color & size
*     @include ad-scrollbars(color, size);
*/
/** Horizontal scrollbar with custom color & size
*     @include ad-scrollbars();
*     @include ad-scrollbars-horizontal(color, size);
*/
.slider-navigation {
  display: block;
  margin: auto;
}
.slider-navigation__wrapper {
  overflow-y: auto;
  /* W3C Working Draft */
  scrollbar-color: rgb(158, 158, 158) transparent; /* stylelint-disable-line property-no-unknown */
  /* Internet Explorer */
  scrollbar-face-color: rgb(158, 158, 158);
  scrollbar-track-color: transparent;
  /* Firefox */
  scrollbar-width: thin;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  overflow-x: auto;
  overflow-y: hidden;
}
.slider-navigation__wrapper::-webkit-scrollbar-thumb {
  background-color: rgb(158, 158, 158);
  border-radius: 1.5px;
}
.slider-navigation__wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}
.slider-navigation__wrapper::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.slider-navigation__wrapper::-webkit-scrollbar:horizontal {
  width: 1px;
  height: 1px;
}
.slider-navigation__wrapper::-webkit-scrollbar-thumb:horizontal {
  background-color: rgb(0, 0, 0);
  border-radius: 1.5px;
}
.slider-navigation__wrapper::-webkit-scrollbar-track:horizontal {
  background-color: rgb(245, 245, 245);
}
@supports (scrollbar-width: auto) {
  .slider-navigation__wrapper {
    scrollbar-color: auto; /* Chrome +121 */
  }
}
@supports (scrollbar-width: auto) {
  .slider-navigation__wrapper {
    scrollbar-width: auto; /* Chrome +121 */
  }
}
.slider-navigation__wrapper::-webkit-scrollbar:horizontal {
  width: 1px;
  height: 1px;
}
.slider-navigation__wrapper::-webkit-scrollbar-thumb:horizontal {
  background-color: rgb(224, 224, 224);
  border-radius: 1.5px;
}
.slider-navigation__wrapper::-webkit-scrollbar-track:horizontal {
  background-color: rgb(245, 245, 245);
}
.slider-navigation-item {
  padding: 0.75rem 1rem;
  white-space: nowrap;
  /* stylelint-disable-next-line selector-class-pattern */
}
.slider-navigation-item:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

/*# sourceMappingURL=sliderNavigation.css.map*/