/*   Project: Popup Lightbox  */
.lightbox {
	position: fixed;
	background: rgba(0, 0, 0, 0.70);
	display: none;
	z-index: 100;
	width: 50% !important;
	min-height: 25vw !important;
	max-height: 80vh !important;
	height: auto !important;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin-top: 0 !important;
	margin-left: 0 !important;
	border-radius: 6px;
}
.lightbox .img-show {
	position: absolute;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	margin: 5px 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.img-caption {
	background: rgba(0, 0, 0, 0.2);
	min-height: 25px;
	position: absolute;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 101;
	color: #fff;
	text-shadow: 1px 0.4px rgba(0, 0, 0, 0.5);
	width: 100%;
	box-sizing: border-box;
	font-size: .83vw;
}

.lightbox .btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	text-align: center;
	font-size: 18pt;
	z-index: 101;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox .btn-close:hover {
	background: #fff;
}

.lightbox .lightbox-status {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	font-size: 14px;
	z-index: 101;
}

.lightbox .img-show img {
	/* width: 100%; */
	min-height: 85%;
	max-height: 100%;
	/* position: absolute;
	display: block;
	top: 0;
	bottom: 0; */
	margin: auto;
}


/* Next and Previous Buttons */

.btn-prev,
.btn-next {
	width: 32px;
	height: 100px;
	background: rgba(0, 0, 0, 0.30);
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	z-index: 101;
	border: 0;
	font-family: FontAwesome;
	color: #fff;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18pt;
	border-radius: 5px;
}

.btn-prev:hover,
.btn-next:hover {
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: 0.4s;
	-o-transition: .4s;
}

.btn-prev {
	left: 5px;
}

.btn-next {
	right: 5px;
}

.btn-prev:before {
	content: "\f104";
}

.btn-next:before {
	content: "\f105";
}

@media screen and ( max-width: 1920px){
.img-caption{font-size: 16px;bottom: 5px;}
}
@media screen and ( max-width: 680px) {
	.lightbox {
		border-radius: 5px;
		box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
		width: 95% !important;
	    height: auto !important;
	   min-height: 80vh !important;
	   max-height: 90vh !important;
	}
	.lightbox .img-show img{width: 95%;max-height: unset;min-height: auto;}
}