/* ***********************************************************
## FONTS
*********************************************************** */

@font-face {
  font-family: 'OpenSans-Light';
  src: url('fonts/OpenSans-Light.woff2') format('woff2'),
  url('fonts/OpenSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
  url('fonts/OpenSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenSans-SemiBold';
  src: url('fonts/OpenSans-SemiBold.woff2') format('woff2'),
  url('fonts/OpenSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('fonts/OpenSans-Bold.woff2') format('woff2'),
        url('fonts/OpenSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url('fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('fonts/OpenSans-ExtraBold.woff') format('woff');
    font-weight: 800;
    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;
}

html.no__scroll {
  overflow-y: hidden !important;
}

body {
  line-height: 1;
  font-family: 'OpenSans-Regular', sans-serif;
}

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__lock {
  background-color: black;
  border-radius: 5px;
  position: absolute;
  z-index: 5001;
  top: 10px;
  left: 10px;
  padding: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .neo__lock {
    top: 60px;
    left: 14px;
    top: calc(env(safe-area-inset-top, 0px) + 14px);
    left: calc(env(safe-area-inset-left, 0px) + 14px);
  }
}
.neo__lock.hidden {
  opacity: 0;
  pointer-events: none;
}
.lock__image {
  background-image: url('../skin/lock-icon.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
  width: 15px;
  height: 15px;
}
.neo__lock.unlocked .lock__image {
  background-image: url('../skin/unlock-icon.png');
}
.neo__password {
  font-family: 'OpenSans-SemiBold', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: 5003;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  text-align: center;
  transition: opacity 0.3s ease-out;
}
.neo__password.hidden {
  opacity: 0;
  pointer-events: none;
}
.neo__password .close {
  background-image: url('../skin/grfx-vr-label-close.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
  position: absolute;
  top: -9.5px;
  right: -9.5px;
  cursor: pointer;
}
.neo__password label {
  font-family: 'OpenSans-SemiBold', sans-serif;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
}
.neo__password input {
  font-family: 'OpenSans-SemiBold', sans-serif;
  font-size: 16px;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
}
.neo__password .info__text {
  font-family: 'OpenSans-SemiBold', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  text-align: center;
  margin: 0 auto 10px;
  display: none;
  pointer-events: none;
  transition: margin 0.35s ease-in-out;
}
.neo__password .password__submit {
  font-family: 'OpenSans-SemiBold', sans-serif;
  display: block;
  text-align: center;
  margin: 20px auto 0;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background-color: #1BA9DF;
  color: white;
  cursor: pointer;
  transition: opacity 0.35s ease-in-out;
}
.neo__password .password__submit:hover {
  opacity: 0.9;
}
.neo__error {
  font-family: 'OpenSans-SemiBold', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: 5002;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  text-align: center;
  transition: opacity 0.3s ease-out;
}
.neo__error.hidden {
  opacity: 0;
  pointer-events: none;
}
.neo__error p {
  font-family: 'OpenSans-SemiBold', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.neo__menu {
  display: block;
  position: absolute;
  top: 45px;
  left: 50px;
  width: auto;
  min-width: 30px;
  height: auto;
  overflow: visible;
  cursor: pointer;
  background-color: transparent;
  z-index: 5001;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .neo__menu {
    top: 12px;
    left: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    left: calc(env(safe-area-inset-left, 0px) + 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__group__label {
  margin: 4px 0 0 50px;
  padding: 0;
  font-size: 23px;
  font-family: 'OpenSans-SemiBold', sans-serif;
  color: white;
  text-shadow: 2px 2px 4px black;
  padding-right: 5px;
  transition: opacity 0.4s ease-in-out;
}
.neo__scene__label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50px;
  padding: 0;
  font-size: 19px;
  font-family: 'OpenSans-SemiBold', sans-serif;
  color: white;
  text-shadow: 2px 2px 4px black;
  transition: opacity 0.4s ease-in-out;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .neo__group__label,
  .neo__scene__label {
    opacity: 0;
  }
}
.neo__group__label.hidden,
.neo__scene__label.hidden {
  opacity: 0;
  pointer-events: 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: 343px;
  max-width: 100%;
  height: 100%;
  padding: 150px 40px 150px 45px;
  background-color: #1BA9DF;
  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;
}
@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);
}
.neo__nav ul {
  list-style: none;
  list-style-type: none;
}
.neo__nav ul li {
  margin-bottom: 15px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-family: 'OpenSans-Regular', sans-serif;
  position: relative;
  padding-left: 0;
}
@media screen and (max-height: 640px) {
  .neo__nav ul li {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.neo__nav ul li:last-child {
  margin-bottom: 0;
}
.neo__nav > ul > li {
  padding-left: 5px;
  margin-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
}
.neo__nav > ul > li:first-of-type {
  margin-top: 0;
}
.neo__nav ul li > span.item__number {
  display: inline-block;
  margin-right: 10px;
}
.neo__nav ul li > span.item {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-size: 14px;
}
.neo__nav ul li > span.item.parent {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-size: 19px;
  text-transform: uppercase;
}
.neo__nav ul li > span.item:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: -7px;
  left: 0;
  -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;
}
@media screen and (max-height: 640px) {
  .neo__nav ul li > span.item:after {
    bottom: -3px;
  }
}
.neo__nav ul li > span.item.current:after {
  width: 100%;
}
.neo__nav ul li:hover > span.item:after {
  width: 100%;
}
.neo__nav ul li .accordion__switch {
  background-image: url('../skin/grfx-vr-menu-arrow-down.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 11px;
  height: 7px;
  display: inline-block;
  margin-left: 19px;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -ms-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
}
.neo__nav ul li.open .accordion__switch {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}
.neo__nav ul li .accordion__container {
  margin-top: 23px;
  max-height: 0;
  overflow-y: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.neo__nav ul li.open .accordion__container {
  max-height: 44vh;
  overflow-y: auto;
  margin-bottom: 20px;
}
.neo__nav ul li .accordion__container::-webkit-scrollbar {
  width: 2px;
  border-radius: 1px;
}
.neo__nav ul li .accordion__container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.neo__nav ul li .accordion__container::-webkit-scrollbar-thumb {
  background: white;
  outline: 1px solid white;
}
.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;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .neo__overlay__close {
    top: 12px;
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-right, 0px) + 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 {
  top: 50px;
  right: 45px;
  transition: all 0.3s ease-out;
}
.logo.branding.hidden {
  opacity: 0;
  pointer-events: none;
}
.logo.branding img {
  width: 165px;
  max-width: 165px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .logo.branding {
    top: 12px;
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: calc(env(safe-area-inset-left, 0px) + 12px);
  }
}
/* 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: white;
  border-radius: 5px;
  color: white;
  padding: 45px 0;
  text-align: center;
  min-width: 960px;
  max-width: 95vw;
  max-height: 95vh;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .help__window {
    min-width: calc(100vw - 24px);
    padding: 25px 6vw;
  }
}
@media screen and (max-width: 640px) {
  .help__window {
    min-width: calc(100vw - 24px);
  }
}
.help__window.hidden {
  opacity: 0;
  pointer-events: none;
}
.help__window > h1 {
  text-align: center;
  color: #1BA9DF;
  font-size: 36px;
  margin-bottom: calc(3vh + 10px);
  flex: 0 0 100%;
  width: 100%;
  -webkit-transition: font-size 0.5s ease-out;
  -moz-transition: font-size 0.5s ease-out;
  transition: font-size 0.5s ease-out;
}
@media screen and (max-width: 640px) {
  .help__window > h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-height: 640px) {
  .help__window > h1 {
    display: none;
  }
}
.help__window h2 {
  color: #1BA9DF;
  text-align: center;
  font-size: 24px;
  margin: 0 0 10px;
  -webkit-transition: font-size 0.5s ease-out;
  -moz-transition: font-size 0.5s ease-out;
  transition: font-size 0.5s ease-out;
}
@media screen and (max-width: 640px) {
  .help__window h2 {
    font-size: 16px;
  }
}
.help__window > .tour__video,
.help__window > .tour__intro {
  flex: 1;
  padding: 0 60px;
}
@media screen and (max-width: 960px) {
  .help__window > .tour__video,
  .help__window > .tour__intro {
    flex: 100%;
    padding: 0;
  }
}
.help__window > .tour__video {
  position: relative;
}
.help__window > .tour__video:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #E7E7E7;
}
@media screen and (max-width: 960px) {
  .help__window > .tour__video:after {
    content: none;
    display: none;
  }
}
@media screen and (max-height: 500px) {
  .help__window > .tour__video {
    display: none;
  }
}
.help__window > .tour__video > .video__link {
  display: block;
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 200px;
  background-image: url('../tour-film-thumbnail.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .help__window > .tour__video > .video__link {
    margin: 30px auto;
  }
}
.help__window > .tour__video > .video__link:before {
  content: "";
  display: block;
  width: 66px;
  height: 66px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  background-image: url('../grfx-play-film-icon.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.help__window > .tour__video > .video__link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.0;
  -webkit-transition: opacity 0.35s ease-out;
  -moz-transition: opacity 0.35s ease-out;
  -ms-transition: opacity 0.35s ease-out;
  -o-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}
.help__window > .tour__video > .video__link:hover:after {
  opacity: 0.4;
}
.help__window p {
  text-align: left;
  color: #0E0E0E;
  font-size: 16px;
  line-height: 1.56;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(2vh + 10px);
  max-width: 539px;
}
@media screen and (max-width: 960px) {
  .help__window > .tour__video > p,
  .help__window > .tour__intro > p {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .help__window > .tour__intro > p {
    display: none;
  }
}
@media screen and (max-height: 600px) {
  .help__window > .tour__intro > p:last-of-type {
    display: none;
  }
}
.help__window > .tour__intro > .help__icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(5vh + 10px);
}
@media screen and (max-width: 960px) {
  .help__window > .tour__intro > .help__icons {
    margin: 30px 0;
  }
}
@media screen and (max-width: 640px) {
  .help__window > .tour__intro > .help__icons {
    flex-wrap: wrap;
  }
}
@media screen and (max-height: 460px) {
  .help__window > .tour__intro > .help__icons {
    display: none;
  }
}
.help__window > .tour__intro > .help__icons > div {
  width: 33%;
}
/* @media screen and (max-width: 640px) {
  .help__window > .tour__intro > .help__icons > div {
    width: 50%;
  }
  .help__window > .tour__intro > .help__icons > div:nth-of-type(n + 3) {
    margin-top: calc(4vh + 10px);
  }
  .help__window > .tour__intro > .help__icons > div:last-of-type:nth-of-type(odd) {
    width: 100%;
  }
} */
.help__window > .tour__intro > .help__icons > div > .image__holder,
.help__window > .tour__intro > .help__icons > div > div,
.help__window > .tour__intro > .help__icons > div > p {
  margin: 0 auto;
}
.help__window > .tour__intro > .help__icons > div > .image__holder {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin-bottom: 18px;
  height: 44px;
}
.help__window > .tour__intro > .help__icons > div.click__drag > p {
  max-width: 125px;
}
.help__window > .tour__intro > .help__icons > div.jump__location > p {
  max-width: 60px;
}
.help__window > .tour__intro > .help__icons > div.poi__popup > p {
  max-width: 125px;
}
.help__window > .tour__intro > .help__icons > div.poi__label > p {
  max-width: 125px;
}
.help__window > .tour__intro > .help__icons > div.poi__label > .image__holder {
  background-size: 100px;
}
.help__window > .tour__intro > .help__icons > div > p {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.help__window .begin__button {
  display: inline-block;
  background-color: #1BA9DF;
  color: white;
  /* border: 1px solid white; */
  border-radius: 5px;
  font-size: 18px;
  line-height: 52px;
  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: #73CAEB;
}
.restart__window {
  padding: 65px 45px 45px;
  min-width: 0;
  display: block;
}
@media screen and (max-width: 640px) {
  .restart__window {
    padding: 65px 15px 45px;
  }
}
.restart__window > p {
  text-align: center;
}
.help__window .restart__button {
  display: inline-block;
  background-color: #1BA9DF;
  color: white;
  border-radius: 5px;
  font-size: 18px;
  line-height: 52px;
  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 .restart__button:hover {
  background-color: #73CAEB;
}
.restart__window .restart__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 15px;
  padding: 5px;
  background-image: url('../skin/grfx-vr-close.png');
  background-color: #1BA9DF;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center center;
  transition: opacity 0.35s ease-out;
}
.restart__window .restart__close:hover {
  opacity: 0.8;
}
/* Lightbox styles */
.mfp-wrap {
  z-index: 6000;
}
.mfp-container {
  background-color: black;
  padding: 0;
}
.mfp-content {
  height: auto;
}
.mfp-close {
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  transition: opacity 0.35s ease-out;
}
/* Iframe lightbox */
.mfp-iframe-holder .mfp-content {
  max-width: 85vw;
}
/* 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;
}
/* Carousel styles */
.owl-carousel {
  background-color: #112236;
}
.owl-carousel .owl-item > section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.owl-carousel .owl-item img {
  margin: 0 auto;
  max-height: calc(90vh - 100px);
  width: auto;
}
.owl-carousel .owl-dots {
  background-color: #112236;
  margin-top: 0;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.4s ease-in-out;
}
@media screen and (max-width: 460px) {
  .owl-carousel .owl-dots {
    bottom: 75px;
  }
}
.owl-carousel .owl-dots .owl-dot span {
  transition: background 0.35s ease-out;
}
.owl-carousel .owl-dots .owl-dot span {
  background: #66717F;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #FFFFFF;
}
.owl-carousel .owl-dots .owl-dot:focus {
  outline: none;
}
.owl-carousel .owl-nav {
  margin-top: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
@media screen and (max-width: 960px) {
  .owl-carousel .owl-nav {
    display: none;
  }
}
.owl-carousel .owl-nav > button:focus {
  outline: none;
}
.owl-carousel .owl-nav > button.owl-prev.disabled,
.owl-carousel .owl-nav > button.owl-next.disabled {
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  -ms-opacity: 0.2;
  -o-opacity: 0.2;
  opacity: 0.2;
}
.owl-carousel .owl-nav > button.owl-prev:hover,
.owl-carousel .owl-nav > button.owl-next:hover {
  background: transparent;
}
.owl-carousel .owl-nav > button.owl-prev {
  margin: 0;
  position: fixed;
  top: 50%;
  left: 3vw;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.owl-carousel .owl-nav > button.owl-next {
  margin: 0;
  position: fixed;
  top: 50%;
  right: 3vw;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.owl-carousel .owl-nav > button img {
  width: 20px;
  height: 26px;
}
/* Poster content styles */
.poster__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.poster__content .owl-carousel {
  /* margin-top: 50px; */
}
.poster__border {
  display: none;
  width: calc(100vw - 2vw);
  height: calc(100vh - 2vw);
  background-color: transparent;
  border-radius: 10px;
  border: solid 1px white;
  position: absolute;
  top: 1vw;
  left: 1vw;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 460px) {
  .poster__border {
    width: calc(100vw - 4vw);
    height: calc(100vh - 4vw);
    top: 2vw;
    left: 2vw;
  }
}
.poster__headers {
  position: absolute;
  top: 45px;
  left: 50px;
  z-index: 2;
  max-width: calc(100% - 145px);
}
@media screen and (max-width: 460px) {
  .poster__headers {
    top: 105px;
  }
}
.poster__header,
.poster__sub__header {
  text-transform: uppercase;
}
.poster__header {
  font-family: 'OpenSans-SemiBold', sans-serif;
  font-size: 23px;
  line-height: 1.1
}
.poster__header.has__icon {
  position: relative;
  padding-left: 65px;
}
.poster__header > img,
.poster__header > svg {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.poster__sub__header {
  font-family: 'OpenSans-Light', sans-serif;
  font-weight: 100;
  font-size: 23px;
  margin-top: 5px;
}
.image__container {
  max-width: 90%;
  max-height: calc(100% - 100px);
}
figure {
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #112236;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  position: relative;
  margin: 0 auto; */
  background-size: cover;
  background-position: center center;
  background-position: center center;
  background-color: #112236;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  overflow: hidden;
}
figure:before,
figure:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}
figure img {
  /* opacity: 0;
  visibility: hidden;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out; */
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 0;
  margin: 0 auto;
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
