#player,body,html {
    /* height: 100%; */
}

.panel,ul.playlist li.footer {
    text-align: center
}

:root {
    --blue: #4d1da2
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1
}

body {
    background-color: #fff;
    font-family: Helvetica
}

audio {
    display: none
}

@media only screen and (min-width: 420px) and (max-width:768px) {
    body #player {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    body #player,body .panel,body .playlist {
        width: 100%
    }

    body ul.playlist {
        padding-bottom: 0;
        border-left: 1px solid #046ad8
    }
}

svg polygon {
    stroke-linejoin: round;
    fill: transparent;
    stroke: #fff;
    stroke-width: 5
}

#player {
    background-color: #ffffff;
    /* width: 200px; */
}

.panel {
    background-color: var(--blue);
    color: #fff;
    overflow: hidden;
    position: relative
}

h1 {
    font-size: 1.5rem
}

.control {
    padding: 3.5rem
}

.control button {
    color: #fff;
    background-color: transparent;
    border: 0;
    display: inline-block;
    cursor: pointer;
}

.control button:disabled,.control button[disabled] {
    color: #c0bfbf;
    opacity: .5
}

button:focus {
    outline: 0
}

.information>div {
    margin-bottom: 20px
}

ul.playlist {
	display: none;
    overflow-y: auto;
    padding-bottom: 0;
}

ul.playlist li:first-child {
    border-top: 0
}

ul.playlist li:last-child {
    border-bottom: 0
}

ul.playlist li {
    padding: 20px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eaeaea;
}

ul.playlist li:last-child {
    border-bottom: 0;
}

ul.playlist li:hover {
    background-color: #e4d4ff;
}

ul.playlist li.active:hover {
    background-color: #eb3573;
}

ul.playlist li.active {
    background-color: #2196f3;
    color: #fff;
    border-top: 0;
}

ul.playlist li span.id {
    background-color: #4d1da2;
    color: #fff;
    width: 28px;
    display: inline-block;
    padding: .25em .4em;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    margin-right: 5px;
}

ul.playlist li.active span.id {
    color: #3f51b5;
    background-color: #fff;
}

#wave {
    position: absolute;
    bottom: -30px;
    left: 0;
    pointer-events: none;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    width: calc(100% + 300px);
}

.waving {
    -webkit-animation: waving 2s infinite alternate;
    animation: waving 2s infinite alternate
}

#wave.not-waving {
    bottom: -100px
}

@-webkit-keyframes waving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }
}

@keyframes waving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
}

span.song {
    opacity: 0.75;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type='range'] {
        overflow: hidden;
        width: 80px;
        -webkit-appearance: none;
        background: #5f34ab;
        border-radius: 5px;
    }

    input[type='range']::-webkit-slider-runnable-track {
        height: 10px;
        -webkit-appearance: none;
        color: #5f34ab;
        margin-top: -1px;
    }

    input[type='range']::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: #E91E63;
        box-shadow: -80px 0 0 80px #2196f3;
    }
}

/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: #2196f3;
}

input[type="range"]::-moz-range-track {
    background-color: #5f34ab;
}

/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: #2196f3;
}

input[type="range"]::-ms-fill-upper {
    background-color: #5f34ab;
}

.playlist_dtail {
    display: flex;
    justify-content: space-between;
}

.onair {
    background: whitesmoke;
    padding: 20px;
}

.onair h3 {
    text-align: center;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.list_title label {
    float: left;
    margin: 0 5px 0 0;
    font-weight: bold;
}

.list_title a:before {
    content: ' - ';
}

.songs ul {
    list-style: none;
    margin: 0;
}

.songs li {
    font-size: 14px;
    border-bottom: 1px dashed #e9e9e9;
    padding: 10px;
}

.songs li:hover {
    background: #f9f9f9;
}

.songs li strong {
    color: #555555;
}
