/* Fonts */
@font-face {
	/* font-family: 'gotham_mediumregular'; */
	font-family: 'BasisGrotesque-Medium';
	src: url('_fonts/BasisGrotesque-Medium.woff2') format('woff2'),
		 url('_fonts/BasisGrotesque-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	/* font-family: 'Gotham-Book'; */
	font-family: 'BasisGrotesqueTrial-Black';
	src: url('_fonts/BasisGrotesqueTrial-Black.woff2') format('woff2'),
	   url('_fonts/BasisGrotesqueTrial-Black.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}



/* ***********************************************************
## RESET
*********************************************************** */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background:transparent;
}

body {
  font-family: 'BasisGrotesque-Medium', sans-serif;
  line-height: 1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  outline: 0;
  &:hover{
	text-decoration: none;
  }
}
/* General CSS */
.neo__header {
	display: block;
  position: absolute;
  top: 45px;
  left: 50px;
  width: auto;
  min-width: 130px;
  height: auto;
  overflow: hidden;
  background-color: transparent;
  z-index: 5001;
  transition: all 0.3s ease-out;
}
.neo__menu {
  display: inline-block;
	vertical-align: middle;
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  min-width: 30px;
  height: 26px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  z-index: 5001;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .neo__header {
	  left: 30px;
	  top: 20px;
  }
}
.neo__header.hidden,
.neo__menu.hidden {
  opacity: 0;
  pointer-events: none;
}
.neo__menu > div {
  position: absolute;
  top: 50%;
  left: auto;
	right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.neo__header > figure {
	display: inline-block;
	vertical-align: middle;
}
.neo__header > figure > img {
	max-width: 130px;
}

@media screen and (max-width: 640px) {
	.neo__header > figure {
		display: none;
	}
}

.neo__header > summary {
	display: inline-block;
	vertical-align: middle;
}

.neo__group__label,
.neo__scene__label {
  margin: 3px 0 0 34px;
  padding: 0 0 2px;
  font-size: 19px;
  padding-right: 5px;
  transition: opacity 0.4s ease-in-out;
	text-shadow: 1px 2px 2px rgba(0,0,0,0.5);
}
.neo__group__label {
	font-size: 23px;
	margin-bottom: 8px;
}


@media screen and (max-width: 640px) {
	.neo__group__label, .neo__scene__label {
		margin-left: 10px;
	}
}


@media screen and (max-width: 470px) {
	.neo__group__label,
  .neo__scene__label {
	opacity: 0;
  }
}

.neo__group__label.hidden,
.neo__scene__label.hidden {
  display: none;
}

.neo__menu.disabled {
	pointer-events: none;
}

.neo__menu > div._front {
	-webkit-transition: transform ease 300ms;
  -moz-transition: transform ease 300ms;
  -ms-transition: transform ease 300ms;
  -o-transition: transform ease 300ms;
  transition: transform ease 300ms;
}

.neo__menu > div._front.hidden {
  opacity: 0;
  pointer-events: none;
}
.neo__menu > div._front span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 2px 2px rgba(0,0,0,0.5);
}
.neo__menu > div._front span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: transform ease 300ms;
  -moz-transition: transform ease 300ms;
  -ms-transition: transform ease 300ms;
  -o-transition: transform ease 300ms;
  transition: transform ease 300ms;
}
.neo__menu > div._front span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: transform ease 300ms;
  -moz-transition: transform ease 300ms;
  -ms-transition: transform ease 300ms;
  -o-transition: transform ease 300ms;
  transition: transform ease 300ms;
}
.neo__menu > div._front span:nth-child(2):before,
.neo__menu > div._front span:nth-child(2):after {
  transition-delay: 75ms;
}
.neo__menu > div._front span:last-child {
  margin: 0;
}
.neo__menu > div._front span:last-child:before,
.neo__menu > div._front span:last-child:after {
  transition-delay: 150ms;
}
.neo__menu > div._back span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transform: translateY(50%) rotate(45deg) scaleX(0);
  transition: transform ease 200ms;
}
.neo__menu.active > div._back span {
  transition-delay: 450ms;
  transform: translateY(50%) rotate(45deg) scaleX(1);
}
.neo__menu.active > div._front span {
  box-shadow: none;
}
.neo__menu.active > div._front span:before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.neo__menu.active > div._front span:after {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  -o-transform: translateX(200%);
  transform: translateX(200%);
}
.neo__menu.active > div._back span:last-child {
  transform:translateY(-50%) rotate(-45deg) scaleX(1);
}

