.Dropdown {
  display: flex;
  border-radius: 30px;
  align-items: center;
  border-width: 2px;
  border-style: solid;
  max-height: 28px;
  min-height: 28px;
  @media @tablet {
    min-width: 206px; //210px = 206px+4px padding(right+left)
  }
  .Container {
    display: flex;
    width: 100%;
    align-items: center;
    margin-left: 16px;
    margin-right: 16px;
    overflow: hidden;
  }

  .DropdownFilterImg {
    width: 16px;
    height: 16px;
  }
  .DropdownArrow,
  .ClearFilter {
    width: 8px;
    height: 8px;
  }
  .IconContainer {
    position: relative;
    max-height: 16px;
    max-width: 16px;
    @media @phone {
      margin: auto;
    }
  }

  .SelectedIcon {
    width: 8px;
    height: 8px;
    position: absolute;
    left: 8px;
    bottom: 0;
  }

  .DropdownText {
    flex: 1;
    margin-left: 6px;
    margin-right: 6px;
    overflow: hidden;
    font-size: 12px;
    font-family: "Regular";
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.DropdownFilter {
  margin-top: 2px;
  .Headline {
    font-size: 14px;
    font-family: "Light";
    margin: 16px 16px 0 16px;
    overflow: hidden;
    width: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 18px;
    max-height: 18px;
  }

  .ListItems {
    .Item {
      display: flex;
      padding: 0.23rem 0.93rem; //4px 16px;
      align-items: center;
      min-height: 1.85rem; //32px
      max-height: 2.78rem; //48px
      .ImgContainer {
        min-width: 16px;
        max-height: 16px;
        max-width: 16px;
        margin-right: 8px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px;
        }
      }
      .text {
        display: -webkit-box;
        overflow: hidden;
        font-family: "Regular";
        font-size: 14px;
        word-break: break-word;
        -webkit-box-orient: vertical;
        @media @phone {
          font-size: 13px;
        }
        &.oneLine {
          -webkit-line-clamp: 1;
          //line-height: 32px;
        }
        &.twoLine {
          -webkit-line-clamp: 2;
          //line-height: 48px;
        }
      }
      .ClearFilter {
        font-size: 12px;
        font-family: "Bold";
        img {
          width: 8px;
          height: 8px;
          margin-right: 8px;
        }
      }
    }
  }
  .ScrollableContainer {
    margin-bottom: 16px;
  }

  .MultiSelectOption {
    display: flex;
    justify-content: space-between;
    //Theming - background-color: @colorComet;
  }
}

// Lumina Dropdown Flyout
.DropdownFilter.DropdownFilter--lumina {
  display: flex;
  margin-top: 0;
  padding: var(--slds-g-spacing-1) 0;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--slds-g-radius-border-2);
  background: var(--slds-g-color-surface-container-1);
  box-shadow: 0 -1px 1.2px 0 rgba(0, 0, 0, 0.04), 0 2.8px 2.9px 0 rgba(0, 0, 0, 0.09), 0 0 2.9px 0 rgba(0, 0, 0, 0.09);

  .ScrollableContainer {
    margin-bottom: 0;
  }

  .DropdownFlyout__row--lumina {
    display: flex;
    height: var(--slds-g-spacing-7);
    padding: var(--slds-g-spacing-3);
    align-items: center;
    gap: var(--slds-g-spacing-2);
    box-sizing: border-box;
    cursor: pointer;
  }

  .DropdownFlyout__rowText--lumina {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    flex: 1 0 auto;
    overflow: hidden;
    color: var(--slds-g-color-on-surface-2);
    font-feature-settings: 'liga' off, 'clig' off;
    text-overflow: ellipsis;
    font-family: var(--slds-g-font-family-base);
    font-size: var(--slds-g-font-scale-1);
    font-weight: var(--slds-g-font-weight-4);
    line-height: var(--slds-g-font-line-height-3);
  }

  .DropdownFlyout__rowIcon--lumina {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .DropdownFlyout__rowCheck--lumina.SvgIconMask {
    flex-shrink: 0;
    display: block;
    width: var(--slds-g-sizing-5);
    height: var(--slds-g-sizing-5);
    background-color: var(--slds-g-color-on-surface-1);
  }
}
