#overlay-player {
    background-color: white;
    color: black;
    width: calc(100% - 4rem);
    border-radius: 1rem;
    box-shadow: #2b263a 0px 0px 1rem;
    min-height: 4rem;
    overflow: auto;
    bottom: 1rem;
    position: fixed;
    z-index: 50;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.overlay-player-metadata-wrapper {
    margin: .5rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.overlay-player-metadata {
    margin: 0;
}
#overlay-player-nowplaying-artist {
    font-weight: 800;
}
#overlay-player-nowplaying-playlist {
    font-size: .8rem;
    margin: 0;
}

.overlay-player-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 .5rem 0 1.5rem;
}

.overlay-player-button {
    height: 2rem;
    width: 2rem;
    margin: .5rem;
    transition: all .25s;
    cursor: pointer;
    filter: invert();
}

.overlay-volume-wrapper {
    width: 8rem;
    display: flex;
}

#overlay-volume {
    -webkit-appearance: none;
    appearance: none;
    margin: .5rem;
    width: 100%;
    height: 2px;
    background: black;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    accent-color: #7eaed2;
}
#overlay-volume::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent; 
    border-color: transparent;
    color: transparent;
}
#overlay-volume::-moz-range-thumb { /*Mozilla*/
    width: 1rem;
    height: 1rem;
    background: black;
    border: solid 2px white;
    border-radius: 100%;
    cursor: pointer;
}
#overlay-volume::-webkit-slider-thumb { /*Others*/
    -webkit-appearance: none;
    width: 1rem;
    height: 1rem;
    background: black;
    border: solid 2px white;
    border-radius: 100%;
    cursor: pointer;
}