.bx-breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 52px;
}

.bx-breadcrumb-item {
	white-space: nowrap;
}

.bx-breadcrumb-item-angle {
	margin: 0 10px;
	color: #b5bdc2;
	vertical-align: top;
	font-size: 12px;
}

.bx-breadcrumb-item-link span{transition: 250ms linear all;}
.bx-breadcrumb-item-link {
	border-bottom: none;
}
a.bx-breadcrumb-item-link:hover span{color: #70ba44;}

.bx-breadcrumb-item-link:hover { }

.bx-breadcrumb-item {
	position: relative;
    font: 10px "ElektraTextPro", sans-serif;
    color: #626262;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    letter-spacing: 1.2px;
    line-height: 1;
	
}
.bx-breadcrumb-item:not(:last-of-type) {
    margin-right: 28px;
}
.bx-breadcrumb-item:not(:last-of-type):after {
    content: "/";
    display: block;
    position: absolute;
    top: 0;
    right: -18px;
}
@media only screen and (max-width: 767px){
.bx-breadcrumb {
    display: none;
}
}