
div#amplitude-player {
    background: transparent;
    margin: auto;
    display: flex;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
    div#amplitude-player {
        flex-direction: column;
    }
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    div#amplitude-player {
        max-height: 715px;
    }
}

/* Large and up */
@media screen and (min-width: 64em) {
    div#amplitude-player {
        max-height: 715px;
    }
}

div#amplitude-left {
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

    div#amplitude-left img.album-art {
        width: 100%;
    }

#player-left-bottom {
    display: flex;
}

div#amplitude-left div#player-left-bottom {
    flex: 1;
    background-color: transparent;
    border-radius: 8px;
}

    div#amplitude-left div#player-left-bottom div#volume-container:after {
        content: "";
        display: table;
        clear: both;
    }

/* Small only */
@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#amplitude-left {
        width: 100%;
    }

        div#amplitude-player div#amplitude-left img[amplitude-song-info="cover_art_url"] {
            width: auto;
            height: auto;
        }
}

div#progress-container {
    width: 100%;
    float: left;
    position: relative;
    height: 28px;
    direction: ltr;
    transform: rotate(180deg);
    cursor: pointer;
}

    div#progress-container:hover input[type="range"].amplitude-song-slider::-webkit-slider-thumb {
        display: block;
    }

    div#progress-container:hover input[type="range"].amplitude-song-slider::-moz-range-thumb {
        visibility: visible;
    }

    div#progress-container progress#song-played-progress {
        width: 100%;
        position: absolute;
        left: 0;
        top: 2px;
        right: 0;
        width: 100%;
        z-index: 1000;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 3px;
        border-radius: 5px;
        background: transparent;
        border: none;
        overflow: hidden;
    }

@media all and (-ms-high-contrast: none) {

    div#progress-container *::-ms-backdrop,
    div#progress-container progress#song-played-progress {
        color: var(--color-active);
        border: none;
        background-color: #cfd8dc;
    }
}

@supports (-ms-ime-align: auto) {
    div#progress-container progress#song-played-progress {
        color: var(--color-active);
        border: none;
    }
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-bar {
    background: none;
    border-radius: 5px;
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-value {
    background-color: var(--color-active);
    border-radius: 5px;
    height: 200px
}

div#progress-container progress#song-played-progress::-moz-progress-bar {
    background: none;
    border-radius: 5px;
    background-color: var(--color-active);
    height: 5px;
    margin-top: -2px;
}

div#progress-container progress#song-buffered-progress {
    position: absolute;
    left: 0;
    top: 2px;
    right: 0;
    width: 100%;
    z-index: 100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height:3px;
    border-radius: 5px;
    border: none;
}

    div#progress-container progress#song-buffered-progress[value]::-webkit-progress-bar {
        background-color: #cfd8dc;
        border-radius: 5px;
    }

    div#progress-container progress#song-buffered-progress[value]::-webkit-progress-value {
        background-color: #78909c;
        border-radius: 5px;
        transition: width 0.1s ease;
    }

    div#progress-container progress#song-buffered-progress::-moz-progress-bar {
        background: none;
        border-radius: 5px;
        background-color: #78909c;
        height: 5px;
        margin-top: -2px;
    }

div#progress-container progress::-ms-fill {
    border: none;
}

@-moz-document url-prefix() {
    div#progress-container progress#song-buffered-progress {
        top: 2px;
        border: none;
    }
}

@media all and (-ms-high-contrast: none) {

    div#progress-container *::-ms-backdrop,
    div#progress-container progress#song-buffered-progress {
        color: #78909c;
        border: none;
    }
}

@supports (-ms-ime-align: auto) {
    div#progress-container progress#song-buffered-progress {
        color: #78909c;
        border: none;
    }
}

div#progress-container input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    margin: 7.5px 0;
    position: absolute;
    z-index: 9999;
    top: -12px;
    height: 20px;
    cursor: pointer;
    background-color: inherit;
}

    div#progress-container input[type="range"]:focus {
        outline: none;
    }

    div#progress-container input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 0px;
        cursor: pointer;
        background: var(--color-active);
        border-radius: 0px;
        border: 0px solid #010101;
    }

    div#progress-container input[type="range"]::-webkit-slider-thumb {
        border: 1px solid var(--color-active);
        height: 10px;
        width: 10px;
        border-radius: 16px;
        background: var(--color-active);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -7.5px;
    }

    div#progress-container input[type="range"]:focus::-webkit-slider-runnable-track {
        background: #00adfb;
    }

    div#progress-container input[type="range"]::-moz-range-track {
        width: 100%;
        height: 0px;
        cursor: pointer;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
        background: var(--color-active);
        border-radius: 0px;
        border: 0px solid #010101;
    }

    div#progress-container input[type="range"]::-moz-range-thumb {
        border: 1px solid var(--color-active);
        height: 10px;
        width: 10px;
        border-radius: 5px;
        background: var(--color-active);
        cursor: pointer;
    }

    div#progress-container input[type="range"]::-ms-track {
        width: 100%;
        height: 0px;
        cursor: pointer;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }

    div#progress-container input[type="range"]::-ms-fill-lower {
        background: var(--color-active);
        border: 0px solid #010101;
        border-radius: 0px;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    }

    div#progress-container input[type="range"]::-ms-fill-upper {
        background: var(--color-active);
        border: 0px solid #010101;
        border-radius: 0px;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    }

    div#progress-container input[type="range"]::-ms-thumb {
        border: 1px solid var(--color-active);
        height: 10px;
        width: 10px;
        border-radius: 5px;
        background: var(--color-active);
        cursor: pointer;
        height: 0px;
        display: block;
    }

