.audio-player {
    width: 520px;
    font-family: arial;
    color: #000;
    display: grid;
    grid-template-rows: 6px auto;
    margin: 0 auto;
    background: #6DFFE7;
    border: 0.827443px solid #000000;
    box-sizing: border-box;
    border-radius: 6.61954px;
    height: 88px;
    position: relative;
    padding: 10px 35px 0 80px;
}

.audio-player .timeline {
  background: white;
  width: 98%;
  position: relative;
  cursor: pointer;
  height: 4px;
  margin-top: 30px;
    margin-left: 10px;
}
.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: 50px;
    width: 24px;
    cursor: pointer;
    position: relative;
    left: 13px;
    top: 12px;
}
.audio-player .controls .toggle-play.pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: #1f7df5;
    content: "";
    height: 47px;
    width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 6px;
  background: #1f7df5;
  content: "";
  height: 47px;
  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;
  visibility: hidden;
}
.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: 28px solid #0000;
    border-left: 40px solid #1f7df5;
    right: 0;
    margin: 13px auto 13px 14px;
    border-radius: 4px;
}
.play-container {
    text-align: center;
    position: absolute;
    left: 7px;
    top: 3px;
}
.play-container .play-audio {
    width: 60px;
    border-radius: 100%;
    height: 65px;
    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 70px 0;
}
.first_section h1 {
    font-size: 30px;
}
.audio_play {
    padding: 65px 15px;
}
.first_section_1 img {
    display: none;
}
}