body { padding-top: 70px; }

.form-control {
    border-radius: 10px;
}

.product-container{
	margin-bottom: 20px;
	padding: 20px;
	color: black;
	border: solid black 1px;
	border-radius: 25px;
}

.product-title{
	height: 50px;
}

.product-title > p{
	font-size: 16px;
}

.product-img{
	height: 120px;
}

.product-img > img{
   display:block;
   margin:auto;
}

.product-details{
	height: 50px;
}

.product-details >img{
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.product-details > p{
	float: left;
	font-size: 16px;
}

.product-details > button{
	float: right;
}


.fade {
  opacity: 0;
	z-index: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
	z-index: 100;
}

.sale-alert{
	position: fixed;
	z-index: 0;
	width: 100%;
	text-align: center;
}