@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');

* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

ol {
  width: 100%;
  padding: 0px;
  margin: 0px;
  list-style: decimal-leading-zero inside;
  font-size: 0.9em;
}

ol li {
  position: relative;
  margin: 0px;
  padding: 9px 2px 10px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}

ol li:last-child {
  border: 0;
}

ol li a {
  color: #000;
  text-indent: -3.3ex;
  text-decoration: none;
}

li.playing {
  color: #FFF;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

li.playing a {
  color: #FFF;
}

li.playing:after {
  content: "♬";
  width: 14px;
  height: 14px;
  padding: 3px;
  line-height: 14px;
  left: -24px;
  top: 9px;
  color: #FFF;
  font-size: 13px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

ol li.playing {
  background: #802F1E;
}

.playlist {
  background: #FDFDFD;
  border: 1px solid #802F1E;
  padding: 10px;
}

.title {
  margin: 0;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: UPPERCASE;
  color: #111;
}

/* INPUT RANGE */
input[type=range] {
  -webkit-appearance: none;
  margin: 14px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000101;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 12px;
  width: 12px;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  margin: -2px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #FFF;
}

@media (min-width: 340px) {
  .audiojs .scrubber {
    width: 100%;
    max-width: 150px;
  }

  .volume {
    width: 100px;
  }

  .volume .slider {
    max-width: 80px;
  }

}