@charset "UTF-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Roboto:100,400,300,500,700,900);

@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700,900);

*{
	margin:0;
	padding:0;
	border:0;
	outline:none;
}
a{ 
	text-decoration: none; 
}
body {
	background: #343a40;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}


#hap-wrapper{
	position: relative;
	top:150px;
	margin: 0 auto;
	max-width:800px;
	font-family: 'roboto', sans-serif;
	line-height:normal!important;
	overflow: hidden;
}
.hap-select-holder{
	position: relative;
	display: flex;
    justify-content: flex-end;
}
.hap-select{
	color: #fff;
	font-size: 13px!important;
	margin: 0;
	margin-bottom: 1px;
	height: 30px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	background: url('../data/misc/arrow.png') no-repeat right #333 !important;
	padding: 3px 25px 3px 10px;
	border: 0;
	border-radius: 0;
	line-height: normal!important;
	outline: none;
	width: auto;
	display: none;
}
.hap-select::-ms-expand {
    display: none;
}
.hap-player-holder{
	position:relative;
	-moz-box-shadow: 3px 3px 3px #111;
    -webkit-box-shadow: 3px 3px 3px #111;
    box-shadow: 3px 3px 3px #111;
	background: #333;
	float: left;
	clear: both;
	width: 100%;
}
.hap-player-left{
	width:260px;
	float:left;
}
.hap-player-thumb-wrapper{
	position:relative;
	margin-top:20px;
	margin-left:20px;
	margin-right:20px;
	height:220px!important;
	overflow:hidden;
}
.hap-player-thumb{
	height: 100%;
	background-color: #343a40 ;
}
.hap-player-thumb img{
	display: block;
	position: absolute;
	max-width: none!important;
	height: 100%;
	min-width: 100%;
}

.hap-contr-btn > i{
	color:#fff;
}
.hap-contr-btn:hover > i,
.hap-contr-btn-hover{
	color:#00a8de!important;
}

