html.surface-route-failed #surface-route-status {
  color: #d4d4d4;
}

@media (prefers-reduced-motion: no-preference) {
  html.surface-route-pending #surface-route-status::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #555;
    border-top-color: #aaa;
    border-radius: 50%;
    content: '';
    animation: surface-route-spin 0.8s linear infinite;
  }
}

@keyframes surface-route-spin {
  to { transform: rotate(360deg); }
}
