.breadcrumbs {
	width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}
 .breadcrumbs_container{
	padding-top: 15px;
	width: 100%;
    overflow: hidden;
    font-size: 14px;
    line-height: 16px;
}
/*.breadcrumbs_list {
	display: flex;
    white-space: nowrap;
    overflow: hidden;
    height: 2rem;
    gap: 10px;
}

.breadcrumbs_item {
	display: flex;
	white-space: nowrap;
	position: relative;
	height: 100%;
} */
.breadcrumbs_list {
	display: inline-block;
	padding: 2px 0;
	white-space: nowrap;
	width: fit-content;
	color: #6c6c6c;
	overflow: hidden;
}

.breadcrumbs_item {
	white-space: nowrap;
	position: relative;
	height: 100%;
	 display: inline-block; 

}
.breadcrumbs_item:first-child {
	margin-left: 3px;
}

.breadcrumbs_item:last-child::before,
.breadcrumbs_item:last-child::after {
	display: none;
}

.breadcrumbs_item::before,
.breadcrumbs_item::after {
	content: '';
	position: absolute;
	left: 0;
	height: 50%;
	width: 100%;
	background: #fff;
	opacity: 0.15;
	background: rgba(0, 0, 0, 0.05);
	opacity: 1;
	z-index: 0;
}

.breadcrumbs_item::before {
	top: 0;
	transform: skew(30deg);
}

.breadcrumbs_item::after {
	bottom: 0;
	transform: skew(-30deg);
}

.breadcrumbs_text,
.breadcrumbs_link {
	font-size: 0.9rem;
	line-height: 1.2;

	white-space: nowrap;
}
.breadcrumbs_text{
	color: var(--primary-1);
	padding: 7px;
}

.breadcrumbs_link {
	cursor: pointer;
	padding: 5px 12px;
	z-index: 1;
	position: relative;
	display: block;
}