.playing {
  position: fixed;
  top: 70px;
  left: 50%;
  width: 185px;
  transform: translateX(-50%) translateY(-50%);
}
.playing:after {
  content: "";
  display: block;
  width: 100%;
  margin-top: 10px;
}
.now.playing .bar {
  display: inline-block;
  position: relative;
  margin-right: 1px;
  width: 3px;
  height: 1px;
  overflow: hidden;
  background:linear-gradient(to bottom, #ffffff, #ffffff73);
  color: transparent;
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.paused.playing .bar {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.paused.playing:after {
  content: "Paused (Lame)"
}
.n1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.n2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.n3 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.n4 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.n5 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.n6 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.n7 {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
.n8 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
@-webkit-keyframes pulse {
  0% {
    height: 1px;
    margin-top: 0;
  }
  10% {
    height: 40px;
    margin-top: -40px;
  }
  50% {
    height: 20px;
    margin-top: -20px;
  }
  60% {
    height: 30px;
    margin-top: -30px;
  }
  80% {
    height: 60px;
    margin-top: -60px;
  }
  100% {
    height: 1px;
    margin-top: 0;
  }
}
@keyframes pulse {
  0% {
    height: 1px;
    margin-top: 0;
  }
  10% {
    height: 40px;
    margin-top: -40px;
  }
  50% {
    height: 20px;
    margin-top: -20px;
  }
  60% {
    height: 30px;
    margin-top: -30px;
  }
  80% {
    height: 60px;
    margin-top: -60px;
  }
  100% {
    height: 1px;
    margin-top: 0;
  }
}
button {
  border: none;
  background: none;
  cursor: pointer;
}