html {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 22px;
		overflow: hidden;
}
#viewer {
	width: 100%;
	height: 100vh;
	box-sizing: border-box;
}
.highlight {
	border: 1px solid rgba(101,32,195,0.0);
	background-color: rgba(101,32,195,0.0625);
	border-radius: 15px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	cursor: pointer;
	box-shadow: 0px 0px 12px #652082;
	transition: background-color 300ms ease, box-shadow 300ms ease;
}
.highlight:hover {
	border: 1px solid rgba(101,32,195,0.125);
	background-color: rgba(101,32,195,0.0);
	box-shadow: 0px 0px 0px #652082;
}
.logo-grenoble {
	display: block;
	width: 95%;
	box-sizing: border-box;
	margin: auto;
}
.zone-icon-info {
	display: block;
	height: 100%;
	margin-left: auto;
	position: relative;
}
.icon-info {
	display: block;
	right: 2.5%;
	top: 43%;
	position: absolute;
}
.full-screen-logo {
	position: absolute;
	display: block;
	background: rgba(255, 255, 255, 1.0);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	z-index: 10000;
	transition: opacity 1750ms ease;
	opacity: 1.0;
}
.full-screen-logo img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	transform: translate(50%, 50%);
}
.full-screen-logo.full-screen-logo-faded {
	opacity: 0.0;
}

.popup {
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	border: 1px solid #c1c1c1;
	padding: 2rem 1em;
	z-index: 1000;
	max-width: 100%;
	max-height: 100%;
	box-sizing: border-box;
	overflow: auto;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
.popup button {
	cursor: pointer;
	text-align: center;
	background: #65208255;
	border: 2px solid #6520825a;
	color: #333;
	border-radius: 5px;
	padding: 6px 6px;
	font-size: 110%;
}

.tool-zone {
	position: absolute;
	top: 0.75rem;
	left: 0.5rem;
	right: 0.5rem;
	z-index: 1000;
	text-align: center;
}
.tool-zone .tool-button {
	width: 2rem;
	background: transparent;
	border: none;
}
.tool-zone .tool-button img {
	display: block;
}

@media only screen and (width >= 1000px) {
	.logo-grenoble {
		display: block;
		width: 45%;
	}
	.popup {
		position: fixed;
		left: 50%;
		top: 50%;
		max-width: unset;
		width: 58rem;
		max-height: 80vh;
		transform: translate(-50%, -50%);
	}
}