/* bootstrap breadcrumbs*/
.breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: 32px;
  & > li {
    display: inline-block;
    padding: 0;
    float: none;
    a:not(.btn){
      color: $lightColor;
      &:hover{
        color: $darkFontColor;
      }
    }
  }

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

.breadcrumb > .active {
  opacity: 0.9;
  color: $lightColor;
}

.breadcrumb-item + .breadcrumb-item::before {
  padding: 0 5px;
  color: $lightColor;
}