

/* XS */
@media only screen and (min-width : 0px) {

	#catalog-list,
	#catalog-page {
		margin-top: 51px;
	}

	#catalog-list .product-item .image {
		height: 450px;
	}
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) {

	#catalog-list .product-item .image {
		height: 240px;
	}

}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

	#catalog-list .product-item .image {
		height: 330px;
	}

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {

	#catalog-list,
	#catalog-page {
		margin-top: 0;
	}

	#catalog-list .product-item .image {
		height: 210px;
	}
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {

	#catalog-list .product-item .image {
		height: 295px;
	}
}