body{
	margin: 0px;
	background: #414141;
	font-family: sans-serif;
}
/* Base styles */

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #FFF;
}

a:hover {
  text-decoration: none;
  color: #FF0;
}

a:focus {
  text-decoration: underline;
}

button {
  cursor: pointer;
  margin: 0;
}

.loader {
	border: 5px solid #a0a0a0;
	border-radius: 50%;
	border-top: 5px solid #FF0972;
	width: 28px;
	height: 28px;
	-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); }
  }

/* Helpers */
.is-hidden {
  display: none;
}
/* DESKTOP */

#activityindicator, #stopbutton {
	display: none;
}
.content-header{
	display: none;
}
.main{
	width: 800px;
	height: 648px;
	background-color: #000000;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.content-promo{
	width: 100%;
	height: auto;
	position: relative ;
	top: 0px;
}
.content-player{
	width: 100%;
	height: 51px;
	background-color: #1b1b1b;
	border-top: 1px #FF0972 solid; 
	padding: 0px 10px;
	-moz-box-sizing: border-box;   /* Firefox 1, probably can drop this */
	-webkit-box-sizing: border-box;   /* Safari 3-4, also probably droppable */
	box-sizing:        border-box;   /* Everything else */
}
.content-play{
	width: 8%;
	height: auto;
	float: left;
	position: relative;
	top: 5px;
	z-index: 9999999;
}
.content-speaker{
	width: 2%;
	height: auto;
	float: left;
	position: relative;
	top: 20px;
	display: block;
}
.content-volume{
	width: auto;
	height: auto;
	float: left;
	position: relative;
	top: 22px;
	display: block;
}
.content-share{
	width: 10%;
	height: auto;
	float: left;
	position: relative;
	top: 17px;
	left: 25px;
	display: block;
}
.content-artwork-mobile{
	display: none;
}
.content-title-mobile{
	display: none;
}
.content-artwork{
	width: auto;
	height: auto;
	float: left;
	position: relative;
	top: 0px;
	left: 15px;
	display: block;
}
.content-artwork img{
	width: 50px;
}
.content-title{
	width: 42%;
	height: auto;
	float: left;
	color: #a0a0a0;
	position: relative;
	top: 10px;
	left: 25px;
	font-weight: 100;
	display: block;
}
.content-artist{
	width: auto;
	height: auto;
	font-size: 14px;
}
.content-song{
	width: auto;
	height: auto;
	font-size: 12px;
}
.content-logo{
	width: auto;
	height: auto;
	display: block;
}
.content-logo img{
	margin-top:2px;
}
.content-share-social{
	width: 80px;
	height: 30px;
	background: #FF0972;
	position: absolute;
	display: none;
	z-index: 999999;
	bottom: 56px;
	left: 190px;
	padding: 2px 13px;
	-moz-box-sizing: border-box;   /* Firefox 1, probably can drop this */
	-webkit-box-sizing: border-box;   /* Safari 3-4, also probably droppable */
	box-sizing:        border-box;   /* Everything else */
}
.content-share-social:after, .content-share-social:before {
	top: 100%;
	left: 40%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.content-share-social:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #FF0972;
	border-width: 5px;
	margin-left: -10px;
}

/* volume */
/* Webkit */ 
input[type=range] {
	-webkit-appearance: none;
	width: 90px;
	border-radius: 8px;
	height: 2px;
	border: 1px solid #a0a0a0;
	background-color: #a0a0a0; 
}
input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	background-color: #FF0972;
	border: 1px solid #FF0972;
	width: 13px;
	height: 13px;
	border-radius: 13px;
	cursor: pointer;
}

/* Mozilla */
input[type=range] {
	width: 90px;
}
input[type=range]::-moz-range-track {
	border-radius: 8px;
	height: 2px;
	border: 1px solid #a0a0a0;
	background-color: #a0a0a0;
}
input[type=range]::-moz-range-thumb {
	background: #FF0972;
	border: 1px solid #FF0972;
	width: 13px;
	height: 13px;
	border-radius: 13px;
	cursor: pointer;
}

/* Internet Explorer */
input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
	background: transparent;
}
input[type="range"]::-ms-track {
    border-radius: 8px;
	height: 2px;
	border: 1px solid #a0a0a0;
	background-color: #a0a0a0;
}
input[type="range"]::-ms-thumb {
	background-color: #FF0972;
	border: 1px solid #FF0972;
	width: 13px;
	height: 13px;
	border-radius: 13px;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	.main{
		width: 100%;
		height: 100%;
		background-color: #000000;
		position: absolute;
		margin: auto;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.content-header{
		width: 100%;
		height: 51px;
		background-color: #1b1b1b;
		border-bottom: 1px #FF0972 solid; 
		text-align: center;
		float: left;
		position: fixed;
		z-index: 9999;
		display: block;
	}
	.content-logo-mobile{
		width: 85%;
		position: relative;
		top: 2px;
		float: left;
		text-align: center;
		padding-left: 60px;
		-moz-box-sizing: border-box;   /* Firefox 1, probably can drop this */
		-webkit-box-sizing: border-box;   /* Safari 3-4, also probably droppable */
		box-sizing:        border-box;   /* Everything else */
	}
	.content-share-mobile{
		width: 15%;
		height: auto;
		float: left;
		position: relative;
		top: 17px;
		text-align: center;
	}
	.content-promo{
		width: 100%;
		height: auto;
		position: relative ;
		top: 70px;
	}
	.content-promo img{
		width: 100%;
		height: auto;
	}
	.content-player{
		width: 100%;
		height: 51px;
		background-color: #1b1b1b;
		border-top: 1px #FF0972 solid; 
		position: fixed;
		bottom: 0;
		padding: 0px;
	}
	.content-volume{
		display: none;
	}
	.content-speaker{
		display: none;
	}
	.content-share{
		display: none;
	}
	.content-artwork{
		display: none;
	}
	.content-title{
		display: none;
	}
	.content-logo{
		display: none;
	}
	.content-artwork-mobile{
		width: auto;
		height: auto;
		float: left;
		position: relative;
		top: 0px;
		display: block;
	}
	.content-artwork-mobile img{
		width: 50px;
	}
	.content-title-mobile{
		width: 72%;
		height: auto;
		float: left;
		color: #a0a0a0;
		position: relative;
		top: 10px;
		left: 15px;
		font-weight: 100;
		display: block;
	}
	.content-play{
		width: 8%;
		height: auto;
		float: left;
		position: relative;
		top: 5px;
		text-align: center;
	}
	.content-share-social{
		top:56px;
		bottom: none;
		left: 0px;
	}
	.content-share-social:after {
		display: none;
	}

}
