/*
* Button
* ONLY VARIABLES, MIXINS AND FUNCTIONS ALLOWED IN THIS FILE
*/
/*
* Typography - Headline
* Set font-family, font-size, font-weight, line-height
* $type: lg | md
*/
/*
* Typography - Label
* Set font-family, font-size, font-weight, line-height
* $type: md | sm
* $bold: false (default)
*/
/*
* Typography - body
* Set font-family, font-size, font-weight, line-height
* $type: md | sm | xs
* $bold: false (default)
*/
/*
* Typography - Link
* Set text-decoration, color, cursor, transition, :hover :active :focus
*/
/*
* Typography - Bold
* Set font-weight
*/
/*
* Typography - Smooth font https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth
* Smooth font, note: this property will be incompatible with some mobile browsers.
*/
/*
* Breakpoints
* Set font-weight
*/
:host {
  display: inline-block;
  z-index: 0;
}
:host * {
  box-sizing: border-box;
}

.nwfb-button {
  border-radius: var(--nwwc-sys-shape-corner-xs);
  cursor: pointer;
  padding: 0px var(--nwwc-sys-space-250);
  position: relative;
  z-index: 0;
  background: none;
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
}
.nwfb-button--width-short {
  padding: 0px var(--nwwc-sys-space-050);
}
.nwfb-button--full-width {
  width: 100%;
}
.nwfb-button__label {
  vertical-align: middle;
}
.nwfb-button--variant-link {
  padding-left: 0px;
  padding-right: 0px;
  text-align: left;
  min-width: auto;
}
.nwfb-button--variant-link .nwfb-button__label {
  text-decoration: underline;
}
.nwfb-button--variant-link:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border-color: var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-button--variant-link:disabled .nwfb-button__label {
  text-decoration: none;
}
.nwfb-button--variant-ghost {
  padding: var(--nwwc-sys-space-0) var(--nwwc-sys-space-150);
}
.nwfb-button--variant-ghost.nwfb-button--loading:not(.nwfb-button--label) {
  padding: var(--nwwc-sys-space-0) calc(var(--nwwc-sys-space-300) - 1px);
}
.nwfb-button--variant-ghost:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border-color: var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-button--variant-ghost--selected {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-rounded {
  border-radius: 30px;
  height: var(--nwwc-sys-space-height-xl);
  color: var(--nwwc-sys-color-on-primary);
  background-color: var(--nwwc-sys-color-primary);
  border: var(--nwwc-sys-color-background-transparent);
  padding: var(--nwwc-sys-space-0) var(--nwwc-sys-space-250);
  min-width: auto;
}
.nwfb-button.nwfb-button--variant-rounded:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  border-color: var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-button.nwfb-button--variant-rounded:focus-visible {
  outline-style: unset;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled):focus .nwfb-button__ripple::before, .nwfb-button.nwfb-button--variant-rounded:not(:disabled):focus-visible .nwfb-button__ripple::before {
  opacity: 0.16;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple {
  z-index: var(--nwwc-sys-z-index-default);
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple::before, .nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple::after {
  content: "";
  opacity: 0;
  position: absolute;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple::before {
  border-color: #ffffff;
  background-color: #ffffff;
  inset: 0;
  transition: opacity 15ms linear, background-color 15ms linear;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple::after {
  border: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  background: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  transform-origin: center center;
  transition: opacity 375ms linear;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple:hover::before {
  opacity: 0.12;
}
.nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple:active::before, .nwfb-button.nwfb-button--variant-rounded:not(:disabled) .nwfb-button__ripple:focus-visible::before {
  opacity: 0.16;
}
.nwfb-button:disabled .nwfb-button__label {
  color: var(--nwwc-sys-color-on-surface);
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-button:disabled nwwc-icon {
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-button.nwfb-button--variant-filled {
  color: var(--nwwc-sys-color-on-primary);
  background-color: var(--nwwc-sys-color-primary);
  border: var(--nwwc-sys-color-background-transparent);
  min-width: auto;
}
.nwfb-button.nwfb-button--variant-filled.nwfb-button--loading:not(.nwfb-button--label) {
  padding: var(--nwwc-sys-space-0) var(--nwwc-sys-space-300);
}
.nwfb-button.nwfb-button--variant-filled:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  border-color: var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-button.nwfb-button--variant-filled:focus-visible {
  outline-style: unset;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled):focus .nwfb-button__ripple::before, .nwfb-button.nwfb-button--variant-filled:not(:disabled):focus-visible .nwfb-button__ripple::before {
  opacity: 0.16;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple {
  z-index: var(--nwwc-sys-z-index-default);
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple::before, .nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple::after {
  content: "";
  opacity: 0;
  position: absolute;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple::before {
  border-color: #ffffff;
  background-color: #ffffff;
  inset: 0;
  transition: opacity 15ms linear, background-color 15ms linear;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple::after {
  border: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  background: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  transform-origin: center center;
  transition: opacity 375ms linear;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple:hover::before {
  opacity: 0.12;
}
.nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple:active::before, .nwfb-button.nwfb-button--variant-filled:not(:disabled) .nwfb-button__ripple:focus-visible::before {
  opacity: 0.16;
}
.nwfb-button.nwfb-button--variant-outlined {
  color: var(--nwwc-sys-color-primary);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-primary);
}
.nwfb-button.nwfb-button--variant-outlined.nwfb-button--loading:not(.nwfb-button--label) {
  padding: var(--nwwc-sys-space-0) calc(var(--nwwc-sys-space-300) - 1px);
}
.nwfb-button.nwfb-button--variant-outlined:hover:not(:disabled):not(.nwfb-button--loading) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 8%, transparent);
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-button.nwfb-button--variant-outlined:active:not(:disabled):not(.nwfb-button--loading), .nwfb-button.nwfb-button--variant-outlined.nwfb-button--loading {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-button.nwfb-button--variant-outlined:focus-visible:not(:disabled):not(.nwfb-button--loading) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  border-color: var(--nwwc-sys-color-primary);
  outline-style: unset;
}
.nwfb-button.nwfb-button--variant-outlined:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border-color: var(--nwwc-sys-color-outline);
  cursor: not-allowed;
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-primary:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
  min-width: auto;
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-primary:not(:disabled):hover:not(.nwfb-button--loading) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 8%, transparent);
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-primary:not(:disabled):active:not(.nwfb-button--loading), .nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-primary:not(:disabled).nwfb-button--loading {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-primary:not(:disabled):focus-visible:not(.nwfb-button--loading) {
  outline-style: unset;
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-neutral:not(:disabled) {
  color: var(--nwwc-sys-color-on-surface);
  border: solid var(--nwwc-sys-shape-size-default) transparent;
  min-width: auto;
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-neutral:not(:disabled):hover:not(.nwfb-button--loading) {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 8%, transparent);
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-neutral:not(:disabled):active:not(.nwfb-button--loading), .nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-neutral:not(:disabled).nwfb-button--loading {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-ghost.nwfb-button--accent-neutral:not(:disabled):focus-visible:not(.nwfb-button--loading) {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  outline-style: unset;
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background: none;
  border: none;
  border-radius: var(--nwwc-sys-space-0);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled):hover {
  color: var(--nwwc-sys-color-primary);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled):active, .nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled).nwfb-button--loading {
  color: var(--nwwc-sys-color-primary);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled):active, .nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled):focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-primary:not(:disabled):focus-visible {
  color: var(--nwwc-sys-color-primary);
  outline-style: unset;
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled) {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border: none;
  border-radius: var(--nwwc-sys-space-0);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled):hover:not(.nwfb-button--loading) {
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled):active:not(.nwfb-button--loading), .nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled).nwfb-button--loading {
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled):active, .nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled):focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
}
.nwfb-button.nwfb-button--variant-link.nwfb-button--accent-neutral:not(:disabled):focus-visible:not(.nwfb-button--loading) {
  color: var(--nwwc-sys-color-on-surface);
  outline-style: unset;
}
.nwfb-button--height-normal {
  font-size: var(--nwwc-sys-typescale-size-md);
  height: var(--nwwc-sys-space-height-lg);
}
.nwfb-button--height-narrow {
  font-size: var(--nwwc-sys-typescale-size-md);
  height: var(--nwwc-sys-space-height-md);
}
.nwfb-button.nwfb-button--icon-leading, .nwfb-button.nwfb-button--icon-trailing {
  padding-left: var(--nwwc-sys-space-250);
  padding-right: var(--nwwc-sys-space-250);
}
.nwfb-button.nwfb-button--icon-leading .nwfb-icon {
  margin-right: var(--nwwc-sys-space-050);
}
.nwfb-button.nwfb-button--icon-trailing .nwfb-icon {
  margin-left: var(--nwwc-sys-space-050);
}
.nwfb-button.nwfb-button--icon-leading:not(.nwfb-button.nwfb-button--icon-trailing) {
  padding-left: var(--nwwc-sys-space-150);
  padding-right: var(--nwwc-sys-space-250);
}
.nwfb-button.nwfb-button--icon-leading:not(.nwfb-button.nwfb-button--icon-trailing).nwfb-button--variant-ghost {
  padding-right: var(--nwwc-sys-space-150);
  padding-left: var(--nwwc-sys-space-100);
}
.nwfb-button.nwfb-button--icon-leading.nwfb-button--width-short {
  padding-left: var(--nwwc-sys-space-050);
  padding-right: var(--nwwc-sys-space-100);
}
.nwfb-button.nwfb-button--icon-trailing:not(.nwfb-button.nwfb-button--icon-leading) {
  padding-left: var(--nwwc-sys-space-250);
  padding-right: var(--nwwc-sys-space-150);
}
.nwfb-button.nwfb-button--icon-trailing:not(.nwfb-button.nwfb-button--icon-leading).nwfb-button--variant-ghost {
  padding-left: var(--nwwc-sys-space-150);
  padding-right: var(--nwwc-sys-space-100);
}
.nwfb-button.nwfb-button--icon-trailing.nwfb-button--width-short {
  padding-right: var(--nwwc-sys-space-050);
  padding-left: var(--nwwc-sys-space-100);
}
.nwfb-button .nwfb-button__loader {
  position: absolute;
  inset: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  transform: scale(0.225);
}
.nwfb-button.nwfb-button--height-narrow .nwfb-button__loader {
  transform: scale(0.2);
}
.nwfb-button.nwfb-button--loading {
  cursor: not-allowed;
}
.nwfb-button.nwfb-button--loading .nwfb-icon,
.nwfb-button.nwfb-button--loading .nwfb-button__label {
  visibility: hidden;
}

/*
* Input
* ONLY VARIABLES, MIXINS AND FUNCTIONS ALLOWED IN THIS FILE
*/
/*
  Custom for account selector
*/
.nwfb-checkbox--for-account-selector .nwfb-checkbox-component {
  width: 32px;
  height: 32px;
}
.nwfb-checkbox--for-account-selector .nwfb-checkbox-wrapper {
  gap: 0px !important;
}

.nwfb-checkbox-component {
  display: flex;
  position: relative;
  height: 24px;
  align-items: center;
}
.nwfb-checkbox-component--label {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.nwfb-checkbox-component--label input[type=checkbox] {
  width: 32px;
  height: 32px;
  z-index: var(--nwwc-sys-z-index-default);
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  left: 0;
  cursor: inherit;
}
.nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon {
  background: var(--nwwc-sys-color-primary);
  border-color: transparent;
}
.nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon svg path {
  fill: white;
  stroke: white;
}
.nwfb-checkbox-component--label .nwfb-checkbox-component--icon {
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
  border-radius: 4px;
  border: 2px solid var(--nwwc-sys-color-on-surface-variant);
  transition: all var(--nwwc-sys-motion-duration-faster) ease;
  box-sizing: border-box;
  z-index: var(--nwwc-sys-z-index-none);
  align-items: center;
  justify-content: center;
}
.nwfb-checkbox-component .nwfb-checkbox-hover-focus-indicator {
  width: 32px;
  height: 32px;
  top: -6px;
  left: -6px;
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  border-radius: 100px;
  z-index: var(--nwwc-sys-z-index-none);
}
.nwfb-checkbox-component:hover {
  outline: none;
}
.nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  border-radius: 100px;
}
.nwfb-checkbox-component:hover input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-checkbox-component:active, .nwfb-checkbox-component:focus-visible {
  outline: none;
}
.nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox-component:active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox-component:focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
}
.nwfb-checkbox-component input[type=checkbox]:focus-visible,
.nwfb-checkbox-component input[type=checkbox]:active,
.nwfb-checkbox-component input[type=checkbox]:active + .nwfb-checkbox-hover-focus-indicator:active,
.nwfb-checkbox-component input[type=checkbox]:focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-checkbox-component input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 16%, transparent);
  border-radius: 100px;
}
.nwfb-checkbox-component input[type=checkbox]:focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:active + .nwfb-checkbox-hover-focus-indicator:active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
  border-radius: 100px;
}
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox-component input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-checkbox-label--position--right.nwfb-checkbox--size--xs .nwfb-checkbox-wrapper {
  display: flex;
  gap: 8px;
}
.nwfb-checkbox-label--position--right.nwfb-checkbox--size--xs .nwfb-checkbox-wrapper label {
  cursor: pointer;
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-checkbox-label--position--left.nwfb-checkbox--size--xs .nwfb-checkbox-wrapper {
  display: grid;
  grid-template-columns: auto 24px;
  gap: 2px;
}
.nwfb-checkbox-label--position--left.nwfb-checkbox--size--xs .nwfb-checkbox-wrapper label {
  cursor: pointer;
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon {
  background: var(--nwwc-sys-color-error);
}
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-checkbox.nwfb-checkbox--invalid.nwfb-checkbox--circular .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon {
  background: var(--nwwc-sys-color-error);
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid.nwfb-checkbox--circular .nwfb-checkbox-component--label .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-error);
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:hover,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:hover {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:hover .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:hover input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:hover input[type=checkbox] {
  border-color: var(--nwwc-sys-color-error) !important;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:focus-visible,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:active,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:active,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:focus-visible input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible input[type=checkbox] {
  border-color: var(--nwwc-sys-color-error) !important;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active, .nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):active + .nwfb-checkbox-hover-focus-indicator:active input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled):focus-visible + .nwfb-checkbox-hover-focus-indicator:focus-visible input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active, .nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component--icon {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  border-width: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-hover-focus-indicator {
  left: -4px;
  top: -4px;
  width: 32px;
  height: 32px;
}
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-component--label:hover input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-wrapper:hover input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-component--label:active input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-component--label:focus-visible input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-wrapper:active input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular:not(.nwfb-checkbox--disabled):not(.nwfb-checkbox--invalid) .nwfb-checkbox-wrapper:focus-visible input[type=checkbox]:checked:not(:disabled):not(:invalid) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid {
  cursor: not-allowed;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled input[type=checkbox] + .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid input[type=checkbox] + .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled input[type=checkbox] + .nwfb-checkbox-component--icon svg, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid input[type=checkbox] + .nwfb-checkbox-component--icon svg {
  opacity: 0;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled input[type=checkbox]:checked + .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid input[type=checkbox]:checked + .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  background: transparent !important;
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled input[type=checkbox]:checked + .nwfb-checkbox-component--icon svg, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid input[type=checkbox]:checked + .nwfb-checkbox-component--icon svg {
  opacity: 1;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled input[type=checkbox]:checked, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid input[type=checkbox]:checked {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:hover input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:active input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled .nwfb-checkbox-component:focus-visible input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:hover input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:active input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible input[type=checkbox] {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:hover,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:hover, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:hover,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:hover {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:hover .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:hover .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 12%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:hover input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:hover input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:hover input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:hover input[type=checkbox] {
  border-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 12%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:focus-visible,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:active,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:active,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:focus-visible, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:focus-visible,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:active,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:active,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 16%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:focus-visible input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular .nwfb-checkbox-component:focus-visible input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:focus-visible input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:active input[type=checkbox],
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid .nwfb-checkbox-component:focus-visible input[type=checkbox] {
  border-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 16%, transparent) !important;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 12%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active, .nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--circular.nwfb-checkbox--invalid input[type=checkbox]:checked:not(:disabled) + .nwfb-checkbox-component--icon + .nwfb-checkbox-hover-focus-indicator:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface-variant) 16%, transparent) !important;
  border-radius: 100px;
}
.nwfb-checkbox.nwfb-checkbox--disabled, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid {
  cursor: not-allowed;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-label, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-label {
  cursor: default !important;
  color: var(--nwwc-sys-color-on-surface) !important;
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label {
  color: var(--nwwc-sys-color-on-surface);
  pointer-events: none;
  cursor: default !important;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox] + .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox] + .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox] + .nwfb-checkbox-component--icon svg, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox] + .nwfb-checkbox-component--icon svg {
  opacity: 0;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  background: var(--nwwc-sys-color-on-surface-variant);
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon svg, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:checked + .nwfb-checkbox-component--icon svg {
  opacity: 1;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:checked, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:checked {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:focus-visible,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:active,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:hover,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:active,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:hover, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:focus-visible,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:active,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:hover,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:active,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:hover {
  outline: none;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label input[type=checkbox]:hover .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label input[type=checkbox]:hover .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:active ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:hover ~ .nwfb-checkbox-hover-focus-indicator,
.nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component--icon, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:hover input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:active input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--disabled .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:hover input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:active input[type=checkbox], .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid .nwfb-checkbox-component--label .nwfb-checkbox-component:focus-visible input[type=checkbox] {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-checkbox.nwfb-checkbox--disabled:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled:focus-visible .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid:hover .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid:active .nwfb-checkbox-hover-focus-indicator, .nwfb-checkbox.nwfb-checkbox--disabled.nwfb-checkbox--invalid:focus-visible .nwfb-checkbox-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-checkbox.nwfb-checkbox--size--xs input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.nwfb-checkbox.nwfb-checkbox--size--xs .nwfb-checkbox-label {
  font-size: var(--nwwc-sys-typescale-size-md);
  line-height: 20px;
}
.nwfb-checkbox .nwfb-checkbox-wrapper--label {
  color: var(--nwwc-sys-color-on-surface);
  padding-top: 3px;
  pointer-events: none;
}

:host * {
  box-sizing: border-box;
}

@keyframes shrink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes grow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nwfb-dialog__scrim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  place-items: center;
  display: grid;
  z-index: var(--nwwc-sys-z-index-overlay);
  transition: var(--nwwc-sys-motion-duration-fast);
}

.nwfb-dialog {
  z-index: var(--nwwc-sys-z-index-modal);
  position: absolute;
  display: none;
  animation: shrink var(--nwwc-sys-motion-duration-fast) forwards;
}
.nwfb-dialog--visible {
  display: unset;
  animation: grow var(--nwwc-sys-motion-duration-fast) forwards;
}
.nwfb-dialog .nwfb-dialog__surface {
  box-shadow: var(--nwwc-sys-elevation-2);
  width: calc(100vw - 128px);
  max-width: calc(100vw - 128px);
  border-radius: 8px;
  background: var(--nwwc-sys-color-surface-container-lowest);
  overflow: auto;
  max-height: calc(100vh - 31px);
}
.nwfb-dialog .nwfb-dialog__surface--lg {
  width: 1200px;
}
.nwfb-dialog .nwfb-dialog__surface--md {
  width: 800px;
}
.nwfb-dialog .nwfb-dialog__surface--sm {
  width: 300px;
}
@media (max-width: var(--nwwc-sys-breakpoint-sm)) {
  .nwfb-dialog .nwfb-dialog__surface--lg,
  .nwfb-dialog .nwfb-dialog__surface--md,
  .nwfb-dialog .nwfb-dialog__surface--custom {
    width: calc(100vw - 128px);
    max-width: calc(100vw - 128px);
  }
}
.nwfb-dialog .nwfb-modal-dialog {
  padding: 24px;
}
.nwfb-dialog .nwfb-modal-dialog-ex-header--disabled .nwfb-modal-dialog__header__wrapper {
  padding-top: var(--nwwc-sys-space-100);
}
.nwfb-dialog .nwfb-modal-dialog-ex-header--no-outline .nwfb-modal-dialog__container__content-wrapper__title:focus-visible {
  outline: none !important;
}
.nwfb-dialog .nwfb-modal-dialog__wrapper-top {
  display: flex;
  gap: var(--nwwc-sys-space-600);
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper {
  flex: 1;
  width: 100%;
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__inner {
  padding: 24px 0 0 0;
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__title {
  font-family: var(--nwwc-sys-typescale-headline-lg-font);
  font-size: var(--nwwc-sys-typescale-headline-lg-size);
  font-weight: var(--nwwc-sys-typescale-headline-lg-weight);
  line-height: var(--nwwc-sys-typescale-headline-lg-line-height);
  color: var(--nwwc-sys-color-text);
  margin: 0;
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__message {
  color: var(--nwwc-sys-color-text);
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__message, .nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__extra-title {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  margin: 0;
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container__content-wrapper__extra-title {
  color: var(--nwwc-sys-color-text-2);
}
.nwfb-dialog .nwfb-modal-dialog .nwfb-modal-dialog__container-icon {
  display: block;
}

:host,
nwfb-feedback-form {
  width: 100%;
  display: block;
}

.nwfb-feedback-form {
  width: 100%;
  font-family: var(--nwwc-sys-typescale-body-md-font);
}
.nwfb-feedback-form * {
  box-sizing: border-box;
}
.nwfb-feedback-form__container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--nwwc-sys-space-400);
  background-color: var(--nwwc-sys-color-surface);
  border-radius: var(--nwwc-sys-shape-corner-radius-medium);
  box-shadow: var(--nwwc-sys-elevation-level-1);
}
.nwfb-feedback-form__hidden {
  display: none;
}
.nwfb-feedback-form--modal .nwfb-feedback-form__container {
  max-width: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.nwfb-feedback-form--modal .nwfb-feedback-form__header {
  margin-bottom: var(--nwwc-sys-space-300);
}
.nwfb-feedback-form__header {
  margin-bottom: var(--nwwc-sys-space-400);
}
.nwfb-feedback-form__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--nwwc-sys-space-300);
}
.nwfb-feedback-form__main-title {
  font-family: var(--nwwc-sys-typescale-headline-lg-font);
  font-size: var(--nwwc-sys-typescale-headline-lg-size);
  font-weight: var(--nwwc-sys-typescale-headline-lg-weight);
  line-height: var(--nwwc-sys-typescale-headline-lg-line-height);
  color: var(--nwwc-sys-color-on-surface);
  margin: 0;
  font-weight: 600;
}
.nwfb-feedback-form__close-button {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--nwwc-sys-color-on-surface-variant);
  padding: var(--nwwc-sys-space-100);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
}
.nwfb-feedback-form__close-button:hover {
  background-color: var(--nwwc-sys-color-surface-variant);
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-feedback-form__close-button:focus {
  outline: 2px solid var(--nwwc-sys-color-primary);
  outline-offset: 2px;
}
.nwfb-feedback-form__content {
  text-align: left;
}
.nwfb-feedback-form__title {
  font-family: var(--nwwc-sys-typescale-headline-md-font);
  font-size: var(--nwwc-sys-typescale-headline-md-size);
  font-weight: var(--nwwc-sys-typescale-headline-md-weight);
  line-height: var(--nwwc-sys-typescale-headline-md-line-height);
  color: var(--nwwc-sys-color-on-surface);
  margin: 0 0 var(--nwwc-sys-space-200) 0;
  font-weight: 500;
}
.nwfb-feedback-form__description {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-size-md);
  font-weight: var(--nwwc-sys-typescale-weight-normal);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  color: var(--nwwc-sys-color-on-surface-variant);
  margin: 0;
}
.nwfb-feedback-form__progress {
  margin-bottom: var(--nwwc-sys-space-400);
  padding: var(--nwwc-sys-space-300);
  background-color: var(--nwwc-sys-color-surface-variant);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
}
.nwfb-feedback-form__progress-label {
  font-family: var(--nwwc-sys-typescale-body-sm-font);
  font-size: var(--nwwc-sys-typescale-body-sm-size);
  line-height: var(--nwwc-sys-typescale-body-sm-line-height);
  font-weight: var(--nwwc-sys-typescale-body-sm-weight);
  color: var(--nwwc-sys-color-on-surface-variant);
  margin-bottom: var(--nwwc-sys-space-100);
  font-weight: 500;
}
.nwfb-feedback-form__progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--nwwc-sys-color-outline-variant);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
  overflow: hidden;
}
.nwfb-feedback-form__progress-fill {
  height: 100%;
  background-color: var(--nwwc-sys-color-primary);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
  transition: width var(--nwwc-sys-motion-duration-medium) var(--nwwc-sys-motion-easing-standard);
}
.nwfb-feedback-form__custom-content {
  margin-bottom: var(--nwwc-sys-space-400);
  padding: var(--nwwc-sys-space-300);
  background-color: var(--nwwc-sys-color-surface-container);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
  border-left: 4px solid var(--nwwc-sys-color-primary);
}
.nwfb-feedback-form__custom-content p,
.nwfb-feedback-form__custom-content div,
.nwfb-feedback-form__custom-content span {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  color: var(--nwwc-sys-color-on-surface);
  margin: 0 0 var(--nwwc-sys-space-150) 0;
}
.nwfb-feedback-form__custom-content p:last-child,
.nwfb-feedback-form__custom-content div:last-child,
.nwfb-feedback-form__custom-content span:last-child {
  margin-bottom: 0;
}
.nwfb-feedback-form__custom-content h1,
.nwfb-feedback-form__custom-content h2,
.nwfb-feedback-form__custom-content h3,
.nwfb-feedback-form__custom-content h4,
.nwfb-feedback-form__custom-content h5,
.nwfb-feedback-form__custom-content h6 {
  font-family: var(--nwwc-sys-typescale-headline-sm-font);
  font-size: var(--nwwc-sys-typescale-headline-sm-size);
  font-weight: var(--nwwc-sys-typescale-headline-sm-weight);
  line-height: var(--nwwc-sys-typescale-headline-sm-line-height);
  color: var(--nwwc-sys-color-on-surface);
  margin: 0 0 var(--nwwc-sys-space-200) 0;
}
.nwfb-feedback-form__custom-content ul,
.nwfb-feedback-form__custom-content ol {
  margin: 0 0 var(--nwwc-sys-space-150) var(--nwwc-sys-space-200);
}
.nwfb-feedback-form__custom-content ul li,
.nwfb-feedback-form__custom-content ol li {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  color: var(--nwwc-sys-color-on-surface);
  margin-bottom: var(--nwwc-sys-space-75);
}
.nwfb-feedback-form__option__radio-group {
  display: flex;
  flex-direction: column;
}
.nwfb-feedback-form__option__radio-group span {
  color: var(--nwwc-sys-color-on-surface);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.nwfb-feedback-form__option__radio {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-self: end;
  flex: 1;
}
.nwfb-feedback-form__option__radio:first-child {
  align-items: flex-start;
}
.nwfb-feedback-form__option__radio:last-child {
  align-items: flex-end;
}
.nwfb-feedback-form__option__radio__label {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.nwfb-feedback-form__option__radio__label span {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  color: var(--nwwc-sys-color-on-surface);
  margin: var(--nwwc-sys-space-100) 0;
  color: var(--nwwc-sys-color-on-surface);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.nwfb-feedback-form__question:last-child {
  margin-bottom: 0;
}
.nwfb-feedback-form__question--unsupported {
  padding: var(--nwwc-sys-space-300);
  background-color: var(--nwwc-sys-color-error-container);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
}
.nwfb-feedback-form__question--unsupported p {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  color: var(--nwwc-sys-color-on-error-container);
  margin: 0;
}
.nwfb-feedback-form__validation-error span {
  font-family: var(--nwwc-sys-typescale-body-sm-font);
  font-size: var(--nwwc-sys-typescale-body-sm-size);
  line-height: var(--nwwc-sys-typescale-body-sm-line-height);
  font-weight: var(--nwwc-sys-typescale-body-sm-weight);
  color: var(--nwwc-sys-color-error);
}
.nwfb-feedback-form__question__textarea {
  height: 84px;
}
.nwfb-feedback-form__question__error-message {
  height: 24px;
  padding-left: var(--nwwc-sys-space-150, 12px) !important;
  color: var(--nwwc-sys-color-error) !important;
  font-family: var(--nwwc-sys-typescale-body-sm-font) !important;
  font-size: var(--nwwc-sys-typescale-body-sm-size) !important;
  line-height: var(--nwwc-sys-typescale-body-sm-line-height) !important;
  font-weight: var(--nwwc-sys-typescale-body-sm-weight) !important;
}
.nwfb-feedback-form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--nwwc-sys-space-300);
  padding-top: var(--nwwc-sys-space-150);
}
.nwfb-feedback-form__buttons {
  display: flex;
  justify-content: flex-end;
  gap: var(--nwwc-sys-space-200);
  width: 100%;
}
.nwfb-feedback-form__success {
  margin-top: var(--nwwc-sys-space-400);
  padding: var(--nwwc-sys-space-300);
  background-color: var(--nwwc-sys-color-success-container);
  border-radius: var(--nwwc-sys-shape-corner-radius-small);
  border: 1px solid var(--nwwc-sys-color-success);
  text-align: center;
}
.nwfb-feedback-form__success p {
  font-family: var(--nwwc-sys-typescale-body-lg-font);
  font-size: var(--nwwc-sys-typescale-body-lg-size);
  line-height: var(--nwwc-sys-typescale-body-lg-line-height);
  font-weight: var(--nwwc-sys-typescale-body-lg-weight);
  color: var(--nwwc-sys-color-on-success-container);
  margin: 0;
  font-weight: 500;
}
.nwfb-feedback-form__empty {
  padding: var(--nwwc-sys-space-500);
  text-align: center;
}
.nwfb-feedback-form__empty p {
  font-family: var(--nwwc-sys-typescale-body-lg-font);
  font-size: var(--nwwc-sys-typescale-body-lg-size);
  line-height: var(--nwwc-sys-typescale-body-lg-line-height);
  font-weight: var(--nwwc-sys-typescale-body-lg-weight);
  color: var(--nwwc-sys-color-on-surface-variant);
  margin: 0;
}
.nwfb-feedback-form--disabled {
  opacity: var(--nwwc-sys-opacity-disabled);
  pointer-events: none;
}
.nwfb-feedback-form--loading .nwfb-feedback-form__container {
  position: relative;
}
.nwfb-feedback-form--loading .nwfb-feedback-form__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--nwwc-sys-color-surface), 0.8);
  z-index: 1;
  border-radius: var(--nwwc-sys-shape-corner-radius-medium);
}
.nwfb-feedback-form--submitted .nwfb-feedback-form__questions,
.nwfb-feedback-form--submitted .nwfb-feedback-form__actions {
  opacity: var(--nwwc-sys-opacity-disabled);
}
@media (max-width: 768px) {
  .nwfb-feedback-form__container {
    padding: var(--nwwc-sys-space-300);
    margin: var(--nwwc-sys-space-200);
  }
  .nwfb-feedback-form__title {
    font-family: var(--nwwc-sys-typescale-headline-sm-font);
    font-size: var(--nwwc-sys-typescale-headline-sm-size);
    font-weight: var(--nwwc-sys-typescale-headline-sm-weight);
    line-height: var(--nwwc-sys-typescale-headline-sm-line-height);
  }
  .nwfb-feedback-form__description {
    font-family: var(--nwwc-sys-typescale-body-md-font);
    font-size: var(--nwwc-sys-typescale-body-md-size);
    line-height: var(--nwwc-sys-typescale-body-md-line-height);
    font-weight: var(--nwwc-sys-typescale-body-md-weight);
  }
  .nwfb-feedback-form__question {
    margin-bottom: var(--nwwc-sys-space-300);
  }
}
.nwfb-feedback-form:focus-within .nwfb-feedback-form__container {
  box-shadow: var(--nwwc-sys-elevation-level-2);
}
.nwfb-feedback-form .nwfb-feedback-form__progress-fill {
  animation: progressFill 0.3s ease-out;
}

.nwfb-feedback-form__success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: 364px;
  text-align: center;
  padding: var(--nwwc-sys-space-400);
  position: relative;
}
.nwfb-feedback-form__success-content {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nwfb-feedback-form__success-icon {
  margin-bottom: var(--nwwc-sys-space-400);
}
.nwfb-feedback-form__success-icon nwfb-icon {
  width: 64px;
  height: 64px;
  background-color: var(--nwwc-sys-color-success-container);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: var(--nwwc-sys-space-100);
}
.nwfb-feedback-form__success-icon nwfb-icon svg {
  display: block;
  margin: auto;
}
.nwfb-feedback-form__success-title {
  color: var(--nwwc-sys-color-on-surface);
  font-family: var(--nwwc-sys-typescale-headline-sm-font);
  font-size: var(--nwwc-sys-typescale-headline-sm-size);
  font-weight: var(--nwwc-sys-typescale-headline-sm-weight);
  line-height: var(--nwwc-sys-typescale-headline-sm-line-height);
  margin: 0 0 var(--nwwc-sys-space-500) 0;
}
.nwfb-feedback-form__research-panel {
  margin-bottom: var(--nwwc-sys-space-500);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nwfb-feedback-form__research-panel nwfb-checkbox {
  display: inline-block;
  text-align: left;
}
.nwfb-feedback-form__research-text {
  color: var(--nwwc-sys-color-on-surface);
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
}
.nwfb-feedback-form__success-actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: var(--nwwc-sys-space-300);
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
}

@keyframes progressFill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (prefers-contrast: high) {
  .nwfb-feedback-form__container {
    border: 2px solid var(--nwwc-sys-color-outline);
  }
  .nwfb-feedback-form__progress-bar {
    border: 1px solid var(--nwwc-sys-color-outline);
  }
  .nwfb-feedback-form__custom-content {
    border: 1px solid var(--nwwc-sys-color-outline);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nwfb-feedback-form__progress-fill {
    transition: none;
    animation: none;
  }
}
:host {
  display: inline-block;
  box-sizing: content-box !important;
  width: 16px;
  height: 16px;
  contain: strict;
  fill: currentColor;
  vertical-align: middle;
}

:host(.icon-border) {
  border: 1px solid var(--nwwc-sys-color-outline-variant);
  border-radius: var(--nwwc-sys-shape-corner-xs);
  padding: calc(var(--nwwc-sys-space-100) - 1px);
}

.icon-inner,
svg {
  display: block;
  height: 100%;
  width: 100%;
}

/* Icon RTL
 * -----------------------------------------------------------
 */
:host(.flip-rtl) .icon-inner {
  transform: scaleX(-1);
}

:host(.icon-small),
:host(.icon-sm) {
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
}
:host(.icon-small) .icon-inner,
:host(.icon-sm) .icon-inner {
  width: 16px !important;
  height: 16px !important;
}

:host(.icon-medium),
:host(.icon-md),
:host(.icon-default) {
  font-size: 24px !important;
  width: 24px !important;
  height: 24px !important;
}
:host(.icon-medium) .icon-inner,
:host(.icon-md) .icon-inner,
:host(.icon-default) .icon-inner {
  width: 24px !important;
  height: 24px !important;
}

:host(.icon-large),
:host(.icon-lg) {
  font-size: 44px !important;
  width: 44px !important;
  height: 44px !important;
}
:host(.icon-large) .icon-inner,
:host(.icon-lg) .icon-inner {
  width: 44px !important;
  height: 44px !important;
}

:host(.icon-xs),
:host(.icon-xsm) {
  font-size: 12px !important;
  width: 12px !important;
  height: 12px !important;
}
:host(.icon-xs) .icon-inner,
:host(.icon-xsm) .icon-inner {
  width: 12px !important;
  height: 12px !important;
}

:host(.icon-xxs) {
  font-size: 8px !important;
  width: 8px !important;
  height: 8px !important;
}
:host(.icon-xxs) .icon-inner {
  width: 8px !important;
  height: 8px !important;
}

:host(.app-shell-state-button) {
  font-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
}
:host(.app-shell-state-button) .icon-inner {
  width: 18px !important;
  height: 18px !important;
}

:host(.icon--account-selector) {
  font-size: 32px !important;
  width: 32px !important;
  height: 32px !important;
}
:host(.icon--account-selector) .icon-inner {
  width: 32px !important;
  height: 32px !important;
}

:host(.icon-empty-state-variant) {
  font-size: 40px !important;
  width: 40px !important;
  height: 40px !important;
}
:host(.icon-empty-state-variant) .icon-inner {
  width: 40px !important;
  height: 40px !important;
}

:host {
  display: block;
}
:host * {
  box-sizing: border-box;
}

:host([aria-selected]) button {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-surface-container-lowest) 12%, transparent) !important;
}

:host([aria-selected=true]) button {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
}

.nwfb-icon-button {
  cursor: pointer;
  position: relative;
  z-index: 0;
}
.nwfb-icon-button:disabled nwfb-icon {
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-icon-button--variant--ghost:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-icon-button--variant--clear:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-icon-button--normal {
  padding: calc(var(--nwwc-sys-space-100) * 1 - var(--nwwc-sys-shape-size-default));
  cursor: pointer;
}
.nwfb-icon-button--normal .nwfb-button-loader {
  padding: 10px;
}
.nwfb-icon-button--narrow {
  padding: calc(var(--nwwc-sys-space-050) * 1 - var(--nwwc-sys-shape-size-default));
  cursor: pointer;
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--primary:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background-color: var(--nwwc-sys-color-background-transparent);
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--primary:not(:disabled):hover {
  background-color: var(--nwwc-sys-color-background-transparent);
  cursor: pointer;
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--primary:not(:disabled):active {
  background-color: var(--nwwc-sys-color-background-transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--primary:not(:disabled):focus-visible {
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--neutral:not(:disabled) {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--neutral:not(:disabled):hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 8%, transparent);
  cursor: pointer;
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--neutral:not(:disabled):active {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--clear.nwfb-icon-button--accent--neutral:not(:disabled):focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--primary:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--primary:not(:disabled):hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--primary:not(:disabled):active {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--primary:not(:disabled):focus-visible {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--neutral:not(:disabled) {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-background-transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--neutral:not(:disabled):hover {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--neutral:not(:disabled):active {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-icon-button.nwfb-icon-button--variant--ghost.nwfb-icon-button--accent--neutral:not(:disabled):focus-visible {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled {
  color: var(--nwwc-sys-color-on-primary);
  background-color: var(--nwwc-sys-color-primary);
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-primary);
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  border-color: var(--nwwc-sys-color-background-transparent);
  cursor: not-allowed;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:focus-visible {
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled):focus .nwfb-icon-button__ripple::before, .nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled):focus-visible .nwfb-icon-button__ripple::before {
  opacity: 0.16;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple {
  z-index: var(--nwwc-sys-z-index-default);
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple::before, .nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple::after {
  content: "";
  opacity: 0;
  position: absolute;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple::before {
  border-color: #ffffff;
  background-color: #ffffff;
  inset: 0;
  transition: opacity 15ms linear, background-color 15ms linear;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple::after {
  border: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  background: radial-gradient(closest-side, #ffffff, max(100% - 70px, 65%), transparent 100%);
  transform-origin: center center;
  transition: opacity 375ms linear;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple:hover::before {
  opacity: 0.12;
}
.nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple:active::before, .nwfb-icon-button.nwfb-icon-button--variant--filled:not(:disabled) .nwfb-icon-button__ripple:focus-visible::before {
  opacity: 0.16;
}
.nwfb-icon-button.nwfb-icon-button--variant--outlined {
  color: var(--nwwc-sys-color-primary);
  background: none;
  border: solid var(--nwwc-sys-shape-size-default) var(--nwwc-sys-color-primary);
}
.nwfb-icon-button.nwfb-icon-button--variant--outlined:hover:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 8%, transparent);
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-icon-button.nwfb-icon-button--variant--outlined:active:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-icon-button.nwfb-icon-button--variant--outlined:focus-visible:not(:disabled) {
  color: var(--nwwc-sys-color-primary);
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  border-color: var(--nwwc-sys-color-primary);
  outline-style: unset;
}
.nwfb-icon-button.nwfb-icon-button--variant--outlined:disabled {
  color: var(--nwwc-sys-color-on-surface);
  background: none;
  border-color: var(--nwwc-sys-color-outline);
  cursor: not-allowed;
}
.nwfb-icon-button--shape--rounded {
  border-radius: var(--nwwc-sys-shape-corner-xs);
}
.nwfb-icon-button--shape--circular {
  border-radius: 50%;
}
.nwfb-icon-button .nwfb-button-loader {
  position: absolute;
  inset: 0 50% 50% 0;
  transform: scale(0.225);
}
.nwfb-icon-button.nwfb-icon-button--loading {
  cursor: not-allowed;
}
.nwfb-icon-button.nwfb-icon-button--loading nwwc-icon {
  visibility: hidden;
}

:host,
nwfb-label {
  width: 100%;
  display: block;
  min-width: 120px;
  overflow: hidden;
}

:host * {
  box-sizing: border-box;
}

.nwfb-label {
  display: flex;
  margin-bottom: calc(var(--nwwc-sys-space-050) * 1);
  color: var(--nwwc-sys-color-on-surface-variant);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nwfb-label:has(.nwfb-icon--update-icon) {
  justify-content: space-between;
}
.nwfb-label label {
  display: flex;
  font-family: var(--nwwc-sys-typescale-body-sm-font);
  font-size: var(--nwwc-sys-typescale-body-sm-size);
  line-height: var(--nwwc-sys-typescale-body-sm-line-height);
  font-weight: var(--nwwc-sys-typescale-body-sm-weight);
  font-weight: bold;
  gap: var(--nwwc-sys-space-050);
}
.nwfb-label--variant--info .nwfb-icon--update-icon {
  color: var(--nwwc-sys-color-primary);
}
.nwfb-label--variant--warning .nwfb-icon--update-icon {
  color: var(--nwwc-sys-color-warning);
}

nwfb-radio-button {
  width: fit-content;
  margin: unset;
  display: block;
}
nwfb-radio-button *,
nwfb-radio-button *:before,
nwfb-radio-button *:after {
  box-sizing: border-box;
}
nwfb-radio-button:where(.nwfb-radio-group *) {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nwfb-radio-button:where(.nwfb-radio-group *) .nwfb-radio-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nwfb-radio-button:where(.nwfb-radio-group *) .nwfb-radio-button-wrapper--label {
  text-align: center;
  width: 100%;
}
.nwfb-radio-button:where(.nwfb-radio-group *) .nwfb-radio-button-wrapper--label span {
  display: block;
  word-wrap: break-word;
  hyphens: auto;
}
.nwfb-radio-button:where(.nwfb-radio-group *) .nwfb-radio-button-wrapper--label-top {
  text-align: center;
  width: 100%;
}
.nwfb-radio-button:where(.nwfb-radio-group *) .nwfb-radio-button-wrapper--label-top span {
  display: block;
  word-wrap: break-word;
  hyphens: auto;
}
.nwfb-radio-button .nwfb-radio-button-label {
  font-weight: var(--nwwc-sys-typescale-weight-normal);
}
.nwfb-radio-button .nwfb-radio-button-component {
  min-width: 32px;
  position: relative;
  width: 32px;
  height: 32px;
}
.nwfb-radio-button .nwfb-radio-button-component .nwfb-radio-button-hover-focus-indicator {
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  z-index: var(--nwwc-sys-z-index-none);
}
.nwfb-radio-button .nwfb-radio-button-component:hover {
  outline: none;
}
.nwfb-radio-button .nwfb-radio-button-component:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  border-radius: 50%;
}
.nwfb-radio-button .nwfb-radio-button-component:hover:checked:not(:disabled) + .nwfb-radio-button-circle + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
}
.nwfb-radio-button .nwfb-radio-button-component:hover input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-radio-button .nwfb-radio-button-component:hover input[type=radio] {
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-radio-button .nwfb-radio-button-component:active, .nwfb-radio-button .nwfb-radio-button-component:focus-visible {
  outline: none;
}
.nwfb-radio-button .nwfb-radio-button-component:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component:active .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button .nwfb-radio-button-component:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
  border-radius: 50%;
}
.nwfb-radio-button .nwfb-radio-button-component:active:checked:not(:disabled) + .nwfb-radio-button-circle + .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button .nwfb-radio-button-component:focus-visible:checked:not(:disabled) + .nwfb-radio-button-circle + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
}
.nwfb-radio-button .nwfb-radio-button-component:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button .nwfb-radio-button-component:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
}
.nwfb-radio-button .nwfb-radio-button-component:active input[type=radio], .nwfb-radio-button .nwfb-radio-button-component:focus-visible input[type=radio] {
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-on-surface) 16%, transparent);
  border-radius: var(--nwwc-sys-shape-corner-full);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent) !important;
  border-radius: var(--nwwc-sys-shape-corner-full);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 16%, transparent);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):hover {
  outline: none;
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):hover .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
  border-radius: var(--nwwc-sys-shape-corner-full);
}
.nwfb-radio-button .nwfb-radio-button-component input[type=radio]:checked:not(:disabled):hover input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-primary) 12%, transparent);
}
.nwfb-radio-button .nwfb-radio-button-circle {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: var(--nwwc-sys-z-index-none);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nwfb-radio-button .nwfb-radio-button-outer-circle {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-radio-button .nwfb-radio-button-inner-circle {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  border-width: 10px;
  border-style: solid;
  border-radius: 50%;
  transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.nwfb-radio-button input[type=radio] {
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: var(--nwwc-sys-z-index-default);
}
.nwfb-radio-button input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-inner-circle {
  border-color: var(--nwwc-sys-color-primary);
  transform: scale(0.5);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}
.nwfb-radio-button input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle {
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-radio-button-label--position-top.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper {
  display: flex;
  align-items: center;
  gap: var(--nwwc-sys-space-025);
  height: 24px;
}
.nwfb-radio-button-label--position-top.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper--label-top {
  order: 1;
}
.nwfb-radio-button-label--position-top.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper--label-top span {
  color: var(--nwwc-sys-color-on-surface);
  text-align: center;
  display: block;
  font-size: var(--nwwc-sys-typescale-size-sm);
  line-height: var(--nwwc-sys-space-175);
  font-weight: var(--nwwc-sys-typescale-weight-bold);
}
.nwfb-radio-button-label--position-top.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper .nwfb-radio-button-component {
  order: 2;
}
.nwfb-radio-button-label--position-right.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 24px;
}
.nwfb-radio-button-label--position-right.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper--label span {
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-radio-button-label--position-left.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 24px;
  flex-direction: row-reverse;
}
.nwfb-radio-button-label--position-left.nwfb-radio-button--size-xs .nwfb-radio-button-wrapper--label span {
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-inner-circle {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:hover {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 50%;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:hover input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:hover input[type=radio] {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:active, .nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:active .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 50%;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:active:checked:not(:disabled) + .nwfb-radio-button-circle + .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible:checked:not(:disabled) + .nwfb-radio-button-circle + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:active input[type=radio], .nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible input[type=radio] {
  border-color: var(--nwwc-sys-color-primary);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent) !important;
  border-radius: 50%;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 12%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover input[type=radio] {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: 50%;
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible input[type=radio],
.nwfb-radio-button.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active input[type=radio] {
  border-color: var(--nwwc-sys-color-error);
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent);
  border-radius: var(--nwwc-sys-shape-corner-full);
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:active + .nwfb-radio-button-hover-focus-indicator:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible {
  outline: none;
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent) !important;
  border-radius: var(--nwwc-sys-shape-corner-full);
}
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):active + .nwfb-radio-button-hover-focus-indicator:active input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--invalid input[type=radio]:checked:not(:disabled):focus-visible + .nwfb-radio-button-hover-focus-indicator:focus-visible input[type=radio]:checked:not(:disabled) + .nwfb-radio-button-component--icon + .nwfb-radio-button-hover-focus-indicator {
  background-color: color-mix(in srgb, var(--nwwc-sys-color-error) 16%, transparent);
}
.nwfb-radio-button.nwfb-radio-button--disabled, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid {
  cursor: not-allowed;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-wrapper--label span, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-wrapper--label span {
  color: var(--nwwc-sys-color-on-surface) !important;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle,
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-inner-circle, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-outer-circle,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-circle > .nwfb-radio-button-inner-circle {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  opacity: var(--nwwc-sys-opacity-disabled);
  cursor: not-allowed;
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio] + .nwfb-radio-button-component--icon, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio] + .nwfb-radio-button-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio] + .nwfb-radio-button-component--icon svg, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio] + .nwfb-radio-button-component--icon svg {
  opacity: 0;
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio]:checked + .nwfb-radio-button-component--icon, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  background: var(--nwwc-sys-color-on-surface-variant);
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio]:checked + .nwfb-radio-button-component--icon svg, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio]:checked + .nwfb-radio-button-component--icon svg {
  opacity: 1;
}
.nwfb-radio-button.nwfb-radio-button--disabled input[type=radio]:checked, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid input[type=radio]:checked {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-component--icon, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-component--icon {
  border-color: var(--nwwc-sys-color-on-surface-variant);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:active .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:focus-visible .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:active .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible .nwfb-radio-button-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:active input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:focus-visible input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:active input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:focus-visible input[type=radio] {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:focus-visible,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:active,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:hover, .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover {
  outline: none;
  cursor: not-allowed;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:hover .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover .nwfb-radio-button-hover-focus-indicator, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover ~ .nwfb-radio-button-hover-focus-indicator,
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover .nwfb-radio-button-hover-focus-indicator {
  background-color: transparent !important;
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:focus-visible input[type=radio],
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:active input[type=radio],
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component input[type=radio]:hover input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-component:hover input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:focus-visible input[type=radio],
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:active input[type=radio],
.nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component input[type=radio]:hover input[type=radio], .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-component:hover input[type=radio] {
  border-color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-radio-button.nwfb-radio-button--disabled .nwfb-radio-button-label, .nwfb-radio-button.nwfb-radio-button--disabled.nwfb-radio-button--invalid .nwfb-radio-button-label {
  opacity: var(--nwwc-sys-opacity-disabled);
}
.nwfb-radio-button.nwfb-radio-button--size-xs input[type=radio] {
  width: 32px;
  height: 32px;
}
.nwfb-radio-button.nwfb-radio-button--size-xs .nwfb-radio-button-label {
  font-size: var(--nwwc-sys-typescale-size-sm);
  line-height: var(--nwwc-sys-space-175);
  font-weight: var(--nwwc-sys-typescale-weight-bold);
}
.nwfb-radio-button .nwfb-radio-button-wrapper--label {
  pointer-events: none;
  cursor: default;
}

:host {
  display: block;
}

:host {
  display: block;
}

.nwfb-radio-group-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

:host nwwc-radio-group .nwwc-message-container--error,
:host nwwc-radio-group .nwwc-message-container--message--error {
  padding-left: var(--nwwc-sys-space-150, 12px);
}

nwfb-radio-group {
  cursor: pointer;
  width: fit-content;
  margin: unset;
  display: block;
  width: 100%;
  height: 100%;
}
nwfb-radio-group *,
nwfb-radio-group *:before,
nwfb-radio-group *:after {
  box-sizing: border-box;
}

.nwfb-radio-group {
  width: 100%;
  display: block;
}
.nwfb-radio-group-label {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-family: var(--nwwc-sys-typescale-body-sm-font);
  font-size: var(--nwwc-sys-typescale-body-sm-size);
  line-height: var(--nwwc-sys-typescale-body-sm-line-height);
  font-weight: var(--nwwc-sys-typescale-body-sm-weight);
  color: var(--nwwc-sys-color-on-surface-variant);
  font-weight: bold;
}
.nwfb-radio-group-label-custom {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-size-md);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight-normal);
  color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-radio-group--spacing .nwfb-radio-group__item {
  padding-bottom: var(--nwwc-sys-space-100);
}
.nwfb-radio-group--orientation-horizontal .nwfb-radio-group__item {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: var(--nwwc-sys-space-150);
}
.nwfb-radio-group--orientation-horizontal .nwfb-radio-group__item nwfb-radio-button {
  flex: 1;
}
.nwfb-radio-group--orientation-vertical .nwfb-radio-group__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--nwwc-sys-space-250);
}
.nwfb-radio-group--orientation-vertical .nwfb-radio-group__item nwfb-radio-button {
  width: 100%;
}

:host,
nwfb-textarea {
  width: 100%;
  min-width: 120px;
  overflow: hidden;
  display: block;
}

.nwfb-textarea {
  overflow: hidden;
  position: relative;
}
.nwfb-textarea * {
  box-sizing: border-box;
}
.nwfb-textarea textarea {
  width: 100%;
  min-width: 120px;
  height: 40px;
  padding-left: calc(var(--nwwc-sys-space-050) * 3 - var(--nwwc-sys-shape-size-default));
  padding-right: calc(var(--nwwc-sys-space-050) * 2 - var(--nwwc-sys-shape-size-default));
  border: var(--nwwc-sys-shape-size-default) solid var(--nwwc-sys-color-outline);
  border-radius: var(--nwwc-sys-shape-corner-xs);
  line-height: var(--line-height);
  color: var(--nwwc-sys-color-on-surface-variant);
  background: var(--nwwc-sys-color-surface-container-lowest);
  resize: none;
  overflow: hidden;
}
.nwfb-textarea textarea:active, .nwfb-textarea textarea:focus, .nwfb-textarea textarea:hover {
  border: var(--nwwc-sys-shape-size-default) solid var(--nwwc-sys-color-primary);
  box-shadow: none;
  outline: none;
  color: var(--nwwc-sys-color-on-surface);
}
.nwfb-textarea textarea:disabled {
  background: var(--nwwc-sys-color-surface-container-lowest);
  border: var(--nwwc-sys-shape-size-default) solid color-mix(in srgb, var(--nwwc-sys-color-on-surface) 12%, transparent);
  opacity: var(--nwwc-sys-opacity-disabled);
  cursor: not-allowed;
}
.nwfb-textarea textarea:disabled ~ nwwc-icon {
  opacity: var(--nwwc-sys-opacity-disabled);
  cursor: not-allowed;
}
.nwfb-textarea .nwfb-textarea__wrapper {
  position: relative;
}
.nwfb-textarea .nwfb-textarea__wrapper .nwfb-textarea-character-count {
  display: flex;
  justify-content: flex-end;
  font-family: var(--nwwc-sys-typescale-body-sm-font);
  font-size: var(--nwwc-sys-typescale-body-sm-size);
  line-height: var(--nwwc-sys-typescale-body-sm-line-height);
  font-weight: var(--nwwc-sys-typescale-body-sm-weight);
  color: var(--nwwc-sys-color-on-surface-variant);
}
.nwfb-textarea.nwfb-textarea--height textarea {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  padding: var(--nwwc-sys-space-150);
}
.nwfb-textarea.nwfb-textarea--height--normal textarea {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  height: 60px;
  padding: var(--nwwc-sys-space-150);
}
.nwfb-textarea.nwfb-textarea--height--narrow textarea {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  height: 52px;
  padding: var(--nwwc-sys-space-150);
}
.nwfb-textarea.nwfb-textarea--height--large textarea {
  font-family: var(--nwwc-sys-typescale-body-md-font);
  font-size: var(--nwwc-sys-typescale-body-md-size);
  line-height: var(--nwwc-sys-typescale-body-md-line-height);
  font-weight: var(--nwwc-sys-typescale-body-md-weight);
  height: 282px;
  padding: var(--nwwc-sys-space-150);
}
.nwfb-textarea.nwfb-textarea--resize--none textarea {
  overflow: auto;
}

:host {
  font-family: var(--nwwc-sys-typescale-body-md-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
}
