.list-blocks {
	list-style: none;
	margin: 12px 0;
	padding: 0;
	display: grid;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	grid-template-columns: repeat(3, 1fr);
	counter-reset: lb-counter;
	line-height: 24px;
}

.list-blocks[data-col="1"] {
	grid-template-columns: repeat(1, 1fr);
}

.list-blocks[data-col="2"] {
	grid-template-columns: repeat(2, 1fr);
}

.list-blocks[data-col="3"] {
	grid-template-columns: repeat(3, 1fr);
}

.list-blocks[data-col="4"] {
	grid-template-columns: repeat(4, 1fr);
}

.list-blocks > li {
	background: #efefef;
	border-radius: 5px;
	padding: 12px 12px 12px 50px;
	position: relative;
	counter-increment: lb-counter;
	min-height: 60px;
}

.list-blocks > li::before {
	content: counter(lb-counter);
	width: 30px;
	height: 30px;
	left: 12px;
	top: 12px;
	position: absolute;
	background: #ff0000;
	border-radius: 50px;
	text-align: center;
	line-height: 30px;
	font-weight: 900;
	font-size: 16px;
	color: #ffffff;
}

@media (max-width: 600px) {
	.list-blocks {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

.wrapper__blocks {
	margin: 12px 0;
	display: grid;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}

.wrapper__blocks.cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.wrapper__blocks.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.wrapper__blocks.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.wrapper__blocks--item {
	background: #efefef;
	border-radius: 5px;
	padding: 15px;
	display: flex;
	flex-direction: column;
}

.wrapper__blocks--icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin: 0 0 15px;
}

.wrapper__blocks--title {
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 15px;
}

@media (max-width: 600px) {
	.wrapper__blocks {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.wrapper__blocks--icon {
		width: 20px;
		height: 20px;
	}
}