ol.breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 !important;
    text-transform: capitalize;
    white-space: nowrap;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--text-primary) !important;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    padding-right: 16px;
    gap: 16px;

    svg {
        display: none;
    }

    a {
        color: black;
        cursor: pointer;
    }

}

li.breadcrumbs-item:not(:first-of-type) {
    svg{
        display: block;
    }
}

li.breadcrumbs-item:last-child {
    color: var(--text-disabled, #919EAB);
    cursor: default;
}


@media (max-width: 1150px) {
    ol.breadcrumbs {
        display: none;
    }
}