/**
 * Breadcrumb tweaks for the services (Products) detail page.
 *
 * The "Products" crumb is rendered unlinked (no listing page exists), so it
 * loses the arrow separator and full-opacity color the theme only applies to
 * <a> crumbs. Restore both on the unlinked middle crumb.
 *
 * @package MRB
 */

/* All crumbs share one color at full opacity (theme dims spans to 60%). */
.breadcrumb-list a,
.breadcrumb-list span {
	opacity: 1;
	color: #2d2d2d !important;
}

.breadcrumb-list .item:not(.taBcrumb-end) > span {
	padding-right: 30px;
	position: relative;
}

.breadcrumb-list .item:not(.taBcrumb-end) > span::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 13px;
	transform: translateY(-50%);
	background-image: url(../../../barsi/assets/img/icons/icon.svg);
	width: 18px;
	height: 18px;
}

.breadcrumb-list .item:not(.taBcrumb-end) > span span {
	opacity: 1;
	padding-right: 0;
}
