@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');

.myPlayer {
  font-family: 'Roboto', Arial, Helvetica, sans-serif; 
	position: relative;
}

.myPlayer .wrapper {
	/*background: #090909;*/
	height: 100vh;
	width: 100%;
	position: relative;
}

.myPlayer .bg-artwork {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 1;
}
.myPlayer .bg-dots {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/dots.png);
	opacity: 0.1;
	z-index: 2;
}
.myPlayer .artwork {
	width: 340px;
	height: 340px;
	background: url(../img/no-cover-large.gif);
	background-size: 100% 100%;
	-webkit-box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.7);
	-moz-box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.7);
	box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.7);
}
.myPlayer .main-wrapper {
	min-height: 350px;
	max-width: 1000px;
	position: relative;
	overflow: hidden;
	z-index: 3;
	margin: 50px auto 0 auto;
}
.myPlayer .data-container {
	position: absolute;
	left: 366px;
	top: 0;
}
.myPlayer .now-playing {
	font-size: 25px;
	color: #f46e27;
	margin-top: 26px;
}
.myPlayer .songtitle {
	font-size: 22px;
	color: rgba(255,255,255,.7);
	text-transform: capitalize;
	margin-top: 14px;
}
.myPlayer .artist-name {
	font-size: 28px;	
	color: rgb(255,255,255);
	text-transform: capitalize;
	margin-top: 30px;
}
.myPlayer .btn-container {
	position: absolute;
	right: 0;
	bottom: 20px;
}
.myPlayer .ppBtn {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	cursor: pointer;
}
.myPlayer .play-btn {
	background: url(../img/play.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s; 
    transition: background 0.5s;
}
.myPlayer .stop-btn {
	background: url(../img/pause.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s; 
    transition: background 0.5s;
}
.myPlayer .social-btn {
	width: 42px;
	height: 42px;
	font-size: 16px;
	text-align: center;
	line-height: 40px;
	color: #fff;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	margin-bottom: 20px;
	cursor: pointer;
	display: block;
}
.myPlayer .sb-facebook:before {
	content: "\f39e";
}
.myPlayer .sb-twitter:before {
	content: "\f099";
}
.myPlayer .sb-whatsapp:before {
	content: "\f232";
}
.last5-container {
	margin-top: 40px;
	margin-bottom: 40px;
}

.fmenu-container {
	 clear:both;
	 float:left;
	 overflow:hidden;
	 width:100%;
}

footer .menu {
	float:left;
	left:50%;
	list-style-type:none;
	margin:0 auto;
	padding:0;
	position:relative;
}
footer .menu li {
	padding: 0 50px;
	font-size: 18px;
	float:left;
	position:relative;
	right:50%;
	text-transform: uppercase;
}
footer .menu li a {
	color: #f0f0f0;
}
footer .menu li a:hover {
	color: #fecc00;
}
.footer-texts {
	border-top: 1px solid #444;
	margin-top: 40px;
	padding: 30px 0;
	text-align: center;
}


.myPlayer .volume-container {
	position: absolute;
	max-width: 300px;
	left: 366px;
	right: 0;
	bottom: 17px;
}
.ticker-container {
	position: absolute;
	left: 366px;
	right: 0;
	bottom: 90px;
	margin-right: 70px;
}
.myPlayer .volume-slider {
	position: relative;
	z-index: 10;
}
.volume-text-container {
	margin-top: 10px;
	color: rgba(255,255,255,.3);
}
.myPlayer input[type=range] {
	max-width: 300px;
	height: 4px;
	background: #f46e27;
	padding: 2px 0px 2px 0px;
	-webkit-appearance: none;
	cursor: pointer;
}
.myPlayer input[type=range]:focus {
	outline: none;
}
.myPlayer input[type=range]::-webkit-slider-runnable-track {
	height: 4px;
	background: #f46e27;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	cursor: pointer;	
	animate: 0.2s;
}
.myPlayer input[type=range]:focus::-webkit-slider-runnable-track {
	background: #f46e27;
}
.myPlayer input[type=range]::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	background: #ccc;
	margin-top: -5px;
	border: 5px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	-webkit-appearance: none;
}
/* Responsive classes */
@media only screen and (max-width: 600px) {
	.logo-center {
		margin: 0 auto;
	}
	.myPlayer .artwork {
		width: 240px;
		height: 240px;
		margin: 70px auto 0 auto;
	}
	.myPlayer .main-wrapper {
		min-height: 350px;
		height: 100vh;
		max-width: 1000px;
		position: relative;
		overflow: hidden;
		z-index: 3;
		margin: 0px auto 0 auto;
	}
	.myPlayer .data-container {
		position: relative;
		text-align: center;
		left: 0;
		top: 0;
	}
	.myPlayer .now-playing {
		font-size: 14px;
		margin-top: 26px;
		display: none;
	}
	.myPlayer .songtitle {
		font-size: 22px;
		margin-top: 20px;
		line-height: 22px;
	}
	.myPlayer .artist-name {
		font-size: 18px;
		margin-top: 15px;
	}
	
	.myPlayer .btn-container {
		position: relative;
		right: 0;
		left: 0;
		bottom: auto;
		margin-top: 10px;
		height: 60px;
		z-index: 100;
	}
	
	.myPlayer .ppBtn {
		width: 48px;
		height: 48px;
		display: block;
		float: right;
	}
	
	.myPlayer .social-btn {
		width: 42px;
		height: 42px;
		font-size: 16px;
		text-align: center;
		line-height: 40px;
		margin-bottom: 0px;
		margin-top: 3px;
		margin-right: 10px;
		float: left;
	}
	.ticker-container {
		position: relative;
		left: 0px;
		right: 0;
		bottom: auto;
		margin-right: 0px;
		top: 10px;
	}
}
.icast input[type=range]::-moz-range-track {
	width: 100%;
	height: 6px;
	background: rgba(255,255,255,.54);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	animate: 0.2s; 
}
.icast input[type=range]::-moz-range-thumb {
	width: 6px;
	height: 6px;
	background: #ccc;
	border: 5px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.icast input[type=range] {
		width: 90px;
		height: 16px;
		background: none;
		margin-top: 0px;
		padding: 6px 0px 6px 0px; 
		cursor: pointer;
	}
}
.icast input[type=range]::-ms-tooltip {
	display: none; 
}
.icast input[type=range]::-ms-track {
	width: 100%;
	height: 6px;
	background: transparent;
	color: transparent;
	margin: 0;
	padding: 0;
	border: 0;
	border-color: transparent;
	cursor: pointer;
	animate: 0.2s;  
}
.icast input[type=range]::-ms-fill-lower {
	background: rgba(255,255,255,.54);
	border: 0;
	border-radius: 8px;
}
.icast input[type=range]::-ms-fill-upper {
	background: rgba(255,255,255,.54);
	border: 0;
	border-radius: 8px;
}
.icast input[type=range]::-ms-thumb {
	width: 6px;
	height: 6px;
	background: #ccc;
	border: 5px solid #fff;
	border-radius: 50%;  
	cursor: pointer;
}
.icast input[type=range]:focus::-ms-fill-lower {
	background: rgba(255,255,255,.54);
}
.icast input[type=range]:focus::-ms-fill-upper {
	background: rgba(255,255,255,.54);
}
.row-wpr {
	height: 90px;
	position: relative;
	margin: 0;
	border-top: 1px solid #444;
}
.history-cover {
	background: #151515;
	width: 64px;
	height: 64px;
	position: absolute;
	top: 12px;
	left: 8px;
	border-radius: 50%;
}
.last5-title {
	text-transform: capitalize;
    color: #fff;
    letter-spacing: 0.40em;
    font-size: 30px;
    margin-bottom: 30px;
}
.history-track-info {
	text-align: left;
	padding-left: 92px;
	padding-top: 23px;
	text-transform: capitalize;
}
.history-songtitle {
	max-width: 800px;
	font-size: 20px;	
	color: rgba(255,255,255,1);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.history-artist-name {
	max-width: 800px;
	font-size: 16px;
	padding-top: 6px;
	color: rgba(255,255,255,.7);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.rowNum {
	width: 38px;
	height: 50px;
	font-size: 50px;
	padding-top: 21px;
	color: rgba(255,255,255,.1);
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
}


