.#{$breadcrumb-prefix-cls} {
  padding: $breadcrumb-padding-y $breadcrumb-padding-x;
  margin-bottom: 0px;
  list-style: none;
  /*background-color: $breadcrumb-bg;
  @include border-radius($border-radius);*/
  @include clearfix;

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

    a {
      color: inherit;
    }
    //+ .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;
    }

    &:last-child {
      color: $gray-dark;
    }

  }

  &__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;
  }
}



