.products-list__item {
	list-style: none;
}

@media all and (max-width: 459px) {
	.products-list {
		margin: -20px -8px;
	}
	.products-list__item {
		padding: 20px 8px;
	}
}

@media all and (min-width: 460px) {
	.products-list {
		margin: -27px -15px;
	}
	.products-list__item {
		padding: 27px 15px;
	}
}

@media all and (min-width:360px) {
	.products-list {
		display:flex;
		flex-wrap:wrap;
	}
	.products-list__item > .product {
		height: 100%;
	}
}

@media all and (min-width:360px) and (max-width:767px) {
	.products-list__item {
		width: 50%;
	}
}
@media all and (min-width:768px) and (max-width:1023px) {
	.products-list__item {
		width: 33.3333%;
	}
}

@media all and (min-width:1024px) {
	.products-list__item {
		width: 25%;
	}
}