#splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fdfdfc;
  color: #111827;
  z-index: 9999;
  opacity: 1;
  transition: opacity 180ms ease;
}

.dark #splash {
  background: #0b0f0e;
  color: #ffffff;
}

#splash .dt-splash-logo {
  width: 96px;
  height: 96px;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0.9;
  filter: grayscale(1);
}

.dark #splash .dt-splash-logo--static {
  filter: grayscale(1) invert(1);
  opacity: 0.95;
}

#splash.dt-splash-hide {
  opacity: 0;
  pointer-events: none;
}
