
#audioplayer_container {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    padding-top: var(--default-spacing);
    color: #fff;
    display: none;
}
#player {
    display: flex;
    max-width: 700px;
    /*margin: auto;*/
}
#player audio {
    display: none;
}
#songInfo {
    display: none;
}
#marqueeContainer {
    width: 80px;
    overflow: hidden;
    position: relative;
    height: 30px;
    margin-right: 10px;
}
#marqueeText {
    white-space: nowrap;
    position: absolute;
    left: 100%;
}
#songInfo {
    white-space: nowrap;
}

#sliderContainer input[type="range"] {
    background: transparent;
    margin-right: 10px;
    width: 80px;
}
#sliderContainer input[type="range"]::-webkit-slider-thumb,
#sliderContainer input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
#sliderContainer input[type="range"]::-webkit-slider-runnable-track,
#sliderContainer input[type="range"]::-moz-range-track {
    width: 100%;
    height: 2px;
    background: #fff;
    border: none;
    border-radius: 5px;
    opacity: 0.3;
}

#player button {
    font-size: 0;
    padding: 0;
    border: 0;
    height: 15px;
    width: 15px;
    filter: invert(1);
    opacity: 0.3;
    margin-right: 10px;
}
#player button:hover {
    opacity: 1;
    cursor: pointer;
}
#player #playerControls {
    display: flex;
}
#player button#prevButton {
    background: url('../img/audio-prev.svg') no-repeat;
    background-size: 100%;
}
#player button#nextButton {
    background: url('../img/audio-next.svg') no-repeat;
    background-size: 100%;
}
#player button#playPauseButton.play {
    background: url('../img/audio-play.svg') no-repeat;
    background-size: 100%;
    width: 12.5px;
}
#player button#playPauseButton.pause {
    background: url('../img/audio-pause.svg') no-repeat;
    background-size: 100%;
    opacity: 1;
    width: 12.5px;
}
@media only screen and (min-width: 768px) {
    #marqueeContainer {
        width: 150px;
    }
    
    /*#audioplayer_container {
        left: 50%;
        bottom: unset;
        right: unset;
        top: calc(var(--default-spacing) * 1.5);
        max-width: 480px;
        transform: translateX(-50%);
        background: transparent;
        padding-top: 0;
    }
    #player {
        margin: auto;
    }
    
    #sliderContainer input[type="range"] {
        background: transparent;
        margin-right: 10px;
        width: 140px;
    }*/
}








