:where([class^=uxt-], [class*=" uxt-"]) {
  box-sizing: border-box;
}

:where([class^=uxt-], [class*=" uxt-"]) *,
:where([class^=uxt-], [class*=" uxt-"]) *::before,
:where([class^=uxt-], [class*=" uxt-"]) *::after {
  box-sizing: inherit;
}

:where([class^=uxt-], [class*=" uxt-"]) :where(button, input, textarea, select) {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
}

:where([class^=uxt-], [class*=" uxt-"]) button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:where([class^=uxt-], [class*=" uxt-"]) :where(img, svg) {
  display: block;
  max-width: 100%;
}

@keyframes uxt-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes uxt-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes uxt-scale-in {
  from {
    opacity: 0;
    transform: scale(var(--uxt-theme-animation-scale-from));
  }
  to {
    opacity: 1;
    transform: scale(var(--uxt-theme-animation-scale-to));
  }
}
@keyframes uxt-scale-out {
  from {
    opacity: 1;
    transform: scale(var(--uxt-theme-animation-scale-to));
  }
  to {
    opacity: 0;
    transform: scale(var(--uxt-theme-animation-scale-from));
  }
}
@keyframes uxt-slide-in-up {
  from {
    transform: translateY(var(--uxt-theme-animation-slide-distance));
  }
  to {
    transform: translateY(0);
  }
}
@keyframes uxt-slide-in-down {
  from {
    transform: translateY(calc(var(--uxt-theme-animation-slide-distance) * -1));
  }
  to {
    transform: translateY(0);
  }
}
@keyframes uxt-slide-in-left {
  from {
    transform: translateX(var(--uxt-theme-animation-slide-distance));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes uxt-slide-in-right {
  from {
    transform: translateX(calc(var(--uxt-theme-animation-slide-distance) * -1));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes uxt-slide-out-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(var(--uxt-theme-animation-slide-distance) * -1));
  }
}
@keyframes uxt-slide-out-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--uxt-theme-animation-slide-distance));
  }
}
@keyframes uxt-slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(var(--uxt-theme-animation-slide-distance) * -1));
  }
}
@keyframes uxt-slide-out-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--uxt-theme-animation-slide-distance));
  }
}
@keyframes uxt-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(var(--uxt-theme-animation-fade-slide-distance));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uxt-fade-in-down {
  from {
    opacity: 0;
    transform: translateY(calc(var(--uxt-theme-animation-fade-slide-distance) * -1));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uxt-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(var(--uxt-theme-animation-fade-slide-distance));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uxt-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(calc(var(--uxt-theme-animation-fade-slide-distance) * -1));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uxt-fade-in-scale {
  from {
    opacity: 0;
    transform: scale(var(--uxt-theme-animation-scale-from));
  }
  to {
    opacity: 1;
    transform: scale(var(--uxt-theme-animation-scale-to));
  }
}
@keyframes uxt-fade-out-scale {
  from {
    opacity: 1;
    transform: scale(var(--uxt-theme-animation-scale-to));
  }
  to {
    opacity: 0;
    transform: scale(var(--uxt-theme-animation-scale-from));
  }
}
@keyframes uxt-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes uxt-circular-dash {
  0% {
    stroke-dasharray: var(--uxt-theme-animation-circular-dash-start), var(--uxt-theme-animation-circular-dash-gap);
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: var(--uxt-theme-animation-circular-dash-mid), var(--uxt-theme-animation-circular-dash-gap);
    stroke-dashoffset: var(--uxt-theme-animation-circular-dash-offset-mid);
  }
  100% {
    stroke-dasharray: var(--uxt-theme-animation-circular-dash-mid), var(--uxt-theme-animation-circular-dash-gap);
    stroke-dashoffset: var(--uxt-theme-animation-circular-dash-offset-end);
  }
}
@keyframes uxt-linear-indeterminate-1 {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes uxt-linear-indeterminate-2 {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes uxt-ripple {
  from {
    opacity: var(--uxt-theme-animation-ripple-opacity);
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(var(--uxt-theme-animation-ripple-scale));
  }
}
@keyframes uxt-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: var(--uxt-theme-animation-pulse-min-opacity);
  }
  100% {
    opacity: 1;
  }
}
@keyframes uxt-shimmer {
  0% {
    background-position: var(--uxt-theme-animation-shimmer-from) 0;
  }
  100% {
    background-position: var(--uxt-theme-animation-shimmer-to) 0;
  }
}
@keyframes uxt-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(calc(var(--uxt-theme-animation-shake-distance) * -1));
  }
  20%, 40%, 60%, 80% {
    transform: translateX(var(--uxt-theme-animation-shake-distance));
  }
}
@keyframes uxt-collapse {
  from {
    max-height: var(--uxt-theme-animation-collapse-height);
    opacity: 1;
    overflow: hidden;
  }
  to {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
}
@keyframes uxt-expand {
  from {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  to {
    max-height: var(--uxt-theme-animation-collapse-height);
    opacity: 1;
    overflow: hidden;
  }
}
.uxt-width-full {
  width: 100%;
}

.uxt-height-full {
  height: 100%;
}

.uxt-size-full {
  width: 100%;
  height: 100%;
}

.uxt-inline-full {
  inline-size: 100%;
}

.uxt-block-full {
  block-size: 100%;
}

.uxt-size-full-logical {
  inline-size: 100%;
  block-size: 100%;
}

.uxt-visible {
  visibility: visible;
  display: revert;
}

.uxt-hidden {
  visibility: hidden;
}

.uxt-collapsed {
  display: none;
}

.uxt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

html,
body,
* {
  font-size: 1rem !important;
  font-family: "Noto Sans";
  line-height: normal !important;
  letter-spacing: normal !important;
  color: var(--uxt-theme-palette-text-primary) !important;
  fill: var(--uxt-theme-palette-glyph-default) !important;
}

header.container {
  background-color: var(--uxt-theme-palette-background-sidebar);
}

.storybook-explorer-tree {
  position: relative;
}

.sidebar-item svg {
  color: var(--uxt-theme-palette-text-primary) !important;
  fill: var(--uxt-theme-palette-glyph-default) !important;
  width: 1rem;
  height: 1rem;
}

.sidebar-item {
  color: var(--uxt-theme-palette-text-primary) !important;
  fill: var(--uxt-theme-palette-glyph-default) !important;
}

.sidebar-item[data-nodetype=story] {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  color: var(--uxt-theme-palette-text-primary);
  flex: 1 1 auto;
}
.sidebar-item[data-nodetype=story]:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}
.sidebar-item[data-nodetype=story]:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}

