/* Временное хранилище */
.article .content-title {
	display: flex;
	padding: 3px;
	align-items: center;
	justify-content: space-between;
	background: #3e8796;
	margin-bottom: 20px;
	gap: 15px;
}
.article .content-title > img {
	width: 120px;
	height: 100px;
}
.article .content-title > h1 {
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.catalog .top-panel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

/* Пагинация */
.pagination-block {
	background: #cde6ea;
	text-transform: uppercase;
	color: #000;
}
.pagination-caption {
	padding: 6px 9px;
}
.module-pagination {
	flex: 1 0 auto;
}
.module-pagination .pagination {
	display: flex;
}
.module-pagination ul {
	display: block;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.module-pagination ul li {
	/*font-size: 14px;*/
	margin: 0;
	display: inline-block;
}
.module-pagination ul li a,
.module-pagination ul li span {
	display: block;
	padding: 6px 8px;
	text-decoration: none;
	transition: all 0.2s;
}
.module-pagination ul li a.sym {
	padding: 2px 3px;
}
.module-pagination ul li.active span {
	background: #4e4e4e;
	color: #fff;
}
.module-pagination ul li a:hover {
	/*background: #ffb700;*/
	background: #ff3f3f;
	color: #FFF;
}
.module-pagination ul li.disabled {
	/*display: none;*/
}


.directory-listing__list {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.module-product-category .product-category-item {
	background: #a0cbd1;
	box-shadow: none;
	padding: 3px;
	margin: 0;
	max-width: calc(33% - 4px);
	flex: 1 0 auto;
	width: 100%;
	box-sizing: border-box;
	display: flex;
}
.module-product-category .product-category-item .product-category-item-img {
	width: 83px;
	height: 54px;
}
.module-product-category .product-category-item .product-category-item-img > img {
	max-width: none;
	max-height: none;
	width: 83px;
	height: 54px;
}
.product-category-item-name {
	flex: 1;
	height: 100%;
}
.module-product-category .product-category-item .product-category-item-name h3 {
	margin: 0;
	font-size: 14px!important;
	line-height: 15px;
	padding: 0 4px!important;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}