/*-----------------------------------------------------------------*/
/* BREADCRUMBS
/*-----------------------------------------------------------------*/

.breadcrumbs
{
	font-size: var(--font-size__small);

	padding-top: 15px;
	padding-bottom: 15px;
}

.intro_left .breadcrumbs
{
	margin-bottom: var(--padding__default);
}

.breadcrumbs nav
{
	overflow: hidden;

	white-space: nowrap;
	text-overflow: ellipsis;
}

.breadcrumbs a
{
	text-decoration: underline;
}

.breadcrumbs a:hover
{
	text-decoration: none;
	text-decoration: underline transparent solid;
}

.breadcrumbs a,
.breadcrumbs span
{
	color: var(--color__white);
}

.breadcrumbs a.home
{
	text-decoration: none;
}

.breadcrumbs a.home span
{
	display: none;
}

.breadcrumbs a.home:before
{
	display: inline-block;

	width: 18px;
	height: 18px;
	margin-top: -2px;

	content: '';
	transition: opacity var(--transition-duration__default);
	vertical-align: middle;

	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'18\' height=\'18\' fill=\'none\' viewBox=\'0 0 24 24\'%3E%3Cpath fill=\'%23FFFFFF\' fill-rule=\'evenodd\' d=\'M12.7 1.761a1.066 1.066 0 0 0-1.4 0L1.25 10.655l-.75.662 1.398 1.42.75-.662L12 3.8l9.352 8.275.75.663 1.398-1.42-.75-.663L12.7 1.76ZM5.654 12.635v-.971h-2.05v9.865c0 .536.46.971 1.026.971h5.36c.566 0 1.025-.435 1.025-.971v-4.11h1.971v4.11c0 .536.459.971 1.025.971h5.36c.567 0 1.026-.435 1.026-.971v-9.865h-2.05V20.557h-3.311v-4.11c0-.537-.459-.972-1.025-.972h-4.02c-.567 0-1.025.435-1.025.972v4.11H5.655v-7.922Z\' clip-rule=\'evenodd\'/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: center center;
}

.breadcrumbs a.home:hover::before
{
	opacity: 0.85;
}

.breadcrumbs a::after
{
	display: inline-block;

	width: 14px;
	height: 14px;
	margin: -3px 5px 0 5px;

	content: '';
	vertical-align: middle;

	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'14\' height=\'14\' fill=\'none\' viewBox=\'0 0 14 14\'%3E%3Cpath stroke=\'%23fff\' d=\'M4.813 12.25 10.063 7l-5.25-5.25\'/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: center center;
}
