@font-face {
  font-family: 'riffic-bold';
  src: url('../images/font/riffic-bold.ttf');
  src: url('../images/font/riffic-bold-webfont.woff');
}
/*# sourceMappingURL=main.css.map */
video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  display: block;
}
.fadeIn {
  -webkit-animation: fade-in 1s forwards ease-out;
  animation: fade-in 1s forwards ease-out;
}
.fadeOut {
  -webkit-animation: fade-out 1s forwards ease-out;
  animation: fade-out 1s forwards ease-out;
}
@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
video::-webkit-media-controls {
  display: none !important;
}
/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */
video::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
/* Old shadow dom for play button */
video::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
/* New shadow dom for play button */
/* This one works! */
video::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
#container {
  overflow: hidden;
  background: #000;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}
.skip {
  position: absolute;
  top: 80%;
  left: 80%;
  z-index: 1;
}
/*# sourceMappingURL=main.css.map */