@media screen and (max-width: 640px) {
	.neo__menu.active .neo__group__label,
	.neo__menu.active .neo__scene__label {
		display: none;
	}
}

.neo__nav {
  box-sizing: border-box;
  width: 345px;
  max-width: 100%;
  height: 100%;
  padding: 150px 50px 30px;
  background-color: rgba(37, 0, 84, .85);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out;
  /* background-image: url('../skin/menu-bg.png');
  background-size: cover; */
	overflow: auto;
}
.neo__nav._right {
	left: 100%;
	  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media screen and (max-height: 640px) {
  .neo__nav {
	padding-top: 120px;
	padding-bottom: 10px;
  }
}

.neo__nav.active {
	-webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);

}
.neo__nav._right.active {
	-webkit-transform: translateX(-345px);
  -moz-transform: translateX(-345px);
  -ms-transform: translateX(-345px);
  -o-transform: translateX(-345px);
  transform: translateX(-345px);
}

@media screen and (max-width: 350px) {
	.neo__nav {
		width: 320px;
	}
	.neo__nav._right.active {
		-webkit-transform: translateX(-320px);
	  -moz-transform: translateX(-320px);
	  -ms-transform: translateX(-320px);
	  -o-transform: translateX(-320px);
	  transform: translateX(-320px);
	}
}

