.dashlifter-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 2px;
    margin: 0;
    z-index: 0;
    font-size: 13px;
    list-style: none;
    width: max-content;
    white-space: nowrap;
}

.dashlifter-breadcrumb-item+.dashlifter-breadcrumb-item {
    padding-left: 0.5rem;
}

.dashlifter-breadcrumb-item {
    display: flex;
    color: #757474;
}

.dashlifter-breadcrumb-item+.dashlifter-breadcrumb-item::before {
    display: inline-flex;
    align-items: center;
    padding-right: 0.5rem;
    color: #757474;
    content: "-";
}

.dashlifter-breadcrumb-item a:after {
    content: "";
    background-color: #002db3;
    width: 0;
    height: 2px;
    position: absolute;
    top: auto;
    bottom: -3px;
    right: 0;
    transition: width 350ms ease-in-out;
}

.dashlifter-breadcrumb-item a {
    position: relative;
    display: inline-flex;
    z-index: 1;
    margin: 0.25rem 0;
    color: #757474;
    font-weight: 500;
}

.dashlifter-breadcrumb-item a:hover {
    color: #002db3;
    text-decoration: none;
}

.dashlifter-breadcrumb-item a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.dashlifter-breadcrumb-item:last-child {
    pointer-events: none;
    cursor: auto;
    opacity: 0.7;
}