*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--pv2-bg);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--pv2-text);
  font-family: var(--pv2-font-ui);
  font-size: 14px;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 25px;
  line-height: 1.2;
}

h2 {
  font-size: 15px;
  line-height: 1.25;
}

:focus-visible {
  outline: 2px solid var(--pv2-lapis);
  outline-offset: 2px;
}

.pv2-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--pv2-radius);
  padding: 0 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.pv2-button-primary {
  border-color: var(--pv2-gold-strong);
  background: var(--pv2-gold);
  color: var(--pv2-gold-ink);
}

.pv2-button-primary:hover {
  background: var(--pv2-gold-strong);
}

.pv2-button-secondary {
  border-color: var(--pv2-line-strong);
  background: var(--pv2-surface-raised);
  color: var(--pv2-text);
}

.pv2-button-secondary:hover {
  border-color: var(--pv2-lapis);
  background: var(--pv2-surface-hover);
}

.pv2-section-index {
  color: var(--pv2-lapis);
  font: 11px var(--pv2-font-code);
  letter-spacing: 0;
  text-transform: uppercase;
}

.pv2-panel {
  min-width: 0;
  border: 1px solid var(--pv2-line);
  border-radius: var(--pv2-radius);
  background: var(--pv2-surface);
}

.pv2-panel-heading {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--pv2-line);
  padding: 0 16px;
}

.pv2-panel-heading h2 {
  margin-top: 4px;
}

.pv2-panel-heading > a {
  color: var(--pv2-lapis);
  font-size: 12px;
  font-weight: 750;
}

.pv2-status-pill {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  border: 1px solid var(--pv2-line);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--pv2-muted);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.pv2-status-pill.is-success {
  border-color: rgb(82 199 138 / 40%);
  background: var(--pv2-success-soft);
  color: var(--pv2-success);
}

.pv2-status-pill.is-warning {
  border-color: rgb(228 173 82 / 40%);
  background: var(--pv2-warning-soft);
  color: var(--pv2-warning);
}

.pv2-status-pill.is-danger {
  border-color: rgb(228 109 105 / 40%);
  background: var(--pv2-danger-soft);
  color: var(--pv2-danger);
}

.pv2-status-pill.is-info {
  border-color: rgb(43 155 160 / 45%);
  background: var(--pv2-lapis-soft);
  color: var(--pv2-lapis);
}

.pv2-progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--pv2-bg);
}

.pv2-progress > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--pv2-gold);
}

.pv2-empty-row {
  display: grid;
  min-height: 78px;
  place-items: center;
  color: var(--pv2-muted);
  text-align: center;
}

.pv2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.pv2-muted {
  color: var(--pv2-muted);
}
