<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*   Project: Popup Lightbox 
 *   Author: Asif Mughal
 *   URL: www.codehim.com
 *   License: MIT License
 *   Copyright (c) 2019 - Asif Mughal
 */
 
/* File: popup-lightbox.css */

.lightbox {
	position: fixed;
	background: rgba(0, 0, 0, 0.90);
	display: none;
	z-index: 100;
}

.lightbox .img-show {
	position: absolute;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}

.img-caption {
	background: rgba(0, 0, 0, 0.8);
	padding: .1rem;
	position: absolute;
	bottom: -3rem;
	display: block;
	z-index: 101;
	color: #fff;
	text-shadow: .01rem 0.004rem rgba(0, 0, 0, 0.5);
	width: 100%;
	box-sizing: border-box;
	font-size: .3rem;
}

.lightbox .btn-close {
	position: absolute;
	top: .6rem;
	right: .6rem;
	width: .6rem;
	height: .6rem;
	border: .01rem solid #fff;
	background: rgba(255, 255, 255, 1);
	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: .2rem;
	left: .2rem;
	color: #fff;
	font-size: .14rem;
	z-index: 101;
}

.img-show img {
	width: 100%;
	height: auto;
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
}


/* Next and Previous Buttons */

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

.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: .05rem;
}

.btn-next {
	right: .05rem;
}

.btn-prev:before {
	content: "&lt;";
}

.btn-next:before {
	content: "&gt;";
}

@media only screen and ( min-width: 680px) {
	.lightbox {
		border-radius: .05rem;
		box-shadow: .05rem .05rem .15rem rgba(0, 0, 0, 0.5);
	}
}</pre></body></html>