.videoDoneOverlay {
  opacity: 1;
  transition: all 0.3s linear;
}

.videoFinished_playPauseButton {
  display: none !important;
}

.videoFinished_rangeInput {
  display: none !important;
}

.videoFinished_duration {
  display: none !important;
}

.videoPlaying_playPauseButton {
  opacity: 0;
  transition: all 0.3s linear;
}

.videoPlaying_rangeInput {
  opacity: 0;
  display: none;
  transition: all 0.3s linear;
}

.videoPlaying_duration {
  opacity: 0;
  transition: all 0.3s linear;
}

.videoPaused_playPauseButton {
  opacity: 1;
  transition: all 0.3s linear;
}

.videoPaused_rangeInput {
  opacity: 1;
  transition: all 0.3s linear;
}

.videoPaused_duration {
  opacity: 1;
  transition: all 0.3s linear;
}

/* on medium screens and up, show hover*/
@media (min-width: 576px) {
  .videoPlayPauseButton:hover {
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s linear;
    cursor: pointer;
  }

  .videoContainer:hover .videoPlayPauseButton {
    opacity: 0.9;
    cursor: pointer;
  }

  .videoContainer:hover .videoRangeInput {
    opacity: 0.9;
    display: block;
    cursor: pointer;
  }
}

.videoRangeInput::-webkit-slider-runnable-track {
  cursor: pointer;
  background: hsla(0, 0%, 100%, 0.6);
  border-radius: 5px;
  width: 100%;
  height: 5px;
}

.videoRangeInput::-webkit-slider-thumb {
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  height: 21px;
  margin-top: -8px;
  -webkit-appearance: none;
  width: 21px;
  outline: none;
  border: none;
}

.videoRangeInput::-webkit-slider-thumb:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.3s linear;
}
