/* Homepage search state; the original information panel remains below completed results. */
#route-loading-panel { scroll-margin-top: 0; }
.status-step .route-stage-short { display: none; }
.route-loading-heading[hidden] { display: none; }
.route-loading-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid #cfe3ed;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
}
.route-loading-spinner {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 3px solid #d9eee7;
  border-top-color: #008a61;
  border-radius: 50%;
  animation: route-loading-spin 900ms linear infinite;
}
.route-loading-copy { min-width: 0; }
.route-loading-copy strong { display: block; color: #082a46; font-size: 25px; line-height: 1.25; font-weight: 800; letter-spacing: -.025em; }
.route-loading-copy p { margin: 5px 0 0; color: #48627a; font-size: 14px; }
.route-loading-route { margin-left: auto; padding: 9px 14px; border-radius: 20px; background: #eaf6f1; color: #076647; font-size: 14px; font-weight: 750; overflow-wrap: anywhere; }
.is-route-loading .visibility-panel { border-radius: 0 0 18px 18px; box-shadow: 0 14px 32px #082a4609; }
@keyframes route-loading-spin { to { transform: rotate(360deg); } }
@media (max-width: 700px) {
  .route-loading-heading { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 12px; padding: 20px 16px; }
  .route-loading-spinner { flex-basis: 30px; width: 30px; height: 30px; }
  .route-loading-copy { flex: 1; }
  .route-loading-copy strong { font-size: 22px; }
  .route-loading-copy p { font-size: 13px; line-height: 1.4; }
  .route-loading-route { grid-column: 2; justify-self: start; margin-left: 0; padding: 6px 12px; font-size: 13px; }
  .is-route-loading .visibility-copy h2 { font-size: 28px; }
  .is-route-loading .visibility-copy p { font-size: 14px; }
  .is-route-loading .status-track { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .is-route-loading .status-step { display: block; min-height: 0; padding: 10px 3px; text-align: center; }
  .is-route-loading .status-icon { width: 30px; height: 30px; margin: 0 auto 7px; font-size: 17px; }
  .is-route-loading .status-step strong { font-size: 10px; line-height: 1.25; overflow-wrap: normal; }
  .is-route-loading .status-step strong:not(.route-stage-short) { display: none; }
  .is-route-loading .status-step .route-stage-short { display: block; }
  .is-route-loading .status-step > span:last-child > span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .route-loading-spinner { animation: none; }
}
