/* [project]/src/app/labs/earthquake/earthquake.css [app-client] (css) */
.eq-shell {
  flex-direction: column;
  min-height: calc(100dvh - 4rem);
  display: flex;
}

.eq-body {
  flex: 1;
  gap: .75rem;
  min-height: 0;
  padding: 0 .75rem .75rem;
  display: flex;
}

.eq-map-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: .5rem;
  display: flex;
  position: relative;
}

.eq-sidebar {
  flex: 0 0 320px;
  width: 320px;
  padding: .75rem;
}

.eq-status {
  z-index: 10;
  background: color-mix(in srgb, var(--background) 78%, transparent);
  color: var(--foreground-soft);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: .8rem;
  display: flex;
  position: absolute;
  inset: .5rem;
}

.eq-row-selected {
  border-color: var(--accent) !important;
}

@media (max-width: 760px) {
  .eq-body {
    flex-direction: column;
  }

  .eq-map-wrap {
    min-height: 320px;
  }

  .eq-sidebar {
    flex: auto;
    width: 100%;
  }
}

.eq-marker-ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: 1s steps(4, end) infinite eq-ping;
}

@keyframes eq-ping {
  0% {
    opacity: .9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eq-marker-ping {
    opacity: 0;
    animation: none !important;
  }
}

/*# sourceMappingURL=src_app_labs_earthquake_earthquake_1m38ux2.css.map*/