/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/*
 * Every style defined here must be mirrored with `writing-mode-horizontal-tb` mixin.
   Because writing-mode can be defined on 2 levels: a) item, b) text block or interaction;
     so if there's a horizontal block inside vertical item, vertical styles should *not* be used for it.
 */
/* Do not edit */
.breadcrumbs {
  background-color: #f3f1ef;
  font-style: italic;
  font-weight: normal;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  padding: 8px !important;
  margin: 0;
  list-style: none;
}
.breadcrumbs li.breadcrumb {
  display: inline-block;
  position: relative;
  text-align: left;
  float: none;
}
.breadcrumbs li.breadcrumb:not(:first-child):before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "tao" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e60f";
  padding: 0 4px 0 9px;
}
.breadcrumbs li.breadcrumb ul {
  background-color: #f3f1ef;
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  padding: 0 1rem 1rem 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  border-top: none;
}
.breadcrumbs li.breadcrumb ul li {
  white-space: nowrap;
  padding: 2px 0;
  text-align: left;
  float: none;
}
.breadcrumbs li.breadcrumb ul li:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "tao" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e60f";
  padding: 0 4px 0 8px;
}
.breadcrumbs li.breadcrumb:hover ul {
  display: block;
}
/*# sourceMappingURL=breadcrumbs.css.map */