.lightbox{
	width: 100%;
	padding-left: 3%;
}

.lightbox img{
	width: 30%;
	height: 250px;
	margin: 5px;
	float: left;
	cursor: pointer;
	object-fit: cover;
	border: 2px solid #fff;
	transition: 0.5s;
}

.lightbox img:hover{
	border: 2px solid #1890ff;
}

.lightboxModal{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	z-index: 5000;
	display: none;
	justify-content: center;
    align-items: center;
	flex-direction:column;
}

.lightboxModal img{
	max-height: 90vh;
	max-width: 90vw;
	width: auto;
	height: auto;
	transition: 0.5s;
	opacity: 0;
}

.lightboxModalTitle{
	color: #fff;
	font-size: 1em;
	text-align: center;
	margin-top: 10px;
	opacity: 0;
	width:80%;
}

.lightboxModalCloseBtn{
	font-size:50px;
	color:#fff;
	position: absolute;
	top:10px;
	right:20px;
	cursor: pointer;
	transition: 0.5s;
}

.lightboxModalCloseBtn:hover{
	color: #ccc;
}

.lightboxModal .next,
.lightboxModal .prev
{
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

.lightboxModal .next{
	right:20px;
}

.lightboxModal .prev{
	left:20px;
}

.lightboxModal .next:hover,
.lightboxModal .prev:hover{
	color: #ccc;
}

@media screen and (max-width: 1024px) {
	.lightbox img{
		width: 100%;
	}
	
	.lightbox{	
		padding-left: 0px;
		padding-right: 10px;
		width: auto;
	}
}