.audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 1em 0;
    padding: 0 24px;
    width: 100%;
    height: 67px;
    align-items: center;
    background: #f4f4f4;
}

.audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height:24px;
    border-radius: 50%;
    cursor: pointer;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: none;
    border-bottom: 12px solid transparent;
    border-left: 17px solid #ec6725;
}

.audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 17px;
    height: 23px;
}

.audioplayer-playing .audioplayer-playpause a::before, .audioplayer-playing .audioplayer-playpause a::after {
    content: '';
    width: 7px;
    height: 23px;
    background-color: #ec6725;
}

.audioplayer-time {
    display: flex;
    width: 40px;
    justify-content:center;
color: #666666;
font-family: Verdana;
font-size: 13px;
font-weight: 400;
line-height: 21px;
}

.audioplayer-time-current {
    margin-left: 24px;
}

.audioplayer-time-duration {
    margin-right: 24px;
}

.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 15px;
    height: 15px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
}

.audioplayer-bar::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 100%;
    height: 5px;
    background: #d9d0d0;
    border-radius: 3px;
}

.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 5px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 5px;
    background: #d9d0d0;
    border-radius: 3px;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 5px;
    background: #bfc750;
    border-radius: 3px;
}

.audioplayer-bar-played::after {
    display: flex;
    position: absolute;
    content: '';
    box-sizing: border-box;
    top: -5px;
    right: -1px;
    margin-right: -5px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    /* Style for "Ellipse 1" */
width: 15px;
height: 15px;
background-color: #bfc750;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
    border: 2px solid #bfc750;
}

.audioplayer-playing .audioplayer-bar-played::after {
    border: 2px solid #bfc750;

}

