.ni-watch-check {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10020;
  width: min(380px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .24);
  color: #111827;
}

.ni-watch-check__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #475569;
  cursor: pointer;
}

.ni-watch-check__close:hover,
.ni-watch-check__close:focus-visible {
  background: #f1f5f9;
  color: #111827;
}

.ni-watch-check__eyebrow {
  margin: 0 48px 5px 0;
  color: #b4232f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.ni-watch-check h2 {
  margin: 0 48px 6px 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.ni-watch-check > p:not(.ni-watch-check__eyebrow):not(.ni-watch-check__status):not(.ni-watch-check__done) {
  margin: 0 42px 14px 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.ni-watch-check__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ni-watch-check__actions button {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #b4232f;
  border-radius: 6px;
  background: #b4232f;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.ni-watch-check__actions button:hover,
.ni-watch-check__actions button:focus-visible {
  border-color: #861923;
  background: #861923;
}

.ni-watch-check__actions button.is-muted {
  grid-column: 1 / -1;
  border-color: #cbd5e1;
  background: #ffffff;
  color: #334155;
}

.ni-watch-check__actions button.is-muted:hover,
.ni-watch-check__actions button.is-muted:focus-visible {
  border-color: #64748b;
  background: #f1f5f9;
  color: #0f172a;
}

.ni-watch-check__actions.is-stack {
  grid-template-columns: 1fr;
}

.ni-watch-check__actions.is-stack button.is-muted {
  grid-column: auto;
}

.ni-watch-check__actions button:disabled {
  cursor: wait;
  opacity: .65;
}

.ni-watch-check__status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #b4232f;
  font-size: 12px;
  font-weight: 700;
}

.ni-watch-check__done {
  display: flex;
  min-height: 58px;
  margin: 0;
  align-items: center;
  gap: 10px;
  color: #166534;
  font-size: 14px;
  font-weight: 750;
}

[data-theme="dark"] .ni-watch-check {
  border-color: #475569;
  background: #111827;
  color: #f8fafc;
}

[data-theme="dark"] .ni-watch-check h2 {
  color: #f8fafc;
}

[data-theme="dark"] .ni-watch-check > p:not(.ni-watch-check__eyebrow):not(.ni-watch-check__status):not(.ni-watch-check__done) {
  color: #cbd5e1;
}

[data-theme="dark"] .ni-watch-check__eyebrow,
[data-theme="dark"] .ni-watch-check__status {
  color: #fda4af;
}

[data-theme="dark"] .ni-watch-check__close {
  color: #cbd5e1;
}

[data-theme="dark"] .ni-watch-check__close:hover,
[data-theme="dark"] .ni-watch-check__close:focus-visible,
[data-theme="dark"] .ni-watch-check__actions button.is-muted:hover,
[data-theme="dark"] .ni-watch-check__actions button.is-muted:focus-visible {
  background: #1e293b;
  color: #ffffff;
}

[data-theme="dark"] .ni-watch-check__actions button.is-muted {
  border-color: #64748b;
  background: #111827;
  color: #e2e8f0;
}

[data-theme="dark"] .ni-watch-check__done {
  color: #86efac;
}

@media (max-width: 560px) {
  .ni-watch-check {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ni-watch-check,
  .ni-watch-check * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
