/* Breadcrumbs */

.breadcrumbs {	
	border-radius: 5px;
	padding: 0 0 10px 0;
	margin-bottom: 10px;
	overflow-x: auto;
}

.breadcrumbs .breadcrumb-list {
	list-style: none; 
	display: flex; 
	flex-wrap: nowrap;	
	margin-bottom: 0;
	padding-left: 0;
	align-items: center;
	width: max-content;
}

.breadcrumbs .breadcrumb-list li {
	margin: 0;
}

.breadcrumbs .breadcrumb-list li a {
	font-weight: 700;
	text-decoration: none;
	color: #000;
	padding: 14px 0;
}

.breadcrumbs .breadcrumb-list li a:hover {
	color: #0b7baf;
}

.breadcrumbs::-webkit-scrollbar {
  width: 5px;
  height: 5px; 
	border-radius: 3px;
}

.breadcrumbs::-webkit-scrollbar-thumb {
  background: #0b7baf;
	border-radius: 3px;
}

.breadcrumbs::-webkit-scrollbar-track { 
  background: #ffffff;
	border-radius: 3px;
}

.breadcrumb-list li + li::before {
  content: "\f054"; 
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  padding: 0 0.5em;
  color: #666;
}