.neo__nav .item__group {
	font-size: 19px;
	text-transform: uppercase;
	margin-bottom: 23px;
	display: block;
}
.neo__nav > ul {
  list-style: none;
  list-style-type: none;
	margin-bottom: 33px;
}
.neo__nav > ul > li {
  margin-bottom: 15px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.neo__nav > ul > li > span.item__number {
  display: inline-block;
  font-family: 'BasisGrotesque-Medium', sans-serif;
  font-size: 14px;
  margin-right: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.neo__nav > ul > li span.item {
/*	margin-left: 30px;*/
  display: inline-block;
  position: relative;
  vertical-align: top;
/*  font-family: 'BasisGrotesque-Medium', sans-serif;*/
/*  font-size: 14px;*/
	font-size: 16px;
	/* text-transform: uppercase; */
	margin-bottom: 10px;
	opacity: .6;
}

.neo__nav > ul > li span.item.current {
	opacity: 1;
}
.neo__nav > ul > li > span.item:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: white;
  position: absolute;
  z-index: -1;
  bottom: -5px;
  left: 0px;
  -webkit-transition: width 0.5s ease-out;
  -moz-transition: width 0.5s ease-out;
  -ms-transition: width 0.5s ease-out;
  -o-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}
.neo__nav > ul > li > span.item.current:after {
  width: 100%
}
.neo__nav > ul > li:hover > span.item:after {
  width: 100%
}
.neo__overlay__close {
  display: block;
  position: absolute;
  top: 45px;
  right: 50px;
  width: auto;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (max-width: 640px) {
	.neo__overlay__close {
		top: 15px;
		right: 15px;
	}
}
.neo__overlay__close.active {
	z-index: 5001;
}
.neo__overlay__close > div {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.neo__overlay__close > div._back span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transform: translateY(50%) rotate(45deg) scaleX(0);
  transition: transform ease 200ms;
}
.neo__overlay__close.active > div._back span {
  transition-delay: 450ms;
  transform: translateY(50%) rotate(45deg) scaleX(1);
}
.neo__overlay__close.active > div._back span:last-child {
  transform:translateY(-50%) rotate(-45deg) scaleX(1);
}
.logo {
  display: block;
  position: absolute;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}
.logo.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding {
  top: 50px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.branding.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding img {
  width: 84px;
  max-width: 84px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .logo.branding {
	top: 12px;
	right: 12px;
	top: calc(env(safe-area-inset-top, 0px) + 12px);
	right: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
.logo.neoscape {
  bottom: 28px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.neoscape img {
  width: 70px;
  height: auto;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .logo.neoscape {
	bottom: 110px;
	right: 12px;
	right: calc(env(safe-area-inset-right, 0px) + 12px);
  }
  .logo.neoscape img {
	width: 50px;
  }
}
/* Help window styles */
.help__window {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5001;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: calc(100vw - 36px);
  background-color: rgba(255, 255, 255, .9);
  border-radius: 5px;
  color: #000000;
  padding: 30px calc(3vw + 20px) 42px;
  text-align: center;
  min-width: 500px;
  max-width: 685px;
  max-height: 95vh;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  /* background-image: url('../skin/popup-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
}
@media screen and (max-width: 640px) {
  .help__window {
	min-width: calc(100vw - 24px);
	padding: 30px 25px 30px;
  }
}
.help__window.hidden {
  opacity: 0;
  pointer-events: none;
}
.help__window:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  /* background-image: url('../skin/popup-panel-logo.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
}
.help__window .help__logo {
	margin-bottom: 30px;
}
.help__window .help__logo > img {
	max-width: 178px;
}
.help__window > h1 {
  text-align: center;
  color: #FF7700;
  font-size: 45px;
  font-family: 'BasisGrotesqueTrial-Black', sans-serif;
  font-weight: 900;
  margin-bottom: calc(3vh + 10px);
}
@media screen and (max-width: 640px) {
  .help__window > h1 {
	font-size: 20px;
  }
}
.help__window > p {
  text-align: center;
  color: #000000;
  font-size: 16px;
  line-height: 1.56;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(4vh + 10px);
  max-width: 290px;
}
@media screen and (max-width: 640px) {
  .help__window > p {
	display: none;
  }
}
@media screen and (max-height: 600px) {
  .help__window > p {
	display: none;
  }
}
.help__window > .help__icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(5vh + 10px);
}
@media screen and (max-width: 640px) {
  .help__window > .help__icons {
	flex-wrap: wrap;
  }
}
@media screen and (max-height: 640px) {
  .help__window > .help__icons {
	display: none;
  }
}
@media screen and (max-width: 360px) {
  .help__window > .help__icons {
	display: none;
  }
}
.help__window > .help__icons > div {
  width: 33%;
}
@media screen and (max-width: 640px) {
  .help__window > .help__icons > div {
	width: 50%;
  }
  .help__window > .help__icons > div:nth-of-type(n + 3) {
	margin-top: calc(4vh + 10px);
  }
  .help__window > .help__icons > div:last-of-type:nth-of-type(odd) {
	width: 100%;
  }
}
.help__window > .help__icons > div > .image__holder,
.help__window > .help__icons > div > div,
.help__window > .help__icons > div > p {
  margin: 0 auto;
}
.help__window > .help__icons > div > .image__holder {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin-bottom: 18px;
  height: 58px;
}
.help__window > .help__icons > div.click__drag > p {
  max-width: 125px;
}
.help__window > .help__icons > div.jump__location > p {
  max-width: 60px;
}
.help__window > .help__icons > div.poi__popup > p {
  max-width: 125px;
}
.help__window > .help__icons > div.poi__label > p {
  max-width: 125px;
}
.help__window > .help__icons > div.poi__label > .image__holder {
  background-size: 100px;
}
.help__window > .help__icons > div > p {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.help__window .begin__button {
  display: inline-block;
  background-color: #00AEEF;
  color: white;
  border: 0;
  border-radius: 5px;
  font-family: 'BasisGrotesque-Medium', sans-serif;
  font-size: 18px;
  line-height: 48px;
  padding: 0px 32px;
  -webkit-transition: background-color 0.35s ease-out;
  -moz-transition: background-color 0.35s ease-out;
  transition: background-color 0.35s ease-out;
}
.help__window .begin__button:hover {
  background-color: #55C7F2;
}
.restart__window .restart__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  background-image: url('../skin/grfx-vr-close.png');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
}
/* Lightbox styles */
.mfp-wrap {
  z-index: 6000;
}
.mfp-container {
  background-color: #112238;
  padding: 0;
}
.mfp-content {
  height: 100%;
}
.mfp-iframe-holder .mfp-content {
  max-width: 85vw;
}
.mfp-close,
.mfp-iframe-holder .mfp-close {
  top: 45px;
  right: 50px;
  width: 30px;
  height: 30px;
  transition: opacity 0.35s ease-out;
}
/* Lightbox fade/transition styles */
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
