
#footer-audio-player {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #1db954, #191414);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 9999;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
}
#footer-audio-player audio {
    display: none;
}
#footer-audio-player button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
#footer-audio-player .title {
    font-size: 14px;
    font-weight: 500;
}
@media (min-width: 768px) {
    #footer-audio-player {
        display: none;
    }
}
