.np-close-button {
  transition: color 0.15s ease-in-out;
  color: #00a2dd;
  color: var(--color-interactive-accent);
  border: none;
  background: none;
  padding: 0;
  height: 16px;
  height: var(--size-16);
  --ring-outline-offset: 0;
}
.np-close-button--large,
.np-close-button--x-large {
  height: 24px;
  height: var(--size-24);
}
.np-close-button:hover {
  color: #008fc9;
  color: var(--color-interactive-accent-hover);
}
.np-theme-personal .np-close-button {
  color: var(--color-interactive-primary);
  height: 32px;
  height: var(--size-32);
  width: 32px;
  width: var(--size-32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-radius: var(--radius-full);
  transition: background-color 0.1s ease;
}
@media (max-width: 320px) {
  .np-theme-personal .np-close-button {
    height: 64px;
    height: var(--size-64);
    width: 64px;
    width: var(--size-64);
  }
}
.np-theme-personal .np-close-button--x-small {
  height: 24px;
  height: var(--size-24);
  width: 24px;
  width: var(--size-24);
  flex-shrink: 0;
}
@media (max-width: 320px) {
  .np-theme-personal .np-close-button--x-small {
    height: 48px;
    height: var(--size-48);
    width: 48px;
    width: var(--size-48);
  }
}
.np-theme-personal .np-close-button--large {
  height: 40px;
  height: var(--size-40);
  width: 40px;
  width: var(--size-40);
  flex-shrink: 0;
}
@media (max-width: 320px) {
  .np-theme-personal .np-close-button--large {
    height: 80px;
    height: var(--size-80);
    width: 80px;
    width: var(--size-80);
  }
}
.np-theme-personal .np-close-button--x-large {
  height: 48px;
  height: var(--size-48);
  width: 48px;
  width: var(--size-48);
  flex-shrink: 0;
}
@media (max-width: 320px) {
  .np-theme-personal .np-close-button--x-large {
    height: 96px;
    height: var(--size-96);
    width: 96px;
    width: var(--size-96);
  }
}
.np-theme-personal .np-close-button:not(.disabled):not(:disabled):hover {
  color: var(--color-interactive-primary-hover);
  background-color: var(--color-background-neutral-hover);
}
.np-theme-personal .np-close-button:not(.disabled):not(:disabled):active {
  color: var(--color-interactive-primary-active);
  background-color: var(--color-background-neutral-active);
}
