.breadcrumbs__list {
    display: flex;
    flex-wrap: 1;
    margin: 32px 0;
    overflow-x: scroll;
}
.breadcrumbs__list::-webkit-scrollbar {
    display: none;
}
.breadcrumbs__list__item {
    white-space: nowrap;
    color: #c8c8c8;
}
.breadcrumbs__list__item a {
    color: #c8c8c8;
}
.breadcrumbs__list__item:after {
    content: "|";
    margin: 0 8px;
}
.breadcrumbs__list__item:last-child::after {
    content: "";
    margin: 0;
}