virtual-scroll {
  display: block;
  width: 100%;
}

.stackline-dropdown,
.dropdown-list.skin-material,
.dropdown-list.theme-material {
  --ms-primary: #3f51b5;
  --ms-primary-soft: rgba(63, 81, 181, 0.12);
  --ms-surface: #ffffff;
  --ms-surface-soft: #f5f7fb;
  --ms-surface-muted: #e8eaf6;
  --ms-outline: #c5cae9;
  --ms-outline-strong: #7986cb;
  --ms-on-surface: #212121;
  --ms-on-surface-muted: #5f6368;
  --ms-chip-bg: #e8eaf6;
  --ms-chip-text: #303f9f;
  --ms-chip-remove: #303f9f;
  --ms-shadow: 0 1px 2px rgba(33, 33, 33, 0.16), 0 12px 32px rgba(63, 81, 181, 0.12);
  --ms-shadow-soft: 0 1px 2px rgba(33, 33, 33, 0.12), 0 4px 12px rgba(33, 33, 33, 0.08);
  color: var(--ms-on-surface, #212121);
  font: inherit;
}

.stackline-dropdown {
  position: relative;
  display: block;
  width: 100%;
}

.selected-list {
  width: 100%;
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 11px 54px 11px 16px;
  border-radius: 18px;
  border: 1px solid var(--ms-outline, #c5cae9);
  background: var(--ms-surface, #ffffff);
  box-shadow: var(--ms-shadow-soft, 0 1px 2px rgba(33, 33, 33, 0.12), 0 4px 12px rgba(33, 33, 33, 0.08));
  cursor: pointer;
  line-height: 1.45;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.c-btn:hover {
  border-color: var(--ms-outline-strong, #7986cb);
}

.c-btn.is-active {
  border-color: var(--ms-primary, #3f51b5);
  box-shadow: 0 0 0 3px rgba(103, 80, 164, 0.14), var(--ms-shadow-soft, 0 1px 2px rgba(33, 33, 33, 0.12), 0 4px 12px rgba(33, 33, 33, 0.08));
}

.c-btn:focus-visible {
  outline: 3px solid rgba(63, 81, 181, 0.32);
  outline-offset: 2px;
}

.c-btn.disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.c-placeholder,
.c-single-value {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
  min-width: 0;
  max-width: 100%;
  color: var(--ms-on-surface-muted, #5f6368);
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: left;
}

.c-btn.has-selection .c-single-value,
.c-btn.has-selection .c-placeholder {
  color: var(--ms-on-surface, #212121);
  font-weight: 500;
}

.c-list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.c-chip-list {
  padding-right: 8px;
}

.c-token {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  min-height: 32px;
  max-width: 100%;
  padding: 6px 30px 6px 12px;
  border-radius: 999px;
  background: var(--ms-chip-bg, #e8eaf6);
  color: var(--ms-chip-text, #303f9f);
  box-shadow: inset 0 0 0 1px rgba(103, 80, 164, 0.08);
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.c-token .c-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  line-height: 1.3;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: anywhere;
}

.c-remove {
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: var(--ms-chip-remove, #303f9f);
}

button.c-remove,
button.c-clear,
button.c-arrow-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

button.c-arrow-toggle:disabled {
  cursor: not-allowed;
}

.c-remove:focus-visible,
.list-filter .c-clear:focus-visible,
.c-arrow-toggle:focus-visible {
  outline: 3px solid rgba(63, 81, 181, 0.32);
  outline-offset: 2px;
}

.c-remove svg,
.c-angle-down svg,
.c-angle-up svg {
  fill: currentColor;
}

.c-remove c-icon {
  display: inline-flex;
  width: 10px;
  height: 10px;
  line-height: 0;
}

.clear-all c-icon {
  width: 12px;
  height: 12px;
}

.clear-all {
  position: absolute;
  top: 50%;
  right: 42px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: var(--ms-on-surface-muted, #5f6368);
}

.countplaceholder {
  position: absolute;
  top: 50%;
  right: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: translateY(-50%);
  color: var(--ms-on-surface-muted, #5f6368);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.c-btn.has-overflow {
  padding-right: 94px;
}

.c-angle-down,
.c-angle-up {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: var(--ms-on-surface-muted, #5f6368);
  pointer-events: auto;
}

.dropdown-list {
  position: absolute;
  right: 0;
  left: 0;
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding-top: 8px;
  z-index: 99999;
}

.dropdown-list[hidden] {
  display: none !important;
}

.dropdown-list.is-open {
  position: fixed;
  right: auto;
  max-width: calc(100vw - 16px);
  z-index: 100000;
}

.dropdown-list.tagToBody {
  position: fixed;
  right: auto;
  max-width: calc(100vw - 16px);
  z-index: 100000;
}

.arrow-up,
.arrow-down,
.arrow-2 {
  display: none;
}

.list-area {
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ms-surface, #ffffff);
  border: 1px solid var(--ms-outline, #c5cae9);
  box-shadow: var(--ms-shadow, 0 1px 2px rgba(33, 33, 33, 0.16), 0 12px 32px rgba(63, 81, 181, 0.12));
}

.select-all,
.filter-select-all {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(125, 119, 134, 0.16);
  background: var(--ms-surface-soft, #f5f7fb);
}

.list-filter {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding-left: 48px;
  padding-right: 44px;
  border-bottom: 1px solid rgba(125, 119, 134, 0.16);
  background: var(--ms-surface, #ffffff);
}

.list-filter .c-input,
.list-filter input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ms-on-surface, #212121);
  font: inherit;
}

.list-filter .c-input::placeholder,
.list-filter input::placeholder {
  color: var(--ms-on-surface-muted, #5f6368);
}

.list-filter .c-input:focus,
.list-filter input:focus {
  outline: none;
}

.list-filter .c-search,
.list-filter .c-clear {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--ms-on-surface-muted, #5f6368);
}

.list-filter .c-search {
  left: 16px;
}

.list-filter .c-clear {
  right: 16px;
  cursor: pointer;
}

.btn-container {
  padding: 10px 14px 14px;
  text-align: center;
}

.stackline-menu-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(125, 119, 134, 0.16);
  background: var(--ms-surface, #ffffff);
  color: var(--ms-on-surface-muted, #5f6368);
  font-size: 0.85rem;
}

.btn-iceblue {
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ms-primary, #3f51b5);
  color: #ffffff;
  font-weight: 600;
}

.dropdown-list ul {
  list-style: none;
  margin: 0;
  padding: 8px;
  overflow: auto;
  background: var(--ms-surface, #ffffff);
}

.dropdown-list ul li {
  align-items: center;
  min-height: 0;
  margin: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  transition: background-color 160ms ease, color 160ms ease;
}

.dropdown-list ul li:hover {
  background: var(--ms-surface-soft, #f5f7fb);
}

.dropdown-list ul li:focus-visible {
  outline: 3px solid rgba(63, 81, 181, 0.32);
  outline-offset: 2px;
}

.dropdown-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.selected-item {
  background: var(--ms-primary-soft, rgba(63, 81, 181, 0.12)) !important;
  color: var(--ms-primary, #3f51b5);
}

.selected-item:hover {
  background: rgba(103, 80, 164, 0.18) !important;
}

.grp-item {
  padding-left: 42px !important;
}

.grp-title {
  margin-top: 6px;
  padding-top: 10px !important;
  padding-bottom: 8px !important;
  background: transparent !important;
  color: var(--ms-on-surface-muted, #5f6368);
  cursor: default !important;
}

.grp-title label {
  margin-bottom: 0 !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grp-title:hover {
  background: transparent !important;
}

.pure-checkbox {
  position: relative;
}

.pure-checkbox input[type="checkbox"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.pure-checkbox input[type="checkbox"] + label {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding-left: 32px;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
}

.pure-checkbox input[type="checkbox"] + label::before {
  box-sizing: content-box;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  border: 2px solid var(--ms-outline-strong, #7986cb);
  border-radius: 6px;
  background: var(--ms-surface, #ffffff);
  transition: all 0.18s ease;
}

.pure-checkbox input[type="checkbox"] + label::after {
  box-sizing: content-box;
  content: '';
  position: absolute;
  top: 50%;
  left: 11px;
  width: 8px;
  height: 4px;
  margin-top: 0;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: #ffffff;
  transform: translate(-50%, -58%) rotate(-45deg) scale(0);
  transform-origin: 50%;
  transition: transform 160ms ease-out;
}

.pure-checkbox input[type="checkbox"]:focus + label::before,
.pure-checkbox input[type="checkbox"]:hover + label::before {
  border-color: var(--ms-primary, #3f51b5);
  box-shadow: 0 0 0 4px rgba(63, 81, 181, 0.12);
}

.pure-checkbox input[type="checkbox"]:checked + label::before {
  border-color: var(--ms-primary, #3f51b5);
  background: var(--ms-primary, #3f51b5);
}

.pure-checkbox input[type="checkbox"]:checked + label::after {
  transform: translate(-50%, -58%) rotate(-45deg) scale(1);
}

.pure-checkbox input[type="checkbox"]:disabled + label {
  color: #b1acb8;
  cursor: not-allowed;
}

.pure-checkbox input[type="checkbox"]:disabled + label::before {
  border-color: #d5d0db;
  background: #f2edf7;
  box-shadow: none;
}

.single-select-mode .pure-checkbox input[type="checkbox"] + label::before,
.single-select-mode .pure-checkbox input[type="checkbox"] + label::after {
  opacity: 0;
}

.single-select-mode .pure-checkbox input[type="checkbox"] + label {
  padding-left: 0;
}

.list-message,
.nodata-label {
  margin: 0;
  padding: 22px 16px 24px;
  color: var(--ms-on-surface-muted, #5f6368);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.list-grp {
  padding: 0 15px !important;
}

.list-grp h4 {
  margin: 16px 0 6px;
  color: var(--ms-on-surface, #212121);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.list-grp > li {
  padding-left: 15px !important;
}

.loading-icon {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 18px;
  z-index: 2;
}

.dropdown-list ::-webkit-scrollbar {
  width: 10px;
}

.dropdown-list ::-webkit-scrollbar-thumb {
  background: rgba(125, 119, 134, 0.34);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.dropdown-list ::-webkit-scrollbar-track {
  background: transparent;
}

.stackline-dropdown.theme-dark,
.dropdown-list.theme-dark {
  --ms-primary: #8ab4f8;
  --ms-primary-soft: rgba(138, 180, 248, 0.18);
  --ms-surface: #151a23;
  --ms-surface-soft: #202736;
  --ms-surface-muted: #111722;
  --ms-outline: #384456;
  --ms-outline-strong: #8ab4f8;
  --ms-on-surface: #edf2f7;
  --ms-on-surface-muted: #aab6c5;
  --ms-chip-bg: #263247;
  --ms-chip-text: #d7e6ff;
  --ms-chip-remove: #d7e6ff;
  --ms-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  --ms-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.45), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.stackline-dropdown.theme-custom,
.dropdown-list.theme-custom {
  --ms-primary: var(--stackline-ms-primary, #0f766e);
  --ms-primary-soft: var(--stackline-ms-primary-soft, rgba(15, 118, 110, 0.14));
  --ms-surface: var(--stackline-ms-surface, #ffffff);
  --ms-surface-soft: var(--stackline-ms-surface-soft, #ecfdf5);
  --ms-surface-muted: var(--stackline-ms-surface-muted, #d1fae5);
  --ms-outline: var(--stackline-ms-outline, #99f6e4);
  --ms-outline-strong: var(--stackline-ms-outline-strong, #0f766e);
  --ms-on-surface: var(--stackline-ms-on-surface, #102a2a);
  --ms-on-surface-muted: var(--stackline-ms-on-surface-muted, #47615f);
  --ms-chip-bg: var(--stackline-ms-chip-bg, #ccfbf1);
  --ms-chip-text: var(--stackline-ms-chip-text, #115e59);
  --ms-chip-remove: var(--stackline-ms-chip-remove, #115e59);
  --ms-shadow: var(--stackline-ms-shadow, 0 18px 42px rgba(15, 118, 110, 0.15));
  --ms-shadow-soft: var(--stackline-ms-shadow-soft, 0 1px 2px rgba(15, 118, 110, 0.16), 0 8px 18px rgba(15, 118, 110, 0.09));
}

.stackline-dropdown.theme-classic,
.dropdown-list.theme-classic {
  --ms-primary: #0079fe;
  --ms-primary-soft: #e9f4ff;
  --ms-surface: #ffffff;
  --ms-surface-soft: #f5f5f5;
  --ms-outline: #cccccc;
  --ms-outline-strong: #0079fe;
  --ms-on-surface: #333333;
  --ms-on-surface-muted: #333333;
  --ms-chip-bg: #0079fe;
  --ms-chip-text: #ffffff;
  --ms-chip-remove: #ffffff;
  --ms-shadow: 0 1px 5px #959595;
  --ms-shadow-soft: 0 1px 5px #959595;
  color: #333333;
}

.stackline-dropdown.theme-classic .selected-list {
  width: 100%;
}

.stackline-dropdown.theme-classic .c-btn {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  min-height: 42px;
  padding: 10px 68px 10px 10px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 5px #959595;
  color: #333333;
  font-size: 14px;
  line-height: 1.35;
}

.stackline-dropdown.theme-classic .c-btn.has-overflow {
  padding-right: 94px;
}

.stackline-dropdown.theme-classic .c-btn.is-active,
.stackline-dropdown.theme-classic .c-btn:hover {
  border-color: #cccccc;
  box-shadow: 0 1px 5px #959595;
}

.stackline-dropdown.theme-classic .c-btn.disabled {
  background: #cccccc;
  opacity: 1;
}

.stackline-dropdown.theme-classic .c-placeholder,
.stackline-dropdown.theme-classic .c-single-value {
  color: #333333;
  font-size: 14px;
}

.stackline-dropdown.theme-classic .c-list {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.stackline-dropdown.theme-classic .c-chip-list {
  padding-right: 0;
}

.stackline-dropdown.theme-classic .c-token {
  display: inline-block;
  min-height: 0;
  margin: 2px 0 0;
  padding: 2px 24px 2px 6px;
  border-radius: 2px;
  background: #0079fe;
  box-shadow: none;
  color: #ffffff;
  line-height: 1.4;
}

.stackline-dropdown.theme-classic .c-token .c-label {
  display: inline;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.stackline-dropdown.theme-classic .c-remove {
  right: 5px;
  width: 14px;
  height: 14px;
  color: #ffffff;
}

.stackline-dropdown.theme-classic .c-remove c-icon {
  width: 9px;
  height: 9px;
}

.stackline-dropdown.theme-classic .clear-all {
  right: 42px;
  width: 18px;
  height: 18px;
  color: #333333;
}

.stackline-dropdown.theme-classic .clear-all c-icon {
  width: 11px;
  height: 11px;
}

.stackline-dropdown.theme-classic .countplaceholder {
  right: 76px;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}

.stackline-dropdown.theme-classic .c-angle-down,
.stackline-dropdown.theme-classic .c-angle-up {
  right: 10px;
  width: 20px;
  height: 20px;
  color: #333333;
}

.stackline-dropdown.theme-classic .dropdown-list {
  padding-top: 14px;
  padding-bottom: 0;
  z-index: 9999;
}

.stackline-dropdown.theme-classic .dropdown-list.opens-up {
  padding-top: 0;
  padding-bottom: 14px;
}

.stackline-dropdown.theme-classic .dropdown-list.opens-down {
  padding-top: 14px;
  padding-bottom: 0;
}

.stackline-dropdown.theme-classic .arrow-up {
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  margin-left: 15px;
  border-right: 13px solid transparent;
  border-bottom: 15px solid #ffffff;
  border-left: 13px solid transparent;
}

.stackline-dropdown.theme-classic .arrow-2 {
  top: -1px;
  border-bottom-color: #cccccc;
}

.stackline-dropdown.theme-classic .arrow-down {
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: 15px;
  border-right: 13px solid transparent;
  border-top: 15px solid #ffffff;
  border-left: 13px solid transparent;
}

.stackline-dropdown.theme-classic .arrow-down.arrow-2 {
  top: auto;
  bottom: -1px;
  border-top-color: #cccccc;
}

.stackline-dropdown.theme-classic .list-area {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 5px #959595;
}

.stackline-dropdown.theme-classic .select-all,
.stackline-dropdown.theme-classic .filter-select-all {
  padding: 10px;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}

.stackline-dropdown.theme-classic .list-filter {
  display: block;
  min-height: 35px;
  padding: 0;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}

.stackline-dropdown.theme-classic .list-filter .c-input,
.stackline-dropdown.theme-classic .list-filter input {
  height: 35px;
  padding: 0 35px;
  color: #333333;
}

.stackline-dropdown.theme-classic .list-filter .c-search {
  left: 13px;
}

.stackline-dropdown.theme-classic .list-filter .c-clear {
  right: 13px;
}

.stackline-dropdown.theme-classic .btn-container {
  padding: 10px;
}

.stackline-dropdown.theme-classic .btn-iceblue {
  min-height: 35px;
  border-radius: 3px;
  background: #0079fe;
}

.stackline-dropdown.theme-classic .dropdown-list ul {
  margin: 0;
  padding: 0;
}

.stackline-dropdown.theme-classic .dropdown-list ul li {
  min-height: 0;
  margin: 0;
  padding: 10px;
  border-radius: 0;
  color: #333333;
  line-height: 1.35;
}

.stackline-dropdown.theme-classic .dropdown-list ul li:hover {
  background: #f5f5f5;
}

.stackline-dropdown.theme-classic .selected-item,
.stackline-dropdown.theme-classic .selected-item:hover {
  background: #e9f4ff !important;
  color: #333333;
}

.stackline-dropdown.theme-classic .grp-item {
  padding-left: 30px !important;
}

.stackline-dropdown.theme-classic .grp-title {
  color: #000000;
}

.stackline-dropdown.theme-classic .grp-title label,
.stackline-dropdown.theme-classic .list-grp h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}

.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"] + label {
  padding-left: 2em;
  color: #000000;
  font-weight: 300;
}

.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"] + label::before {
  width: 14px;
  height: 14px;
  margin-top: -9px;
  border: 2px solid #0079fe;
  border-radius: 0;
  background: #ffffff;
}

.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"] + label::after {
  top: 50%;
  left: 9px;
  width: 8px;
  height: 3px;
  margin-top: 0;
  border-width: 0 0 3px 3px;
  border-color: #ffffff;
  background: transparent;
}

.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"]:focus + label::before,
.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"]:hover + label::before {
  border-color: #0079fe;
  background-color: #f2f2f2;
  box-shadow: none;
}

.stackline-dropdown.theme-classic .pure-checkbox input[type="checkbox"]:checked + label::before {
  border-color: #0079fe;
  background: #0079fe;
}

.stackline-dropdown.theme-classic .single-select-mode .pure-checkbox input[type="checkbox"] + label {
  padding-left: 0;
}

.dropdown-list.theme-classic {
  padding-top: 14px;
  padding-bottom: 0;
  z-index: 100000;
}

.dropdown-list.theme-classic.opens-up {
  padding-top: 0;
  padding-bottom: 14px;
}

.dropdown-list.theme-classic.opens-down {
  padding-top: 14px;
  padding-bottom: 0;
}

.dropdown-list.theme-classic .arrow-up {
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  margin-left: 15px;
  border-right: 13px solid transparent;
  border-bottom: 15px solid #ffffff;
  border-left: 13px solid transparent;
}

.dropdown-list.theme-classic .arrow-2 {
  top: -1px;
  border-bottom-color: #cccccc;
}

.dropdown-list.theme-classic .arrow-down {
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: 15px;
  border-right: 13px solid transparent;
  border-top: 15px solid #ffffff;
  border-left: 13px solid transparent;
}

.dropdown-list.theme-classic .arrow-down.arrow-2 {
  top: auto;
  bottom: -1px;
  border-top-color: #cccccc;
}

.dropdown-list.theme-classic .list-area {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 5px #959595;
}

.dropdown-list.theme-classic .select-all,
.dropdown-list.theme-classic .filter-select-all {
  padding: 10px;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}

.dropdown-list.theme-classic .list-filter {
  display: block;
  min-height: 35px;
  padding: 0;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}

.dropdown-list.theme-classic .list-filter .c-input,
.dropdown-list.theme-classic .list-filter input {
  height: 35px;
  padding: 0 35px;
  color: #333333;
}

.dropdown-list.theme-classic .list-filter .c-search {
  left: 13px;
}

.dropdown-list.theme-classic .list-filter .c-clear {
  right: 13px;
}

.dropdown-list.theme-classic .btn-container {
  padding: 10px;
}

.dropdown-list.theme-classic .btn-iceblue {
  min-height: 35px;
  border-radius: 3px;
  background: #0079fe;
}

.dropdown-list.theme-classic ul {
  margin: 0;
  padding: 0;
}

.dropdown-list.theme-classic ul li {
  min-height: 0;
  margin: 0;
  padding: 10px;
  border-radius: 0;
  color: #333333;
  line-height: 1.35;
}

.dropdown-list.theme-classic ul li:hover {
  background: #f5f5f5;
}

.dropdown-list.theme-classic .selected-item,
.dropdown-list.theme-classic .selected-item:hover {
  background: #e9f4ff !important;
  color: #333333;
}

.dropdown-list.theme-classic .grp-item {
  padding-left: 30px !important;
}

.dropdown-list.theme-classic .grp-title {
  color: #000000;
}

.dropdown-list.theme-classic .grp-title label,
.dropdown-list.theme-classic .list-grp h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
}

.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"] + label {
  padding-left: 2em;
  color: #000000;
  font-weight: 300;
}

.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"] + label::before {
  width: 14px;
  height: 14px;
  margin-top: -9px;
  border: 2px solid #0079fe;
  border-radius: 0;
  background: #ffffff;
}

.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"] + label::after {
  top: 50%;
  left: 9px;
  width: 8px;
  height: 3px;
  margin-top: 0;
  border-width: 0 0 3px 3px;
  border-color: #ffffff;
  background: transparent;
}

.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"]:focus + label::before,
.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"]:hover + label::before {
  border-color: #0079fe;
  background-color: #f2f2f2;
  box-shadow: none;
}

.dropdown-list.theme-classic .pure-checkbox input[type="checkbox"]:checked + label::before {
  border-color: #0079fe;
  background: #0079fe;
}

.dropdown-list.theme-classic .single-select-mode .pure-checkbox input[type="checkbox"] + label {
  padding-left: 0;
}

.stackline-dropdown,
.stackline-dropdown *,
.dropdown-list,
.dropdown-list * {
  box-sizing: border-box;
}

.stackline-dropdown button,
.dropdown-list button {
  font: inherit;
}

c-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}

c-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.select-all {
  width: 100%;
  cursor: pointer;
}

.select-all:focus-visible {
  outline: 3px solid rgba(63, 81, 181, 0.32);
  outline-offset: -2px;
}

.group-shell {
  overflow: auto;
}

.dropdown-list.body-overlay {
  position: fixed;
  right: auto;
  max-width: calc(100vw - 16px);
  border-radius: 22px;
  background: var(--ms-surface, #ffffff);
  z-index: 100000;
}

.dropdown-list.opens-up:not(.tagToBody) {
  top: auto;
  bottom: calc(100% + 8px);
  padding-top: 0;
  padding-bottom: 8px;
}

.dropdown-list.opens-down:not(.tagToBody) {
  top: calc(100% + 8px);
  bottom: auto;
}

.stackline-dropdown.theme-classic .dropdown-list.opens-up:not(.tagToBody),
.dropdown-list.theme-classic.opens-up:not(.tagToBody) {
  bottom: calc(100% + 0px);
  padding-top: 0;
  padding-bottom: 14px;
}

.stackline-dropdown.theme-classic .dropdown-list.opens-down:not(.tagToBody),
.dropdown-list.theme-classic.opens-down:not(.tagToBody) {
  top: calc(100% + 0px);
  padding-top: 14px;
  padding-bottom: 0;
}

.stackline-dropdown .dropdown-list.is-open:not(.tagToBody) {
  position: absolute;
  right: 0;
  left: 0;
  max-width: 100%;
  z-index: 99999;
}

.stackline-dropdown.theme-brand,
.dropdown-list.theme-brand {
  --ms-primary: var(--stackline-ms-primary, #7c3aed);
  --ms-primary-soft: var(--stackline-ms-primary-soft, rgba(124, 58, 237, 0.14));
  --ms-surface: var(--stackline-ms-surface, #ffffff);
  --ms-surface-soft: var(--stackline-ms-surface-soft, #f5f3ff);
  --ms-surface-muted: var(--stackline-ms-surface-muted, #ede9fe);
  --ms-outline: var(--stackline-ms-outline, #c4b5fd);
  --ms-outline-strong: var(--stackline-ms-outline-strong, #7c3aed);
  --ms-on-surface: var(--stackline-ms-on-surface, #22183f);
  --ms-on-surface-muted: var(--stackline-ms-on-surface-muted, #6b5d80);
  --ms-chip-bg: var(--stackline-ms-chip-bg, #ede9fe);
  --ms-chip-text: var(--stackline-ms-chip-text, #5b21b6);
  --ms-chip-remove: var(--stackline-ms-chip-remove, #5b21b6);
  --ms-shadow: var(--stackline-ms-shadow, 0 18px 42px rgba(124, 58, 237, 0.14));
  --ms-shadow-soft: var(--stackline-ms-shadow-soft, 0 1px 2px rgba(124, 58, 237, 0.16), 0 8px 18px rgba(124, 58, 237, 0.09));
}
