nav.breadcrumb {
    height: 0;
    font-size: 1rem;
}
nav.breadcrumb .breadcrumb-menu {
    position: relative;
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Chrome, Safari */
    /* scroll-behavior: smooth; /* Only set/unset this programmatically during the pagination functions to get smooth scrolls. Otherwise, a more crisp scroll behavior is preferred touch/wheel scrolling */
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    z-index: 1;
    list-style-type: none;
    transform: translateY(25px);
    font-size: 1em;
}
nav.breadcrumb .breadcrumb-menu::-webkit-scrollbar { 
  display: none;  /* Chrome and Safari older versions */
}
nav.breadcrumb .breadcrumb-menu-item {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    flex: 0 0 auto;
    font-family: var(--font-sans-serif-stack);
    font-size: 1em;
    font-weight: 400;
}
nav.breadcrumb .breadcrumb-menu-item:last-of-type {
    font-weight: 700;
}
nav.breadcrumb .breadcrumb-label,
nav.breadcrumb a.breadcrumb-label {
    color: #000;
}
/* nav.breadcrumb .breadcrumb-menu-divider:before, */
nav.breadcrumb .breadcrumb-menu-item:not(:last-of-type):after {
    content: '>';
    display: block;
    margin: 0 0.5rem;
}

@media only screen and (max-width: 550px) {
    nav.breadcrumb {
        font-size: 0.8rem;
    }
}