.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;

	/* padding: 10px 0px; */
    /* padding-bottom: 20px; */
}

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

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

.bx-breadcrumb-item-link {
	border-bottom: none;
	vertical-align: top;
	line-height: 21px;
	color:#909090;
	text-decoration: none;
	pointer-events: all;
}

.bx-breadcrumb-item-link:hover {
	text-decoration: none;
	color: #909090;
 }

.bx-breadcrumb-item-text {
	vertical-align: top;
	white-space: normal;
	font: 400 13px/21px "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	transition: 250ms linear all;
}



.breadcrumbs__item[_ngcontent-serverApp-c217]:after {
    content: "\2014";
    display: inline-block;
    cursor: default;
    margin-left: 0.8rem;
    color: #8e8e93;
}


.bx-breadcrumb-item-dash {
	position: relative;
	width: 15px;
	height: 1px;
	background-color: #909090;
	margin-left: 5px;
	margin-right: 5px;
}

.bx-breadcrumb-item-dash:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background-color: #333;
}

.scroll-content {
	display: flex;
	align-items: center;
}


#navigation {
	position: relative;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {

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

	.bx-breadcrumb {

		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		/* overflow:hidden; */
		overflow-x: auto;
	}

	#navigation::after {
		position: absolute;
		content: '';
		top: 0;
		right: 0;
		height: 100%;
		width: 40px;
		background-image: linear-gradient(to right, rgba(255,0,0,0), rgb(252 252 252));
	}


	.bx-breadcrumb::-webkit-scrollbar {
		width: 0px;
		height: 0px;
	}

	.bx-breadcrumb::-webkit-scrollbar-thumb {
		/* background: rgba(90, 90, 90); */
	}

	.bx-breadcrumb::-webkit-scrollbar-track {
		/* background: rgba(0, 0, 0, 0.2); */
	}



	.bx-breadcrumb-item-dash {
		position: relative !important;
		margin-right: 5px;
	}

	.bx-breadcrumb-item-dash:after {
		position: absolute;
		content: "";
		top: 0;
		left: 5px;
		width: 10px;
		height: 1px;
		background-color: #000;
	}
}

