/*
  1. Base
*/

:root {
    /* TIP: use same color to disable gradient */
    --slider-fill-color1: rgba(255, 130, 126, 0.87);
    --slider-fill-color2: rgb(161, 30, 30);
    --slider-background: rgba(255, 255, 255, 0.3);
    --thumb-size: 8px;
    --thumb-color: rgba(0, 36, 157, 0.88);
    --bar-height: 1px;
    /* add more clickable area to trigger
         INFO: use 'none' to disable  */
    --slider-border: 10px solid transparent;
}

/*
  2. Components
*/
input[type='range'] {
    padding: 1px;
    display: block;
    border-radius: .25em;
    cursor: pointer;
    border: solid .5em transparent;
    outline: none;
    box-shadow: 0 0 0.25em rgb(75, 76, 75);
}

    input[type='range'],
    input[type='range']::-webkit-slider-runnable-track,
    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
    }

        input[type='range']::-webkit-slider-runnable-track {
            border-radius: 0.25em;
            height: 0.5em;
            background: linear-gradient(90deg, var(--slider-fill-color1), var(--slider-fill-color2)) 0 100% no-repeat content-box #cfd8dc;
            background-size: 0% 100%;
        }

        input[type='range']::-moz-range-track {
            border-radius: 0.25em;
            background: linear-gradient(90deg, var(--slider-fill-color1), var(--slider-fill-color2)) 0 100% no-repeat content-box #cfd8dc;
            ;
        }

        input[type='range']::-ms-track {
            border-radius: 0.25em;
            color: transparent;
            background-size: 0% 100%;
        }

        input[type='range']::-ms-fill-lower {
            border-radius: 0.25em;
            background: rgb(34, 161, 30);
        }

        input[type='range']::-ms-tooltip {
            display: none;
        }

/*input[type='range']:focus {
            outline: none;
            box-shadow: 0 0 0.25em rgb(34, 161, 30);
        }*/

input[type=range][data-rangeId='0']::-webkit-slider-runnable-track {
    background-size: 50% 100%
}

input[type=range][data-rangeId='0']::-moz-range-track {
    background-size: 50% 100%
}

