body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.5px;
}
button#play-icon, button#mute-icon {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    width: 40px;
    height: 40px;
    float: left;
}
#audio-player-container {
  --seek-before-width: 0%;
    --volume-before-width: 100%;
    --buffered-width: 0%;
  position: relative;
  width: 95%;
  max-width: 725px;
  height: 77px;
  background: white;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 46px 46px 0 0;
}
#audio-player-container::before {
    position: absolute;
    content: '';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: -2px;
    top: -2px;
    z-index: -1;
    border: 2px solid #099147;
    border-radius: 46px 46px 0 0;
}
p {
    position: absolute;
    top: -18px;
    right: 5%;
    padding: 0 5px;
    margin: 0;
    font-size: 28px;
    background: #fff;
}
#play-icon {
    margin: 20px 2.5% 10px 5.5%;
    background: #099147 !important;
    border-radius: 21px;
    padding: 9px !important;
}
path {
    stroke: #ffffff;
    stroke-width: 3px;
}
.time {
    display: inline-block;
    width: 37px;
    text-align: center;
    font-size: 20px;
    margin: 28.5px 0 18.5px 0;
    float: left;
}
output {
    display: inline-block;
    width: 32px;
    text-align: center;
    font-size: 20px;
    margin: 10px 2.5% 0 5%;
    float: left;
    clear: left;
}
#volume-slider {
    margin: 33px 2.5% 0 2.5%;
    width: 58%;
}
#volume-slider::-webkit-slider-runnable-track {
    background: rgba(0, 125, 181, 0.6);
}
#volume-slider::-moz-range-track {
    background: rgba(0, 125, 181, 0.6);
}
#volume-slider::-ms-fill-upper {
    background: rgba(0, 125, 181, 0.6);
}
#volume-slider::before {
    width: var(--volume-before-width);
}
#mute-icon {
    margin: 33px 2.5% 0;
    width: 20px !important;
    height: 20px !important;
}
input[type="range"] {
    position: relative;
    -webkit-appearance: none;
    width: 33%;
    margin: 0;
    padding: 0;
    height: 19px;
    margin: 30px 2.5% 20px 2.5%;
    float: left;
    outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 125, 181, 0.6) var(--buffered-width), rgba(0, 125, 181, 0.2) var(--buffered-width));
}
input[type="range"]::before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: var(--seek-before-width);
    height: 3px;
    background-color: #099147;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    box-sizing: content-box;
    border: 1px solid #007db5;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin: -7px 0 0 0;
}
input[type="range"]:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: #007db5;
}
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 125, 181, 0.6) var(--buffered-width), rgba(0, 125, 181, 0.2) var(--buffered-width));
}
input[type="range"]::-moz-range-progress {
    background-color: #007db5;
}
input[type="range"]::-moz-focus-outer {
    border: 0;
}
input[type="range"]::-moz-range-thumb {
    box-sizing: content-box;
    border: 1px solid #007db5;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}
input[type="range"]:active::-moz-range-thumb {
    transform: scale(1.2);
    background: #007db5;
}
input[type="range"]::-ms-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    background: transparent;
    border: solid transparent;
    color: transparent;
}
input[type="range"]::-ms-fill-lower {
    background-color: #007db5;
}
input[type="range"]::-ms-fill-upper {
    background: linear-gradient(to right, rgba(0, 125, 181, 0.6) var(--buffered-width), rgba(0, 125, 181, 0.2) var(--buffered-width));
}
input[type="range"]::-ms-thumb {
    box-sizing: content-box;
    border: 1px solid #007db5;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}
input[type="range"]:active::-ms-thumb {
    transform: scale(1.2);
    background: #007db5;
}

#mute-icon path {
  stroke: #099147;
}
.volume {
  display: inline-block;
  width: 197px;
}
#goto {
  border:none;
  background:none;
  display: inline;
  width: 25px;
  height: 25px;
  float: left;
  margin: 32px 2.5% 0 2.5%;
}
#goto path{
  color:#fff;
}
.custom-select {
  width: 35px;
  padding: 0;
  position: relative;
  float: left;
  background: none;
  height: 35px;
  margin: 17px 8px;
  border: none;
}

.options li {
  list-style: none;
  padding: 5px;
  cursor: pointer;
  height: 53px;
  width: 187px;
  display: flex;
  border-bottom: 1px solid #099147;
}
.options li:last-child {
    border-bottom: none;
}

.options li:hover {
  background-color: #f0f0f0;
}
#reciters {
    position:absolute;
    bottom: 24px;
    background: #fff;
    z-index: 0;
    padding: 6px;
    height: auto;
    left: -70px;
    border: 1px solid #099147;
    border-radius: 17px;
}
.selected-option {
    width:100%;
    overflow:hidden;
    height:100%;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.selected-option img {width: 100%;}
.options li div{
    width:35px;
    overflow:hidden;
    border-radius: 50%;
    height: 35px;
    margin: 5px;
}
.options li img{
    width:100%
}
.options li span {
    padding:10px 0
}