.nx-status-pill > .nx-status-icon {
  position: relative;
  display: inline-grid !important;
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px;
  overflow: hidden;
  place-items: center;
  line-height: 1;
  vertical-align: middle;
}

.nx-status-pill > .nx-status-icon::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  font-family: icons !important;
  font-size: 12px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  opacity: 1;
  pointer-events: none;
  text-transform: none;
  transition: opacity 0.16s ease;
}

.nx-status-pill > .nx-status-icon.undetected::before { content: "\ea5e"; }
.nx-status-pill > .nx-status-icon.detected::before { content: "\ea14"; }
.nx-status-pill > .nx-status-icon.warning::before { content: "\ea6a"; }
.nx-status-pill > .nx-status-icon.testing::before { content: "\ea61"; }
.nx-status-pill > .nx-status-icon.indev::before { content: "\ea15"; }

.nx-status-pill > .nx-status-icon:not([data-lottie-ready="true"])::before {
  animation: nxStatusFallbackPulse 1.05s ease-in-out infinite;
}

.nx-status-pill > .nx-status-icon.testing:not([data-lottie-ready="true"])::before,
.nx-status-pill > .nx-status-icon.indev:not([data-lottie-ready="true"])::before {
  animation: nxStatusFallbackSpin 1.2s linear infinite;
}

.nx-status-pill > .nx-status-icon > svg {
  position: absolute !important;
  z-index: 2;
  inset: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.nx-status-pill > .nx-status-icon[data-lottie-ready="true"]::before {
  opacity: 0;
}

.nx-status-pill > .nx-status-icon[data-lottie-ready="true"] > svg {
  opacity: 1;
}

@keyframes nxStatusFallbackPulse {
  50% { opacity: 0.42; transform: scale(0.82); }
}

@keyframes nxStatusFallbackSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .nx-status-pill > .nx-status-icon::before {
    animation: none !important;
  }

  .nx-status-pill > .nx-status-icon > svg {
    display: none !important;
  }

  .nx-status-pill > .nx-status-icon[data-lottie-ready="true"]::before {
    opacity: 1;
  }
}
