/*controls*/
.jp-controls {
	display: table;
	table-layout: fixed;
	border-spacing: 0;
	width: 100%;
}
.jp-controls a{
	cursor: pointer;
	display: inline-block;
	padding: 10px 5px;
}

.jp-controls a i{
	line-height: inherit;
}
.jp-controls > div{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 40px;
	height: 60px;
}
div.jp-progress{
	width: auto;
	padding: 0 15px;
	vertical-align: top;
	position: relative;
}
.jp-seek-bar{
	position: relative;
}
.jp-title{
	position: absolute;
	left: 25px;
	top: 0;
	right: 25px;
	display: block !important;
	line-height: 60px;
}
.jp-title ul{
	list-style: none;
	margin: 0;
	padding: 0;	
}

.jp-title li{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jp-artist{
	opacity: 0.6;
}

.jp-play-bar{
	height: 60px;
}
.jp-volume{
	width: 60px !important;
	padding-right:10px !important;
}
.jp-volume-bar-value{
  height: 6px;
}
a.hid{
	display: none;
}

/*playlist*/
.jp-playlist ul{
	max-height: 320px;
	overflow-x: hidden;
	overflow-y: auto; 
	padding: 0;
	display: none !important;
}

.jp-playlist.open ul{
	display: block !important;
	bottom: 60px;
	left: 180px;
}

.jp-playlist li{
	list-style: none;
	position: relative;
}

.jp-playlist-item{	
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 12px 40px 12px 8px;
}
.jp-playlist-item:focus{
	outline: 0;
}

.jp-playlist-item:before{
	display: inline-block;
	text-align: center;
	width: 30px;
	font-family: FontAwesome;
	content:"\f0da";
	opacity: 0.6;
}

a.jp-playlist-current:before{
	content:"\f144";
	opacity: 1;
  color: #4cb6cb;
}

.jp-playlist li:first-child .jp-playlist-item{
	border-width: 0;
}

.jp-playlist-item-remove{
	font-size: 15px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 11px 18px;
	opacity: 0.6;
}


@media (max-width: 767px) {
	.footer .jp-gui{
		margin: 0 -10px;
	}
	div.jp-progress{
		padding: 0 10px;
	}
	.jp-playlist.open ul{
		display: block !important;
		bottom: 57px;
		left: 0px;
		right: 0px;
	}
}

.jp-loading{
  display: inline-block!important;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #ccc;
  width: 35px;
  height: 35px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}