.breadcrumb-bar {
    background-color: #fafafa;
    border-bottom: 1px solid #efefef;
}

.breadcrumb {
    padding: 15px 0;
    margin-bottom: 0;
}

.breadcrumb #breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    font-size: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    font-size: 14px;
    transition: color 200ms ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb .current-item {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb .sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    user-select: none;
    opacity: 0.4;
    position: relative;
}

.breadcrumb .sep::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
    color: #888;
}
