
.music-player {
  background: #ffdedf;
  direction: ltr;
  padding: 24px 24px 32px;
  border-radius: 4px;
  width: 100%;
  max-width: 555px;
}

.controls {
  display: flex;
}

.controls button {
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  width: 50px;
  height: 50px;
  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 {
  width: 100%;
  height: 48px;
  background-image: url('play.png');
  position: relative;
  margin: 0 24px;
  background-repeat: no-repeat;
}

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

#audio-player {

  display: none;
}
.timing-player{
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  font-size: 13px;
  margin-top: 8px;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  color: #fff;
  background-color: #fc2f35;
  text-decoration: none;
}