#audio-player-container {
    border-top: 1px solid #4a5464;
    background-color: #1d1d1d;
    bottom: -1px;
    display: flex;
    left: 0;
    position: fixed !important;
    flex-direction: row;
    right: 0;
    width: 100%;
    z-index: 999;
}

#stream_info_song_truncate {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 2em;
}

#stream_info_song {
    background-color: #1d1d1d;
    color: #ccc !important;

    font-size: 110%;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
}

.plyr {
    padding-right: 1.2em;
    width: 100px;
    border-right: 1px solid #4a5464;
}

.plyr--audio .plyr__controls {
    background-color: #1d1d1d;
    min-height: 10vh;
}

@media (max-width: 768px) {
    .plyr {
        padding-right: 0;
        min-width: 50px;
    }

    .plyr__controls__item.plyr__volume {
        display: none;
    }

    #stream_info_song_truncate {
        padding: 0 1em;
    }

    #stream_info_song {
        font-size: 90%;
        font-weight: normal;
        width: 60%;
    }
}