body {
  font-family: Helvetica;
}
.video-player-container {
  width: 100%;
  position: relative;
}
#video-player {
  width: 100%;
}
.video-controls {
  position: absolute;
  bottom: .25rem;
  background: rgba(0,0,0,.3);
  height: 2.5rem;
  width: 100%;
}
span {
  color: #fff;
  font-size: 0.75rem;
  margin-top: 1rem;
  height: 2rem;
}
button {
  background: rgba(0,0,0,0);
  border: none;
  height: 1.25rem;
  width: 1.5rem;
  margin-right: 1.5%;
  float: right;
}
button:focus,
input[type="range"]:focus {
  border: none;
  outline: none;
}
#play-pause {
  float: left;
  margin-left: 1.5%;
}
img {
  height: 100%;
  width: 100%;
}
input[type="range"] {
  -webkit-appearance: none;
  background: #666;
  cursor: pointer;
  display: block;
  width: 100%;
  height: .5rem;
  margin: .25rem auto;
  overflow: hidden;
  z-index: 1000;
}
input[type="range"]:focus {
  box-shadow: none;
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  height: .5rem;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #ffa500;
  width: .0000001rem;
  height: .5rem;
  position: relative;
}
.container {
  width: 90%;
  max-width: 920px;
  color: gray;
  margin: 0 auto;
  font-size: 0.75rem;
}

@media (min-width: 720px) {
  .video-player-container {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
  }
}