/* ============================================================================================== 
This copyright notice must be kept untouched in the stylesheet at all times.
The original version of this stylesheet and the associated (x)html 
is available at http://www.script-tutorials.com/html5-audio-player-with-playlist/
Copyright (c) Script Tutorials. All rights reserved.
This stylesheet and the associated (x)html may be modified in any way to fit your requirements.
================================================================================================= */

* {
    margin: 0;
    padding: 0;
}

#uidInputField {
    background-color: yellow;
    color: red;
    font-family: Arial;
    color: #EEEEEE;
    font-size: 22px;
    top: 25px;
}

body {
    background-color: black;
}

header {
    background-color: black;
    color: red;
    display: block;
    font: 14px/1.3 Arial, sans-serif;
    margin-bottom: 10px;
    position: relative;
}

header h2 {
    font-size: 18px;
    margin: 0px auto;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}

header a,
a:visited {
    text-decoration: none;
    color: #fcfcfc;
}


/* HTML5 Audio player with playlist styles */

.example {
    margin: 50px auto 0;
    width: 400px;
}

.player {
    background: transparent url("../images/spr.png") no-repeat scroll center top;
    height: 162px;
    position: relative;
    width: 326px;
    z-index: 2;
}

.title,
.artist {
    font-family: Arial;
    left: 6px;
    position: absolute;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.title {
    font-family: Arial;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    top: 5px;
}

.artist {
    font-family: Arial;
    color: #EEEEEE;
    font-size: 12px;
    top: 25px;
}

.pl {
    background: transparent url("../images/spr.png") no-repeat scroll -274px -175px;
    cursor: pointer;
    height: 34px;
    left: 270px;
    position: absolute;
    top: 20px;
    width: 32px;
}

.pl:hover {
    top: 21px;
}

.cover {
    background: transparent url(../data/cover2.jpg) no-repeat scroll center top;
    border-radius: 5px 5px 5px 5px;
    height: 94px;
    left: 20px;
    position: absolute;
    top: 20px;
    width: 94px;
}

.controls {
    cursor: pointer;
    height: 23px;
    left: 167px;
    position: absolute;
    top: 65px;
    width: 138px;
}

.controls .play,
.controls .pause,
.controls .rew,
.controls .fwd {
    background: transparent url("../images/spr.png") no-repeat scroll 0 0;
    float: left;
    height: 100%;
    width: 33%;
}

.controls .play {
    background-position: -8px -171px;
}

.controls .pause {
    background-position: -8px -198px;
    display: none;
}

.controls .rew {
    background-position: -54px -171px;
}

.controls .fwd {
    background-position: -100px -171px;
}

.controls .play:hover {
    background-position: -8px -170px;
}

.controls .pause:hover {
    background-position: -8px -197px;
}

.controls .rew:hover {
    background-position: -54px -170px;
}

.controls .fwd:hover {
    background-position: -100px -170px;
}

.hidden {
    display: none;
}

.controls .visible {
    display: block;
}

.volume {
    height: 11px;
    left: 186px;
    position: absolute;
    top: 96px;
    width: 112px;
}

.tracker {
    height: 15px;
    left: 20px;
    position: absolute;
    top: 126px;
    width: 285px;
}

.ui-slider-range {
    background: transparent url("../images/spr.png") no-repeat scroll 5px -222px;
    height: 100%;
    position: absolute;
    top: 0;
}

.ui-slider-handle {
    cursor: pointer;
    height: 10px;
    margin-left: -5px;
    position: absolute;
    top: 2px;
    width: 10px;
    z-index: 2;
}

.volume .ui-slider-handle {
    background: url("../images/spr.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;
}

.playlist {
    font-family: Arial;
    background-color: black;
    text-align: left;
    border-radius: 5px 5px 5px 5px;
    list-style-type: none;
    margin: -10px 0 0 2px;
    padding-bottom: 10px;
    padding-top: 15px;
    position: relative;
    width: 326px;
    z-index: 1;
}

.playlist li {
    color: #EEEEEE;
    cursor: pointer;
    text-align: left;
    margin: 0 0 5px 15px;
}

.playlist li.active {
    color: red;
    font-weight: bold;
}

.cb-flex {
    display: flex;
    flex-wrap: wrap;
    width: 380px;
}

.cb-flex .wj-listbox-item {
    width: 120px;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wj-listbox-item table {
    table-layout: fixed;
}

.wj-listbox-item td {
    width: 120px;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wj-listbox-item td.number {
    width: 80px;
    text-align: right;
}

label {
    margin-right: 3px;
}

body {
    margin-bottom: 24px;
}