.bx-breadcrumb {
	display: flex;
	overflow-x: auto;
	-ms-overflow-style: none;  /* IE и Edge */
	scrollbar-width: none;  /* Firefox */

}

.bx-breadcrumb::-webkit-scrollbar {
	display: none;
}
.bx-breadcrumb__wrapper {
	display: flex;
	flex-wrap: wrap;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 18px;
	vertical-align: middle;
	margin-right: 5px
}
.bx-breadcrumb .bx-breadcrumb-item {
	white-space: nowrap;
	display: flex;
	align-items: center;
	margin:5px 5px 5px 0;
}

.bx-breadcrumb .bx-breadcrumb-item a {
	background: var(--color-black-5);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    color: var(--color-black-85);
	transition: background .3s;
	white-space: nowrap;
	display: block;
}

.bx-breadcrumb .bx-breadcrumb-item a:hover {
	background: var(--color-black-25);
}

.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
	white-space: nowrap;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}

.bx-breadcrumb .bx-breadcrumb-item:last-of-type span{
	color: var(--color-black-55);
}


