.popup-bar__inner {
  animation-name: popup-bar--popup;
  animation-duration: 2.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes popup-bar--popup {
  from {
    max-height: 0;
  }
  to {
    max-height: 100vh;
  }
}
