@font-face {
  font-family: VentiBold;
  src: url(/assets/fonts/VentiCF-Bold.woff2);
}

@font-face {
  font-family: VentiExtraBold;
  src: url(/assets/fonts/VentiCF-ExtraBold.woff2);
}

@font-face {
  font-family: NunitoBold;
  src: url(/assets/fonts/nunito-v16-latin-700.woff2);
}

html,
body {
  font-family: 'VentiBold', sans-serif;
  background-color: black;
}

button {
  font-family: 'NunitoBold', sans-serif;
}

.c-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-modal {
  position: absolute;
  z-index: 99999999;
  display: none;
  flex-direction: column;
  /*top: 3%;
  left: 5%;*/
  width: 100%;
  height: 100%;
  background-color: white;
  text-align: center;
  justify-content: center;
}

.o-modal--open {
  display: flex;
}

.c-welcome,
.c-desktop {
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
}

.c-welcome__content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  align-items: center;
}

.c-welcome h1,
.c-desktop h1 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 3rem;
}

.c-welcome img {
  max-width: 100%;
  width: 320px;
  height: auto;  
}

@media (max-height: 550px) {
  /*.c-welcome__content {
    height: 100%;
  }*/

  .c-welcome h1 {
    margin-bottom: 1rem;
  }
}

@media screen and (orientation:landscape) {
  .c-welcome h1 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .c-welcome h2 {
    margin-bottom: 0.5rem;
  }

  .c-welcome img {
    height: 120px;
    width: auto;
  }

  .c-download,
  .c-stream {
    margin: 10px;
  }
}

.c-download,
.c-stream {
  margin-bottom: 2rem;
}

.c-welcome h2,
.c-desktop h2 {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 25px;
  font-weight: 500;
}

.c-stream {
  margin-top: 5%;
  margin-bottom: 5%;
}

.c-welcome > .c-welcome__content--choose button {
  padding: 0.475rem 2.75rem 0.475rem 2.75rem;
  width: 64.6%;
}

.c-welcome button {
  text-transform: uppercase;
  padding: 0.5rem 3rem 0.5rem 3rem;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-size: 25px;
  width: 68%;
  margin: 1% 10%;
  /*line-height: 27px;*/
}

.c-welcome__content--choose {
  display: none;
}

.c-welcome__footer {
  width: 100%;
  height: 52px;
}

.c-begin {
  display: none;
  height: 52px;
}

.c-welcome__content .c-welcome__wifi {
  max-width: 23.75%;
  height: auto;
}

.c-stream, .c-stream-copy {
  display: none;
}

.c-download,
.c-stream {
  width: 260px;
}

/* .c-loading {
  position: absolute;
  top: 50%;
  z-index: 99999998;
  width: 100%;
  text-align: center;
  color: white;
  background-color: black;
  padding: 1rem 0;
  transform: translateY(-50%);
} */

.c-turn-message,
.c-downloading-message {
  position: absolute;
  z-index: 99999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  width: 100%;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  background-color: black;
  padding-top: 3rem;
}

