.breadcrumbs {

ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  list-style: none;
  border-radius: 0.375rem;
  /* Display list items side by side */
  li {
    display: inline;
    font-size: 18px;
  }
  /* Add a slash symbol (/) before each list item */
  li + li:before {
    padding: 5px;
    color: black;
    content: '/\00a0';
  }

  li a {
    text-decoration: none;
    padding: 5px;
  }
  /* Add color on mouse-over */
  li a:hover {
    color: #01447e;
  }
}

} // Breadcrumb

.breadcrumb-item {

a {
  @extend .text-info;
  font-size: 12px;
  font-weight: 500;

  &:not([href]):not([tabindex]) {
    pointer-events: none;
  }
}

}