/* body {
  background-color: #151c21;
  margin: 0;
  padding: 0;
}

.container {
  padding-bottom: 70px;
} */

.djContainer {
  background: url(../img/live/background_desktop_1.png) no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100vw;
  cursor: pointer;
  position: fixed;
  bottom: 65px;
  border-top: 1px solid #ecbd7b;
  left: 0;
  right: 0;
}

.djContainer * {
  box-sizing: border-box;
}

.djContainer.slideDown {
  bottom: 15px;
}

.djContainer.slideDown > .djRow > .djHeader {
  /* transform: translateY(-50px); */
}

.djRow {
  width: 1140px;
  height: 30px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.djHeader {
  width: 150px;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  transform: translateY(-10px);
}

.djHeader h6 {
  font-size: 0.8em;
  color: #ffffff;

  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: growAnimate 1.5s infinite alternate; 
}

.icon--dj {
  width: 20px;
  height: 20px;
  display: block;
  margin: 5px;
  fill: #ffffff;
}

.djPlayer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnPlayer,
.btnPlayer svg{
  width: 20px;
  height: 20px;
  margin: 0 5px 5px;
  background-color: transparent;
  border: none;
}

.btnPlayer svg {
  fill: white;
}


.musicContainer {
  position: relative;
  width: 80%;
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  height: 30px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.301);
}

.musicContainer ul {
  position: relative;
  color: #ffffff;
  list-style-type: none;
}

.musicContainer li {
  display: inline;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 24px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll-left 2s linear infinite;
  -webkit-animation: scroll-left 2s linear infinite;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
  }
  100% {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
  }
}




.btnPlay--off,
.btnMute--off {
  display: none;
}

.btnPlay--on svg,
.btnMute--on svg {
  fill: #FFD700;
}

.btnPlay--on:hover svg,
.btnMute--on:hover svg{
  fill: #ffffff;
}

.btnPlay--on,
.btnMute--on {
  display: block;
}

.stickyFooter {
  height: 65px;
  position: fixed;
  bottom: 0;
  background-color: aliceblue;
  width: 100%;
  z-index: 9999;
}

div.icon--dj svg {
  animation-name: growAnimate;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes growAnimate {
  0% {
    filter: drop-shadow(0px 0px 1px #FFD700)
    /* drop-shadow(0px 0px 3px #FFD700)
    drop-shadow(0px 0px 10px #ff80b3)
    drop-shadow(0px 0px 30px #ff4d94)
    drop-shadow(0px 0px 50px #ff0066); */
  }

  100% {
    filter: drop-shadow(0px 0px 3px #FFD700)
    drop-shadow(0px 0px 5px #FFD700)
    /*drop-shadow(0px 0px 15px #ff80b3)
    drop-shadow(0px 0px 40px #ff4d94)
    drop-shadow(0px 0px 60px #ff0066);  */
  }
}



@media (max-width: 575.98px) {
  div.djContainer {
    background-image: url(../img/live/background-mobile4_3.png);
    background-size: cover;
    background-position: top center;
  }

  .djRow {
    width: 100vw;
  }

  .djHeader {
    width: 120px;
    margin-top: 15px;
  }

  .djHeader h6 {
    font-size: 0.8em;
    letter-spacing: 0.1em;
  }

  .icon--dj {
    width: 15px;
    height: 15px;
  }

  .btnPlayer,
  .btnPlayer svg {
  width: 15px;
  height: 15px;
  margin-bottom: 7px;

}

  .djContainer {
    background-position: top center;
  }

  .musicContainer ul li {
    width: 200vw;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    animation: scroll-left 15s linear infinite;
  }

  @keyframes scroll-left {
    0% {
        transform: translateX(10%);
    }
    100% {
        transform: translateX(-100%);
    }
  }
}