.bx-breadcrumb {
	margin: 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 0;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: var(--font-montserat);
	white-space: normal;
}

/* breadcrumb */
.bx-breadcrumb{
	background: #fff;
	padding: 4px 0;
	margin: 0;
	border: 1px solid #efefef;
	border-radius: .5rem;
	box-shadow: 0 0 8px rgba(var(--color-black-rgba), 0.1);
}

.bx-breadcrumb span,
.bx-breadcrumb a span {
	/*color: #666;*/
	font-size: 0.75rem;
	text-shadow: none;
	padding: 10px 5px;
	display: block;}

.bx-breadcrumb a:hover {
	text-decoration: none;
	color: var(--color-scarlet);
}
.bx-breadcrumb .bx-breadcrumb i {
	font-size: 15px;
}
.bx-breadcrumb > .bx-breadcrumb-item {
	text-shadow: 0 1px 0 #FFF;
	padding: 0 20px;
	position: relative;
	white-space: nowrap;
}
.bx-breadcrumb > .bx-breadcrumb-item + .bx-breadcrumb-item:before {
	content: '';
	padding: 0;
}
.bx-breadcrumb > .bx-breadcrumb-item:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	right: -5px;
	width: 30px;
	height: 30px;
	border-right: 1px solid #efefef;;
	border-bottom: 1px solid #efefef;;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (min-width: 300px) and (max-width: 991px) {
	.bx-breadcrumb > .bx-breadcrumb-item::after {
		top: 13px;
		right: -5px;
		width: 10px;
		height: 10px;
	}
}

