/* Fonts */
@font-face {
  font-family: 'FuturaStd';
  src: url('_fonts/FuturaStd-Book.woff2') format('woff2'),
  url('_fonts/FuturaStd-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FuturaStd-Bold', sans-serif;
  src: url('_fonts/FuturaStd-Bold.woff2') format('woff2'),
  url('_fonts/FuturaStd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Altform';
  src: url('_fonts/Altform-Regular.woff2') format('woff2'),
    url('_fonts/Altform-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ***********************************************************
## 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: 'elza', 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;
}
a:hover {
  text-decoration: none;
}
/* General CSS */
.neo__menu {
  display: block;
  position: absolute;
  top: 45px;
  left: 50px;
  width: auto;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  z-index: 5001;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1080px) {
  .neo__menu {
    top: 12px;
    left: 12px;
  }
}
.neo__menu.hidden {
  opacity: 0;
  pointer-events: none;
}
.neo__menu > 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__scene__label {
  margin: 3px 0 0 50px;
  padding: 0;
  font-family: 'elza', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px black;
  padding-right: 5px;
  transition: opacity 0.4s ease-in-out;
  /* display: none;
  opacity: 0; */
}
@media screen and (max-width: 640px) {
  .neo__scene__label {
    opacity: 0;
  }
}
.neo__scene__label.hidden {
  display: none;
}
.neo__menu > div._front span {
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 7px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 2px 2px black;
}
.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);
}
.neo__nav {
  box-sizing: border-box;
  width: 345px;
  max-width: 100%;
  height: 100%;
  padding: 150px 50px;
  background-color: rgba(37, 40, 58, .9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  opacity: 0;
  -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, padding 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, padding 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, padding 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.5s ease-in-out, padding 0.5s ease-in-out;
  /* background-image: url('../skin/menu-bg.png');
  background-size: cover; */
}
@media screen and (max-height: 640px) {
  .neo__nav {
    padding-top: 90px;
    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);
  opacity: 1;
}
.neo__nav > ul {
  list-style: none;
  list-style-type: none;
}
.neo__nav > ul > li {
  margin-bottom: 32px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: margin 0.35s ease-in-out;
}
@media screen and (max-height: 460px) {
  .neo__nav > ul > li {
    margin-bottom: 16px;
  }
}
.neo__nav > ul > li.inactive {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.neo__nav > ul > li > span.item__number {
  display: none;
  font-family: 'elza', sans-serif;
  font-size: 18px;
  margin-right: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.neo__nav > ul > li > span.item {
  display: block;
  position: relative;
  vertical-align: top;
  font-family: 'elza', sans-serif;
  font-size: 19px;
  color: white;
  /* max-width: 200px; */
  text-align: center;
}
.neo__nav > ul > li > span.item:before {
  content: none;
  display: none;
  font-size: 20px;
  color: transparent;
  width: 6px;
  height: 6px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 3px;
  cursor: pointer;
  border-right: solid white 2px;
  border-bottom: solid white 2px;
  -webkit-transform: translateY(calc(-50% - 1px)) rotate(-45deg);
  -moz-transform: translateY(calc(-50% - 1px)) rotate(-45deg);
  -ms-transform: translateY(calc(-50% - 1px)) rotate(-45deg);
  -o-transform: translateY(calc(-50% - 1px)) rotate(-45deg);
  transform: translateY(calc(-50% - 1px)) rotate(-45deg);
}
@media screen and (-ms-high-contrast:active), all and (-ms-high-contrast:none) {
  .neo__nav > ul > li > span.item:before {
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }
}
.neo__nav > ul > li.inactive > span.item:before {
  content: none;
  display: none;
}
.neo__nav > ul > li > span.item:after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #DA2589;
  position: absolute;
  z-index: -1;
  bottom: -8px;
  left: 50%;
  -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;
  transform: translateX(-50%);
}
.neo__nav > ul > li > span.item.current {
  font-weight: 700;
}
.neo__nav > ul > li > span.item.current:after {
  width: 100px;
}
.neo__nav > ul > li:hover > span.item:after {
  width: 100px;
}
.neo__nav > ul > li > span.item__sqf {
  display: block;
  position: relative;
  vertical-align: top;
  font-family: 'elza', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  margin-top: 6px;
}
@media screen and (max-height: 640px) {
  .neo__nav > ul > li > span.item__sqf {
    display: none;
    margin: 0;
  }
}
.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;
  z-index: 5001;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 1080px) {
  .neo__overlay__close {
    top: 12px;
    right: 12px;
  }
}
.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 {
  bottom: 40px;
  right: 40px;
  transition: all 0.3s ease-out;
}
.logo.branding.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding img {
  width: 150px;
  max-width: 150px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1180px) {
  .logo.branding {
    bottom: 45px;
    right: 15px;
  }
  .logo.branding img {
    width: 100px;
    max-width: 100px;
  }
}

@media screen and (max-width: 1030px) {
  .logo.branding {
    top: 15px;
    right: 15px;
  }
}

.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(37, 40, 58, .9);
  border-radius: 75px;
  color: white;
  padding: 80px calc(5vw + 40px);
  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: 80px 25px;
  }
}
.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 > h1 {
  text-align: center;
  color: white;
  font-family: 'elza-narrow', sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: calc(3vh + 10px);
}
@media screen and (max-width: 640px) {
  .help__window > h1 {
    font-size: 20px;
  }
}
.help__window > p {
  text-align: center;
  color: white;
  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: 460px) {
  .help__window > .help__icons {
    display: none;
  }
}
.help__window > .help__icons > div {
  width: 50%;
}
@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: rgba(37, 40, 58, .9);
  color: white;
  border: 1px solid white;
  border-radius: 75px;
  font-family: 'elza-narrow', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 42px;
  padding: 0px 32px;
  -webkit-transition: background-color 0.35s ease-out, color 0.35s ease-out;
  -moz-transition: background-color 0.35s ease-out, color 0.35s ease-out;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}
.help__window .begin__button:hover {
  background-color: white;
  color: rgba(37, 40, 58, .9);
}
.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;
}
