.popup {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1025;
}
.popup.show {
  opacity: 1;
  pointer-events: auto;
}
