* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
  padding: 0px;
}

html {
  height: 100%;
}
@media (max-width: 1024px) and (orientation: landscape) {
  html {
    height: 100vh;
  }
}

body {
  color: #fff;
  background-color: #05152d;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) and (orientation: landscape) {
  body {
    height: 100vh;
  }
}

a {
  color: #fff;
  text-decoration: none;
}

iframe {
  height: 100%;
  width: 100%;
}

h1,
h2 {
  font-weight: normal;
}

input:focus {
  outline: none;
}

.disabled {
  pointer-events: none;
}

.flex-centered {
  align-items: center;
  display: flex;
  justify-content: center;
}

.flex-centered-v {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-start {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

.flex-start-v {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flex-end {
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}

.flex-end-v {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fullscreen {
  height: 100%;
  position: absolute;
  width: 100%;
}

.video-container-ar-169 {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.video-ar {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.pointer {
  cursor: pointer !important;
  pointer-events: all !important;
}

.truly-hidden {
  opacity: 0;
  pointer-events: none !important;
}
.truly-hidden * {
  pointer-events: none !important;
}

.nav-element {
  transition: opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav-element--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.button {
  align-items: center;
  background: #94c11a;
  border-radius: 0px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 30px;
  padding: 10px 16px;
  text-align: center;
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  width: fit-content;
}

.gui-stage {
  background: #fff;
  box-shadow: inset 0px 10px 15px -10px rgba(0, 0, 0, 0.25);
  height: 100%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  width: 100%;
}

.gui-pano {
  display: none;
  height: 100%;
  width: 100%;
}
.gui-pano--hidden {
  display: none;
}

.tutorial {
  background: rgba(54, 53, 54, 0.8);
  flex-direction: column;
  height: calc(100% - 100px);
  position: absolute;
  top: 100px;
  transition: opacity 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
}
.tutorial span {
  font-size: 20px;
  line-size: 27px;
  margin-top: 16px;
}
.tutorial--hidden {
  opacity: 0;
  pointer-events: none;
}
