@import "fonts.css";

.mmp-eq-container {
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
  margin-left: -2em;
  text-align: right;
}

.mmp-eq-container {
  height: auto;
  width: 90px;
}

#song-meta {
      vertical-align: top;
      text-align: left;
      display: inline-flex;
      flex-direction: row;
      width: 100%;
      justify-content: space-between;
}

.song-text {
  margin-left: 10px;
  width: 200px;
}

.meta-left .song-text {
  display: inline-block;
}

img.album {
  width: 50px;
  height: 50px;
  background-size: contain;
}

button i.multi {
  color: #000;
  font-size: 35px;
  top: 2px;
  position: relative;
  z-index:4;
}

button i.mono {
  font-size: 48px;
  position: relative;
  z-index:4;
}

button i:before {
  background: #454444;
  background: linear-gradient(to bottom, #45454d 25%, #444263 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

button i:before > button i:hover {
  background: #0B3811;
  background: linear-gradient(to bottom, #0B3811 0%, #33CF1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

button i:after {
  text-shadow: 0px 0px 0px #000;
}

i.icon-prev.multi.shadow, i.icon-next.multi.shadow, i.icon-play.multi.shadow, i.icon-pause.multi.shadow, i.icon-stop.multi.shadow {
  position: relative;
  top: -34px;
  left: 0px;
  text-shadow: 0px 0px 0px #000;
  z-index: 2;
}

i.icon-prev.mono.shadow, i.icon-next.mono.shadow, i.icon-play.mono.shadow, i.icon-pause.mono.shadow, i.icon-stop.mono.shadow {
  position: relative;
  top: -48px;
  left: 1px;
  text-shadow: 0px 0px 0px #000;
  z-index: 2;
}

/* Amplitude Shit */
span.divider {
  margin: 1px;
}


button.player {
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: #939397;
}

button.player.multi {
  width: 45px;
  height: 45px;
  margin: 3px;
}

button.player.mono {
  width: 60px;
  height: 60px;
  margin: 3px;
  top: 5px;
  left: 12px;
  position: relative;
}

.control-group {
  display: flex;
  top: 12px;
  position: relative;
}

.amplitude-paused .pauselogo, .amplitude-playing .playlogo {
  display: none;
}

.amplitude-playing .pauselogo, .amplitude-paused .playlogo {
  display: block;
}

button.player {
  background: linear-gradient(
    180deg,
    #b1c2c6 10%,
    #a4b6ba 60%,
    #8fa1a6 90%
  );
  background-position: center;
  box-shadow: 1px 1px 1px #cfd6d8 inset;
  color: #2a2f33;
  border: none;
}


button.player:active {
  background: linear-gradient(
    180deg,
    #94a4a9 0%,
    #8fa1a6 40%,
    #788b91 100%
  );
  background-position: center;
  box-shadow: 1px 1px 1px #5f6c70 inset;
  color: #1e2427;
}

div.control-container {
  background: linear-gradient(
    180deg,
    #b9c8cb 5%,
    #a4b6ba 40%,
    #8b9ea3 80%,
    #a0b2b7 100%
  );
  border: 1px solid #8d9da1;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 4fr;
  min-height: 75px;
  min-width: 300px;
  color: #2e3437;
}

  div.control-container div.amplitude-play-pause.amplitude-paused {
    background-size: cover;
  }

  div.control-container div.amplitude-play-pause.amplitude-playing {
    background-size: cover;
  }
  .amplitude-play-pause.mono {
    max-height: 0px;
  }

  div.amplitude-play-pause.amplitude-playing i.icon-play.mono, div.amplitude-play-pause.amplitude-playing i.icon-play.mono.shadow {
    display:none;
  }

  div.amplitude-play-pause.amplitude-paused i.icon-pause.mono, div.amplitude-play-pause.amplitude-paused  i.icon-pause.mono.shadow {
    display: none;
  }

  div.control-container div.meta-container {
    background: linear-gradient(
      180deg,
      #b0c1c5 0%,
      #a4b6ba 30%,
      #8b9a9f 100%
    );
    border-radius: 3px;
    color: #1e2b30;
    font-size: 80%;
    margin: 8px 8px 8px 3px;
    padding-left: 10px;
    padding-right: 5px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
    div.control-container div.meta-container span[data-amplitude-song-info="name"] {
      font-family: monospace;
      font-size: 14px;
      font-weight: bold;
      color: #000;
      display: block;
      text-shadow: 0px 0px 0px #000;
  }
    div.control-container div.meta-container span[data-amplitude-song-info="artist"] {
      font-family: Verdana, Helvetica, Arial;
      font-weight: 100;
      font-size: 12px;
      color: #000;
      display: block;
      text-shadow: 0px 0px 0px #000;
  }
  div.control-container:after {
    content: "";
    display: table;
    clear: both;
  }

@media screen and (max-width: 39.9375em) {
  div.control-container div.amplitude-play-pause {
    background-size: cover;
    width: 64px;
    height: 64px; }
  div.control-container div.meta-container {
    width: calc(100% - 74px); } }

div.time-container {
  font-family: Verdana, Helvetica, Arial;
  opacity: 0.5;
  font-weight: 100;
  font-size: 12px;
  color: #000;
  height: 15px; }
  div.time-container span.current-time {
}
  div.time-container span.duration {
}

progress.amplitude-song-played-progress {
  background-color: #313252;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  display: block;
  cursor: pointer;
  border: none; }
  progress.amplitude-song-played-progress:not([value]) {
    background-color: #313252; }

progress[value]::-webkit-progress-bar {
  background-color: #313252; }

progress[value]::-moz-progress-bar {
  background-color: #00a0ff; }

progress[value]::-webkit-progress-value {
  background-color: #00a0ff; }

div.bottom-container {
  background-color: #202136;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px; }

div#song-player {
  border-radius: 10px;
  margin: auto;
  width: 100%;
  -webkit-font-smoothing: antialiased; }
  div#song-meta img.album[data-amplitude-song-info="cover_art_url"] {
    width: 45px;
    border-radius: 5px;
}

div#song-player.multi {
  max-width: 600px;
}

div#song-player.mono {
  max-width: 460px;
}
