html,
body {
  margin: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.712);
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* .time-box div::before {
  content: '';
  padding: 0.1px 9px;
  background-color: red;
  margin-right: 8px;
  border-radius: 50%;
}

.time-box {
  position: relative;
  background-color: #000000a8;
  width: 85px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 3px;
  border: 1px #fff solid;
} */

video {
  width: 100vw;
  height: 99.5vh;
}

.progess-bar {
  width: 100%;
  position: absolute;
  /* top: 155px; */
  left: 16px;
  bottom: -11px;
  background-color: aquamarine;
  color: dodgerblue;
}

.progress-hidden {
  display: none;
}

/* fading animation */

.fade-in {
  animation-name: fade-in;
  animation-duration: 1s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-out {
  animation-name: fade-out;
  animation-duration: 1s;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*  SPINNER */

.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 1;
}

.loader .video-spinner {
  width: 100px;
  height: 100px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.loader .video-spinner img {
  width: 100%;
  height: 100%;
}

.rotate {
  animation: rotate 1.5s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
