/* client/components/bookmark/bookmark-resolve.css */
@keyframes bc-resolve-dots {
  to {
    width: 1.2em;
  }
}
.bc-bookmark-resolve-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.8em;
  color: var(--bc-summary-accent);
}
.bc-resolve-dots {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: bc-resolve-dots 1.2s steps(4, end) infinite;
}
.bc-resolve-dots::after {
  content: "...";
}
@media (prefers-reduced-motion: reduce) {
  .bc-resolve-dots {
    animation: none;
    width: 1.2em;
  }
}

/* client/docs/bookmarks/style.css */
.bc-resolve-example {
  display: inline-block;
  margin: 0.4em 0 0.8em;
}
.bc-resolve-example .bc-bookmark-resolve-status {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  column-gap: 0.3em;
  grid-template-columns: auto auto 1.2em;
}
/*# sourceMappingURL=style-2SPKELW5.css.map */
