.bread-crumbs__item {
	list-style: none;
	display: inline-block;
	position: relative;
    padding: 0 2rem 0 0;
}
.bread-crumbs {
	margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 400;
    color: #BDC2D3;
}
.bread-crumbs__item::before {
    content: "/";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    text-align: center;
}

.bread-crumbs__item:last-child::before {
	content: '';
}
.bread-crumbs__item a {
	transition: color 0.2s ease-in-out;
}
.bread-crumbs__item a:hover {
	color: var(--accent-color);
}