div#list-screen {
    background-color: #141920;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

    div#list-screen div#list-screen-header {
        background-color: #141920;
        padding: 15px;
        text-align: center;
        height: 55px;
        position: relative;
        color: white;
        font-family: "Lato", sans-serif;
        cursor: pointer;
    }

        div#list-screen div#list-screen-header img#up-arrow {
            position: absolute;
            top: 23px;
            left: 15px;
            cursor: pointer;
        }

        div#list-screen div#list-screen-header span.list-active-song-name {
            color: #000000;
            line-height: 25px;
            font-size: 16px;
            font-family: "Lato", sans-serif;
            letter-spacing: 0.5px;
        }

    div#list-screen div#list {
        overflow-y: scroll;
    }

        div#list-screen div#list div.song {
            padding: 15px;
            background-color: #242b33;
            margin-bottom: 1px;
            cursor: pointer;
            line-height: 24px;
        }

            div#list-screen div#list div.song span.song-number-now-playing {
                display: inline-block;
                width: 24px;
                text-align: center;
            }

                div#list-screen div#list div.song span.song-number-now-playing span.number {
                    opacity: 0.5;
                    font-family: "Lato", sans-serif;
                    font-size: 14px;
                    color: #fff;
                    letter-spacing: 0.5px;
                }

                div#list-screen div#list div.song span.song-number-now-playing img.now-playing {
                    display: none;
                }

            div#list-screen div#list div.song.amplitude-active-song-container {
                background-color: #30363e;
            }

                div#list-screen div#list div.song.amplitude-active-song-container span.song-number-now-playing img.now-playing {
                    display: inline-block;
                }

                div#list-screen div#list div.song.amplitude-active-song-container span.song-number-now-playing span.number {
                    display: none;
                }

            div#list-screen div#list div.song div.song-meta-container {
                display: inline-block;
                margin-left: 8px;
                vertical-align: middle;
                width: calc(100% - 80px);
            }

                div#list-screen div#list div.song div.song-meta-container span.song-name {
                    font-family: "Lato", sans-serif;
                    font-size: 14px;
                    line-height: 16px;
                    color: #55b560;
                    letter-spacing: 0.47px;
                    display: block;
                }

                div#list-screen div#list div.song div.song-meta-container span.song-artist-album {
                    font-family: "Lato", sans-serif;
                    font-size: 12px;
                    line-height: 14px;
                    color: #fff;
                    letter-spacing: 0.47px;
                    display: block;
                }

            div#list-screen div#list div.song span.song-duration {
                display: inline-block;
                opacity: 0.5;
                font-family: "Lato", sans-serif;
                font-size: 14px;
                color: #fff;
                letter-spacing: 0.5px;
                width: 35px;
                text-align: center;
            }

            div#list-screen div#list div.song span.song-artist-album {
                color: #5277b0;
            }

    div#list-screen div#list-screen-footer {
        height: 80px;
        padding: 15px;
    }

        div#list-screen div#list-screen-footer div#list-screen-meta-container {
            width: calc(100% - 123px);
            float: left;
        }

            div#list-screen div#list-screen-footer div#list-screen-meta-container span.song-name {
                font-family: "Lato", sans-serif;
                font-size: 16px;
                color: #fff;
                letter-spacing: 0.5px;
                line-height: 24px;
            }

            div#list-screen div#list-screen-footer div#list-screen-meta-container div.song-artist-album {
                opacity: 0.5;
                font-family: "Lato", sans-serif;
                font-size: 14px;
                color: #fff;
                letter-spacing: 0.5px;
                line-height: 16px;
            }

        div#list-screen div#list-screen-footer div.list-controls {
            width: 90px;
            float: right;
            margin-top: 8px;
        }

            div#list-screen div#list-screen-footer div.list-controls div.list-previous {
                cursor: pointer;
                width: 15px;
                height: 17px;
                background-image: url("../img/small-previous.svg");
                background-repeat: no-repeat;
                float: left;
                margin-right: 15px;
                margin-top: 4px;
            }

            div#list-screen div#list-screen-footer div.list-controls div.list-play-pause {
                cursor: pointer;
                width: 17px;
                height: 24px;
                background-repeat: no-repeat;
                float: left;
            }

                div#list-screen div#list-screen-footer div.list-controls div.list-play-pause.amplitude-playing {
                    background-image: url("../img/small-pause.svg");
                }

                div#list-screen div#list-screen-footer div.list-controls div.list-play-pause.amplitude-paused {
                    background-image: url("../img/small-play.svg");
                }

            div#list-screen div#list-screen-footer div.list-controls div.list-next {
                cursor: pointer;
                width: 15px;
                height: 17px;
                background-image: url("../img/small-next.svg");
                background-repeat: no-repeat;
                float: left;
                margin-left: 15px;
                margin-top: 4px;
            }

div.player-header {
    background-color: #141920;
    padding: 15px;
    text-align: center;
    height: 55px;
    position: relative;
    margin-top: 40px;
    cursor: pointer;
    color: white;
    font-family: "Lato", sans-serif;
}

    div.player-header img#down {
        position: absolute;
        top: 23px;
        left: 15px;
        cursor: pointer;
    }

div#player-top {
    position: relative;
}

    div#player-top img[amplitude-main-song-info=true] {
        width: 100%;
        height: 370px;
    }

div#player-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #000;
    position: relative;
}

    div#player-progress-bar-container progress#song-played-progress {
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 4px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 9;
        border: none;
        cursor: pointer;
        background: transparent;
    }

        div#player-progress-bar-container progress#song-played-progress[value]::-webkit-progress-bar {
            background: none;
        }

        div#player-progress-bar-container progress#song-played-progress[value]::-webkit-progress-value {
            background: white;
        }

        div#player-progress-bar-container progress#song-played-progress[value]::-moz-progress-bar {
            background: white;
        }

    div#player-progress-bar-container progress#song-buffered-progress {
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 4px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        border: none;
        background: transparent;
    }

        div#player-progress-bar-container progress#song-buffered-progress[value]::-webkit-progress-bar {
            background: none;
        }

        div#player-progress-bar-container progress#song-buffered-progress[value]::-webkit-progress-value {
            background-color: rgba(255, 255, 255, 0.5);
            transition: width 0.1s ease;
        }

        div#player-progress-bar-container progress#song-buffered-progress[value]::-moz-progress-bar {
            background: rgba(255, 255, 255, 0.5);
        }

