.c3-breadcrumbs {
    font-family: var(--e-global-typography-9ee3bda-font-family), sans-serif;
    font-weight: var(--e-global-typography-9ee3bda-font-weight);
    font-size: var(--e-global-typography-9ee3bda-font-size);
    color: #fff;
    line-height: var(--e-global-typography-9ee3bda-line-height);
}

.c3-breadcrumb__entries {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.c3-breadcrumb__entry {
    display: block;
    position: relative;
}

.c3-breadcrumb__entry:not(:first-child) {
    margin-left: 15px;
    padding-left: 15px;
}

.c3-breadcrumb__entry:not(:first-child):before {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    background-color: #fff;
}

.c3-breadcrumb__entry:last-child {
    overflow: hidden;
}

.c3-breadcrumb__entry-link {
    display: block;
    color: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 300ms;
    -webbkit-transition: color 300ms;
}

.c3-breadcrumb__entry-link:hover {
    color: var(--e-global-color-accent);
}

.c3-breadcrumb__entry:last-child .c3-breadcrumb__entry-link {
    color: var(--e-global-color-8fd9210);
}

.c3-breadcrumb__entry:last-child .c3-breadcrumb__entry-link:hover {
    color: #fff;
}