/* LAYOUT *
-----------------------------------------------*/
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

a.sc-player {
  display: inline-block;
  background: #bf3d3f;
  background: rgba(19, 19, 19, 0.14);
  border-radius: 4px;
  padding: 1em 1.5em;
  text-align: center;
  text-decoration: none;
  color: #f8f8f8;
  font-size: 1.5em;
}

.transition {
  transition: all 0.3s ease-out;
}


/* SOUNDCLOUD PLAYER *
-----------------------------------------------*/
.sc-player {
  position: relative;
}

/* Artworks */
.sc-player .sc-artwork-list {
  background-color: transparent;
  list-style-type: none;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 30rem;
  position: relative;
  padding: 0 !important;
}

    .sc-artwork-list:after {
      content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #e5cdcf;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
    }

    .sc-artwork-list img {
        width: 20rem;
        height: 20rem;
        border-radius: 50%;
    }

    .sc-player.playing img {
        -webkit-animation: rotation 4s infinite linear;
    }

    @-webkit-keyframes rotation {
        from {
                -webkit-transform: rotate(0deg);
        }
        to {
                -webkit-transform: rotate(359deg);
        }
    }

.tablet .sc-player .sc-artwork-list {
  width: 20rem;
  height: 20rem;
  position: absolute;
  right: -30rem;
  top: 0;
}

  .sc-artwork-list img,
  .sc-artwork-list .sc-no-artwork {
    display: none;
  }

  .sc-artwork-list .active img {
    display: block;
  }

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

/* controls */
.sc-player .sc-controls{
  display: block;
}

.sc-player .sc-controls a {
  display: block;
  width: auto;
  height: auto;
  font-size: 3rem;
  margin-bottom: 1.7rem;
}

.sc-player .sc-play:after  {
  }

.sc-player .sc-controls a.sc-pause:after {
  background-position: bottom;
}

.sc-scrubber .sc-time-indicators{
  background: #9c3538;
  background: rgba(19, 19, 19, 0.22);
  color: #fff;
  border-radius: 4px;
  padding: 7px;
  text-align: right;
}

.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 !important;
}

/* scrubber */

.sc-scrubber {
  display: none !important;
  position: relative;
  float: right;
  width: 100%;
  margin: 0.5em 0;
  border-radius: 4px;
}

/* volume control */
.sc-volume-slider {
  top: -35px;
  left: 0px;
  position: absolute;
  width: 150px;
  height: 20px;
  background-color: white;
}

/* tracks */

/* Track listings*/
.sc-player ol.sc-trackslist {
  position: relative;
  width: 100%;
  overflow: auto;
  display: none !important;
}

.sc-track-duration {
  float: right;
}

/* Track info*/

.sc-player .sc-info {
  position: relative;
}

  .sc-player .sc-info h3 a {
    font-size: 2rem;
    font-family: 'Graphik Web', Arial, sans-serif !important;
    font-weight: 700;
  }

  .sc-player .sc-info h4 {
    font-size: 1.8rem;
    font-family: 'Graphik Web', Arial, sans-serif !important;
    font-weight: 300;
    padding: 0.3rem 0 3.7rem 0;
  }

  .sc-player .sc-info p {
    display: none;
    font-size: 1.4rem;
    font-family: 'Fnord-Twenty-ThreeItalic';
  }

.sc-player .sc-info-toggle,
.sc-player .sc-info-close {
  display: none;
}

/* utilities */

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

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

.sc-player .sc-info-toggle{
  background: #22B573;
  color: #fff;
  border-radius: 4px;
  padding: 4px;
}

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

.sc-player .sc-info-close{
  background: #22B573;
  border-radius: 4px;
  padding: 2px 4px;
  font-weight: bold;
}