.#{$breadcrumb-prefix-cls} {
  @include clearfix;
  padding: $breadcrumb-padding-y $breadcrumb-padding-x;
  margin-bottom: 0;
  list-style: none;

  &__item {
    float: left;
    font-size: $font-size-sm;
    color: $breadcrumb-text-color;
    // The separator between breadcrumbs (by default, a forward-slash: "/")
    .#{$icon-prefix} {
      font-size: inherit;
      line-height: 1;
      vertical-align: middle;

      // & + span {
      //   margin-left: $breadcrumb-icon-text-spacer;
      // }
    }

    a {
      color: $gray-light-25;
    }
    //+ .breadcrumb__item::before {
    //  display: inline-block; // Suppress underlining of the separator in modern browsers
    //  padding-right: $breadcrumb__item-padding;
    //  padding-left: $breadcrumb__item-padding;
    //  color: $breadcrumb-divider-color;
    //  content: "#{$breadcrumb-divider}";
    //}

    // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
    // without `<ul>`s. The `::before` pseudo-element generates an element
    // *within* the .breadcrumb__item and thereby inherits the `text-decoration`.
    //
    // To trick IE into suppressing the underline, we give the pseudo-element an
    // underline and then immediately remove it.
    //+ .breadcrumb__item:hover::before {
    //  text-decoration: underline;
    //}
    //+ .breadcrumb__item:hover::before {
    //  text-decoration: none;
    //}

    &:hover a {
      color: $breadcrumb-hover-color;
    }

    &.active {
      color: $breadcrumb-active-color;
    }
  }

  &__separator {
    display: inline-block; // Suppress underlining of the separator in modern browsers
    padding-right: $breadcrumb-item-padding;
    padding-left: $breadcrumb-item-padding;
    color: $breadcrumb-divider-color;
  }

  &__item:last-child .#{$breadcrumb-prefix-cls}__separator {
    display: none;
  }
}



