.image-viewer {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}
.image-viewer img {
	display: block;
	/* width: 100%;
	height: 100%; */
	object-fit: contain;
	transition: opacity .15s ease-in;
}
.image-viewer .annotations {
	position: absolute;
	width: 100%;
	height: 100%;
}
.image-viewer .icon-loading {
	color: #999;
}
.image-viewer .loading-bar {
	width: 100%;
	bottom: 0;
	height: 5px;
	position: absolute;
}
.image-viewer .loading-bar .bar {
	display: block;
	width: 0;
	height: 100%;
	background: #999;
}