#overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	z-index: 21000;
	overflow: auto;
}

#overlay.hidden {
	display: none;
}

#overlay .modal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 21002;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	opacity: 1;
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

#overlay .modal.hidden {
	display: none;
}

#overlay .modal img {
	height: auto;
	max-width: 90vw;
	display: block;
}

#overlay .bg {
    position:absolute;
    z-index: 21001;
    top:0;
    left:0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);

}
