
/*
    BREADCRUMB komponenta
*/

.nb-breadcrumb {
    color: var(--nb-breadcrumb-color);
}
.nb-breadcrumb-item {
    font-family: var(--nb-breadcrumb-font-family);
    font-size: var(--nb-breadcrumb-font-size);
    font-weight: var(--nb-breadcrumb-font-weight);
}
.nb-breadcrumb-item a {
    color: var(--nb-breadcrumb-color);
    text-decoration: var(--nb-breadcrumb-text-decoration);
}
.nb-breadcrumb-item a:hover {
    color: var(--nb-breadcrumb-active-color);
}
.nb-breadcrumb-item.active {
    color: var(--nb-breadcrumb-active-color);
}
.nb-breadcrumb-item:before {
    content: var(--nb-breadcrumb-divider);
}
.nb-breadcrumb-item:first-child:before {
    display: none;
}
