body {
  margin: 0;
  background-color: black;
}


#player, #app, #safe-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#viperPlayerFreewheelVidContainer, #viperPlayerFreewheelVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
}

#app canvas {
  z-index: 5;
}

#viper-player-container {
  height: 100%;
}

[data-debug~="safe-area"] #safe-area {
  display: block !important; /* Override inline style */
}
/**
* ==============================================
* splash
* ==============================================
*/
#splash {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
#imgLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#vidLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#loadingDots {
  position: absolute;
  width: 100%;
  height: 30px;
  top: 65%;
  left: 0;
  animation: loadingDots 1s 1 linear;
}
.dot {
  width: 20px;
  height: 20px;
  top: 5px;
  position: relative;
  display: inline-block;
  border-radius: 10px;
  background-color: #ffffff;
  opacity: 0.5;
  margin-left: 10px;
}
#leftDot {
  animation: leftDot 2s infinite linear;
  margin-left: 0;
}
#centerDot {
  animation: centerDot 2s infinite linear;
}
#rightDot{
  animation: rightDot 2s infinite linear;
}
@keyframes loadingDots {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes leftDot {
  10% {
    opacity: 1;
    transform: scale(1.2);
  }
  0%, 25% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes centerDot {
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
  0%, 65% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes rightDot {
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  0%, 95% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
