/*
    AUTHOR: Sam Johnson
    MINIMusic Player 
*/

/* HTML5 Audio player with playlist styles */
.example, .example2 {
    /*margin: 50px auto 0;*/
    width: 100%; /*390px;*/
}

.player {
    /*background: #f09f8b;*/
    /*border: 1px solid #fff;*/
    border-top: 1px solid #ffa400;
    border-bottom: 1px solid #ffa400;
    padding-top: 10px;
    height: 130px; /*120*/
    position: relative;
    width: 100%;
    z-index: 2;
}
.info {
    margin-top: 20px; /*10px*/
    display: block;
    float: left;
    width: 65%;
    height: 20px;
    overflow: hidden;
} 
.title, .artist {
    font-family: verdana;
    /*left: 167px;
    position: absolute;*/
    display: inline;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    padding: 0 10px;
    /*top: 23px;*/
}
.artist {
    color: #333;
    font-size: 12px;
    /*top: 40px;*/
}
.pl {
    background: url(../images/playlist.png) no-repeat;
    cursor: pointer;
    height: 40px;
    left: 330px;
    position: absolute;
    top: 20px;
    width: 39px;
}
.pl:hover {
    top: 21px;
}
.cover {
    border-radius: 5px 5px 5px 5px;
    height: 94px;
    left: 20px;
    position: absolute;
    top: 30px;
    width: 94px;
}
.controls {
    cursor: pointer;
    left: 0px;
   /* position: absolute;
    top: 65px;
    left: 122px;*/
    /*width: 60%;*/
    /*margin: 30px 0;*/
}
.controls .play, .controls .pause {
    /*width: 60px;
    height: 60px;*/
    margin: 5px 5px 5px 5px;
    padding: 0 10px;
}
.controls .play, .controls .pause, .controls .rew, .controls .fwd, .controls .stop {
   /*text-indent: -10000px;*/
    border: none;
    float: left;
}
.controls .rew, .controls .fwd, .controls .stop {
    /*width: 50px;
    height: 50px;*/
    margin: 5px 5px 5px 5px;
    padding: 0 10px;
}
.controls .play {
    /*background: url(../images/play.png) no-repeat;*/
}
.controls .pause {
    /*background: url(../images/pause.png) no-repeat;*/
    display: none;
}
.controls .rew {
    /*background: url(../images/rewind.png) no-repeat;*/
}
.controls .fwd {
    /*background: url(../images/next.png) no-repeat;*/
}
.controls .stop {
    /*background: url(../images/stop.png) no-repeat;*/
}
.hidden {
    display: none;
}
.controls .visible {
    display: block;
}
.volume {
    height: 11px;
    /*left: 230px;
    position: absolute;
    top: 142px;
    width: 140px;*/
    width: 35%;
    float: right;
    padding-top: 10px;
}
.mute {
    position: relative;
}
.mute  .volume-btn {
    background: url(../images/volume-off.png) no-repeat;
}
.volume-btn {
    /*background: url(../images/volume-up.png) no-repeat;*/
    height: 20px;
    width: 20px;
    float: left;
    position: relative;
    top: -4px;
}
.volume-adjust {
    height: 5px;
    position: relative;
    width: 70%;
    background: #ddd;
    float: right;
    margin-top: 5px;
}
.volume-adjust  > div > div {
    height: 5px;
    background: #ffa400; /*#151B48;*/
}
.progressbar
{
    background-color: #ccc;
    cursor: pointer;
    z-index: 1;
    right: 6.875em; /* 110 */
     height: 5px; /*15*/
    /*left: 0px;
    position: absolute;
    width: 90%;
    top: 170px;
    margin: 0px 5%;*/
    /*margin: 60px 0;*/
    margin-top: 65px;
}
.novolume .progressbar
{
    right: 4.375em; /* 70 */
}
.progressbar div
{
    width: 0%;
    height: 5px; /*15*/
    position: absolute;
    left: 0;
    top: 0;
    margin-top:75px;
}
.bar-loaded
{
    background-color: #999; /*#f1f1f1;*/
    z-index: 1;
}
.bar-played
{
    background: #ffa400; /*#151B48;*/
    z-index: 2;
}
.bar-played::after {
    content: "";
    top: -9px;
    width: 24px;
    height: 24px;
    position: absolute;
    border-radius: 100%;
    right: 0px;
    background-color: #ffa400;
    opacity:10;
}
.timeHolder {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    /*bottom: 10px;*/
    /*position: absolute;*/
    margin: 0px 5%;
    /*width: 90%;*/
    float: right;
    margin-top: 20px;
}
.time-current, .time-duration, .time-separator {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    float: left;
}
.volume .ui-slider-handle {
    background: url("../images/spr.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;
}
.playlist {
    background-color: #fff;
    list-style-type: none;
    margin: -10px 0 0 2px;
    padding-bottom: 10px;
    padding-top: 15px;
    position: relative;
    /*width: 95%;*/
    z-index: 1;
    margin: 0px auto;
    padding-left: 10px;
}
.playlist li {
    color: #151B48;
    cursor: pointer;
    margin: 0 0 5px 15px;
}
.playlist li > a {
   color: #151B48;
   text-decoration: none; 
}
.playlist li.active {
    font-weight: bold;
}