/* =========================================================
   AUDIO ANALYSER
   ========================================================= */

#audio-analyser {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 60px;

  display: none;
  z-index: 10;

  background: rgba(0, 0, 0, 0.55);
}

/* Shown when analyser is enabled */
#audio-analyser.is-active {
  display: block;
}

/* No analyser on small/mobile layout */
@media (max-width: 768px) {
  #audio-analyser {
    display: none !important;
  }
  #analyser-menu-option {
    display: none !important;
  }
}
