.image-zoom-open {
	overflow: hidden !important;
}

.image-zoom__window * {
	-webkit-tap-highlight-color: rgba(0,0,0,0.2);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.image-zoom__window {
	--min-width-and-height: 75px;
	/*width:100%;*/
	/*height:100%;*/
	position: fixed;
	top: 0;
	bottom: 0;
	right:0;
	left:0;
	background-color: #333333dd;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	overflow: auto;
	color:#bbbbbbee;
}

.image-zoom__exit-button, .image-zoom__magnifying-glass-button {
	position: fixed;
	top:1em;
	min-width: var(--min-width-and-height);
	min-height: var(--min-width-and-height);
}

.image-zoom__exit-button, .image-zoom__magnifying-glass-button, .image-zoom__left-button, .image-zoom__right-button {
	background-color: #333333dd;
	border: solid 1px #333333dd;
	text-align: center;
}

.image-zoom__exit-button {
	display: flex;
	justify-content: center;
	align-items: center;
	right:1em;
}

.image-zoom__magnifying-glass-button {
	display: flex;
	justify-content: center;
	align-items: center;
	right:calc(var(--min-width-and-height) + 2em);
}

.image-zoom__exit-button:hover, .image-zoom__magnifying-glass-button:hover, .image-zoom__left-button:hover, .image-zoom__right-button:hover {
	font-size: 1.02em !important;
	cursor: pointer;
}
.image-zoom__magnifying-glass-button:hover {
	right:calc(var(--min-width-and-height) + 1.96em);
	top: 0.98em;
}

.image-zoom__window .fa-chevron-right:before {
	margin-left: 9.7px;
	margin-right: 4px;
}

.image-zoom__window .fa-chevron-left:before {
	margin-right: 9.7px;
	margin-left: 4px;
}

.image-zoom__left-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 1em;
	margin-top: auto;
	margin-bottom: auto;
	min-width: var(--min-width-and-height);
	min-height: var(--min-width-and-height);
}

.image-zoom__right-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1em;
	margin-top: auto;
	margin-bottom: auto;
	min-width: var(--min-width-and-height);
	min-height: var(--min-width-and-height);
}

.image-zoom__image--visible {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	max-width: 80vh;
	max-height: 80vh;
	height: auto;
	width:auto;
}

.image-zoom__image--invisible {
	display: none;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	max-width: 80vh;
	max-height: 80vh;
	height: auto;
}

.image-zoom--selected-top {
	color: #eeeeeeee;
	font-size: 1.25em;
	top: 0.8em !important;
}
.image-zoom--selected-top:hover {
	font-size: 1.27em !important;
	top: 0.787em !important;
}
.image-zoom__magnifying-glass-button.image-zoom--selected-top {
	right:calc(var(--min-width-and-height) + 1.6em);
}
.image-zoom__magnifying-glass-button.image-zoom--selected-top:hover {
	right:calc(var(--min-width-and-height) + 1.574em);
}
.image-zoom--disabled {
	color: #88888888;
	font-size: 0.98em;
}

.image-zoom--disabled:hover {
	font-size: 1em !important;
	cursor: auto !important;
}