.hap-contr-btn{
	background: #4c4c4c; /* Old browsers */
	background: -moz-linear-gradient(top,  #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	border-radius: 100%;
    border: 2px solid #222;
}
.hap-contr-btn > i{
	position: absolute;
    top: 0;
    left: 0;
	width:30px;
	height:30px;
	text-align: center;
	display: inline-block;
	font-size: 15px!important;
	line-height: 30px!important;
}
.hap-controls{
	position: relative;
	height:55px;
	margin-top: 10px;
	margin-left:20px;
	margin-right:20px;
}
.hap-prev-toggle{
	position:absolute;
	top:10px;
	left:0px;
	width:30px;
	height:30px;
}
.hap-playback-toggle{
	position:absolute;
	top:0px;
	left:25px;
	width:50px;
	height:50px;
}
.hap-playback-toggle i{
	width:50px;
	height:50px;
	text-align: center;
	display: inline-block;
	font-size: 20px!important;
	line-height: 50px!important;
}
.hap-next-toggle{
	position:absolute;
	top:10px;
	left:70px;
	width:30px;
	height:30px;
}

.hap-controls-right{
	display: flex;
	justify-content: flex-end;
	position:absolute;
	top:10px;
	right:0px;
	height:34px;

}

.hap-volume-wrapper{
	position: relative;
	
}
.hap-volume-toggle{
	position: relative;
	width:30px;
	height:30px;
}
.hap-volume-wrapper:hover .hap-volume-seekbar{
	display: block;
}
.hap-volume-seekbar{
	position:absolute;
	top: -85px;
    left: 0px;
    width: 32px;
    height: 85px;
	overflow:hidden;
	cursor: pointer;
	touch-action: none;
	display: none;
	background: rgba(0,70,0,0.01);
}
.hap-volume-bg{
	position: absolute;
    bottom: 10px;
    left: 11px;
    width: 8px;
    height: 60px;
    background: #333;
	border:1px solid #777;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px; 
    box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
    -webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box;   
	box-sizing: content-box;     
}
.hap-volume-level{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	background:#fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.hap-random-toggle{
	position: relative;
	width:30px;
	height:30px;
}
.hap-share-toggle{
	position: relative;
	width:30px;
	height:30px;
}
.hap-share-holder{
	position:absolute;
	bottom:0px;
	left:0px;
	width:25px;
	height:150px;
	display: none;
	background: rgba(200, 54, 54, 0.01); 
}
.hap-share-toggle:hover .hap-share-holder{
	display: block;
}
.hap-share-item{
	position: relative;
	left:-1px;
	width:30px;
	height:30px;
	margin-bottom: 5px;
}

.hap-seekbar{
	position:relative;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left:20px;
	margin-right:20px;
	height:20px;
	cursor: pointer;
	touch-action: none;
}
.hap-progress-bg{
	position:relative;
	background:#333;
	width:100%;
	top:5px;
	height:8px;
	-webkit-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
	-moz-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
	box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.hap-load-level{
	position:absolute;
	background:#343a40;
	top:0;
	height:100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.hap-progress-level{
	position:absolute;
	background:#ed3424;
	top:0;
	height:100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#hap-playlist-list{
	display:none;
}
.hap-playlist-holder{
	position:relative;
	top:0px;
	overflow:hidden;
}
.hap-playlist-inner{
	margin: 20px;
/*	height:284px;*/
}
.hap-playlist-item{
	position:relative;
	top:0px;
	left:0px;
	overflow:hidden;
	font-size: 13px;
    width: 100%;
    color:#fff!important;
    display: flex;
}
.hap-playlist-item:nth-child(odd){
	background: #222; 
}
.hap-playlist-item:last-child {  
	margin-bottom:0px!important;
}
.hap-playlist-item-content {
	cursor: pointer;
	flex:1;
	display: flex;
	line-height: 40px;
	align-items:center;
	overflow: hidden;
	margin-left: 10px;
    margin-right: 15px;
}
.hap-playlist-thumb{
	position:relative;
	top:0px;
	left:0px;
	height:40px;
	overflow:hidden;
}
.hap-playlist-thumb img{
	position:relative;
	top:0px;
	left:0px;
	display:block;
	height:100%;
	max-width: none!important;
}
.hap-playlist-title-num{
	margin-left: 10px;
}

.hap-playlist-item-selected .hap-playlist-title-num,
.hap-playlist-item-selected .hap-playlist-title{
	color:#ed3424;
	font-weight: 500;
}

.hap-link{
	color:#fff!important;
	font-size: 13px!important;
	text-align: center;
	width: 30px;
	border: 0!important;
	box-shadow: none!important;
	display: flex;
	justify-content: center;
}
.hap-link i{
	line-height:40px;
	color:inherit;
}
.hap-link:hover{
	color:#ed3424!important;
}







.hap-tooltip{
	position:absolute;
	background:#333;
	text-align:center;
	z-index:10000;
	pointer-events:none;
	border:1px solid #666;
	color:#fff!important;
	display:none;
	font-size:12px!important;
	padding:2px 5px !important;
	line-height:20px !important;
	white-space:nowrap;
}


.hap-preloader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-top: -20px;
	background-color: #ed3424!important;
	-webkit-animation: hap_preloader 1.2s infinite ease-in-out;
	animation: hap_preloader 1.2s infinite ease-in-out;
}
@-webkit-keyframes hap_preloader {
    0% { -webkit-transform: perspective(120px) }
    50% { -webkit-transform: perspective(120px) rotateY(180deg) }
    100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}
@keyframes hap_preloader {
    0% { 
	    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
    } 50% { 
	    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
    } 100% { 
	    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}




.hap-hidden {
	opacity: 0; 
	filter: alpha(opacity=0); 
}
.hap-visible {
	opacity: 1;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}



/* scroll */
.hap-playlist-inner .mCSB_inside > .mCSB_container {
    margin-right: 30px;
}
.hap-mCSB_full{/* hide scroll area when no scroll */
	margin-right: 0!important;
}




@media only screen and (max-width: 700px) {
	
	.hap-playlist-holder{
		clear: left;
	}
	.hap-player-left{
		width: 100%;
	}
	.hap-player-thumb-wrapper img{
		height: auto;
	}
}

