/*
 * SPDX-FileCopyrightText: 2023 Siemens AG
 *
 * SPDX-License-Identifier: MIT
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
:host {
  display: block;
  position: relative;
}
:host > ix-dropdown-item {
  width: 100%;
}
:host ix-dropdown-item {
  color: var(--theme-color-std-text);
}
:host .select-item-checked {
  background-color: var(--theme-select-list-item--background--selected);
  --ix-dropdown-item-checked-color: var(--theme-color-std-text);
}

:host(.display-none) {
  display: none;
}