@media all and (-ms-high-contrast: none) {

    div#progress-container *::-ms-backdrop,
    div#progress-container input[type="range"].amplitude-song-slider {
        padding: 0px;
    }

        div#progress-container *::-ms-backdrop,
        div#progress-container input[type="range"].amplitude-song-slider::-ms-thumb {
            height: 15px;
            width: 15px;
            border-radius: 10px;
            cursor: pointer;
            margin-top: -8px;
        }

        div#progress-container *::-ms-backdrop,
        div#progress-container input[type="range"].amplitude-song-slider::-ms-track {
            border-width: 15px 0;
            border-color: transparent;
        }

        div#progress-container *::-ms-backdrop,
        div#progress-container input[type="range"].amplitude-song-slider::-ms-fill-lower {
            background: #cfd8dc;
            border-radius: 10px;
        }

        div#progress-container *::-ms-backdrop,
        div#progress-container input[type="range"].amplitude-song-slider::-ms-fill-upper {
            background: #cfd8dc;
            border-radius: 10px;
        }
}

@supports (-ms-ime-align: auto) {
    div#progress-container input[type="range"].amplitude-song-slider::-ms-thumb {
        height: 15px;
        width: 15px;
        margin-top: 3px;
    }
}

div#progress-container input[type="range"]:focus::-ms-fill-lower {
    background: #0075a9;
}

div#progress-container input[type="range"]:focus::-ms-fill-upper {
    background: #00adfb;
}

#control-container {
    display: flex;
    align-items: center;
    width: 100%;
    direction: ltr;
}

@media all and (-ms-high-contrast: none) {

    div#control-container *::-ms-backdrop,
    div#control-container div#control-container {
        margin-top: 40px;
        float: none;
    }
}

div#control-container div#central-control-container {
    width: fit-content;
    float: left;
}




    div#control-container div#central-control-container div#central-controls div#play-pause {
        display: inline;
        width: 60px;
        height: 60px;
        cursor: pointer;
        float: left;
    }

       


div#control-container div#volume-container {
    width: fit-content;
    float: left;
}

    div#control-container div#volume-container div#shuffle-right {
        width: 23px;
        height: 19px;
        cursor: pointer;
        margin: auto;
    }


div#control-container div.amplitude-mute {
    cursor: pointer;
    width: 23px;
    height: 18px;
    float: left;
}



    @media screen and (max-width: 767px){
        div#control-container div.amplitude-mute.amplitude-muted, div#control-container div.amplitude-mute.amplitude-not-muted {
            width: 23px;
            height: 18px;
        }
    }

div#control-container:after {
    content: "";
    display: table;
    clear: both;
}



/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    div#amplitude-player div#repeat-container div#repeat {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    div#amplitude-player div#repeat-container div#shuffle {
        display: none;
    }

    div#amplitude-player div#volume-container div.volume-controls {
        display: none;
    }

    div#amplitude-player div#volume-container div#shuffle-right {
        display: block;
    }
}

/* Large and up */
@media screen and (min-width: 64em) {
    div#amplitude-player div#repeat-container div#repeat {
        margin-left: 10px;
        margin-right: 20px;
        float: left;
    }

    div#amplitude-player div#volume-container div#shuffle-right {
        display: none;
    }
}


div#time-container {
    width: 70%;
    margin: auto;
}

    div#time-container span.current-time {
        color: #607d8b;
        font-size: 10px;
        font-weight: 700;
        float: left;
        text-align: center;
    }

    div#time-container span.duration {
        color: #607d8b;
        font-size: 10px;
        font-weight: 700;
        float: right;
        text-align: center;
    }

    div#time-container:after {
        content: "";
        display: table;
        clear: both;
    }

div#meta-container {
    text-align: center;
    margin-top: 5px;
}

    div#meta-container span.song-name {
        display: block;
        color: #272726;
        font-size: 20px;
        font-family: "Open Sans", sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    div#meta-container div.song-artist-album {
        color: #607d8b;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        div#meta-container div.song-artist-album span {
            display: block;
        }


div.amplitude-wave-form {
    margin-top: -22px;
}

    div.amplitude-wave-form svg {
        stroke: var(--color-active);
        height: 50px;
        width: 100%;
        stroke-width: 0.5px;
    }

        div.amplitude-wave-form svg g {
            stroke: var(--color-active);
            height: 50px;
            width: 100%;
        }

            div.amplitude-wave-form svg g path {
                stroke: var(--color-active);
                height: 50px;
                width: 100%;
            }

div#large-visualization {
    width: 100%;
    background-color: black;
}


