:host {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--gse-ui-menu-option-gap);
  align-content: stretch;
  align-items: center;
  min-block-size: var(--gse-ui-menu-option-height);
  padding: var(--gse-ui-menu-option-padding);
  font-family: var(--gse-ui-menu-option-label-default-text-fontFamily);
  font-size: var(--gse-ui-menu-option-label-default-text-fontSize);
  font-weight: var(--gse-ui-menu-option-label-default-text-fontWeight);
  line-height: var(--gse-ui-menu-option-label-default-text-lineHeight);
  color: var(--gse-ui-menu-option-label-foregroundColor);
  overflow-wrap: break-word;
  cursor: pointer;
}
:host .gux-option-wrapper {
  inline-size: 100%;
  min-inline-size: 0;
  user-select: none;
}
:host .gux-checkbox-container {
  position: relative;
  display: inline-block;
  min-inline-size: var(--gse-ui-menu-option-startIcon-width);
  max-inline-size: var(--gse-ui-menu-option-startIcon-width);
  block-size: var(--gse-ui-menu-option-startIcon-height);
  content: "";
}
:host .gux-checkbox-container > path {
  fill: var(--gse-ui-menu-option-checkbox-unchecked-default-foregroundColor);
}
:host:host(.gux-disabled) {
  opacity: var(--gse-ui-menu-option-disabled-opacity);
  pointer-events: none;
  cursor: default;
}
:host:host(:active:not(:disabled)) {
  font-family: var(--gse-ui-menu-option-label-active-text-fontFamily);
  font-size: var(--gse-ui-menu-option-label-active-text-fontSize);
  font-weight: var(--gse-ui-menu-option-label-active-text-fontWeight);
  line-height: var(--gse-ui-menu-option-label-active-text-lineHeight);
}
:host:host(.gux-selected) {
  font-family: var(--gse-ui-menu-option-label-active-text-fontFamily);
  font-size: var(--gse-ui-menu-option-label-active-text-fontSize);
  font-weight: var(--gse-ui-menu-option-label-active-text-fontWeight);
  line-height: var(--gse-ui-menu-option-label-active-text-lineHeight);
  background-color: var(--gse-ui-menu-option-selected-backgroundColor);
}
:host:host(.gux-selected) .gux-checkbox-container > path {
  fill: var(--gse-ui-menu-option-checkbox-checked-selected-foregroundColor);
}
:host:host(.gux-active) {
  outline: var(--gse-ui-menu-option-focus-border-width) var(--gse-ui-menu-option-focus-border-style) var(--gse-ui-menu-option-focus-border-color);
  outline-offset: -2px;
  border-radius: var(--gse-semantic-focusOutline-sm-borderRadius);
}
:host:host(.gux-show-subtext) {
  place-content: stretch flex-start;
  block-size: auto;
  padding: var(--gse-ui-menu-option-subtext-padding);
}
:host:host(.gux-show-subtext) .gux-option-wrapper {
  display: flex;
  flex-direction: column;
}
:host:host(.gux-show-subtext) slot[name=subtext]::slotted(*) {
  font-weight: var(--gse-ui-menu-option-label-default-text-fontWeight);
  color: var(--gse-ui-menu-groupedMenu-subtext-foregroundColor);
}
:host:host(:hover:not([disabled])) {
  background-color: var(--gse-ui-menu-option-hover-backgroundColor);
}
:host:host(:hover:not([disabled])):host(.gux-selected) .gux-checkbox-container > path {
  fill: var(--gse-ui-menu-option-checkbox-checked-hover-foregroundColor);
}
:host:host(:hover:not([disabled])):host(:not(.gux-selected)) .gux-checkbox-container > path {
  fill: var(--gse-ui-menu-option-checkbox-unchecked-hover-foregroundColor);
}
:host:host(.gux-filtered) {
  display: none;
}