.hec-breadcrumbs {
	display: flex;
	padding: 10px 30px;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 7px 15px;
	flex-wrap: wrap;

	border-radius: 20px;
	border: 1px solid var(--Powerful, #1B1C3F);
	background: rgba(0, 0, 0, 0.40);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);

	width: fit-content;
	margin: 0;
}

.hec-breadcrumbs__item {
	color: var(--White, #FFF);
	font-family: "Work Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration: none;
	transition: color .2s ease;
}

.hec-breadcrumbs__item:hover {
	color: var(--Punchy-Orange, #FF5E3A);
}

.hec-breadcrumbs__item.is-active {
	color: var(--Punchy-Orange, #FF5E3A);
}

.current-page-magento .hec-breadcrumbs__item:hover,
.current-page-magento .hec-breadcrumbs__item.is-active
{
	color: var(--Neon-Magenta, #FF04A3);
}


.hec-breadcrumbs__sep {
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {

	.hec-breadcrumbs__item {
		font-size: 14px;
	}

}