/* Structure */

.sc-player {
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

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


/* Artworks */

.sc-player .sc-artwork-list{
	width: 50%;
	height: 100%;
	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%;
}

.sc-no-artwork {
  display: none;
}


/* controls */

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

.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 {
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 40px;
  width: 250px;
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.30);
  -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.30);
  display: none;
    width: 45%;
}

.sc-player:hover .sc-scrubber {
  display: block;
  left: 10px;
}

.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-track-duration {
  text-align: right;
  float: right;
  padding: 0 5px;
  margin-left: 5px;
}

.sc-scrubber .sc-time-indicators {
    padding: 10px;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: -40px;
    top: -4rem;
}

/* tracks */

/* Track listings*/

.sc-player ol.sc-trackslist {
    float: left;
    height: 260px;
    height: 26rem;
    left: 50%;
    overflow: auto;
    position: absolute;
    top: 5px;
    top: 0.5rem;
    width: 50%;
}

.sc-player ol.sc-trackslist li{
    cursor: pointer;
    padding: 8px 20px;
    padding: 0.8rem 2rem;
    position: relative;
}



/* Track info*/

.sc-player .sc-info{
    left: -5000px;
    margin-left: -200px;
    margin-left: -20rem;
    padding: 10px;
    padding: 1rem;
    position: absolute;
    top: 10px;
    width: 400px;
    width: 40rem;
    z-index: 500; 
}

.sc-player .sc-info.active {
    left: 50%;
    top: 12%;
}

.sc-player .sc-info-toggle {
    left: 10px;
    left: 1rem;
    padding: 10px;
    padding: 1rem;
    position: absolute;
    top: 10px;
    top: 1rem;
}

.sc-player .sc-info-toggle.active {
    left: -5000px;
    left: -500rem;
}

.sc-player .sc-info-close {
    padding: 10px;
    padding: 1rem;
    position: absolute;
    right: 20px;
    right: 2rem;
    top: 10px;
    top: 1rem;
}

/* volume control */
.sc-volume-slider {
  top: -25px;
  left: 0px;
  position: absolute;
  width: 110px;
  height: 12px;
  background-color: white;
}
.sc-volume-slider .sc-volume-status{
  position: absolute;
  width: 0%;
  height: 10px;
  top: 1px;
  left: 1px;
}

/* utilities */

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

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







/* Colors */

.sc-player {
    color: #fff;
    font-family: 'Open Sans', Arial, Tahoma, Helvetica, sans-serif!important;
}

.sc-player a {
  text-decoration: none;
  color: #fff;
}

/* Artworks */

.sc-player .sc-artwork-list{
  background: #000;
}

/* scrubber */

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

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

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

.sc-volume-slider .sc-volume-status{
    background-color: #2bbea6;
    border-right: 1px solid #fff;
}

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

.sc-scrubber .sc-time-span img {
    height: 30px;
    height: 3rem;
    width: 100%;
}

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

.sc-scrubber .sc-played {
    background-color: #2bbea6;
    z-index: 799;
}

/* controls */

.sc-player .sc-controls a {
    color: transparent;
    background-color: rgba(43, 190, 166, 1);
    background-image: url('../images/play.png');
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.sc-player .sc-controls a:hover {
    background-color: rgba(43, 190, 166, 0.5);
}

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

.sc-player .sc-controls a.sc-pause:hover{
    background-color: rgba(43, 190, 166, 0.5);
}

.sc-player.playing .sc-controls a.sc-pause {
    background-color: #2bbea6;
    background-image: url('../images/pause.png');
    background-position: center;
    background-repeat: no-repeat;
}

.sc-player.playing .sc-controls a.sc-pause:hover {
    background-color: rgba(43, 190, 166, 0.5);
}  

.sc-scrubber .sc-time-indicators{
    background-color: #2bbea6;
    color: #fff;
}

/* Track listings*/

.sc-player ol.sc-trackslist li,
.sc-player ol.sc-trackslist li a {  
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
}

.sc-player ol.sc-trackslist li:hover,
.sc-player ol.sc-trackslist li:hover a {  
    color: #2bbea6;
}

.sc-player ol.sc-trackslist li.active,
.sc-player ol.sc-trackslist li.active a {
    color: #fff;
    background-color: #2bbea6;
}

.sc-player ol.sc-trackslist li.active:hover a {
    color: #fff;
}


/* Track info*/

.sc-player .sc-info{
    background-color: rgba(8, 22, 25, 0.5);
    color: #fff;
    padding: 10px;
    padding: 1rem;
}

.sc-player .sc-info a {
    color: #fff;
}

.sc-player .sc-info-toggle{
    background-color: rgba(43, 190, 166, 1);
    color: #fff;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.sc-player .sc-info-toggle:hover{
    background-color: rgba(43, 190, 166, 0.5);
    color: #fff;
}

.sc-player .sc-info-close{
    background-color: rgba(43, 190, 166, 1);
    color: #fff;
    font-weight: bold;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.sc-player .sc-info-close:hover{
    background-color: rgba(43, 190, 166, 0.5);
	color: #fff;
}

@media (max-width: 654px) and (min-width: 335px) {
    .sc-player .sc-info.active {
        left: 0;
		margin: 0;
		width: 90%;
	}
}

@media (max-width: 334px) {
	.sc-player .sc-artwork-list {
		position: static;
		width: 100%;
	}

	.sc-player ol.sc-trackslist {
		position: static;
		width: 100%;
	}

	.sc-player ol.sc-trackslist li {
		margin: 0;
	}

	.sc-player .sc-info.active {
		left: 0;
		margin: 0;
		width: 90%;
	}
}