#breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 101px);
	margin: 20px;
}

#breadcrumbs a:first-of-type {
	display: block;
	width: 32px;
	height: 32px;
	margin: 7px 5px 7px 0;
	border-radius: 16px;
	background-color: #242526;
	overflow: hidden;
}

#breadcrumbs a img {
	display: block;
	width: 100%;
	height: 100%;
}

#breadcrumbs a:first-of-type:hover img {
	opacity: .6;
}

#breadcrumbs a:not(:first-of-type),
#breadcrumbs span {
	display: block;
	box-sizing: border-box;
	background-color: #242526;
	margin: 7px 5px 7px 0;
	padding: 8px 16px;
	border-radius: 16px;
	font-weight: 600;
	font-size: 10px;
}

#breadcrumbs a {
	color: #e4e6eb;
}

#breadcrumbs a:hover,
#breadcrumbs span {
	color: #adb0b5;
	text-decoration: none;
}

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

	#breadcrumbs {
		width: calc(100% - 71px);
		margin: 10px;
	}

}