﻿.audio-player{
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: normal;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-width: 20em;
    max-width: 30em;
    border-radius: 2px;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform .3s;
}
.audio-player.playing{
    transform: translateY(0%);
    transition: transform .3s;
}
.audio-player .sm2-playlist li {
 text-align: center;
 margin-top: -2px;
 font-size: 95%;
 line-height: 1em;
}
.audio-player.compact {
 min-width: 1em;
 max-width: 15em;
}
.audio-player ul {
 line-height: 1em;
}
.audio-player.left .sm2-playlist li {
 text-align: left;
}
.audio-player .sm2-playlist li .load-error {
  cursor: help;
}
.audio-player.full-width {
 max-width: 100%;
 z-index: 5;
}
.audio-player.fixed {
 position: fixed;
 top: auto;
 bottom: 0px;
 left: 0px;
 border-radius: 0px;
 overflow: visible;
 z-index: 999;
}
.audio-player.fixed .bd,
.audio-player.bottom .bd {
 border-radius: 0px;
 border-bottom: none;
}

.audio-player.bottom {
 top: auto;
 bottom: 0px;
 left: 0px;
 border-radius: 0px;
 overflow: visible;
}
.audio-player.playlist-open .bd {
 border-bottom-left-radius: 0px;
 border-bottom-right-radius: 0px;
 border-bottom-color: transparent;
}
.audio-player .bd{
    position: relative;
    background: #4fa04e;
}
.audio-player .sm2-inline-gradient {
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 background-image: -moz-linear-gradient(to bottom, rgba(255,255,255,0.125) 5%, rgba(255,255,255,0.125) 45%, rgba(255,255,255,0.15) 52%, rgba(0,0,0,0.01) 51%, rgba(0,0,0,0.1) 95%); /* W3C */
 background-image: linear-gradient(to bottom, rgba(255,255,255,0.125) 5%, rgba(255,255,255,0.125) 45%, rgba(255,255,255,0.15) 50%, rgba(0,0,0,0.1) 51%, rgba(0,0,0,0.1) 95%); /* W3C */
}
.audio-player.flat .sm2-inline-gradient {
 background-image: none;
}
.audio-player.flat .sm2-box-shadow {
 display: none;
 box-shadow: none;
}
.audio-player.no-volume .sm2-volume {
 display: none;
}
.audio-player .bd {
 display: table;
 border-bottom: none;
}
.audio-player,
.audio-player .bd a {
 color: #fff;
}
.audio-player .bd a {
 text-decoration: none;
}
.audio-player .bd .sm2-button-element:hover {
 background-color: rgba(0,0,0,0.1);
 background-image: url(image/black-10.png);
 background-image: none, none;
}

.audio-player .bd .sm2-button-element:active {
 background-color: rgba(0,0,0,0.25);
 background-image: url(image/black-25.png);
 background-image: none, none;
}

.audio-player .bd .active .sm2-inline-button{
 -ms-transform: scale(0.9);
 -webkit-transform: scale(0.9);
 -webkit-transform-origin: 50% 50%;
 transform: scale(0.9);
 transform-origin: 50% 50%;
 -moz-transform: none;
}

.audio-player {
 /* base font size */
 font-size: 15px;
 text-shadow: none;
}

.audio-player .sm2-inline-element {
 position: relative;
 display: inline-block;
 vertical-align: middle;
 padding: 0px;
 overflow: hidden;
}

.audio-player .sm2-inline-element,
.audio-player .sm2-button-element .sm2-button-bd {
 position: relative;
 /**
  * .sm2-button-bd exists because of a Firefox bug from 2000
  * re: nested relative / absolute elements inside table cells.
  * https://bugzilla.mozilla.org/show_bug.cgi?id=63895
  */
}

.audio-player .sm2-inline-element,
.audio-player .sm2-button-element .sm2-button-bd {
 /**
  * if you play with UI width/height, these are the important ones.
  * NOTE: match these values if you want square UI buttons.
  */
 min-width: 2.8em;
 min-height: 2.8em;
}

.audio-player .sm2-inline-button {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 100%;
}

