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 */

.pivo-span {
  font-size: 1.6em;
  color: #ff115b;
}

.video-spinner {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);  
}

.semipolar-spinner, .semipolar-spinner * {
  box-sizing: border-box;
}

.semipolar-spinner {
  height: 125px;
  width: 125px;
  position: relative;
}

.semipolar-spinner .ring {
  border-radius: 50%;
  position: absolute;
  border: calc(65px * 0.05) solid transparent;
  border-top-color: #ff1d5e;
  border-left-color: #ff1d5e;
  animation: semipolar-spinner-animation 2s infinite;
}

.semipolar-spinner .ring:nth-child(1) {
  height: calc(125px - 125px * 0.2 * 0);
  width: calc(125px - 125px * 0.2 * 0);
  top: calc(65px * 0.1 * 0);
  left: calc(65px * 0.1 * 0);
  animation-delay: calc(2000ms * 0.1 * 4);
  z-index: 5;
}

.semipolar-spinner .ring:nth-child(2) {
  height: calc(125px - 125px * 0.2 * 1);
  width: calc(125px - 125px * 0.2 * 1);
  top: calc(125px * 0.1 * 1);
  left: calc(125px * 0.1 * 1);
  animation-delay: calc(2000ms * 0.1 * 3);
  z-index: 4;
}

.semipolar-spinner .ring:nth-child(3) {
  height: calc(125px - 125px * 0.2 * 2);
  width: calc(125px - 125px * 0.2 * 2);
  top: calc(125px * 0.1 * 2);
  left: calc(125px * 0.1 * 2);
  animation-delay: calc(2000ms * 0.1 * 2);
  z-index: 3;
}

.semipolar-spinner .ring:nth-child(4) {
  height: calc(125px - 125px * 0.2 * 3);
  width: calc(125px - 125px * 0.2 * 3);
  top: calc(125px * 0.1 * 3);
  left: calc(125px * 0.1 * 3);
  animation-delay: calc(2000ms * 0.1 * 1);
  z-index: 2;
}

.semipolar-spinner .ring:nth-child(5) {
  height: calc(125px - 125px * 0.2 * 4);
  width: calc(125px - 125px * 0.2 * 4);
  top: calc(125px * 0.1 * 4);
  left: calc(125px * 0.1 * 4);
  animation-delay: calc(2000ms * 0.1 * 0);
  z-index: 1;
}

@keyframes semipolar-spinner-animation {
  50% {
    transform: rotate(360deg) scale(0.7);
  }
}