.block-categories__level-1-list {
	list-style-type: none;
	background: #FFFFFF;
	box-shadow: 0px 0px 0px 1px #ECECEC;
	border-radius: 4px;
	padding: 20px 18px;
}

.block-categories__header {
	font-weight: 600;
	font-size: 15px;
	line-height: 140%;
	color: #1E1E1E;
	margin-bottom: 20px;
}

.block-categories__item {
	margin-bottom: 20px;
	position: relative;
}

.block-categories__item:last-child {
	margin-bottom: 0;
}

.block-categories__link {
	font-weight: 400;
	font-size: 15px;
	line-height: 130%;
	color: #1E1E1E;
	transition: 0.2s ease-out;
	text-transform: lowercase;
}

.block-categories__link:first-letter {
	text-transform: capitalize;
}

.block-categories__link path {
	transition: 0.2s ease-out;
}

.block-categories__link:hover {
	color: #D2333D;
}

.block-categories__link:hover path {
	stroke: #D2333D;
}

.block-categories__item-name {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	cursor: pointer;
}

.block-categories__item-name>svg {
	flex-basis: 10%;
	margin-left: 20px;
}

.block-categories__submenu {
	line-height: 18px;
	list-style: none;
	visibility: hidden;
	transition: 0.2s ease-out;
	opacity: 0;
	background-color: #ffffff;
	max-width: 270px;
	width: 100%;
}

@media(min-width:992px) {}

@media(max-width:991px) {}

@media(min-width:767px) {
	.block-categories__submenu {
		position: absolute;
		top: -20px;
		left: calc(100% + 20px);
		z-index: 1000;
		box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.12);
		border-radius: 4px;
		padding: 20px;
	}

	.block-categories__item:hover>.block-categories__submenu {
		visibility: visible;
		opacity: 1;
	}
}

@media(max-width:767px) {
	.block-categories__submenu {
		height: 0;
	}

	.block-categories__item_open>.block-categories__submenu {
		height: 100%;
		visibility: visible;
		opacity: 1;
		margin: 10px 0 30px;
	}

	.block-categories__item-name>svg {
		transform: rotateZ(90deg);
		transition: .2s ease-out;
	}

	.block-categories__item_open>.block-categories__item-name>svg {
		transform: rotateZ(-90deg);
	}

	.filter-tags__inner {
		flex-wrap: nowrap;
		overflow: hidden;
		overflow-x: scroll;
		white-space: nowrap;
	}

	.filter-tags__inner::-webkit-scrollbar {
		width: 0;
		height: 0;
	}
}