
.gallery-container {
	position: relative;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.9);
	z-index: 9999;
	opacity: 0;
	display: none;
}
.gallery-container > .images-container {
	position: relative;
	top: 6%;
	width: 75%;
	height: 75%;
	min-width: 260px;
	margin: 0 auto;
	overflow: hidden;
	font-size: 0;
	z-index: -2;
}
.gallery-container > .images-container > .image-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}
.gallery-container > .images-container > .image-container.active {
	z-index: 1;
	opacity: 1;
}
.gallery-container > .images-container > .image-container.previous {
	z-index: 0;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}
.gallery-container > .images-container > .image-container > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gallery-container > .thumbnails {
	width: 100%;
	height: 80px;
	position: absolute;
	bottom: 32px;
	white-space: nowrap;
	overflow: hidden;
}
.gallery-container > .thumbnails > .image-container {
	width: 120px;
	height: 80px;
	display: inline-block;
	background: rgba(0,0,0,0.5);
	transition: background 0.25s ease-in-out;
}
.gallery-container > .thumbnails > .image-container.active {
	background: rgba(0,0,0,0);	
}
.gallery-container > .thumbnails > .image-container:hover {
	cursor: pointer;
	background: rgba(0,0,0,0);
}
.gallery-container > .thumbnails > .image-container:not(:first-of-type) {
	margin-left: 16px;
}
.gallery-container > .thumbnails > .image-container > img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
    -webkit-user-select: none;  
    -khtml-user-select: none;   
    -moz-user-select: none; 
    -o-user-select: none;    
    user-select: none; 
}

.gallery-container > .control > div {
	position: absolute;
	width: 24px;
	height: 24px;
	border-top: 8px solid white;
	border-right: 8px solid white;
	top: calc(50vh - 60px);
}
.gallery-container > .control > div:hover {
	cursor: pointer;
}
.gallery-container > .control.right > div {
	right: 16px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.gallery-container > .control.left > div {
	left: 16px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.gallery-container > .close {
	color: white;
	position: absolute;
	top: 16px;
	right: 24px;
	font-size: 42px;
	margin-top: -16px;
}
.gallery-container > .close:hover {
	cursor: pointer;
}