#app-ecommerce-stream-products {
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
}

.app-ecommerce-product {

	display: flex;
	flex-direction: column;

	width: 25%;
	padding: 1vw;
	
}

.app-ecommerce-product:hover,active {
	
	background: rgba(var(--ColorHighlight), 0.3);
	
}

.app-ecommerce-product img {
	
	object-fit: contain;
	
}

.app-ecommerce-product h6 {
	
	text-align: center;
	padding: 0.5vw;
	
}

@media screen and (max-width: 720px) {
  
	.app-ecommerce-product {
		
		width: 50%;
		
	}
  
}