.ss-song-title {
  font-size: 24px;
  min-height: 27px;
}

.audio-player {
  background: #ffde16;
  border: 1px solid #000000;
  width: 50vw;
  text-align: center;
  display: flex;
  flex-flow: row;
  margin: 4rem 0 2rem 0;
  border-radius: 4px;
}
.audio-player .album-image {
  min-height: 100px;
  width: 110px;
  background-size: cover;
}
.audio-player .player-controls {
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex: 3;
}
.audio-player .player-controls progress {
  width: 90%;
}
.audio-player .player-controls progress[value] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #000000;
  color: #000000;
  height: 5px;
}
.audio-player .player-controls progress[value]::-webkit-progress-bar {
  background-color: #ffde16;
  border-radius: 2px;
  border: 1px solid #000000;
  color: #000000;
}
.audio-player .player-controls progress::-webkit-progress-value {
  background-color: #000000;
}
.audio-player .player-controls p {
  margin: 0;
  font-size: 1.6rem;
}
.audio-player .play-btn {
  background-image: url("play.png");
  background-size: cover;
  width: 75px;
  height: 75px;
  margin: 30px 0 30px 30px;
}
.audio-player .play-btn.pause {
  background-image: url("pause.png");
}
