
#lightbox-overlay.open{
	display: block;
	top: 0;
	left: 0;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(25,25,24,.5);

}

#lightbox-overlay .lb-content{
	width: 600px;
	height: 400px;
	padding: 60px 30px;
	
	background-color: #FFF;
	border-radius: 10px;

	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   // text-align: center;
    	
   

}
#lightbox-overlay .the-content{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	overflow-y: auto;
}
#lightbox-overlay .bt-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
#lightbox-overlay .bt-close img {
    width: 30px;
}