iframe.sc-widget { 
  display: none; 
}

.soundcloud-wrapper {
  cursor: pointer;
  display: none;
  bottom: 0;
  margin: auto;
  color: #b9bdbf;
  z-index:1000000;
  position: sticky;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

.soundcloud-close {
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 1s;
  animation-name: animatetop;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-50px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}
@keyframes animatebottom { 
  from{ bottom:-50px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

@-webkit-keyframes animatetop {
  from { bottom:0px; opacity:1 }
  to { bottom:-50px; opacity:0 }
}
@keyframes animatetop { 
  from{ bottom:0; opacity:1 }
  to{ bottom:-50px; opacity:0 }
}


.sc-track-select:hover path{
  opacity: 1;
  animation: hideshow 0.7s ease infinite;
}

@keyframes hideshow {
  0% { opacity: 0.75; }
  25% { opacity: 0.5; }
  50% { opacity: 0.25; }
  75% { opacity: 0.6; }
  100% { opacity: 1; }
} 

.sc-play, .sc-pause {  
  cursor: pointer;
}

.sc-play {
  content: url('../img/sc_play.svg');
  width: auto;
}

.sc-pause {
  content: url('../img/sc_pause.svg');
  display: none;
  width: auto;
}

.sc-next {
  content: url('../img/sc_next.svg');
}

.sc-prev {
  content: url('../img/sc_previous.svg');
}

.sc-close {
  display: block;
  position: absolute;
  top: -25px;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(../img/sc_close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #030906;
  background-size: 15px;
}

.sc-track-name {
  width:100%;
  overflow: hidden;
  white-space: no-wrap;
  text-overflow: ellipsis;
}

.sc-playlist-name {
  font-size: 12px;
  line-height: 1.5;
}

.sc-close {
  font-size: 36px;
  font-family: Helvetica, Arial, sans-serif;
}

.sc-player {
  font-family: Helvetica, Arial, sans-serif;
  background: linear-gradient(  #B9BDBF  0%, #707070 54%);
  background-size: cover;
  background-position: center;
  transition: background-image 1s linear;
  position:relative;
}

.sc-playlist-image {
  width: 80px;
  height: 80px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .sc-waveform-wrapper {
  width: 515px;
} */

.sc-waveform {
  background: #030906;
  background-repeat: no-repeat;
  height: 45px;
  width: 100%;
}

.sc-position {
  opacity: 0.5;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #030906;
  transition: width .1s linear;
  mix-blend-mode: luminosity;
  top: 0;
}

.sc-info {
  user-select: none;
  z-index: 5;
  position: absolute;
  height: 1em;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 5em;
  letter-spacing: -.08em;
  
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  
  color: white;
  mix-blend-mode: difference;
}