/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.breadcrumbs {
  position: relative;
  margin-bottom: -15px;
}
.breadcrumbs nav {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.breadcrumbs nav ol {
  list-style: none;
}
.breadcrumbs nav ol li {
  display: inline-block;
}
.breadcrumbs nav ol li:after {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  content: "\e016";
  color: #fff;
  font-size: 0.78rem;
  margin: 0 0.25rem;
}
.breadcrumbs nav ol li:last-child:after {
  content: none;
}
.breadcrumbs nav ol li a, .breadcrumbs nav ol li span {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs__before {
  margin-top: -2rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  position: relative;
  z-index: 4;
}
.breadcrumbs__before .container {
  padding: 0;
}