.product-collection-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.product-collection-wrapper .product-single-wrapper {
	margin-bottom: 20px;
	width: 30%;
}

.product-collection-wrapper .product-single-wrapper:not(:nth-child(3)) {
    margin-right: 31px;
}

.product-collection-wrapper .product-single-wrapper .product-image {
	background-color: #d1e4ec;
	height: 210px;
	width: 210px;
}
.product-collection-wrapper .product-single-wrapper .product-image .image-credit{
    	display: none;
}
.product-collection-wrapper .product-single-wrapper .product-detail {
	background-color: #f1f2f7;
	padding: 10px;
	width: 190px;
}

.product-collection-wrapper .product-single-wrapper .product-detail .product-title {
	font-size: 16px;
	font-weight: 700;
}

.product-collection-wrapper .product-single-wrapper .product-detail .price-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.product-collection-wrapper .price-wrapper .product-price {
	color: #444;
	font-size: 12px;
}

.product-collection-wrapper .price-wrapper .product-url {
	background-color: #444;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	padding:5px 10px;
}

.product-collection-wrapper .price-wrapper .product-url a {
	border: none;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.product-collection-wrapper .product-single-wrapper {
		margin-bottom: 20px;
	    	margin-right: 20px !important;
		/*width: 50%;*/
	}

	.product-collection-wrapper .product-single-wrapper .product-image {
		height: 150px;
		width: 150px;
	}

	.product-collection-wrapper .product-single-wrapper .product-detail {
		width: 130px;
	}

	.product-collection-wrapper .price-wrapper .product-url {
		font-size: 12px;
	}

}

/* Mobile Portrait. */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
	.product-collection-wrapper {
	    justify-content: space-around;
	}
    	.product-collection-wrapper .product-single-wrapper {
	    margin-right: 0 !important;
	    width: auto;
	}
}

@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 2) {
    .product-collection-wrapper .product-single-wrapper {
	margin-right: 52px !important;
    }

    .product-collection-wrapper .product-single-wrapper {
	margin-bottom: 20px;
	width: auto !important;
    }
}

@media only screen
and (min-device-width: 1024px)
and (max-device-width: 1112px)
and (-webkit-min-device-pixel-ratio: 2) {
    .product-collection-wrapper .product-single-wrapper {
	margin-right: 98px !important;
    }

    .product-collection-wrapper .product-single-wrapper {
	margin-bottom: 20px;
	width: auto !important;
    }
}
