#env-swiper {
	position: fixed;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

svg {
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	transform: translate3D(-50%, -50%, 0);
}

image {
	pointer-events: none;
}

/* ScrollBar */

#the-scrollbar,
#the-scrolldrag {
	border-radius: var(--outer-padding);
}

#the-scrollbar {
	font-weight: bold;
	top: calc(50% - (2.5 * var(--outer-padding)));
	right: var(--outer-padding);
	width: calc(5 * var(--outer-padding));
	height: calc(5 * var(--outer-padding));
	background-color: rgb(239, 228, 224, 1);
	box-shadow: 0 0 10vh 0 rgba(0, 0, 0, 0.2);
}

#the-scrollbar[style*="opacity: 0;"] {
	opacity: 1 !important;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 10vh 0 rgba(0, 0, 0, 0);
}

#the-scrollbar[style*="opacity: 0;"] #the-scrolldrag {
	background-color: rgb(246, 243, 242, 0.8);
}

#the-scrolldrag {
	background-color: rgba(246, 243, 242, 0.8);
	box-shadow: 0 0 1vh 0 rgba(0, 0, 0, 0.5);
}

#zones {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	font-size: 1.2em;
}

#zones li {
	border-radius: 100px;
	text-align: center;
	line-height: 1em;
	vertical-align: middle;
}

/* SVG CSS */

.cliczone {
	opacity: 0;
	fill: #FFFFFF;
	cursor: pointer;
	enable-background: new;
}


@keyframes blink {
	0% {
		opacity: 0%;
	}

	25% {
		opacity: 100%;
	}

	50% {
		opacity: 0%;
	}

	100% {
		opacity: 0%;
	}
}

.element image {
	filter: drop-shadow(0px 0px 3vh black);
	animation: blink infinite 12s;
}