#bottom-player {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    color: white;
    border-top: gray solid 2px;
    z-index: 100000;
    display: none;
    padding: 5px;
}

#bottom-player .inner {
    width: 100%;
    position: relative;
}

#bottom-player .inner .main {
    width: 610px;
    margin: 0 auto;
    height: 60px;
}

#bottom-player .inner .close {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -1em;
}

#bottom-player .inner a {
    color: white;
    text-decoration: none;
}

#bottom-player .inner .player-left,
#bottom-player .inner .player-right{
    display: inline-block;
}

#bottom-player .inner .player-left{
    margin-right: 5px;
}

#bottom-player .inner .player-right{
    margin-left: 5px;
}

#bottom-player .player-buttons .prev {
    width: 20px;
    height: 17px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../../img/common/player/bottom-icon/rewinding.png");
}

#bottom-player .player-buttons .play {
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/bottom-icon/play.png");
    background-position: center;
    background-repeat: no-repeat;
}

#bottom-player .player-buttons .play.playing {
    background-image: url("../../../img/common/player/bottom-icon/pause.png");
}

#bottom-player .player-buttons .stop {
    width: 14px;
    height: 17px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../../img/common/player/bottom-icon/stop.png");
}

#bottom-player .player-buttons .next {
    width: 20px;
    height: 17px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../../img/common/player/bottom-icon/forwarding.png");
}

#bottom-player .player-volume .mute{
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/bottom-icon/on.png");
    background-position: center;
    background-repeat: no-repeat;
}

#bottom-player .player-volume .mute.muted{
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/bottom-icon/off.png");
    background-position: center;
    background-repeat: no-repeat;
}

#bottom-player .time {
    display: inline-block;
}

#bottom-player .player-center {
    width: 300px;
    height: 50px;
    display: inline-block;
    position: relative;
    padding: 5px 0;
}

#bottom-player .player-center #info-block {
    position:absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    color: white;
    width: 100%;
    height: 100%;
    z-index: 100;
    font-size: 10px;
    display: table;
    margin: 5px 0;
}

#bottom-player .player-center #info-block .inner {
    display: table-cell;
    vertical-align: middle;
}

#bottom-player .player-center #info-block .inner .info-block-top, 
#bottom-player .player-center #info-block .inner .info-block-bottom {
    padding: 0 10px;
}


#bottom-player .player-center #wave-graph {
    width: 0;
    height: 100%;
    background-color: rgba(100, 100, 100, 0.8);
    margin: 0 auto;
    position:absolute;
    top: 0;
    left: 0;
}

#bottom-player .close span{
    cursor: pointer;
}
#bottom-player .player-buttons,
#bottom-player .other-buttons,
#bottom-player .player-volume,
#bottom-player .player-volume input,
#bottom-player .time{
    text-align: center;
    width: 128px;
}

#bottom-player .player-volume input{
    width: 90px;
}

#bottom-player .other-buttons a{
    margin: 0 6px;
}

#bottom-player .player-buttons a{
    margin: 0 4px;
}

/*---------------------------------------- */

#large-player {
    width: 100%;
    height: 250px;
    padding: 5px;
}

#large-player .inner {
    width: 100%;
    position: relative;
}

#large-player .inner .main {
    width: 100%;
    margin: 0 auto;
    height: 210px;
}

#large-player .inner .close {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -1em;
}

#large-player .inner a {
    color: white;
    text-decoration: none;
}

#large-player .inner .player-bottom{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}

#large-player .inner .player-bottom .player-options{
    width: 400px;
    margin: 0 auto;
    border: 1px solid #666;
    padding: 10px 10px 10px 2px;
}

#large-player .inner .player-bottom .player-buttons,
#large-player .inner .player-bottom .player-volume{
    display: inline-block;
}

#large-player .player-buttons .play {
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/large-icon/play.png");
    background-position: center;
    background-repeat: no-repeat;
}

#large-player .player-buttons .play.playing {
    background-image: url("../../../img/common/player/large-icon/pause.png");
}

#large-player .player-volume .mute{
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/large-icon/on.png");
    background-position: center;
    background-repeat: no-repeat;
}

#large-player .player-volume .mute.muted{
    width: 14px;
    height: 17px;
    display: inline-block;
    background-image: url("../../../img/common/player/large-icon/off.png");
    background-position: center;
    background-repeat: no-repeat;
}

#large-player .time {
    display: inline-block;
}

#large-player .player-top {
    width: 100%;
    height: 160px;
    display: inline-block;
    position: relative;
    padding: 5px 0;
}

#large-player .player-top #wave-graph {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    margin: 5px auto;
    position:absolute;
    top: 0;
    left: 0;
}

#large-player .close span{
    cursor: pointer;
}
#large-player .player-buttons,
#large-player .other-buttons,
#large-player .player-volume,
#large-player .player-volume input,
#large-player .time{
    text-align: center;
    width: 90px;
}

#large-player .sample-download {
    width:50px;
    display:inline-block;
    vertical-align: middle;
}

#large-player .player-volume input{
    width: 70px;
}

#bottom-player .player-buttons a{
    margin: 0 4px;
}

#mainColumn .playing-now{
    background: url(../../../img/common/icon/icon_play_on.png) no-repeat center !important;
}

#mainColumn .playing-now[data-playing=on] {
    background: url(../../../img/common/icon/icon_stop_on.png) no-repeat center !important;
}

.jacketPlayBtn {
    background-image: url("../../../img/common/icon/icon_play_s_y.png");
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    text-indent: -9999px;
    cursor: pointer;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.jacketPlayBtn[data-playing=on] {
    background-image: url("../../../img/common/icon/icon_play_s_y.png");
}

.jacketPlayBtn.playing[data-playing=on] {
    background-image: url("../../../img/common/icon/icon_stop_s_y.png");
}

div.image.jacket {
    position: relative;
    line-height: 1;
}