div.bgplayerui{ /* Audio player UI DIV */
background: none;
padding: 3px;
padding-top:0px;
padding-bottom: 5px;
width: 150px;
color: white;
position: relative;
z-index: 99;
float: right;
}

div.bgplayerui .play, div.bgplayerui .rewind{ /* Audio player UI buttons style */
cursor: pointer;
}


div.bgplayerui div.volume{ /* Volume control container */
display: inline-block;
height: 28px;
overflow: hidden;
padding: 22px 0px 0px 0px;
}

div.bgplayerui div.volume div{ /* Individual volume bars within Volume container */
    float: left;
    width: 5px;
    height: 55%;
    margin-right: 0px;
    /* margin-right: 2px; */
    /* border: 1px solid black; */
    background: #fff;
    cursor: pointer;
    -moz-box-shadow: inset 1px 1px 2px gray;
}

div.bgplayerui div.volume div.on{ /* Style of volume bar when it's on */
background: #00B4F9;
}

input[type=button]{
-moz-transition: all 0.3s ease-in-out;
 background:#f6dca3;
 color:black;
 border:double;
 border-radius:0.5em;
 box-shadow:0 0.2em 0.5em black;
}

input[type=button]:focus{
border-color: darkred;
background:#f5ca6e;
}