
.galleryContainer .img {
	margin: 15px 0;
}
.galleryContainer .img .title {
text-align:center;
}
	.galleryContainer .imgLink {
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-color:#f7f7f7;
		height: 300px;
		cursor: pointer;
		border-radius:16px;
	}

.galleryContainer .imgLink:hover { 
	background-color: #f3f3f3; 
}


.gallery_overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0, 0.6);
	display: none;
}
.gallery_overlay .closebtn {
		position: absolute;
		z-index: 3;
		top: -20px;
		right: -30px;
		font-size: 40px;
		color: #f1f1f1;
		text-decoration: none;
	}
	.gallery_overlay .prev, .next {
		outline: none;
		text-decoration: none;
		cursor: pointer;
		position: absolute;
		z-index: 3;
		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;
		background-color: rgba(0, 0, 0, 0.1);
	}
.gallery_overlay .next {
		right: 0;
		border-radius: 3px 0 0 3px;
	}
.gallery_overlay .prev:hover,
	.next:hover {
		background-color: rgba(0, 0, 0, 0.8);
	}
	.gallery_overlay .imageTitle {
		text-align: center;
		padding: 2px;
		height: 25px;
		position: relative;
		color: #333;
		font-size: 15px;
	}
	.gallery_overlay .content {
		top: 20px;
		bottom: 20px;
		height: calc(100% - 40px);
		position: relative;
		background-color: #fefefe;
		margin: auto;
		padding: 0;
		width: 65%;
		max-width: 1200px;
	}
		.gallery_overlay .content .img-container {
			height: calc(100% - 30px);
			overflow-y: auto;
			border-radius: 16px;
			background-position: center;
			background-repeat: no-repeat;
			background-size: contain;
		}
			.gallery_overlay .content .img-container::-webkit-scrollbar {
				width: 0px;
				background-color: #f9f9f9;
			} 

		.gallery_overlay .content .img-container .bigImage { 
			width: 100%;
			position: relative;
			border: 3px solid #fff;
		}