div#player-middle {
    /* background-color: #2C303B; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
    border-radius: 0.35rem 0 0 0.35rem;
    opacity: 0.9;
}

    div#player-middle div#time-container {
        color: white;
        width: 100%;
        background-color: #000;
        font-size: 14px;
        font-weight: bold;
    }

        div#player-middle div#time-container span.amplitude-duration-time {
            position: absolute;
            top: 0px;
            right: 5px;
        }

        div#player-middle div#time-container span.amplitude-current-time {
            position: absolute;
            top: 0px;
            left: 5px;
        }

    div#player-middle span.song-name {
        font-family: Lato, sans-serif;
        font-size: 16px;
        color: #000000;
        letter-spacing: 0.015em;
        display: block;
        max-width: 90px;
        width: 90px
    }

    div#player-middle div.song-artist-album {
        opacity: 0.5;
        font-family: Lato, sans-serif;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.5px;
        line-height: 16px;
    }

div#player-bottom {
    /* background-color: #2C303B; */
    padding-left: 5px;
    padding-right: 25px;
    border-radius: 0 0.35rem 0.35rem 0;
    opacity: 0.9;
}

    div#player-bottom div#control-container {
        /* height: 140px; */
        /* padding-top: 40px; */
        /* padding-bottom: 40px; */
    }

        div#player-bottom div#control-container div#shuffle-container {
            float: left;
            width: 20%;
            height: 60px;
            padding-top: 21px;
        }

            div#player-bottom div#control-container div#shuffle-container div#shuffle {
                width: 16px;
                height: 17px;
                cursor: pointer;
                margin: auto;
                opacity: 0.7;
            }

                div#player-bottom div#control-container div#shuffle-container div#shuffle.amplitude-shuffle-off {
                    background: url("../img/shuffle.svg");
                }

                    div#player-bottom div#control-container div#shuffle-container div#shuffle.amplitude-shuffle-off:hover {
                        background: url("../img/shuffle-on.svg");
                        opacity: 0.8;
                    }

                div#player-bottom div#control-container div#shuffle-container div#shuffle.amplitude-shuffle-on {
                    background: url("../img/shuffle-on.svg");
                    opacity: 1;
                }

                    div#player-bottom div#control-container div#shuffle-container div#shuffle.amplitude-shuffle-on:hover {
                        opacity: 1;
                    }

        div#player-bottom div#control-container div#prev-container {
            width: 20%;
            float: left;
            height: 60px;
            padding-top: 18px;
        }

            div#player-bottom div#control-container div#prev-container div#previous {
                background: url("../img/previous.svg");
                width: 24px;
                height: 24px;
                cursor: pointer;
                margin: auto;
            }

                div#player-bottom div#control-container div#prev-container div#previous:hover {
                    background: url("../img/previous-hover.svg");
                }

        div#player-bottom div#control-container div#play-pause-container {
            width: 20%;
            float: left;
            height: 40px;
        }

            div#player-bottom div#control-container div#play-pause-container div#play-pause {
                width: 25px;
                height: 40px;
                cursor: pointer;
                margin: auto;
                object-fit: cover;
            }

                div#player-bottom div#control-container div#play-pause-container div#play-pause.amplitude-playing {
                    background: url("../img/pause.png") 5px 14px;
                    background-repeat: no-repeat;
                    object-fit: scale-down;
                }

                div#player-bottom div#control-container div#play-pause-container div#play-pause.amplitude-paused {
                    background: url(../img/play.png) 5px 14px;
                    /* width: 25px; */
                    background-repeat: no-repeat;
                    object-fit: scale-down;
                }

        div#player-bottom div#control-container div#next-container {
            width: 20%;
            float: left;
            height: 60px;
            padding-top: 18px;
        }

            div#player-bottom div#control-container div#next-container div#next {
                background: url("../img/next.svg");
                width: 24px;
                height: 24px;
                cursor: pointer;
                margin: auto;
            }

                div#player-bottom div#control-container div#next-container div#next:hover {
                    background: url("../img/next-hover.svg");
                }

        div#player-bottom div#control-container div#repeat-container {
            float: left;
            width: 20%;
            height: 60px;
            padding-top: 20px;
        }

            div#player-bottom div#control-container div#repeat-container div#repeat {
                background: url("../img/repeat.svg");
                width: 18px;
                height: 20px;
                cursor: pointer;
                margin: auto;
                opacity: 0.7;
            }

                div#player-bottom div#control-container div#repeat-container div#repeat:hover {
                    background: url("../img/repeat-on.svg");
                    opacity: 0.8;
                }

                div#player-bottom div#control-container div#repeat-container div#repeat.amplitude-repeat-on {
                    background: url("../img/repeat-on.svg");
                    opacity: 1;
                }

                    div#player-bottom div#control-container div#repeat-container div#repeat.amplitude-repeat-on:hover {
                        opacity: 1;
                    }

        div#player-bottom div#control-container::after {
            content: "";
            display: table;
            clear: both;
        }

    div#player-bottom div#volume-container {
        /* padding-top: 22px; */
        text-align: center;
        padding-left: 0px;
    }

        div#player-bottom div#volume-container img {
            display: block;
            float: left;
            margin-top: -8px;
        }

        div#player-bottom div#volume-container input[type=range].amplitude-volume-slider {
            width: calc(100% - 30px);
            -webkit-appearance: none;
            display: block;
            margin-left: 30px;
            float: left;
            margin-top: -1.2em;
            padding-top: 0.em;
        }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider:focus {
                outline: none;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-webkit-slider-runnable-track {
                width: 75%;
                height: 4px;
                cursor: pointer;
                animate: 0.2s;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
                height: 12px;
                width: 12px;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);
                cursor: pointer;
                margin-top: -5.5px;
                -webkit-appearance: none;
                border-radius: 20px;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider:focus::-webkit-slider-runnable-track {
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-moz-range-track {
                width: 100%;
                height: 1px;
                cursor: pointer;
                animate: 0.2s;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-moz-range-thumb {
                height: 12px;
                width: 12px;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);
                cursor: pointer;
                margin-top: -5.5px;
                -webkit-appearance: none;
                border-radius: 20px;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-track {
                width: 100%;
                height: 2px;
                cursor: pointer;
                animate: 0.2s;
                border-width: 15px 0;
                color: transparent;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-fill-lower {
                background: transparent;
                border-radius: 2.6px;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-fill-upper {
                background: transparent;
                border-radius: 2.6px;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-thumb {
                height: 12px;
                width: 12px;
                background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);
                cursor: pointer;
                margin-top: -5.5px;
                border-radius: 20px;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider:focus::-ms-fill-lower {
                background: #55b560;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-fill-upper {
                background: #cfd8dc;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-ms-tooltip {
                display: none;
            }

            div#player-bottom div#volume-container input[type=range].amplitude-volume-slider::-moz-range-progress {
                background-color: #55b560;
            }

        div#player-bottom div#volume-container:after {
            /* content: ""; */
            /* display: table; */
            /* clear: both; */
        }

div#volume-container div.amplitude-mute {
    cursor: pointer;
    width: 25px;
    height: 30px;
    float: left;
    font-size: 0px;
}

    div#volume-container div.amplitude-mute.amplitude-not-muted {
        background: url("../img/volume.png") 3px 14px;
        background-repeat: no-repeat;
    }

    div#volume-container div.amplitude-mute.amplitude-muted {
        background: url("../img/mute.png") 3px 14px;
        background-repeat: no-repeat;
    }

@-moz-document url-prefix() {
    div#player-bottom div#volume-container input[type=range].amplitude-volume-slider {
        margin-top: 0px;
    }
}

@supports (-ms-ime-align: auto) {
    div#player-bottom div#volume-container input[type=range].amplitude-volume-slider {
        margin-top: -4px;
        height: 30px;
        background-color: #192029 !important;
    }
}

@media all and (-ms-high-contrast: none) {
    div#player-bottom div#volume-container *::-ms-backdrop,
    div#flat-black-player-container div#player-bottom div#volume-container input[type=range].amplitude-volume-slider {
        margin-top: -8px;
        background-color: #192029 !important;
        background: #192029 !important;
    }
}
/*
  3. Layout
*/
body {
    background-color: rgba(0, 0, 0, 0.8);
}

div#flat-black-player-container {
    position: relative;
    max-width: 400px;
    margin: auto;
}

/*
  4. Pages
*/
/*
  5. Themes
*/
/*
  6. Utils
*/
/*
  7. Vendors
*/

/*# sourceMappingURL=examples/flat-black/css/app.css.map */

