.audio-player {
    width: 520px;
    font-family: arial;
    color: #000;
    display: grid;
    grid-template-rows: 6px auto;
    margin: 0 auto;
    background: #4E7D87;
    border: 0.827443px solid #000000;
    box-sizing: border-box;
    border-radius: 6.61954px;
    height: 100px;
    position: relative;
    padding: 10px 35px 0 98px;
}

.audio-player .timeline {
  background: white;
  width: 78%;
  position: relative;
  cursor: pointer;
  height: 4px;
  margin-top:32px;
  margin-left: 11px;
}
.audio-player .timeline .progress {
    background: #000;
    width: 0%;
    height: 100%;
    transition: 0.25s;
    position: relative;
    overflow: visible;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.audio-player .volume-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-player .controls .toggle-play.play {
  /*transform: scale(1.1);*/
}
.audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
    left: 13px;
    top: 12px;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 2px;
  left: 0px;
  background: white;
  content: "";
  height: 17px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 2px;
  right: 8px;
  background: white;
  content: "";
  height: 17px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause {
  /*transform: scale(1.1);*/
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
  top: 58px;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  z-index: -1;
  width: 0;
  height: 3px;
  background: white;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: #000;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container .volume-slider {
  left: -123px;
  width: 80px;
}
.volume img {
    width: 29px;
}
.audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 12px solid #0000;
    border-left: 20px solid white;
    right: 0;
    margin: 17px auto 13px 13px;
    border-radius: 4px;
}
.play-container {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 21px;
    background-image: linear-gradient(to right, #c235cf, #db29b2, #e92c96, #ee3b7e, #ed4e6a);
    box-shadow: 0 0 5px #b5a8a8;
}
.play-container .play-audio {
    width: 43px;
    border-radius: 100%;
    height: 43px;
    margin: 6px auto;
}
.audio-player .timeline .progress:before {
    width: 8px;
    content: "";
    height: 8px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    top: -2px;
    z-index: 5;
    right: 0;
    border: 3px solid #000;
}
@media (max-width: 767px){
  .audio-player {
    width: 100%;
    }
    .heading_bg {
    padding: 35px 0;
    margin: 36px 0 120px 0;
}
.first_section h1 {
    font-size: 30px;
}
.audio_play {
    padding: 65px 15px;
    background-size: cover;
}
.first_section_1 img {
    display: none;
}
}