
.audio-player {
	
    max-width: 700px;
    margin: 20px auto;
    background-color: white;
    border: 1px solid #a3a3a3;
    border-radius: 20px;
}
  .player-controls {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }


  .playAudio {
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    border: none;
    width: 30px;
    height: 30px;
    background: url('https://img.icons8.com/play') no-repeat center;
    background-size: 60%;
  }
    .pause {
      background: url('https://img.icons8.com/pause') no-repeat center;
      background-size: 60%;
    }


  p.p {
    margin: 0 0 0 5px;
    line-height: 1;
    display: inline-flex;
  }
    small {
      font-size: 10px;
    }


  .seekObjContainer {
    position: relative;
    width: 100%;
    margin: 0 5px;
    height: 30px;
  }
    .seekObj {
     position: relative;
    width: 100%;
    height: 100%;
    background-color: #e3e3e3;
	}
      .percentage {
        position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #fddd0d;
      }