
.main-container
{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.playlist-container
{
    display: flex;
    height: 300px;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #333;
}

.playlist
{
    background:#666;
    width:100%;
    padding: 0px;
    margin: 0px;
}

.image-container
{
    display: flex;
    width: 300px;
    height: 300px;
    text-align: center;
    background: #333;
}

.cover
{
     margin: 0px;
}

.controls-container
{
    display: flex;
    background: #333;
    width: 100%;
    height: 30px;
    border-top: 1px solid #000;
}

.play-pause
{
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
}

.play-button
{
    cursor: pointer;
    color: #999;
}

#previous
{
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
}

#next
{
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
}

.loader-container
{
     width: 100%;
}

.loader
{
    border: 1px solid #000;
    height: 4px;
    margin: 3px;
    width: 95%;
    background: #010101;
    position: relative;
    top: 9px;
}

.load-progress
{
    width: 0px;
    background-color: #666;
    height: 4px;
}

.play-progress
{
    width: 0px;
    background-color: #999;
    height: 4px;
}

.time
{
    color: #999;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: bottom;
    line-height: 30px;
}

.volume-down
{
    line-height: 30px;
    padding-left: 10px;
}

.volume-bar-container
{
    padding: 5px;
    width: 80px;
}
.volume
{
    border: 1px solid #000;
    height: 4px;
    width: 72px;
    background: #010101;
    position: relative;
    top: 4px;
    margin-top: 5px;
}

.volume-level
{
    width: 0px;
    background-color: #999;
    height: 4px;
    vertical-align: middle;
}

.volume-up
{
    line-height: 30px;
    padding-right: 10px;
}

audio
{
    background:#666;
    width:600px;
    padding: 0px;
}

.active a.jrplayer
{
    color:#eee;
    text-decoration:none;
}

li a.jrplayer
{
    color:#999;
    background:#333;
    padding:5px;
    display:block;
}

li a.jrplayer:hover
{
    text-decoration:none;
}

.noselect
{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

i.jrplayer
{
    cursor: pointer;
    color: #999;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.cover
{
    box-shadow: none;
}

@media only screen and (min-width: 250px) and (max-width: 450px) {
    .playlist-container
    {
        border-top: 1px solid #000;
        width: 100%;
    }

    .image-container
    {
        width: 100%;
    }

    .main-container
    {
        flex-wrap: wrap;
    }
}

}