.n-overlay {
  z-index: var(--zindex-overlay);
  display: flex;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.n-overlay--blur {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
}
.n-overlay--absolute {
  position: absolute;
}
.n-overlay__scrim {
  position: fixed;
  pointer-events: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.n-overlay__content {
  position: absolute;
  pointer-events: auto;
}