#jmit-active-trip-route-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f8fafc;
}
#jmit-active-trip-route-loader .jmit-hydration-card {
  width: min(360px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
  color: #0f172a;
  text-align: center;
}
#jmit-active-trip-route-loader strong { font-size: 1.05rem; }
#jmit-active-trip-route-loader span { color: #64748b; font-size: .875rem; }
#jmit-active-trip-route-loader .jmit-hydration-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #e2e8f0;
  border-top-color: #b45309;
  border-radius: 999px;
  animation: jmit-hydration-spin .8s linear infinite;
}
@keyframes jmit-hydration-spin { to { transform: rotate(360deg); } }
