.lightbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 2000;
    display: flex;
    align-content: center;
    justify-content: center;
	flex-wrap: wrap;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
}
.lightbox img {
	max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox .lightbox-close,
.lightbox .lightbox-number {
	position: absolute;
    top: 5px;
	color: #fff;
	opacity: .7;
	transition: opacity .3s;
}
.lightbox .lightbox-close {
	right: 10px;
	cursor: pointer;
}
.lightbox .lightbox-number {
	left: 10px;
	font-size: 1.75em;
}
.lightbox .lightbox-close:hover,
.lightbox .lightbox-button:hover {
	opacity: 1;
}
.lightbox .lightbox-button {
	position: absolute;
	width: 5vw;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #fff;
	opacity: .7;
	text-align: center;
	transition: opacity .3s;
}
.lightbox .lightbox-next {
	right: 0;
}
.lightbox .lightbox-prev {
	left: 0;
}
.lightbox .lightbox-button i {
	transform: scale(2);
}
.lightbox-item {
	cursor: pointer;
}
