/**
 * jQuery lightBox plugin - Modern Light Theme
 */
#jquery-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45) !important;
	backdrop-filter: blur(6px);
}
#jquery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	border: 1px solid #e5e7eb;
	overflow: hidden;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none; }
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev {
	left: 0;
	float: left;
}
#lightbox-nav-btnNext {
	right: 0;
	float: right;
}
#lightbox-container-image-data-box {
	font: 12px 'Inter', 'Noto Sans JP', sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.6;
	overflow: auto;
	width: 100%;
	padding: 12px 16px;
	border-top: 1px solid #e5e7eb;
}
#lightbox-container-image-data {
	padding: 0 10px;
	color: #4b5563;
}
#lightbox-container-image-data #lightbox-image-details {
	width: 70%;
	float: left;
	text-align: left;
}
#lightbox-image-details-caption {
	font-weight: 600;
	color: #1a1a2e;
}
#lightbox-image-details-currentNumber {
	display: block;
	clear: left;
	padding-bottom: 1em;
	color: #9ca3af;
}
#lightbox-secNav-btnClose {
	width: 66px;
	float: right;
	padding-bottom: 0.7em;
}
