.lightbox {
	position: fixed;
	background: rgba(255,255,255,.8);
	display: none;
	z-index: 100
}

.lightbox .img-show {
	position: absolute;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	text-align: center
}

.lightbox .btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border: 1px solid #fff;
	background: rgba(255,255,255,.5);
	border-radius: 50%;
	text-align: center;
	font-size: 18pt;
	z-index: 101;
	cursor: pointer
}

.lightbox .btn-close:hover {
	background: #fff
}

.lightbox .lightbox-status {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	font-size: 14px;
	z-index: 101
}

.img-show img {
	width: 100%;
	height: auto;
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
	left:0;
}

.btn-prev,.btn-next {
	width: 32px;
	height: 100px;
	background: rgba(0,0,0,.3);
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	z-index: 101;
	border: 0;
	font-family: FontAwesome;
	color: #fff;
	color: rgba(255,255,255,.6);
	font-size: 18pt;
	border-radius: 5px
}

.btn-prev:hover,.btn-next:hover {
	background: rgba(0,0,0,.7);
	color: #fff;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s
}

.btn-prev {
	left: 5px
}

.btn-next {
	right: 5px
}

.btn-prev:before {
	content: "<"
}

.btn-next:before {
	content: ">"
}

.addfavor {
    border-radius: 5px;
    width: 32px;
    height: 32px;
	border:1px solid #DDD;
	font-size:20px;
	text-align:center;
	line-height:26px;
	color:#FFF;
	background:#DDD;
	float:left;
	margin-left:60px;
}

.cart {
    border-radius: 5px;
    width: 32px;
    height: 32px;
	border:1px solid #DDD;
	text-align:center;
	line-height:20px;
	color:#FFF;
	background:#DDD url('images/cart.svg') center no-repeat;
	float:left;
	margin-left:10px;
} 

.addfavor:hover{
    background: #00b383;	
}

.cart:hover{
	background:#00b383 url('/images/cart.svg') center no-repeat;
} 

.myfavor .addfavor {
    background: #00b383;
}

.favor{
	position:relative;
	left:calc(50% - 75px);
	top:88%;
	padding:15px 7.5px;
	border:none;
	color:#FFF;
	border-radius:10px;
	width:150px;
	background:#00b383;
	box-shadow:2px 2px 4px #333;
}

@media only screen and (min-width:680px) {
	.lightbox {
		border-radius: 5px;
		box-shadow: 5px 5px 15px rgba(0,0,0,.5)
	}
}

