.breadcrumb {
	background: var(--very-dark);
	padding: 8px 0;
	box-shadow: var(--shadow-bottom);
}
.breadcrumb-body {
	background: var(--bg);
}	
.breadcrumb-item {
	display: flex;
	align-items: center;
	overflow: hidden;
	white-space: nowrap;
	overflow-x: auto;
	scrollbar-width: thin;
}
.breadcrumb-body h1 {
	padding-left: 0 !important;
}
.breadcrumb-body h1,
.breadcrumb-body a {
	font-family: var(--font-Condensed);
	font-size: 1rem;
	font-style: italic;
	line-height: 1;
	background: var(--bg);
	color: var(--text);
	padding: 0px 8px 0px 22px;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	height: 20px;
	transition: background-color 0.2s linear, color 0.2s linear;
} 
.breadcrumb-body a > svg {
	min-width: 1rem;
	min-height: 1rem;
	max-width: 1rem;
	max-height: 1rem;
}
.breadcrumb-body a:first-child {
	padding-left: 5px;
}
.breadcrumb-body a:hover {
	color: var(--text) !important; 
	background-color: var(--average);
}
.breadcrumb-body a:after,
.breadcrumb-body a:before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -20px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 15px solid;
	border-left-color: var(--bg);
	right: -10px;
	transition: border-color 0.2s linear;
}
.breadcrumb-body a:after {
	z-index: 2;
}
.breadcrumb-body a:before {
	border-left-color: var(--brand);
	right: -15px;
	z-index: 1;
}
.breadcrumb-body a:hover:after {
	border-left-color: var(--average);
}
.breadcrumb-active {
	margin-left: 20px;
}

@media only screen and (max-width: 991.98px) {
	.breadcrumb-body h1,
	.breadcrumb-body a {
		font-size: 1rem;	
	}
}
@media only screen and (max-width: 639.98px) {
	.breadcrumb-body {
		font-size: 1rem;	
	}
	.breadcrumb-body h1,
	.breadcrumb-body a {
		font-size: 0.9rem;	
	}
}
