:root {
  --primary: #1769aa;
}

.hidden {
  display: none !important;
}

.recalculationOverlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  background: rgba(247, 250, 253, .32);
  backdrop-filter: blur(1px);
}

.recalculationOverlayInner {
  display: grid;
  justify-items: center;
  padding: 22px 26px;
}

.recalculationSpinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(23, 105, 170, .18);
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: recalculationSpin .78s linear infinite;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .16);
}

@keyframes recalculationSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .recalculationSpinner {
    animation: none;
  }
}
