@charset "utf-8";

.displayNone {
	display: none;
}
.listProducts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.listProducts li {
	flex-basis: 45%;
}
.listProducts li:last-child {
	flex-basis: 100%;
}

@media screen and (min-width: 560px) {
	.listProducts {
		flex-direction: row;
		flex-wrap: wrap; 
	}
}
