/* bootstrap breadcrumbs*/
.breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  text-transform: uppercase;
  color: inherit;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  :hover {
    text-decoration: none;
  }
  & > li {
    display: inline-block;
    padding: 0;
    float: none;
  }

  .text-center & {
    justify-content: center;
  }
  @media (min-width: 992px) {
    .text-lg-right & {
      justify-content: flex-end;
    }
  }
}

.breadcrumb > .active {
  color: inherit;
  opacity: 0.9;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: inherit;
  padding: 0 11px;
}