@charset "UTF-8";
.nestedGroups.ThemeNestedGroupsColumns {
  display: block;
  width: 100%;
  height: fit-content;
  position: sticky;
  top: 0;
  overflow: visible;
  columns: 260px;
  column-gap: var(--sizeM);
}
.nestedGroups.ThemeNestedGroupsColumns[data-active] .group.ghost > .groupInfo {
  background-color: var(--colorPrimary);
  color: var(--colorPrimaryAlt);
}
.nestedGroups.ThemeNestedGroupsColumns[data-active] .group.drag > .groupInfo {
  background-color: var(--colorNeutral);
  color: var(--colorNeutralLight);
}
.nestedGroups.ThemeNestedGroupsColumns[data-active] .group:not(.ghost) > .subgroups:empty {
  padding: 0px 0px 0px 30px;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 130px;
  z-index: 1111;
  height: 0px;
  min-height: 100%;
  right: 0;
  border: 1px solid var(--colorShadow);
  background-color: var(--colorShadowLighter);
}
.nestedGroups.ThemeNestedGroupsColumns[data-active] .group:not(.ghost) > .subgroups:empty:before {
  content: "";
  font-weight: 900;
  font-family: var(--iconFamily);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--colorText);
  background-color: transparent;
}
.nestedGroups.ThemeNestedGroupsColumns[data-active] .group > .subgroups {
  transition: 0.15s all ease;
}
.nestedGroups.ThemeNestedGroupsColumns > .group > .groupInfo {
  font-size: var(--fontNestedXL);
  text-transform: uppercase;
}
.nestedGroups.ThemeNestedGroupsColumns .group {
  display: block;
  position: relative;
  page-break-inside: avoid;
  break-inside: avoid;
  columns: 260px;
  column-gap: var(--sizeM);
}
.nestedGroups.ThemeNestedGroupsColumns .group .groupInfo {
  font-size: var(--fontNestedL);
  font-weight: bold;
}
.nestedGroups.ThemeNestedGroupsColumns .group .groupInfo[data-active] {
  color: var(--colorPrimary);
}
.nestedGroups.ThemeNestedGroupsColumns .group .groupInfo:not([data-active]):hover {
  background-color: var(--colorTextAlt);
}
.nestedGroups.ThemeNestedGroupsColumns .group .groupInfo > .orderNumber {
  background-color: var(--colorNeutralLight);
  border-radius: inherit;
  margin: 0;
  min-width: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  margin-right: 10px;
}
.nestedGroups.ThemeNestedGroupsColumns .group .subgroups {
  position: relative;
  padding-left: var(--sizeM);
  border-left: 1px solid var(--colorShadow);
  margin: var(--sizeS) 0;
  border-bottom-left-radius: var(--sizeS);
  padding-bottom: var(--sizeS);
}
.nestedGroups.ThemeNestedGroupsColumns .group .subgroups > .group {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.nestedGroups.ThemeNestedGroupsColumns .group .subgroups > .group > .groupInfo {
  font-size: var(--fontNestedS);
}
.nestedGroups.ThemeNestedGroupsColumns .group .subgroups > .group > .groupInfo > a {
  font-weight: normal !important;
}
