.breadcrumbs {
	display: block;
}

.breadcrumbs__separator {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-image: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_3040_881)"><path d="M0 4H7M7 4L4 1M7 4L4 7" stroke="%23B5B5B5"/></g><defs><clipPath id="clip0_3040_881"><rect width="8" height="8" fill="white"/></clipPath></defs></svg>');
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	margin: 0 10px;
}
@media (max-width: 767px) {
	.breadcrumbs__separator {
		margin: 0 6px;
	}
}

.breadcrumbs-item {
	display: inline-block;
}

.breadcrumbs-item__link {
	color: #505050;
	transition: all .3s ease;
}

.breadcrumbs-item__link:hover,
.breadcrumbs-item__link:active,
.breadcrumbs-item__link:focus {
	outline: 0;
	text-decoration: none;
	color: #175CFF;
	transition: all .3s ease;
}
.breadcrumbs-item__link:hover .breadcrumbs-item__text,
.breadcrumbs-item__link:active .breadcrumbs-item__text,
.breadcrumbs-item__link:focus .breadcrumbs-item__text{
	color: inherit;
}

.breadcrumbs-item__text {
	font-family: 'Inter' !important;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.40;
	color: #505050;
}