
.audioPlayerContainer {
    position: absolute;
    z-index: 1;
    top:0;
    right: 0;
    margin-top: 90px;
    margin-right: 16px;
    cursor: pointer;
}
.playing {
    background: rgba(255,255,255,.1);
    width: 3rem;
    height: 3rem;
    border-radius: .3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: .5rem;
    box-sizing: border-box;
  }
  
  .playing__bar {
    display: inline-block;
    background: white;
    width: 30%;
    height: 100%;
    animation: up-and-down 1.3s ease infinite alternate;
  }

  .paused__bar {
    display: inline-block;
    background: white;
    width: 30%;
    height: 100%;
  }
  
  .playing__bar1 {
    height: 60%;
  }
  
  .playing__bar2 {
    height: 30%;
    animation-delay: -2.2s;
  }
  
  .playing__bar3 {
    height: 75%;
    animation-delay: -3.7s;
  }

  .paused__bar1 {
    height: 2%;
  }
  
  .paused__bar2 {
    height: 2%;
    animation-delay: -2.2s;
  }
  
  .paused__bar3 {
    height: 2%;
    animation-delay: -3.7s;
  }
  
  @keyframes up-and-down {
    10% {
      height: 30%;
    }
    
    30% {
      height: 100%;
    }
    
    60% {
      height: 50%;
    }
    
    80% {
      height: 75%;
    }
    
    100% {
      height: 60%;
    }
  }