.bx-breadcrumb {
	margin: 10px 0;
	color: #1d7d7e;
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.3;
}

.bx-breadcrumb__full {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 6px;
}

.bx-breadcrumb__compact {
	display: none;
}

.bx-breadcrumb-item {
	display: inline-flex;
	align-items: center;
}

.bx-breadcrumb__sep {
	color: #b5bdc2;
	margin: 0 2px;
}

.bx-breadcrumb-item__link {
	color: #1d7d7e;
	text-decoration: none;
	border-bottom: 0;
}

.bx-breadcrumb-item__link:hover,
.bx-breadcrumb-item__link:focus {
	color: #115d5e;
	text-decoration: underline;
}

.bx-breadcrumb-item__text {
	color: #333;
}

.bx-breadcrumb__back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #1d7d7e;
	text-decoration: none;
	font-weight: 600;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bx-breadcrumb__back:hover,
.bx-breadcrumb__back:focus {
	color: #115d5e;
	text-decoration: underline;
}

.bx-breadcrumb__back-icon {
	flex-shrink: 0;
}

.bx-breadcrumb__compact--short {
	display: none;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 6px;
}

@media screen and (max-width: 767px) {
	.bx-breadcrumb {
		margin: 6px 0 10px;
	}

	.bx-breadcrumb__full {
		display: none;
	}

	.bx-breadcrumb__compact {
		display: block;
	}

	.bx-breadcrumb__compact--short {
		display: flex;
	}
}