.sidebar-item[data-nodetype=story] a {
  display: none;
}

.sidebar-item[data-nodetype=story] a[tabindex="-1"] {
  width: 100%;
  display: inline-flex;
}

.sidebar-item[data-nodetype=story] svg {
  fill: var(--uxt-theme-palette-text-secondary) !important;
}

.sidebar-item[data-nodetype=document] {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  padding-top: 4px;
  padding-bottom: 4px;
  text-wrap: balance;
}
.sidebar-item[data-nodetype=document]:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}
.sidebar-item[data-nodetype=document]:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}

.sidebar-item[data-nodetype=document] a {
  display: none;
}

.sidebar-item[data-nodetype=document] a[tabindex="-1"] {
  width: 100%;
  display: inline-flex;
}

.sidebar-item[data-nodetype=component] {
  font-size: 1rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  gap: 0.5rem;
  color: var(--uxt-theme-palette-text-primary) !important;
}
.sidebar-item[data-nodetype=component]:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}
.sidebar-item[data-nodetype=component]:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}
.sidebar-item[data-nodetype=component]:focus:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}
.sidebar-item[data-nodetype=component]:focus:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}

.sidebar-item[data-nodetype=component] a {
  display: none;
}

.sidebar-item[data-nodetype=component] a:first-of-type {
  width: 100%;
  display: inline-flex;
}

.sidebar-item[data-nodetype=component] svg:first-of-type {
  display: none;
}

.sidebar-item[data-nodetype=group] {
  height: var(--uxt-theme-height-item);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  color: var(--uxt-theme-palette-text-primary) !important;
}
.sidebar-item[data-nodetype=group]:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}
.sidebar-item[data-nodetype=group]:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}
.sidebar-item[data-nodetype=group]:has([data-selected=true]) {
  background: var(--uxt-theme-palette-action-selected);
}

.sidebar-item[data-nodetype=group] button {
  gap: calc(var(--uxt-theme-spacing) * 2) !important;
  align-items: center;
}

