#impersonation-early-placeholder {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}
#impersonation-early-placeholder.active {
  display: flex;
}
#impersonation-early-placeholder .card {
  width: min(550px, calc(100vw - 2rem));
  border-radius: 24px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
#impersonation-early-placeholder .icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  animation: impersonation-placeholder-pulse 1.2s ease-in-out infinite;
}
#impersonation-early-placeholder .line {
  height: 0.875rem;
  border-radius: 0.25rem;
  background: #f2f4f7;
  margin-top: 1rem;
  animation: impersonation-placeholder-pulse 1.2s ease-in-out infinite;
}
#impersonation-early-placeholder .line.short {
  width: 60%;
  margin-top: 0.5rem;
}
@keyframes impersonation-placeholder-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
