
.audioplayer {
    display: flex;
    width: 100%;
    align-items: center; 
    font-family: 'DM Sans';
}
.audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center; 
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
} 
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 12px solid transparent;
    border-right: none;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #eabf43;
}
.audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 13px;
    height: 22px;
    color: #eabf43;
}

.audioplayer-playing .audioplayer-playpause a::before, .audioplayer-playing .audioplayer-playpause a::after {
    content: '';
    width: 4px;
    height: 20px;
    background-color: #eabf43;
}

.audioplayer-time {
    display: flex;
    width: 40px;
    justify-content: center;
    font-size: 12px;
    color: rgb(255 255 255);
    font-weight: bold;
}
.audioplayer-time-current {
    margin-left: 10px;
}
.audioplayer-time-duration {
    margin-right: 0;
}
.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 10px;
    height: 20px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;  
} 
.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 5px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 10px;
    background: #ffffff2b;
}
.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 7;
    height: 10px;
    background: #ffffff;
} 
.audioplayer-volume {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.audioplayer-volume-button {
    justify-content: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid #909090;
}
.audioplayer-volume-button a {
    display: flex;
    width: 10px;
    height: 5px;
    background-color: #9A9FB000;
    position: relative;
}
.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
    content: '';
    position: absolute;
}
.audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 8px solid #ffffff00;
    border-right: 9px solid #ffffff;
    border-bottom: 8px solid #f3f3f300;
    border-left: none;
    top: -5px;
    left: -4px;
}
.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 8px;
    top: -2px;
    width: 6px;
    height: 6px;
    border: 6px double #ffffff;
    border-width: 8px 8px 0 0;
    border-radius: 0 19px 0 0;
    transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
    background-color: #FD4F1A;
}

.audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #FD4F1A;
}

.audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.audioplayer-volume-adjust > div {
    margin-left: -65px;
    position: relative;
    display: flex;
    width: 60px;
    height: 6px;
    cursor: pointer;
    background-color: #fbc50b;
    display: none;
}
.audioplayer-volume-adjust div div {
    position: absolute;
    top: 0;
    left: -8px;
    height: 6px;
    background-color: #feedb5;
    display: none;
}
@media screen and (max-width: 679px) {
    .audioplayer-volume-adjust {
        display: none;
    }
} 
.wrapper h4, .wrapper h5 {
    color: #000;
    font-size: 16px;
    padding-left: 66px;
}
.wrapper h5 {
    padding-bottom: 6px;
}
.wrapper h4 {
    font-weight: bold;
    padding-bottom: 4px;
    text-transform: capitalize;
}