@charset "utf-8";
/* CSS Document */


ul.products {
	list-style: none;
	margin: -10px;
	padding: 0;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.products .product {
	margin: 10px;
	flex-grow: 1;
	width: 50%;
	max-width: calc(50% - 20px);	
}

