#content {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

#recipe-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	overflow: unset;
	max-width: 1160px;
	margin: 0 auto;
	/* padding: 0 3em; */
}

#recipe-list > div {
	flex: 1 1 320px;
	max-width: 420px;
	margin: 1rem;
}

.empty-post {
	height: 0 !important;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

a.post-img {
	display: block;
	height: 300px;
	overflow: hidden;
}

a.post-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.post-title {
	height: 4em;
	overflow: hidden;
}

.recipe-details {
	text-align: center;
	border-bottom-color: gray;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.recipe-details img {
	width: 20px;
	height: 20px;
	margin-bottom: 5px;
	margin-left: 2px;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	filter: brightness(0.5);
}

.recipe-description {
	position: relative;
	/* height: 75px; */
	max-height: 4em;
	overflow: hidden;
	margin-bottom: 20px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.recipe-fade {
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		rgba(248, 248, 248, 0),
		rgb(248, 248, 248)
	);
}

.bp-content {
	padding: 15px 15px 25px 15px !important;
}

.post-bottom {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

.post-bottom .price-and-quantity {
	color: #000;
	text-align: right;
	font-size: 10pt;
	font-weight: 400;
}

.post-bottom .price-and-quantity .format-money-real {
	font-size: 2em;
	letter-spacing: 0;
}