.c-turn-message--fade {
  transition: visibility 1s ease-in-out, opacity 1s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.c-turn-message img {
  max-width: 100%;
  height: auto;
}

.c-downloading-message {
  z-index: 99999998;
  padding-top: 0;
  background-color: transparent;
  align-items: center;
}

.c-loading {
  display: inline-block;
  height: 52px;
  margin: 0;
  line-height: 52px;
}

.c-helper {
  display: none;
  position: absolute;
  top: 70%;
  z-index: 9999999;
  width: 100%;
  text-align: center;
  color: white;
  /* background-color: black; */
  padding: 1rem 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.c-helper img {
  max-width: 100%;
  width: 350px;
  height: auto;
}

.c-email input:-webkit-autofill{
  box-shadow: 0 0 0px 1000px #ffd200 inset !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffd200 inset !important;
  -moz-box-shadow: 0 0 0px 1000px #ffd200 inset !important;
}

.c-email {
  width: 300px;
  max-width: 90%;
  height: 450px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
}

.c-pwa {
  border-radius: 50%;
  width: 300px;
  max-width: 90%;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  padding: 1rem;
}

/*.c-pwa::after {
  position: absolute;
  content: '';
  height: 0px;
  width: 0px;
  left: 43%;
  bottom: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgba(255, 255, 255, 0.95);
  z-index: 9999;
}*/

@media screen and (orientation:landscape) {
  /*.c-pwa {
    top: 65%;
  }*/
  .c-pwa::after {
    border-top: 0px;
  }
}

.c-pwa__content {
  margin-top: 27%;

}

.c-email-sent {
  width: 243px;
  max-width: 72.9%;
  height: 3rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.9);
  border: 1.5px solid #e7b726;
  color: #fff;
  padding: 1rem;
  line-height: 1rem;
}

@media screen and (orientation:landscape) {
  .c-email {
    width: 500px;
    height: 300px;
  }

  .c-email h2 {
    margin-top: 0;
  }

  .c-welcome > .c-welcome__content--choose button {
    width: 47.5%;
  }

  .c-welcome button {
    width: 50%;
    margin: 0.5% 25%;
  }

  .c-welcome__content .c-welcome__wifi {
    max-width: 9.5%;
  }
}

.c-email h2 {
  font-size: px;
  margin-top: 3rem;
}

.c-email input {
  width: 80%;
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 0;
  font-size: 18px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.c-email__send {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  display: inline-block;
  font-size: 25px;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
}

.c-email__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 48px;
}

.c-pwa__close {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #7db2e7;
  border: none;
  color: black;
  font-size: 35px;
  padding: 0px;
  /*padding: 0px 10px 0px 0px;*/
}

.pwa-icon {
  width: 80px;
  height: 80px;
}

.pwa-share-icon {
  width: 20px;
  height: 28px;
  padding: 0px 5px;
}

.pwa-home-icon {
  width: 220px;
  height: 34px;
  padding-top: 5px;
}

.c-pwa p {
  font-size: 1rem;
}

#tabs-icon {
  width: 20px;
  height: 20px;
  padding: 0px 5px;
}

.c-email p {
  font-size: 1.08rem;
  color: #e8b92d;
}

@media screen and (orientation:landscape) {
  .c-email__input {
    display: flex;
  }

  .c-email input {
    flex-grow: 1;
    margin-bottom: 0;
  }
}

.c-skip {
  display: none;
  position: absolute;
  bottom: 1rem;
  z-index: 9999999;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  opacity: 0.3;
  text-decoration: none;
}

@media screen and (orientation:landscape) {
  .c-skip {
    left: 90%;
  }
}

.c-desktop {
  display: none;
}

@media (min-width: 1025px) {
  .c-desktop {
    display: flex;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
  }

  .c-desktop img {
    width: 250px;
    height: auto;
  }
}

.c-arrows {
  position: absolute;
  z-index: 9999998;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  /* opacity: 1; */
  /* display: none; */
  justify-content: center;
  pointer-events: none;
}

.c-arrows--hide {
  opacity: 0;
  visibility: hidden;  
}

.c-arrows--fadein {
  transition: visibility 2s ease-in-out, opacity 2s ease-in-out;
}

.c-arrows--fade {
  transition: visibility 2s ease-in-out, opacity 2s ease-in-out;
}

.c-arrows img {
  /*width: 15%;
  height: 15%;*/
  /*margin: auto 4rem;*/
}

.c-arrows__right-container,
.c-arrows__left-container {
  position: relative;
  width: 19.8%;
  height: 19.8%;
}

/*Margin for stationary arrows
/*.c-arrows__right-container {
  margin-left: 20%;
}
.c-arrows__left-container {
  margin-right: 20%;
}*/

.c-arrows .c-arrows__right,
.c-arrows .c-arrows__left {
  width: 100%;
  height: 100%;
  margin: 0;
  vertical-align: middle;
}

