#pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
}

#pt-overlay.pt-active {
  opacity: 1;
  pointer-events: all;
}