
#audio-player * {
	/*padding: 0;
    margin: 0;*/
    font-weight: 300;
    box-sizing: border-box;
    font-family: "Lato";
    /*color: #888;*/
    outline: none;
    /*font-size: 0.9rem;*/
}
li {
    float: left;
    list-style: none;
}
/*html, body {
    height: 100%;
}*/
/*html {
	background-image: radial-gradient(#87d4f9,#151d21);
    margin: 0;
    padding: 0;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
body {
	font-size: 1rem;
    box-shadow: 0 3px 5px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.2), 1px 1px 0 rgba(0,0,0,.1), 24px 24px 14px rgba(0,0,0,.1);
    border-radius: 4px;
    width: 371px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 1em !important;
    background: rgba(157, 223, 255, 0.06);
    margin: 0 auto;
    position: absolute;
}*/
.jAudio--player {
	display: table;
    overflow: hidden;
	height: 100%;
    background: #004161;
    width: 340px;
}
.jAudio--player:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--player .jAudio--ui {
    position: relative;
    width: 100%;
}
.jAudio--player .jAudio--ui:after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 0;
}
.jAudio--player .jAudio--status-bar {
    width: 100%;
    z-index: 1;
    position: relative;
    padding: 40px 2rem 2rem 2rem;
    display: table;
}
.jAudio--player .jAudio--status-bar:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--details-wrapper {
    display: flex;
    flex-wrap: nowrap;
}
.jAudio--album-cover {
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    width: 68px;
    margin-right: 10px;
    box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    border: 3px solid rgba(255, 255, 255, 0.68);
    transform: rotateZ(-2deg);
    background-position: center center;
    height: 68px;
}
.jAudio--album-cover:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    z-index: -2;
    transform: rotateZ(-3deg) translateY(-2px);
    right: 0px;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    border-radius: 4px;
}
.jAudio--details {
    flex: 1;
}
.jAudio--player .jAudio--controls {
    width: 100%;
    display: table;
    background: #fafafa;
	bottom: 0;
    position: absolute;
}
.jAudio--player .jAudio--controls:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--player .jAudio--controls ul {
    display: table;
    overflow: hidden;
    width: 100%;
	margin: 0;
	padding: 0;
}
.jAudio--player .jAudio--controls ul:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--player .jAudio--controls li {
    position: relative;
    width: 33.3333%;
    height: 4.1rem;
    line-height: 4.1rem;
}
.jAudio--player .jAudio--thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-filter: grayscale(100%) blur(0px) brightness(.5);
}
.jAudio--player .jAudio--time {
    display: table;
    width: 100%;
}
.jAudio--player .jAudio--time:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--player .jAudio--time * {
    width: 50%;
    display: block;
    float: left;
    color: #fff;
    text-shadow: 0 1px 1px #000;
    font-size: 0.9rem;
}
.jAudio--player .jAudio--time .jAudio--time-elapsed {
    text-align: left;
}
.jAudio--player .jAudio--time .jAudio--time-total {
    text-align: right;
}
.jAudio--player .jAudio--details * {
    color: #fff;
    text-shadow: 0 1px 1px #000;
    font-size: 1.2rem;
}
.jAudio--player .jAudio--details *:first-of-type {
    font-weight: bold;
}
.jAudio--player .jAudio--details p {
    width: 100%;
}
.jAudio--player .jAudio--details p span {
    display: block;
}
.jAudio--player .jAudio--progress-bar {
    margin: 1.33333rem 0;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-wrapper {
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 10px;
    overflow: visible;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played {
    height: 10px;
    position: relative;
    background: #E91E63;
    border-radius: 10px;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='1'] {
    background: #E91E63;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='2'] {
    background: #9C27B0;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='3'] {
    background: #5E35B1;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='4'] {
    background: #3949AB;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^="5"] {
    background: #2196F3;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='6'] {
    background: #039BE5;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='7'] {
    background: #00ACC1;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='8'] {
    background: #4DD0E1;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent^='9'] {
    background: #2196F3;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played[data-percent='100'] {
    background: #039BE5;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-pointer {
	height: 14px;
    width: 4px;
    border-radius: 6px;
    position: absolute;
    right: -2px;
    background: #ffffff;
    top: -1.5px;
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.3);
}
.jAudio--player .jAudio--playlist {
	top: 200px;
    position: absolute;
    width: 100%;
    overflow-y: auto;
    bottom: 103px;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item {
    width: 100%;
    padding: 1.2rem 1.8rem;
    display: flex;
	background: #fff;
    border-bottom: 1px solid #dadada;
    border-left: none;
    border-right: none;
	cursor:pointer;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item.active .jAudio--playlist-item-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: block;
    margin: 0;
    padding: 0;
    flex: 0 auto;
    width: 0%;
    z-index: 1;
    height: 7px;
    top: auto;
    border-radius: 6px;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item .jAudio--playlist-item-progress {
    display: none;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item.active {
    background: #1a93ce;
    position: relative;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item.active * {
    color: #fff;
    flex: 0 1 auto !important;
    width: auto;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item:not(.active):hover {
    background: #B3E5FC;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item:last-of-type {
	border:0;
    margin-bottom: 0;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb {
    /*float: left;*/
    margin-right: 0.66667rem;
    display: block;
    flex: 0 1 auto !important;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb:after {
    content: " ";
    display: block;
    width: 100%;
    clear: both;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb img {
    height: 3.0rem;
    width: 3.0rem;
    border-radius: 4px;
    float: left;
    margin-right: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .7);
}
.jAudio--player .jAudio--playlist .jAudio--playlist-meta-text h4 {
	font-size: 1rem;
    color: #1a93ce;
    font-weight: 400;
    margin: .2em 0;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-meta-text p {
    font-size: 0.8rem;
}
.btn {
    position: relative;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-image: linear-gradient(#ffffff,#efefef);
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.14);
border-top: 1px solid #c7c7c7;
    border: 0;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.btn:hover {
    box-shadow: inset 0px -4px 0 #f55c5c, 0px 1px 4px rgba(0,0,0,.5);
}
.btn span {
    position: absolute;
    display: table;
    height: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.btn span:before,
.btn span:after {
    display: block;
    content: " ";
    height: 0;
    float: left;
    border-color: transparent;
    border-style: solid;
}
.btn:active {
    background: #f5f5f5;
}
#btn-prev span:before,
#btn-prev span:after,
#btn-next span:before,
#btn-next span:after,
#btn-play span:before,
#btn-play span:after {
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
}
#btn-prev span:before,
#btn-prev span:after {
    border-right: 15px solid #ddd;
    border-left: 0;
}
#btn-prev:active span:before,
#btn-prev:active span:after {
    border-right-color: #FF6666 !important;
}
#btn-next span:before,
#btn-next span:after {
    border-left: 15px solid #ddd;
    border-right: 0;
}
#btn-next:active span:before,
#btn-next:active span:after {
    border-left-color: #FF6666 !important;
}
#btn-play span:before {
    border-left: 15px solid #ddd;
    border-right: 0;
}
#btn-play span:after {
    display: none;
}
#btn-play:active span:before,
#btn-play.active span:before {
    border-left-color: #FF6666 !important;
}
#btn-pause span:before,
#btn-pause span:after {
    width: 5px;
    height: 15px;
    background: #FF6666;
    border: 0;
}
#btn-pause span:before {
    margin-right: 5px;
}
#btn-pause span:active:before,
#btn-pause span:active:after,
#btn-pause span.active:before,
#btn-pause span.active:after {
    background: #fff;
    margin-right: 5px;
}
.jAudio--player .jAudio--controls li button span:before,
.jAudio--player .jAudio--controls li button span:after {
    -webkit-transition: border-color 0.3s ease 0s;
    transition: border-color 0.3s ease 0s;
}
.jAudio--player .jAudio--thumb {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item * {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.hidden {
    display: none !important;
}
.range {
    position: absolute;
    width: 100%;
    top: 0px;
}
.jAudio--player .jAudio--volume-bar {
    padding: 1.33333rem 0 1.33333rem 2rem;
	background: #daddde;
    box-shadow: inset 0 1px 0 #c1c1c1, inset 0 -2px 0 #ffffff, inset 0 -3px 0px #c1c1c1;
    display: flex;
	position: absolute;
    width: 100%;
    bottom: 56px;
}
.jAudio--player .jAudio--volume-bar i {
    margin: 0 0 0 25px;
    color: rgba(0, 0, 0, 0.29);
    line-height: .5;
    font-size: 20px;
}
.jAudio--player .jAudio--volume-bar .jAudio--volume-bar-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: visible;
    height: 10px;
    width: 75%;
    margin: 0 auto;
}
.jAudio--player .jAudio--volume-bar .jAudio--volume-bar-wrapper .jAudio--volume-bar-level {
    height: 10px;
    background: #90A4AE;
    position: absolute;
    top: 0;
    border-radius: 10px 0 0 10px;
    width: 50%;
    box-shadow: inset 0 1px 2px #313131, 0 1px 0 #fff;
    z-index: 1;
    box-sizing: content-box;
}
.jAudio--player .jAudio--volume-bar .jAudio--volume-bar-wrapper .jAudio--volume-bar-level:before {
    content: 'volume_down';
    position: absolute;
    left: -39px;
    font-family: 'Material Icons';
    font-size: 20px;
    top: -5px;
    color: rgba(0, 0, 0, .3)
}
input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: #999b9c;
    border-radius: 16px;
    height: 10px;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .7);
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    background: #999b9c;
    border-radius: 16px;
    height: 10px;
    padding-top: 0px;
    transform: translateY(-2px);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .7);
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 2px solid #fff;
    border-radius: 50px;
    height: 15px;
    width: 15px;
    position: relative;
    bottom: 2px;
    cursor: -webkit-grab;
    background: #fff;
    border: none !important;
    z-index: 2;
    transform: scale(1.1);
    bottom: 3px;
    box-shadow: inset 0 0px 0 10px #fff, 0 1px 2px rgba(0, 0, 0, .5);
}
input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    border: 2px solid #fff;
    border-radius: 50px;
    height: 15px;
    width: 15px;
    cursor: -moz-grab;
    background: #fff;
    border: none !important;
    z-index: 2;
    transform: scale(1.1) translateY(-2px);
    bottom: 3px;
    box-shadow: inset 0 0px 0 10px #fff, 0 1px 2px rgba(0, 0, 0, .5);
}
input[type=range]::-webkit-slider-thumb:active {
    cursor: -webkit-grabbing;
}
input[type=range]::-moz-range-thumb:active {
    cursor: -moz-grabbing;
}

/*# sourceMappingURL=main.css.map */
