/* Вывод изображений для категорий */
.has_cat_img{
	background: transparent;
	border: 0;
}
.has_cat_img ul{
	display: flex;
	flex-wrap: wrap;
}
.has_cat_img li{
	width: 200px;
	display: block;
	height: auto;
	text-align: center;
	background: #fff;
	margin: 0 25px 25px 0;
	padding: 5px;
	box-sizing: border-box;
	transition: .2s linear;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
	border-radius: 3px
}
.has_cat_img li:nth-child(5n){
	margin-right: 0;
}
.has_cat_img li:hover{
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, .3);
}
.category_img {
	width: 100%;
	height: 125px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 5px;
	overflow: hidden;
}
.category_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.has_cat_img span{
	color: #39251f;
	font-weight: 500;
	border-bottom: 1px solid #aea9a8;
	transition: .2s linear;
}
.has_cat_img a:hover span{
	color: #39251f;
	border-bottom: 1px solid transparent;
}