.audio-player .sm2-inline-status {
    line-height: 100%;
    display: inline-block;
    min-width: 200px;
    max-width: 20em;
    padding-right: 0.75em;
    background: #b44250;
}
.audio-player .sm2-inline-status > .flex{
    width: 100%;
}
.audio-player .sm2-inline-element {
    border-right: 0.075em dotted #666;
    border-right: 0.075em solid rgba(0,0,0,0.1);
}
.audio-player .sm2-inline-element.noborder {
    border-right: none;
}
.audio-player .sm2-inline-element.compact {
    min-width: 2em;
    padding: 0px 0.25em;
}
.audio-player .sm2-inline-element:first-of-type {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    overflow: hidden;
}
.audio-player .sm2-inline-element:last-of-type {
    border-right: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.audio-player .sm2-inline-status a:hover {
    background-color: transparent;
    text-decoration: underline;
}
.sm2-inline-time,
.sm2-inline-duration {
    display: table-cell;
    width: 1%;
    font-size: 75%;
    line-height: 0.9em;
    min-width: 2em;
    vertical-align: middle;
}
.audio-player .sm2-playlist {
    position: relative;
    height: 1.45em;
    padding-top: 3px;
}
.audio-player .sm2-playlist-target {
    position: relative;
    min-height: 1em;
}
.audio-player .sm2-playlist ul {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    list-style-type: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.audio-player p,
.audio-player .sm2-playlist ul,
.audio-player .sm2-playlist ul li {
    margin: 0px;
    padding: 0px;
}
.audio-player .sm2-playlist ul li {
    position: relative;
}
.audio-player .sm2-playlist ul li,
.audio-player .sm2-playlist ul li a {
    position: relative;
    display: block;
    height: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.sm2-row {
    position: relative;
    display: table-row;
}
.sm2-progress-bd {
    padding: 0px 0.8em;
}
.sm2-progress .sm2-progress-track,
.sm2-progress .sm2-progress-ball,
.sm2-progress .sm2-progress-bar{
    position: relative;
    width: 100%;
    height: 0.65em;
    border-radius: 0.65em;
}
.sm2-progress .sm2-progress-track{
    border-radius: 0;
}
.sm2-progress .sm2-progress-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0px;
    background-color: rgba(0,0,0,0.33);
    background-image: url(image/black-33.png);
    background-image: none, none;
}
.volume-shade,
.playing .sm2-progress .sm2-progress-track,
.paused .sm2-progress .sm2-progress-track {
    cursor: pointer;
}
.playing .sm2-progress .sm2-progress-ball {
    cursor: -moz-grab;
    cursor: -webkit-grab;
    cursor: grab;
}
.sm2-progress .sm2-progress-ball {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1em;
    height: 1em;
    margin: -0.2em 0px 0px -0.5em;
    width: 14px;
    height: 14px;
    margin: -2px 0px 0px -7px;
    width: 0.9333em;
    height: 0.9333em;
    margin: -0.175em 0px 0px -0.466em;
    background-color: #fff;
    padding: 0px;
    -webkit-transition: -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out;
}
.sm2-progress .sm2-progress-track {
    background-color: rgba(0,0,0,0.4);
    background-image: url(image/black-33.png);
    background-image: none, none;
}
.playing.grabbing .sm2-progress .sm2-progress-track,
.playing.grabbing .sm2-progress .sm2-progress-ball{
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.audio-player.grabbing .sm2-progress .sm2-progress-ball {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.sm2-inline-button {
 background-position: 50% 50%;
 background-repeat: no-repeat;
 line-height: 10em;
 image-rendering: -moz-crisp-edges;
 image-rendering: -webkit-optimize-contrast;
 image-rendering: crisp-edges;
 -ms-interpolation-mode: nearest-neighbor;
 -ms-interpolation-mode: bicubic;
}
.sm2-icon-play-pause,
.sm2-icon-play-pause:hover,
.paused .sm2-icon-play-pause:hover,
.play-pause{
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    background-image: url(image/radio-play.png);
}

.playing .sm2-icon-play-pause,
.playing .play-pause{
    background-image: url(image/radio-stop.png);
}

.sm2-volume-control {
 background-image: url(image/icomoon/entypo-25px-ffffff/PNG/volume.png);
 background-image: none, url(image/icomoon/entypo-25px-ffffff/SVG/volume.svg);
}

.sm2-volume-control,
.sm2-volume-shade {
 background-position: 42% 50%;
 background-size: 56%;
}

.volume-shade {
 filter: alpha(opacity=33); /* <= IE 8 */
 opacity: 0.33;
/* -webkit-filter: invert(1);*/
 background-image: url(image/icomoon/entypo-25px-000000/PNG/volume.png);
 background-image: none, url(image/icomoon/entypo-25px-000000/SVG/volume.svg);
}
.sm2-progress-ball .icon-overlay {
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0px;
 left: 0px;
 background: none, url(image/icomoon/free-25px-000000/SVG/spinner.svg);
 background-size: 72%;
 background-position: 50%;
 background-repeat: no-repeat;
 display: none;
}

.playing.buffering .sm2-progress-ball .icon-overlay {
 display: block;
 -webkit-animation: spin 0.6s linear infinite;
 animation: spin 0.6s linear infinite;
}

@-webkit-keyframes spin {
 0% {
  -webkit-transform: rotate(0deg);
 }
 100% {
  -webkit-transform: rotate(360deg);
 }
}

@-moz-keyframes spin {
 0% {
  transform: rotate(0deg);
 }
 100% {
  transform: rotate(360deg);
 }
}

@keyframes spin {
 0% {
  transform: rotate(0deg);
 }
 100% {
  transform: rotate(360deg);
 }
}

.sm2-element ul {
 font-size: 95%;
 list-style-type: none;
}

.sm2-element ul,
.sm2-element ul li {
 margin: 0px;
 padding: 0px;
}


.sm2-box-shadow {
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 box-shadow: inset 0px 1px 6px rgba(0,0,0,0.15);
}
.audio-player .disabled {
 filter: alpha(opacity=33); /* <= IE 8 */
 opacity: 0.33;
}

.audio-player .bd .sm2-button-element.disabled:hover {
 background-color: transparent;
}

.audio-player .active,
/*.audio-player.playlist-open .sm2-menu,*/
.audio-player.playlist-open .sm2-menu:hover {
 /* depressed / "on" state */
 box-shadow: inset 0px 0px 2px rgba(0,0,0,0.1);
 background-image: none;
}

.firefox-fix {
 position: relative;
 display: inline-block;
 width: 100%;
 height: 100%;
}

.audio-player .label {
 position: relative;
 display: inline-block;
 font-size: 0.7em;
 margin-left: 0.25em;
 vertical-align: top;
 background-color: rgba(0,0,0,0.25);
 border-radius: 3px;
 padding: 0px 3px;
 box-sizing: padding-box;
}
.audio-player .sm2-inline-element {
    display: table-cell;
    border: 0;
    width: 1%;
}
.audio-player .sm2-inline-status {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.audio-player > .bd {
    width: 100%;
}
.audio-player .sm2-inline-status .sm2-image{
    width: 2.8em;
    height: 2.8em;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 0.75em;
}
.audio-player .sm2-inline-status .info-wrapper{
    width: calc(100% - 2.8em);
}
.audio-player .sm2-inline-status .artist{
    font-weight: 500;
}
.audio-player .sm2-inline-status .song{
    font-weight: 300;
}