.LightBoxMask {
	position:fixed;
	z-index:100;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:rgba(0,0,0,0.8);
	display:flex;
	align-items:center;
	justify-content:center;
}
.LightBoxMask .Container {
	background-color:white;
	padding:10px;
	box-shadow:0 0 20px rgba(0,0,0,0.5);
	position: relative;
}
.LightBoxMask .Container img {
	max-width:80vw;
	max-height:80vh;
	display:block;
}
.LightBoxMask .Container video {
	max-width:80vw;
	max-height:80vh;
	display:block;
}
.LightBoxMask .ImageAlt span {
	display:block;
	text-align:center;
	font-size:12px;
	color:black;
	padding-top:0.4rem;
}
.LightBoxMask .Close {
	position:absolute;
	top:30px;
	right:30px;
	width:50px;
	height:50px;
	cursor:pointer;
	filter:drop-shadow(1px 1px 5px rgba(0,0,0,.8));
    opacity: 0.5;
    transition:all 0.3s ease;
}
.LightBoxMask .Close::before,
.LightBoxMask .Close::after {
	position:absolute;
	left:24px;
	top:0px;
	content:' ';
	background-color:white;
	width:3px;
	height:50px;
	transition:all 0.3s ease;
}
.LightBoxMask .Close::before {
	transform:rotate(45deg);
}
.LightBoxMask .Close::after {
	transform:rotate(-45deg);
}
.LightBoxMask .Close:hover{
    opacity: 1;
}
.LightBoxMask .Close:hover::before {
	transform:rotate(135deg);
}
.LightBoxMask .Close:hover::after {
	transform:rotate(45deg);
}
.LightBoxMask .Prev,
.LightBoxMask .Next {
	position:absolute;
	top:50%;
    transform: translateY(-50%);
	height:50vh;
	width:30vw;
	cursor:pointer;
}
.LightBoxMask .Prev {
	left:0px;
	z-index: 1;
}
.LightBoxMask .Next {
	right:0px;
	z-index: 1;
}
@media (min-width: 1000px) {
	.LightBoxMask .Prev::after,
	.LightBoxMask .Next::after{
		position:absolute;
		content:"";
		box-sizing:border-box;
		top:50%;
		width:50px;
		height:50px;
		border-top:3px solid rgba(255,255,255,0.5);
		border-left:3px solid rgba(255,255,255,0.5);
		transform-origin:15px 15px;
		box-shadow:-2px -2px 2px rgba(0,0,0,0.2);
		transition:all 0.3s ease;
	}
	.LightBoxMask .Prev::after {
		left:100px;
		transform:rotate(-45deg) translateY(-15px);
	}
	.LightBoxMask .Next::after {
		right:60px;
		transform:rotate(135deg) translateY(15px);
	}
}
@media (max-width: 1000px) {
	.LightBoxMask .Prev::after,
	.LightBoxMask .Next::after{
		position:absolute;
		content:"";
		box-sizing:border-box;
		top:50%;
		width:20px;
		height:20px;
		border-top:3px solid rgba(255,255,255,0.5);
		border-left:3px solid rgba(255,255,255,0.5);
		transform-origin:15px 15px;
		box-shadow:-2px -2px 2px rgba(0,0,0,0.2);
		transition:all 0.3s ease;
	}
	.LightBoxMask .Prev::after {
		left:70px;
		transform:rotate(-45deg) translateY(-15px);
	}
	.LightBoxMask .Next::after {
		right:60px;
		transform:rotate(135deg) translateY(15px);
	}
}


.LightBoxMask .Prev:hover::after,
.LightBoxMask .Next:hover::after {
	border-top:3px solid rgba(255,255,255,1);
	border-left:3px solid rgba(255,255,255,1);
}
.LightBoxMask .Prev:hover::after {
	left:80px;
}
.LightBoxMask .Next:hover::after {
	right:40px;
}
.LightBoxMask .Total{
	position: absolute;
	bottom:30px;
	right:50px;
	font-size:18px;
	color:#ffffff88;
}
.LightBoxMask .Title{
	position: absolute;
	bottom:-50px;
	left:50%;
	transform: translateX(-50%);
	font-size:30px;
	color:#ffffff;
}