
.music-player {
    border-radius: 100px !important;
  background: #EF6C00;
  direction: ltr;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  max-width: 234px;
}

.controls {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.controls button {
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.controls button:focus{
  outline: none;
}


.controls button i {
}

.fa-play:before {
  content: "\f04b";
  font-size: 16px;
}
.fa-pause:before {
  content: "\f04c";
  font-size: 16px;
}
.fa-volume-up:before {
  content: "\f028";
  font-size: 18px;
}
.fa-volume-off:before {
  content: "\f026";
  font-size: 18px;
}

.timeline {
  background-size: cover;
  display: flex;
  width: 100%;
  height: 28px;
  background-image: url(play.png);
  position: relative;
  margin: 0px 32px 0px 8px;
  background-repeat: no-repeat;
  justify-content: flex-end;
  align-items: center;
}

.progress {
    background-size: cover;
  background-image: url('front.png');
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

#audio-player {

  display: none;
}
.timing-player {
    margin-right: -32px;
    position: absolute;
    display: flex;
    font-size: 13px;
}
.playPauseBtn {
  color: #fff;
  background-color:rgb(219, 117, 19);
  text-decoration: none;
}