@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400;700;900&family=Sarala:wght@400;700&family=Martian+Mono:wght@200;400;600;800&display=swap");
#music-interface {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  width: 100%;
  max-width: calc(640px + 4rem);
  margin: 0 auto;
}
#music-interface a {
  color: #f4f8fa;
}
#music-interface button {
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #f4f8fa;
  background: #f4f8fa;
}

#audio-player,
#track-list {
  border-color: #f4f8fa;
  width: calc(50% - 1rem);
  padding: 0 0 0 1rem;
  max-width: 320px;
  height: 520px;
}
@media (max-width: 640px) {
  #audio-player,
  #track-list {
    width: 100%;
    height: auto;
    padding: 0;
  }
}

#audio-player {
  order: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  /********** Range Input Styles **********/
  /*Range Reset*/
}
@media (max-width: 640px) {
  #audio-player {
    order: 0;
    margin-bottom: 1em;
  }
}
#audio-player .player-content.hidden {
  opacity: 0;
}
#audio-player .loading-message {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#audio-player .loading-message div {
  padding: 4rem;
  text-align: center;
}
#audio-player .loading-message div p {
  padding-bottom: 1em;
}
#audio-player .loading-message div p:last-of-type {
  padding-bottom: 0;
}
#audio-player .loading-message button {
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #f4f8fa;
  background: #eaeef1;
  color: #f4f8fa;
}
#audio-player.loading .loading-message {
  display: flex;
}
#audio-player #audio {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
#audio-player .artwork-container {
  width: 200px;
  height: 200px;
  border: 1px solid #f4f8fa;
  border-radius: 100%;
  overflow: hidden;
  margin: 2rem auto;
}
#audio-player .artwork-container.hidden {
  opacity: 0;
}
#audio-player .artwork-container img {
  width: 100%;
  filter: grayscale(1);
}
#audio-player .controls {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
#audio-player .controls .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#audio-player .controls .top button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  min-width: 4rem;
  width: 100%;
  height: 4rem;
  margin: 0 0.1em;
}
#audio-player .controls .top button span {
  display: block;
  line-height: 1;
}
#audio-player .controls .top button span.no-display {
  display: none;
}
#audio-player .controls .top #prev-button span,
#audio-player .controls .top #next-button span {
  width: 1em;
  height: 1em;
}
#audio-player .controls .top #prev-button {
  margin-left: 0;
}
#audio-player .controls .top #prev-button span {
  background: url("../images/icons/skip-back-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .top #next-button {
  margin-right: 0;
}
#audio-player .controls .top #next-button span {
  background: url("../images/icons/skip-forward-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .top #play-pause-button {
  min-width: 7rem;
}
#audio-player .controls .top #play-pause-button span {
  width: 1em;
  height: 1em;
}
#audio-player .controls .top #play-pause-button .play {
  background: url("../images/icons/play-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .top #play-pause-button .pause {
  background: url("../images/icons/pause-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
#audio-player .controls .bottom .volume,
#audio-player .controls .bottom .progress {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#audio-player .controls .bottom .volume p,
#audio-player .controls .bottom .progress p {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0 0 0.25em;
  text-align: center;
}
#audio-player .controls .bottom .volume span,
#audio-player .controls .bottom .progress span {
  display: block;
  font-size: 2em;
  width: 1em;
  height: 1em;
  margin-bottom: 0.25em;
  filter: invert(1);
}
#audio-player .controls .bottom .volume span {
  background: url("../images/icons/speaker-high-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .bottom .volume #volume-control {
  width: 4em;
}
#audio-player .controls .bottom .progress span {
  background: url("../images/icons/clock-thin-svgrepo-com.svg") no-repeat center/contain;
}
#audio-player .controls .bottom .progress #progress-control {
  width: 14em;
}
#audio-player #time-info {
  display: flex;
  margin-top: 1em;
  font: 400 0.8em "Martian Mono", monospace;
}
#audio-player #time-info #current-time p,
#audio-player #time-info #total-time p {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
#audio-player #time-info #current-time {
  padding: 0;
}
#audio-player #time-info #current-time:after {
  content: "/";
  margin-right: 0.25em;
  margin-left: -0.25em;
}
#audio-player input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  /* Removes default focus */
  /***** Chrome, Safari, Opera and Edge Chromium styles *****/
  /* slider track */
  /* slider thumb */
  /******** Firefox styles ********/
  /* slider track */
  /* slider thumb */
}
#audio-player input[type=range]:focus {
  outline: none;
}
#audio-player input[type=range]::-webkit-slider-runnable-track {
  background-color: #bcc9d3;
  border-radius: 0.5rem;
  height: 0.5rem;
}
#audio-player input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -6px; /* Centers thumb on the track */
  /*custom styles*/
  background-color: #63707a;
  height: 20px;
  width: 6px;
}
#audio-player input[type=range]:focus::-webkit-slider-thumb {
  border: 1px solid #bcc9d3;
  outline: 3px solid #bcc9d3;
  outline-offset: 0.125rem;
}
#audio-player input[type=range]::-moz-range-track {
  background-color: #bcc9d3;
  border-radius: 0.5rem;
  height: 0.5rem;
}
#audio-player input[type=range]::-moz-range-thumb {
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0; /*Removes default border-radius that FF applies*/
  /*custom styles*/
  background-color: #63707a;
  height: 2rem;
  width: 1rem;
}
#audio-player input[type=range]:focus::-moz-range-thumb {
  border: 1px solid #bcc9d3;
  outline: 3px solid #bcc9d3;
  outline-offset: 0.125rem;
}

#track-list {
  order: 0;
  border: 1px solid #f4f8fa;
  border-radius: 0.5rem;
  padding-left: 0;
  overflow: auto;
}
@media (max-width: 640px) {
  #track-list {
    order: 1;
  }
}
#track-list ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
#track-list ul li {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #f4f8fa;
}
#track-list ul li:last-child {
  border-bottom: none;
}
#track-list ul li.separator {
  height: 1rem;
}
#track-list ul li a {
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
}
#track-list ul li a.playing, #track-list ul li a:hover, #track-list ul li a:focus {
  color: #000;
  background-color: #f4f8fa;
}
#track-list ul li a.playing:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  filter: invert(1);
  font-size: 1.5em;
  width: 1em;
  height: 1em;
  background: url("../images/icons/speaker-simple-high-thin-svgrepo-com.svg") no-repeat center/contain;
}/*# sourceMappingURL=music.css.map */