.subsections__item {
	display: grid;
	grid-template-columns: 54.81px 1fr;
	align-items: center;
	justify-content: flex-start;
	min-height: 64.44px;
	background-color: white;
	border-bottom: 1px solid #EEEEEE;
	grid-column-gap: 10px;
	padding-right: 20px;
	padding-left: 20px;
	transition: box-shadow 0.3s ease;
	will-change: box-shadow;
}

.subsections__item:hover {
	box-shadow: 0px 0px 20px rgb(0 0 0 / 15%);
}

.subsections__image {
	/*height: 40px;*/
	display: flex;
	align-items: center;
	justify-content: center;
}


.subsections__item:after,
.subsections__item:before {
	/*content: '';
	position: absolute;
	border-bottom: 1px solid #EEEEEE;
	background-color: white;
	height: 100%;
	width: 100%;*/
}

.subsections__item:before {
	left: -100%;
}

.subsections__item:after {
	right: -100%;
}

.subsections__name {
	display: flex;
	align-items: center;
	gap: 5px;
}

.subsections__name span {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 140%;
	color: #000000;
}

.subsections__name span:not(.count) {
	flex-grow: 1;
	width: min-content;
}

@media(max-width: 1199px) {
	.subsections__name span:not(.count) {
		flex-grow: 0;
		width: auto;
		padding: 13px 0;
	}
}

.subsections__name .count {
	color: #808080;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 125%;
	border-radius: 4px;
	/*margin-left: clamp(5px, calc(0.3125rem + (11 - 5) * ((100vw - 370px) / (640 - 370))), 11px);*/
	padding: 3px 6px;
	background: #F6F6F6;
	/*position: absolute;*/
}

.subsection__banner {
	margin-bottom: 40px;
}

.subsection-elements__title span:not(.count) {
	font-style: normal;
	font-weight: 900;
	font-size: 28px;
	line-height: 33px;
}

.subsection-elements__title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.subsection-elements__title .count {
	color: #808080;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 125%;
	background: #DCDCDC;
	border-radius: 4px;
	padding: 3px 6px;
	margin-left: 13px;
	/* margin-bottom: -8px; */
}


@media screen and (min-width: 1200px) {
	.subsections__wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 20px;
	}

	.subsections__item:before {
		content: unset;
	}

	.subsections__item:after {
		content: unset;
	}

	.subsections__item {
		min-height: 84px;
		padding: 15px 40px 15px 25px;
		background: #FFFFFF;
		border: 1px solid #DADADA;
		border-radius: 4px;
	}

	.subsections__image:not(.wallpapper .subsections__image) {
		max-height: 80px;
		height: 80px;
	}
	.subsections__image img {
		object-fit: contain;
	}

	.subsections__wrapper.wallpapper {
		grid-template-columns: repeat(5, 1fr);
	}

	.subsections__item.wallpapper {
		padding: 0 20px;
		min-height: 126px;
		grid-template-columns: 1fr;
		place-items: center;
		text-align: center;
		border-radius: 4px;
		overflow: hidden;
	}

	.wallpapper .subsections__image {
		position: absolute;
		inset: 0;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.wallpapper .subsections__image:before {
		content: '';
		position: absolute;
		inset: 0;
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
		will-change: opacity;
		transition: opacity 0.3s ease;
		opacity: 1;
	}

	.wallpapper .subsections__image:after {
		content: '';
		position: absolute;
		inset: 0;
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
		will-change: opacity;
		transition: opacity 0.3s ease;
		opacity: 0;
	}

	.wallpapper .subsections__name span {
		z-index: 1;
		color: #FFFFFF;
		text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
		font-weight: 800;
	}

	.subsections__item.wallpapper:hover span {
		color: #FFFFFF;
	}

	a.subsections__item.wallpapper:hover .subsections__image:before {
		opacity: 0;
	}

	a.subsections__item.wallpapper:hover .subsections__image:after {
		opacity: 1;
	}
}


@media screen and (max-width: 1199px) {
	.wallpapper .subsections__image {
		height: 40px;
	}
	.subsections__image:not(.wallpapper .subsections__image) {
		max-height: 40px;
		height: 40px;
	}
	.subsections__image img {
		object-fit: contain;
	}
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 1024px) {
	body {
		background-color: #F5F5F5 !important;
	}
}


@media screen and (max-width: 843px) {
}