/* Common styles */


:root {
	font-family: var(--fontRegular);
	color: black;
	font-weight: 400;
	line-height: 1.2;
}

*:focus {
	outline: 0 !important;
}

.error404 {
	color:white;
}
.error404 a{
	color:var(--colorLightGold) !important;
	text-decoration: underline !important;
}
/* Scrollbars */
@-moz-document url-prefix() {
	* {
		scrollbar-width: thin;
		scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
	}
}


::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background-color: rgba(255, 255, 255, 0.0);
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.0);
}

::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.3);
}

/* Scrollbars */



a,
a:link,
a:visited {
	color: var(--colorLink);
	text-decoration: none;
	transition: color 0.3s ease;
}

body.hasHover a:hover,
body.hasHover a:active {
	color: var(--colorLinkOverlay);
}

* {
	box-sizing: border-box;
}

@font-face {
	font-display: block;
	font-style: normal;
	font-family: "Material Icons";
	font-weight: 400;
	src: url("../fonts/material-icons.woff2?ver=8.20") format("woff2");
}

.material-icons {
	display: inline-block;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: 'liga';
	-moz-osx-font-smoothing: grayscale;
	font-family: "Material Icons";
	font-weight: 400;
	pointer-events: none;
}



/* Header */
html {
	font-weight: 300;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size:min(16px, 2vh);
}

body {
	overflow-y: hidden;
	overflow-x: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}

ul {
	margin: 0 0 0 1em;
	line-height: 1.5;
		list-style-type: disc;
		padding: 0;
}
li{
	margin: 0 0 0.5rem;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

.openPopupText {
	pointer-events: all;
}

/* Header */

.overContent {
	pointer-events: none !important;
	z-index: 2;
}

.overContent h2 {
	opacity: 0.7;
}

.subtitle {
	border-top: 1px solid var(--colorLightGold);
	border-bottom: 1px solid var(--colorLightGold);
	background: rgba(0, 0, 0, 0.01);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 2rem 0 !important;
	margin-top: 2rem !important;
	display: inline-block;
}

.subtitle ul {
	line-height: 1.2em;
	margin: 0 1em 0 1.5em;
}


.slideBlock {
	height: 100vh !important;
	width: 100vw;
	overflow: hidden;
}

.pageIframe {
	display: block;
	height: 100vh;
	width: 100vw;
}

.hiddenBlock, .hidden{
	display: none;
}

.slidePanoContainer,
.slideMapContainer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.animatedHSback {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%;
	border-radius: 50%;
	pointer-events: none;
	background-color: #ffFFFF;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-name: bgCircleSize;
	transform-origin: center center;
	animation-timing-function: ease-out;

}

@keyframes bgCircleSize {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}

	25% {
		transform: scale(0.9);
		opacity: 1;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}


.mapboxgl-ctrl.mapboxgl-ctrl-group {
	margin-bottom: 50px !important;
}


















/* All Pages */
.mainContentBlock {
	width: 90%;
}

.leftColumnGradient{
	position: fixed;
	width:50vw;
	height:100vh;
	top:0;
	left:0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
}

/* All Pages */











/* Switcher */
.switcherSelector {
	background-color: var(--colorGreenLight);
	background: linear-gradient(0deg, var(--colorGreenLight) 0%,var(--colorGreenLightLight) 100%);
	height: calc(100% - 4px);
	width: 0px;
	height:calc(100% - 4px);
	position: absolute;
	box-sizing: border-box;
	top: 2px;
	left: 1px;
	border-radius: 2em;
	transition: all 0.5s cubic-bezier(.5, -0.3, .5, 1.3);
	pointer-events: none;
	display: block;
}
.switcherSelectorScale{
	transform: scale(-10%, 20%);
}
.switherItem {
	position: relative;
	display: block;
	padding: 3px 10px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 400;
	cursor:pointer;
}
.switcherContainer {
	position: absolute;
	bottom: calc(var(--footerHeight) + 10px);
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	background-color: black;
	box-sizing: border-box;
	z-index: 10;
	display: flex;
	gap: 10px;
	flex-direction: row;
	flex-wrap: nowrap;
	border-radius: 2em;
	padding: 4px 2px;
	border: solid 1px rgba(255, 255, 255, 0.3);
	transition: box-shadow 0.3s ease;
}
.switherAboveThumbs{
	bottom: calc(var(--thumbLineHeight) * 2  + 10px);
}

body.hasHover .switcherContainer:hover {
	box-shadow:var(--buttonOverOutline);
	background-color: #101010;
}
.switcherActive{
	cursor: default ;
	pointer-events: none;
}

.switherAtLeft{
	left: 0;
	transform: translateX(0) translateY(110px);
	bottom: 50%;
}

/* Switcher */
