.breadcrumbs {
	width: 100%;
	overflow: hidden;
}

.breadcrumbs::-webkit-scrollbar {
	display: none;
}

.breadcrumbs__list {
	display: flex;
	width: auto;
	list-style-type: none;
}

.breadcrumbs__link {
	display: block;
	white-space: nowrap;
	/* max-width: 610px; */
	overflow-x: hidden;
	text-overflow: ellipsis;

	font-family: 'Open Sans', 'sans-serif';
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	color: #8e8e93;
	position: relative;
}

.breadcrumbs__link:hover {
	color: #00a76b;
	transition: all 0.3s ease-in-out;
}

.breadcrumbs__item {
	display: flex;
	width: auto !important;
}

.breadcrumbs__item:after {
	content: '/';
	display: inline;
	margin: 0 15px;
	color: #8e8e93;
}

.breadcrumbs__item:last-child:after {
	display: none;
}

.breadcrumbs__item:last-child {
	padding-right: 10px;
}

.breadcrumbs__link_active {
	color: #00a76b;
	cursor: default;
}

.breadcrumbs__link_active:after {
	content: none;
}

@media screen and (max-width: 1300px) {
	.breadcrumbs {
		margin-left: -10px;
		width: calc(100% + 20px);
		padding: 0 10px;
	}
}
