.product-block {
	position: relative;
	padding: 8px;
	background: #fff;
	border-radius: 4px;
	text-align: right;
	box-shadow: 2px 2px 5px -1px rgba(0,0,0,0.13);
	overflow: hidden;
}
.product-block:hover {
	box-shadow: 5px 5px 8px -1px rgba(0,0,0,0.18);
}
.product-block .image {
	display: block;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding-bottom: 10px;
	width: 100%;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}
.product-block .image img {
	width: 100%; /* expand the image to its .image container if necessary! */
}
.product-block .name {
	display: block;
	text-transform: none;
	margin: 0 0 10px;
	text-align: center;
	overflow: hidden;
	word-wrap: break-word;
	color: #f1c40f;
	font-size: 13px;
	line-height: 16px;
	height: 80px;
}
@media (min-width: 480px) {
	.product-block .name {
		font-size: 14px;
		line-height: 17px;
		height: 68px;
	}
}
.product-block .name a {
	font-family: 'Open Sans', sans-serif;
	color: #3e474b;
	font-weight: 600;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
.product-block .name a:hover {
	color: #ff6346;
}
.product-block .price-old {
	font-size: 14px;
	height: 14px;
	line-height: 14px;
}
.product-block .price, .product-block .price-special {
	font-size: 22px;
	line-height: 22px;
}
.product-block .btn-shopping-cart {
	display: block;
	width: 100%;
	margin-top: 10px;
}
.square-pad {
	display: block;
	height: 0;
	padding-bottom: 100%;
}

/* #products - category/manufacturer page, etc. */
.products-block .product-cols {
	padding: 5px;
}
#products.product-list .product-cols {
	width: 100%;
}
.products-block {
	margin-left: -5px;
	margin-right: -5px;
	padding: 5px 0;
}
#products.product-list .product-block {
	text-align: left;
}
#products.product-list .product-block .name {
	text-align: left;
}
#products.product-list .product-block .btn-shopping-cart {
	width: 120px;
}
#products.product-list .product-block .image {
	float: left;
	margin-right: 20px;
	max-width: min(200px, 40%);
	padding-bottom: 0;
}
#products.product-list .image img {
	padding: 0;
	border: 0;
}
#products.product-grid .description, #products.product-grid .price-tax {
	display: none;
}

/* PRODUCT FILTER */
.product-filter {
	padding: 10px 15px;
	background-color: #ffffff;
	border-radius: 4px 4px 0 0;
	text-align: left;
}
.product-filter .btn-switch {
	background-color: #ffffff;
	height: 30px;
	border: 1px solid #ebeef2;
	padding-top: 2px;
}
.product-filter .btn-switch.active, .product-filter .btn-switch:hover {
	color: #ff6346;
}
.product-filter select {
	margin-left: 5px;
	margin-right: 10px;
}
.product-filter select:last-of-type {
	margin-right: 0;
}

.product-filter .product-order {
	padding-top: 1px;
}
#button-load-more-products, .button-load-more-products {
	display: block;
	margin: 10px auto;
}

