#gallery-popup {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.9);
	z-index:2000;
}
#gallery-popup-close {
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
	left: 0;
	margin:auto;
        background: url(close.png) no-repeat center center transparent;
	color:#FFF;
	width:50px;
	height:50px;
}

#gallery-popup-close .fa-stack-2x 
{
	font-size:36px;
	line-height:50px;
}
#gallery-popup-close .fa-stack-1x 
{
	font-size:20px;
	line-height:50px;
}
#gallery-popup-content {
        position: absolute;
        left: 50px;
        top: 50px;
        right: 50px;
        bottom: 50px;
}

#gallery {
        width: 100%;
        height: 100%;
        background: none no-repeat center center transparent;
        background-size: contain;
}

#gallery-buttons {
        position: absolute;
        left: 50%;
        width: 80px;
        height: 40px;
        margin-left: -40px;
        bottom: 0;
}

#gallery-button-prev, #gallery-button-next {
        width: 36px;
        height: 36px;
        border-radius: 20px;
        cursor: pointer;
}

#gallery-button-prev {
        float: left;
        background: url(prev.png) no-repeat center center rgba(0,0,0,0.5);
}

#gallery-button-next {
        float: right;
        background: url(next.png) no-repeat center center rgba(0,0,0,0.5);
}
