/**
 * Tenbit Addon - Breadcrumb Navigation Widget Styles
 * Author: Team Tenbit Solutions
 */

.tenbit-breadcrumb-wrap {
	position: relative;
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.tenbit-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.tenbit-breadcrumb-item {
	display: inline-flex;
	align-items: center;
	font-family: inherit;
	line-height: 1.4;
	box-sizing: border-box;
}

.tenbit-breadcrumb-link {
	display: inline-flex;
	align-items: center;
	color: #5A6578;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tenbit-breadcrumb-link:hover,
.tenbit-breadcrumb-link:focus {
	color: #FF5A00;
	text-decoration: none;
}

.tenbit-home-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #5A6578;
	font-size: 14px;
	margin-right: 6px;
	line-height: 1;
	transition: color 0.2s ease;
}

.tenbit-home-icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	stroke: currentColor;
}

.tenbit-breadcrumb-link:hover .tenbit-home-icon {
	color: #FF5A00;
}

.tenbit-breadcrumb-separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #A0AEC0;
	font-size: 13px;
	margin-left: 10px;
	margin-right: 10px;
	user-select: none;
	line-height: 1;
}

.tenbit-breadcrumb-separator svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
	stroke: currentColor;
}

.tenbit-breadcrumb-current {
	color: #0B2B5C;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.tenbit-breadcrumb-link,
	.tenbit-breadcrumb-current {
		font-size: 13px;
	}

	.tenbit-breadcrumb-separator {
		margin-left: 6px;
		margin-right: 6px;
		font-size: 12px;
	}
}
