@import url('https://fonts.googleapis.com/css2?family=Manrope&display=swap');


.audio-player {
  background-image: url(img/audiobg.png);
  width: 660px;
  height: 85px;
  text-align: center;
  display: flex;
  flex-flow: row;
  margin-top: 10px;
  margin-bottom: 10px;
}
.audio-player .album-image {
  min-height: 90px;
  width: 110px;
  background-size: cover;
}
.audio-player .player-controls {
  align-items: center;
  justify-content: center;
  flex: 3;
}
.audio-player .player-controls progress {
  width: 90%;
}
.audio-player .player-controls progress[value] {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  color: #005d6b;
  height: 5px;
}
.audio-player .player-controls progress[value]::-webkit-progress-bar {
  background-color: white;
  border-radius: 2px;
  border: 1px solid #dfdfdf;
  color: #004d58;
}
.audio-player .player-controls progress::-webkit-progress-value {
  background-color: #005d6b;
}
.audio-player .player-controls p {
  font-family: 'Manrope', sans-serif;;
  font-size: 18px;
  color: #004d58;
  margin-top: 10px;
  margin-bottom: -7px;
}
.audio-player #play-btn {
  background-image: url("img/play.png");
  background-size: cover;
  width: 55px;
  height: 55px;
  margin-top: 15px;
  margin-left: 12px;
}
.audio-player #play-btn.pause {
  background-image: url("img/pause.png");
}