/* breadcrumb */
.breadcrumb
{
    padding: 10px 0;
    background-color: var(--color-neutral-light-95);
    border-radius: 4px;
}

.breadcrumb i
{
  font-size: var(--font-size-h4);
}

.breadcrumb > li.breadcrumb-item
{
  text-shadow: 0 1px 0 white;
}

.breadcrumb > li.breadcrumb-item:after
{
    top: 7px;
    right: 0;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--color-neutral-dark-00);
    border-bottom: 2px solid var(--color-neutral-dark-00);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.breadcrumb > li:last-child::after
{
    border-bottom: 0;
    border-right: 0;
}
