#product-recommendations-box {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	font-family: sans-serif;
            margin: 10px auto;
}
#product-recommendations-box > h2 {
	background-color: #1D466C;
	color: white;
	font-weight: bold;
	height: 60px;
	line-height: 60px;
}
#product-recommendations-box > p {
	margin: 16px;
}
#product-recommendations {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}
a.product-recommendation {
	vertical-align: top;
	display:flex;
	flex-direction:column;
	flex-wrap:nowrap;
	justify-content:center;
	align-items:center;
	align-content: center;
	width:200px;
	height:230px;
	text-align: center;
	margin: 20px;
	overflow:hidden;
	padding:5px;
	font-size: 15px;
	text-decoration: none;
	color: black;
}
a.product-recommendation > div:first-child {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 160px;
	width: 100%;
}
a.product-recommendation > b {
	display: block;
	margin: 5px 0px;
	min-height: 20px;
}
a.product-recommendation > div:last-child {
	margin: 5px 0px;
	color:white;
	padding: 10px 10px;
	background-color: #B64927;
}