.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(black, .47);

    @include screen(md,max) {
      background-color: rgba(black, .6);
    }
  }

  video, img {
    @include fill-img;
  }
}

#video_cover.disabled {
  opacity: 0;
}
