#cs_audio {
    display: none;
}

#cs_audioplayer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: #c2c2c2;
    border-radius: 16px;
    padding: 8px 16px;
    color: #fff;
}

.cs_audio_bar {
    background-color: #424242;
    width: 100%;
    height: 6px;
    position: relative;
    cursor: pointer;
    transition: 0.1s;
}

.cs_audio_bar_loaded {
    background-color: #44363d;
    width: 0;
    height: 6px;
    position: absolute;
    transition: 0.1s;
}

.cs_audio_bar_now {
    background-color: orange;
    width: 0;
    height: 6px;
    position: absolute;
    z-index: 999;
    transition: 0.1s;
}

#cs_play_pause_btn {
    margin-left: 95px;
}

#cs_play_pause_btn i {
    font-size: 1.45em;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-bottom: 4px;
}
