.audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 1em 0;
    padding: 0 12px;
    width: 100%;
    height: 45px;
    align-items: center;
    border: 0;
    background: rgba(214, 219, 221, 0.7);
    justify-content: space-between;
    border-bottom: 1px solid #C2AB9E;
    border-top: 1px solid #C2AB9E;
}
.audioplayer-playpause {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: #245366;
     border: 1px solid #245366;
}
.audioplayer-playing .audioplayer-playpause {
    background: #245366;
    border: 1px solid #245366;
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 4px solid transparent;
    border-left: 8px solid #D2D8DA;
}

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

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

.audioplayer-time {
    display: none;
}
.audioplayer-bar {
    position: relative;
    display: flex;
    margin: 0 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
    height: 100%;
    align-items: center;
}
.audioplayer-bar > div {
    position: absolute;
    left: 0;
    top: 0px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 100%;
    background: transparent;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 100%;
    background: rgba(214, 219, 221,0.5);
}
.audioplayer .mp3-title {
    color: #245366;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    z-index: 99;
    position: relative;
    font-weight: 600;
    padding-left: 10px;
}
.audioplayer-volume {
    display: flex;
    align-items: center;
}
.audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.audioplayer-volume-button a {
    display: flex;
    width: 6px;
    height: 8px;
    background-color: #C2AB9E;
    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 transparent;
    border-right: 9px solid #C2AB9E;
    border-bottom: 8px solid transparent;
    border-left: none;
    top: -4px;
}
.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 10px;
    top: -2px;
    width: 10px;
    height: 10px;
    border: 6px double #C2AB9E;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 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: none;
}


