.audio-player {
  width: 480px;
  padding: 50px 0;
  margin: auto;
  background-color: #f7f7f7;
}

.audio-player .player-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audio-player #playAudio {
  cursor: pointer;
  border: none;
  width: 100px;
  height: 60px;
  background-image: url("/App/static/pics/play.png");
  background-size: 64px;
  background-repeat: no-repeat;
  background-position: 20px 0;
  background-color: inherit;
}

.audio-player #playAudio.pause {
  background-image: url("/App/static/pics/pause.png");
}

.audio-player p {
  margin: 0px;
  line-height: 1;
  display: inline-flex;
  color: #a0a0a0;
}

.audio-player p small {
  font-size: 24px;
  padding: 0 20px;
}

.audio-player #seekObjContainer {
  position: relative;
  width: 260px;
  margin: 0;
  height: 55px;
}

.audio-player #seekObjContainer #seekObj {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #c0c0c0;
  border: 1px solid #303030;
}

.audio-player #seekObjContainer #seekObj #percentage {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #174b8a;
}
