.container-section{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-header{
	/*min-height: 100px;*/
	 width: 100%;
  	padding-bottom: 50%;
	background-color: white;
	width: 100%;
}



.section-content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}


.cell-item{
	padding: 8px;
	width: 50%;
	background-color: none;

	display: flex;
	flex-direction: column;
}

.image-cell-item{
	background-color: white;
	display: inline-block;

	width: 100%;
	padding-bottom: 100%;
	background-size: contain;
}

.footer-cell-item{
	background-color: white;
	flex-grow: 1;
	height: auto;
	padding: 4px 8px;
	border-top:1px solid #ccc;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.footer-cell-item>:first-child{
	font-size: 14px;
}

.footer-cell-item>:last-child{
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.price{
	color:red;
}
.price>span:nth-child(1){
	font-size: 12px;
}
.price>span:nth-child(3){
	font-size: 12px;
}

.footer-cell-item i{
	font-size:18px;
	color:#008000;
}


