
/* PRODUCT LIST*/

.store-product-list {
	margin: 0 -0.75rem;
	display:flex;
	flex-wrap:wrap;
}

.store-product-list-item-wrapper {
	width: 25%;
	padding: 0.5rem;
}

.store-product-list-item-wrapper.inactive{
	filter:saturate(0);
}

.store-product-list-item {
	background: #fff;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

.store-product-list-item .image{
	background-size:cover;
	background-position:center;
	padding-bottom:54%;
}

.store-product-list-thumbnail{
	margin:0;
}

.store-product-list-item .info {
	padding: 1rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.store-product-list-item .manufacturer{
	font-size:0.75rem;
}

.store-product-list-item p.description {
	font-size: 0.875rem;
	line-height: 1.375em;
	margin: 0.5em 0;
}

@media screen and (max-width:1280px){
	.store-product-list-item-wrapper {
		width:33.333%;
	}
}

@media screen and (max-width:768px){
	.store-product-list-item-wrapper {
		width:50%;
	}
}

@media screen and (max-width:540px){
	.store-product-list-item-wrapper {
		width:100%;
	}
}