/*Arrow pulse*/
.c-arrows__right-container {
  animation-name: rightpulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes rightpulse {
  from {margin-left: 48%;}
  to {margin-left: 53%;}
}

.c-arrows__left-container {
  animation-name: lefttpulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes leftpulse {
  from {margin-right: 48%;}
  to {margin-right: 53%;}
}

.c-look-around {
  width: 100%;
  position: absolute;
  z-index: 9999998;
  top: 85%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.c-look-around p {
  color:#ffd200;
  font-size: 10px;
}

@media screen and (orientation:landscape) {

  .c-arrows {
    top: 50%;
    width: 100%;
  }

  .c-look-around {
    top: 81%;
    width: 100%;
  }

  .c-look-around p {
    font-size: 20px;
  }

  .c-arrows img {
    /*width: 8%;
    height: 8%;*/
    margin: auto 1rem;
  }

  .c-arrows__right-container,
  .c-arrows__left-container {
    width: 10%;
    height: 10%;
  }

  /*Horizontal pulse animation*/
  @keyframes rightpulse {
    from {margin-left: 55%;}
    to {margin-left: 60%;}
  }

  @keyframes leftpulse {
    from {margin-right: 55%;}
    to {margin-right: 60%;}
  }

  /*Margin settings for stationary arrows
  /*.c-arrows__right-container {
    margin-left: 30%;
  }
  .c-arrows__left-container {
    margin-right: 30%;
  }*/

}

.c-play-film {
  width: 100%;
  position: absolute;
  z-index: 9999999;
  top: 85%;
  transform: translateY(-50%);
  display: flex;
  /* opacity: 1; */
  /* display: none; */
  justify-content: center;
  /*pointer-events: none;*/
}

.c-play-film__play {
  height: 12%;
  width: 12%;
  display: flex;
  flex-direction: column;
}

.c-pause {
  position: absolute;
  z-index: 9999999;
  top: 85%;
  transform: translateY(-50%);
  display: flex;
  /* opacity: 1; */
  /* display: none; */
  justify-content: center;
  pointer-events: none;
}

.c-pause--hide,
.c-play-film--hide {
  opacity: 0;
  visibility: hidden;  
}

.c-pause--fade,
.c-play-film--fade
 {
  transition: visibility 1s ease-in-out, opacity 1s ease-in-out;
}

.c-pause img {
  /*width: 15%;
  height: 15%;*/
  margin: auto 1rem;
  pointer-events: all;
}

.c-pause__fwd {
  width: 8.2%;
  height: 8.2%;
}

.c-pause__rwd-container,
.c-pause__fwd-container {
  position: relative;
  width: 8.2%;
  height: 8.2%;
  margin: auto 1rem;
}

.c-pause .c-pause__rwd,
.c-pause .c-pause__fwd {
  width: 100%;
  height: 100%;
  margin: 0;
  vertical-align: middle;
}

.c-pause__rwd-container span,
.c-pause__fwd-container span,
.c-play-film span
{
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0.5rem;
  width: 200%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.c-pause__play,
.c-pause__pause{
  width: 15.3%;
  height: 15.3%;
}

.c-play-img {
  width: 100%;
  height: 100%
}


@media screen and (orientation:landscape) {

  .c-pause {
    top: 80%;
    width: 100%;
  }

  .c-play-film {
    top: 50%;
    width: 100%;
  }

  .c-pause img {
    /*width: 8%;
    height: 8%;*/
    margin: auto 1rem;
  }

  .c-pause__fwd-container {
    width: 4.6%;
    height: 4.6%;
  }

  .c-pause__rwd-container {
    width: 4.6%;
    height: 4.6%;
  }

  .c-pause__play, 
  .c-pause__pause {
    width: 8.2%;
    height: 8.2%;
  }

  .c-play-img {
    width: 100%;
    height: 100%
  }

}

.c-pause__play
 {
  display: none;
}


/*Loading CSS*/

@keyframes ldio-go0c43yzoen {
  0% {
    top: 36px
  }
  50% {
    top: 74.39999999999999px
  }
  100% {
    top: 36px
  }
}
.ldio-go0c43yzoen div {
  width: 9.6px;
  height: 9.6px;
  position: absolute;
  border-radius: 50%;
  animation: ldio-go0c43yzoen 1s cubic-bezier(0.5,0,0.5,1) infinite;
}.ldio-go0c43yzoen div:nth-child(1) {
  left: 16.8px;
  animation-delay: 0s;
  background: #93dbe9
}
.ldio-go0c43yzoen div:nth-child(2) {
  left: 27.599999999999998px;
  animation-delay: -0.125s;
  background: #689cc5
}
.ldio-go0c43yzoen div:nth-child(3) {
  left: 38.4px;
  animation-delay: -0.25s;
  background: #5e6fa3
}
.ldio-go0c43yzoen div:nth-child(4) {
  left: 49.199999999999996px;
  animation-delay: -0.375s;
  background: #3b4368
}
.ldio-go0c43yzoen div:nth-child(5) {
  left: 60px;
  animation-delay: -0.5s;
  background: #93dbe9
}
.ldio-go0c43yzoen div:nth-child(6) {
  left: 70.8px;
  animation-delay: -0.625s;
  background: #689cc5
}
.ldio-go0c43yzoen div:nth-child(7) {
  left: 81.6px;
  animation-delay: -0.75s;
  background: #5e6fa3
}
.ldio-go0c43yzoen div:nth-child(8) {
  left: 92.39999999999999px;
  animation-delay: -0.875s;
  background: #3b4368
}
.loadingio-spinner-wave-j79uyglv08 {
  width: 120px;
  height: 120px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.ldio-go0c43yzoen {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-go0c43yzoen div { box-sizing: content-box; }