.sidebar-item[data-nodetype=group] button > div {
  margin-top: unset !important;
}

.sidebar-item[data-nodetype=group] button > div > div:first-child {
  display: none !important;
}

.sidebar-item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.sidebar-item:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}

.sidebar-item:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}

.sidebar-item:not([data-selected=true]):focus {
  background-color: inherit;
  background: inherit;
}

.sidebar-item[data-selected=true] {
  outline: none;
  background-color: var(--uxt-theme-palette-action-selected) !important;
  color: var(--uxt-theme-palette-text-primary) !important;
}

.sidebar-item[data-selected=true] svg {
  fill: var(--uxt-theme-palette-text-secondary) !important;
}

div[data-testid=tooltip] a span {
  color: var(--uxt-theme-palette-text-primary) !important;
}

.sidebar-subheading[data-nodetype=root] {
  font-size: 1.5rem !important;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: stretch;
  position: relative;
  cursor: pointer;
  color: var(--uxt-theme-palette-text-primary) !important;
  fill: var(--uxt-theme-palette-text-primary) !important;
  text-transform: capitalize !important;
  width: 100%;
  flex: 1 1 auto;
}

.sidebar-subheading[data-nodetype=root] button:first-of-type {
  width: 100%;
  height: 100%;
  gap: 1rem;
  min-height: 3rem;
  justify-content: flex-start;
  color: var(--uxt-theme-palette-text-primary) !important;
  fill: var(--uxt-theme-palette-text-primary) !important;
}

.sidebar-subheading[data-nodetype=root] button:hover {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-hover-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-hover-opacity) * 100%));
}

.sidebar-subheading[data-nodetype=root] button:active {
  background: color-mix(in srgb, var(--uxt-theme-palette-action-overlay-background) calc(var(--uxt-theme-palette-action-active-opacity) * 100%), var(--uxt-theme-palette-background-sidebar) calc(100% - var(--uxt-theme-palette-action-active-opacity) * 100%));
}

.sidebar-item[aria-expanded=false] span:first-of-type {
  border-style: solid;
  border-width: 2px 2px 0px 0px;
  border-color: var(--uxt-theme-palette-text-secondary);
  display: block;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  transform-origin: center;
  align-self: center;
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.sidebar-item[aria-expanded=true] span:first-of-type {
  border-style: solid;
  border-width: 2px 2px 0px 0px;
  border-color: var(--uxt-theme-palette-text-secondary);
  display: block;
  height: 8px;
  width: 8px;
  transform: rotate(135deg);
  transform-origin: center;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  align-self: center;
}

.sidebar-subheading button[aria-expanded=false] span:first-of-type {
  border-style: solid;
  border-width: 2px 2px 0px 0px;
  border-color: var(--uxt-theme-palette-text-secondary);
  display: block;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  transform-origin: center;
  align-self: center;
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.sidebar-subheading button[aria-expanded=true] span:first-of-type {
  border-style: solid;
  border-width: 2px 2px 0px 0px;
  border-color: var(--uxt-theme-palette-text-secondary);
  display: block;
  height: 8px;
  width: 8px;
  transform: rotate(135deg);
  transform-origin: center;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  align-self: center;
}

.tabbutton {
  font-weight: 400 !important;
}

.tabbutton-selected {
  font-weight: 500 !important;
  color: var(--uxt-theme-palette-primary-main);
}

#storybook-explorer-searchfield {
  color: var(--uxt-theme-palette-text-primary);
}

#storybook-explorer-searchfield::placeholder {
  color: var(--uxt-theme-palette-text-secondary);
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--uxt-theme-palette-text-secondary);
  background-color: transparent;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  margin: 0;
  margin-right: 8px;
}

input[type=radio]:checked {
  border-color: var(--uxt-theme-palette-primary-main);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--uxt-theme-palette-primary-main);
}

input[type=radio]:hover {
  border-color: var(--uxt-theme-palette-primary-main);
}

label:has(input[type=checkbox][role=switch]) {
  color: var(--uxt-theme-palette-text-primary);
}

label:has(input[type=checkbox][role=switch]) input:checked {
  border-color: var(--uxt-theme-palette-action-selected);
  color: var(--uxt-theme-palette-text-primary);
}

label:has(input[type=checkbox][role=switch]) span[aria-hidden=true] {
  color: var(--uxt-theme-palette-text-primary);
}
