  /***
 * Colors
 ***/
/**
 * Typography
 **/
/*
 * We can use the font weight fot the bold styling example below
 * .test-font { font-family: $font-default; } regular
 * .test-font-bold { font-family: $font-default; font-weight: $font-weight-bold; }
 * @see: _typography.scss
*/
/**
 * Global elements
 **/
/*
 * Sizing/Spacing
 */
/**
 * Forms
 */
/*
 * Bootstrap
 */
/
 * Mappings
 ****/
/*
 * IMPORTANT:
 *   - This file should *only contain* variables not considered UN style guide *
 */
/**
  Help theming for rtl languages.
*/
/* background opacity */
/*
 * This handles indentation for the depth of child levels for accordion
 * TODO: improve this implementation, overly complex due to previous design
 */
/*
 * Reset the button appearance to make it look like regular text.
 *
 * The padding can be optionally passed, as it is usually overriden.
 *
 * @param {Number} $padding - The padding to apply to the button.
 */
.pattern-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pattern-breadcrumb ol li {
  margin: 0;
  padding-inline-start: 1rem;
}

.pattern-breadcrumb ol li::before {
  float: left;
  padding-inline-start: 0.5rem;
  content: "/";
}

[dir=rtl] .pattern-breadcrumb ol li::before {
  float: none;
  content: "";
}

[dir=rtl] .pattern-breadcrumb ol li::after {
  float: right;
  content: "/";
}

.pattern-breadcrumb ol li:first-child {
  padding-inline-start: 0;
}

.pattern-breadcrumb ol li:first-child::before {
  content: "";
}

[dir=rtl] .pattern-breadcrumb ol li:first-child::after {
  content: "";
}

.pattern-breadcrumb ol li:first-child a,
.pattern-breadcrumb ol li:first-child span {
  padding-inline-start: 0;
}

.pattern-breadcrumb ol li:not(:first-child):not(:last-child) {
  display: none;
}

@media (min-width: 576px) {
  .pattern-breadcrumb ol li:not(:first-child):not(:last-child) {
    display: inline;
  }
}
.pattern-breadcrumb ol li a,
.pattern-breadcrumb ol li span {
  padding-inline-start: 0.5rem;
  font-size: 0.875rem;
}

.pattern-breadcrumb ol li a {
  color: #0a5a82;
  text-decoration: none;
}

.pattern-breadcrumb ol li a:hover {
  text-decoration: underline;
}

.pattern-breadcrumb ol li a:hover {
  color: #0a5a82;
  font-weight: normal;
}
