.list-view>.products.products-list {
	transition: opacity 0.2s;
	opacity: 0;
	display: flex;
	flex-wrap: wrap;
	border: none;
	margin: 0;
	/*border-radius: 5px;
	border: solid 1px #ECECEC;*/
}

div[data-pagination-num] {
	margin: 32px 0 0 0;
}

.list-view .pagination {
	margin: 0;
}

.product-item {
	border-bottom: 1px solid #ECECEC;
	border-right: 1px solid #ECECEC;
	margin: 0;
}

@media(min-width:1201px) {
	.product-item {
		flex: 0 1 calc(100% / 4);
	}

	.product-item:nth-child(4n+1) {
		border-left: 1px solid #ECECEC;
	}

	.product-item:nth-child(-1n+4) {
		border-top: 1px solid #ECECEC;
	}
}

@media(max-width:1200px) and (min-width:992px) {
	.product-item {
		flex: 0 1 calc(100% / 3);
	}

	.product-item:nth-child(3n+1) {
		border-left: 1px solid #ECECEC;
	}

	.product-item:nth-child(-1n+3) {
		border-top: 1px solid #ECECEC;
	}
}

@media(max-width:991px) {
	.product-item {
		flex: 0 1 calc(100% / 2);
	}

	.product-item:nth-child(-n+2) {
		border-top: 1px solid #ECECEC;
	}

	.product-item:nth-child(2n+1) {
		border-left: 1px solid #ECECEC;
	}
}

@media(max-width:767px) {
	.product-item:nth-child(2) {
		border-top-right-radius: 4px;
	}

	.sorter {
		margin-bottom: 16px;
	}

	.block-categories__header {
		margin-bottom: 16px;
	}
}