* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: block;
  height: 100vh;
  background: #000046;
  background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  align-items: center;
  font-family: "Roboto Mono", monospace;
}
@media only screen and (min-width: 600px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.player {
  max-width: 960px;
  max-height: 540px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.player:hover .controls {
  transform: translateY(0);
}
.player:hover .controls .progress {
  height: 7px;
}
@media only screen and (min-width: 600px) {
  .player:hover .controls .progress {
    height: 10px;
  }
}
.player:hover .controls .progress .timer {
  visibility: visible;
  opacity: 1;
  transition: opacity 2s linear;
}
.player:-webkit-full-screen {
  max-width: none;
  width: 100%;
}
.player:fullscreen {
  max-width: none;
  width: 100%;
}
.player .player-video {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 600px) {
  .player .ply-btn {
    flex: 1;
  }
}
.player .player-btn {
  background: none;
  border: 0;
  color: #95d85e;
  text-align: center;
  max-width: 33px;
  padding: 2px 2px;
  cursor: pointer;
}
@media only screen and (min-width: 600px) {
  .player .player-btn {
    max-width: 60px;
    padding: 5px 8px;
  }
}
.player .player-btn:hover {
  border-color: #ffec41;
  background: rgba(255, 255, 255, 0.2);
}
.player .player-btn:focus {
  border-color: #ffec41;
  background: rgba(255, 255, 255, 0.2);
}
.player .player-btn svg {
  fill: #95d85e;
  fill-opacity: 1;
}
.player .skippers {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 40px;
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
}
@media only screen and (min-width: 600px) {
  .player .skippers {
    max-width: 66px;
    font-size: 13px;
  }
}
.player .player-slider {
  width: 47px;
}
@media only screen and (min-width: 600px) {
  .player .player-slider {
    width: 10px;
    height: 30px;
  }
}
.player .controls {
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%) translateY(-5px);
  transition: all 0.3s;
  flex-wrap: wrap;
  background: #2f4858;
  opacity: 0.9;
}
.player .controls .progress {
  position: relative;
  display: flex;
  flex: 10;
  flex-basis: 100%;
  height: 4px;
  transition: height 0.3s;
  background: rgba(0, 0, 0, 0.7);
}
.player .controls .progress .timer {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}
.player .controls .progress .progress-bar {
  width: 50%;
  background: #ffec41;
  flex: 0;
  flex-basis: 50%;
}
.player .controls .progress span {
  position: absolute;
  background: #2f4858;
  color: #ffec41;
  top: -14px;
  left: 1px;
  font-size: 10px;
}
@media only screen and (min-width: 600px) {
  .player .controls .progress span {
    top: -25px;
    left: 1px;
    font-size: 15px;
  }
}
.player .controls .sliders {
  max-width: 181px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: 18px;
}
@media only screen and (min-width: 600px) {
  .player .controls .sliders {
    max-width: 300px;
    justify-content: space-between;
  }
}
.player .controls input[type=range] {
  -webkit-appearance: none;
  background: transparent;
  width: 60%;
  margin: 0 5px;
}
@media only screen and (min-width: 600px) {
  .player .controls input[type=range] {
    width: 65%;
  }
}
.player .controls input[type=range]:focus {
  outline: none;
}
.player .controls input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
  background: #006d7e;
  opacity: 0.7;
  border-radius: 10px;
  border: 0.2px solid rgba(1, 1, 1, 0);
}
.player .controls input[type=range]::-webkit-slider-runnable-track:focus {
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 600px) {
  .player .controls input[type=range]::-webkit-slider-runnable-track {
    height: 8px;
  }
}
.player .controls input[type=range]::-webkit-slider-thumb {
  height: 9px;
  width: 9px;
  border-radius: 50px;
  background: #95d85e;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.player .controls input[type=range]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
@media only screen and (min-width: 600px) {
  .player .controls input[type=range]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
  }
}
.player .controls input[type=range]::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
  background: #95d85e;
  border-radius: 10px;
  border: 0.2px solid rgba(1, 1, 1, 0);
}
.player .controls input[type=range]::-moz-range-track:active {
  cursor: grabbing;
}
@media only screen and (min-width: 600px) {
  .player .controls input[type=range]::-moz-range-track {
    height: 8px;
  }
}
.player .controls input[type=range]::-moz-range-thumb {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
  height: 15px;
  width: 15px;
  border-radius: 50px;
  background: #95d85e;
  cursor: pointer;
}
.player .controls input[type=range]::-moz-range-thumb:active {
  cursor: grabbing;
}
.player .controls .outputs {
  font-family: "Roboto Mono", monospace;
  width: 40%;
  color: #95d85e;
  font-size: 9px;
}
@media only screen and (min-width: 600px) {
  .player .controls .outputs {
    width: 35%;
    font-size: 13px;
    padding-right: 10px;
  }
}
.player .controls > * {
  display: flex;
}
@media only screen and (min-width: 600px) {
  .player .controls > * {
    flex: 1;
  }
}

/*# sourceMappingURL=style.css.map */
