.catalog_section_item {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding: 1rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.catalog_section_item:hover {
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.125);
	box-shadow: 0 5px 15px rgba(0,0,0,0.125);
}

.catalog_section_img {
	position: relative;
	display: block;
	overflow: hidden;
	margin-right: 2rem;
	width: 50px;
	min-width: 50px;
	height: 50px;
	background-position: center;
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;
}

.catalog_section_info {
	display: block;
}

.catalog_section_title {
	display: block;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: inherit;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.catalog_section_title:hover {
	color: var(--theme-skit-color);
}

.catalog_section_count {
	font-size: 0.75rem;
	line-height: 1.2;
	color: inherit;
	opacity: 0.5;
}

@media all and (max-width: 991px){
	.catalog_section_img {
		margin-right: 1rem;
		width: 80px;
		min-width: 80px;
		height: 80px;
	}
}
