


section#music .notice p {
  position: relative;
  width: 270px;
  left: -135px;
  margin: 0 auto;
  padding: 10px 20px;
  background: #fff;
  border-top: 2px solid #00e9cb;
}


ol.player-window, section#music div.notice {
	position: relative;
	list-style: none;
	height: auto;
	width: 100%;
	padding: 0 50%;
}


ol.player-window li.album {
	position: relative;
	width: 270px;
	left: -135px;
}

@media(min-width:767px) {
	ol.player-window.lyrics li.album {
		position: relative;
		width: 270px;
		left: -275px;
	}
}

.sc-player {
	left: -50%;
	width: 100%;
	height: auto;
}

.sc-player ol, .sc-player li {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style: none;
}

/* Artworks */

.sc-player .sc-artwork-list {
  width: 100%;
  height: 50%;
  background-color: transparent;
  list-style-type: none;
  position: relative;
}

.sc-player .sc-artwork-list li {
  list-style-type: none;
  display: none;
}

.sc-player .sc-artwork-list li.active{
  list-style-type: none;
  display: block;
}

.sc-player .sc-artwork-list li img, .sc-player .sc-artwork-list li div{
  list-style-type: none;
  width: 100%;
  height: 100%;
}

/* controls */

.sc-player .sc-controls {
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  top: 135px;
  left: 50%;
}

.sc-player .sc-controls a {
	display: block;
	width: 50px;
	height: 50px;
}

.sc-player .sc-controls a.sc-pause {
	display: none;
}

.sc-player.playing .sc-controls a.sc-play {
	display: none;
}

.sc-player.playing .sc-controls a.sc-pause {
	display: block;
}

/* scrubber */

.sc-scrubber {
	display: none;
	position: absolute;
	left: 10px;
	bottom: 0px;
	height: 50px;
	width: 250px;
}

.sc-player:hover .sc-scrubber {
	display: none;
}

.sc-scrubber .sc-time-span {
  height: 30px;
  margin: 5px;
  position: relative;
}

.sc-scrubber .sc-buffer, .sc-scrubber .sc-played {
  height: 30px;
  position: absolute;
  top: 0;
}

.sc-scrubber .sc-time-indicators {
  position: absolute;
  right: 0;
  top: 30px;
}

/* volume control */

.sc-volume-slider {
  top: 30px;
  left: 0px;
  position: absolute;
  width: 110px;
  height: 16px;
  background-color: #000;
}
.sc-volume-slider .sc-volume-status {
  position: absolute;
  width: 0%;
  height: 14px;
  top: 1px;
  left: 1px;
}


/* tracks */

/* Track listings*/

.sc-player ol.sc-trackslist {
  position: relative;
  width: 100%;
  height: auto;
  top: 0px;
  left: 0;
  overflow: hidden;
  padding: 10px 15px;
}

.sc-player ol.sc-trackslist li {
  float: left;
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: 5px 5px;
}

/* Track info*/

.sc-player .sc-info {
  position: relative;
  /*top: 395px;*/
  margin-top: 11px;
  width : 100%;
  padding: 0px 15px 10px;
  height: auto;
  max-height: 484px;
  overflow: auto;
  z-index: 500;
  display: none;
  border-top: 2px solid #00E9CB;
}

.sc-player .sc-info.active {
  display: inherit;
}

@media(min-width:1200px) {
  .sc-player .sc-info {
    position: absolute;
    right: -280px;
    top: 0px;
    margin-top: 0;
  }
}


.sc-player .sc-info-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
}

.sc-player .sc-info-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* utilities */

.sc-player .hidden {
  display: none;
}

.sc-player-engine-container{
  width: 1px;
  height: 1px;
  position: fixed;
  top: 2px;
  left: 2px;
}
















.sc-player {
  color: #000;
  font-size: 14px;
}

.sc-trackslist a {
  text-decoration: none;
  color: #000;
}

/* Artworks */

.sc-player .sc-artwork-list {
	border: 2px solid #00e9cb;
}

/* scrubber */

.sc-scrubber {
  background-color: #000;
}

.sc-scrubber .sc-time-span {
  background-color: #666;
}

.sc-volume-slider {
  background-color: #fff;
}


.sc-volume-slider .sc-volume-status{
  background-color: #666;
  border-right: 1px solid #00e9cb;
}


.sc-scrubber .sc-waveform-container {
  z-index: 800;
  width: 100%;
  position: absolute;
}

.sc-scrubber .sc-time-span img {
  height: 30px;
  width: 100%;
  /*background: -moz-linear-gradient(top, black, #22B573 0px, #7decba 90%);
  background: -webkit-gradient(linear, left top, left 90%, from(black), color-stop(0%, #22B573), to(#7decba));*/
}

.sc-scrubber .sc-buffer, .sc-scrubber .sc-played {
  background-color: #00e9cb;
  z-index: 1;
  position: absolute;
}

.sc-scrubber .sc-played {
  background-color: #22B573;
  z-index: 799;
}

/* controls */

.sc-player .sc-controls a {
  color: transparent;
  background: url('../img/play.png');
}

.sc-player .sc-controls a:hover {
  background: url('../img/play-hover.png');
}

.sc-player .sc-controls a.sc-pause {
  background: url('../img/play.png');
}

.sc-player .sc-controls a.sc-pause:hover{
  background: url('../img/play-hover.png');
}

.sc-player.playing .sc-controls a.sc-pause{
  background: url('../img/pause.png');
}

.sc-player.playing .sc-controls a.sc-pause:hover{
  background: url('../img/pause-hover.png');
}  

.sc-scrubber .sc-time-indicators{
  background: #22B573;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 4px;
}

/* Track listings*/

.sc-player ol.sc-trackslist {
	background-color: #fff;
	font-family: 'Droid Sans', sans-serif;
	letter-spacing: 0.3px;
	font-size: 14px;
}
.sc-player ol.sc-trackslist span.sc-track-duration {
	display: none;
}

.sc-player ol.sc-trackslist li {
	color: #000;
    border-bottom: 2px solid #00e9cb;
}
.sc-player ol.sc-trackslist li:last-of-type {
    border-bottom: none;
}

.sc-player ol.sc-trackslist li:hover a {  
	color: #00e9cb;
}

.sc-player ol.sc-trackslist li.active {
	font-weight: 700;
}



/* Track info*/

.sc-player .sc-info {
  background: #fff;
  color: #000;
}
.sc-info h3, .sc-info h4, .sc-info p {
  text-transform: none;
  margin-bottom: 5px;
  text-align: left;
}
.sc-info h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
}
.sc-info h4 {
  padding-bottom: 12px;
  border-bottom: 2px solid #00e9cb;
  font-size: 14px;
}
.sc-info p {
  font-size: 12px;
  padding: 8px 0 12px;
  border-bottom: 2px solid #00e9cb;
}



.sc-player .sc-info-toggle {
  background: #00e9cb;
  color: #fff;
  padding: 4px;
  font-weight: 700;
}
.sc-player .sc-info-toggle.active {
  background: #fff;
  color: #00e9cb;
}

.sc-player .sc-info-toggle:hover {
  background: #009d88;
  color: #fff;
}

.sc-player .sc-info-close {
  padding: 2px 4px;
  font-weight: bold;
}
