@charset "UTF-8";
/*
 * 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.
 */
/*
* SPDX-FileCopyrightText: 2024 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.
*/
/* Dimensions */
/* Font sizes */
/* Line heights */
/*
* SPDX-FileCopyrightText: 2024 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.
*/
/*
* SPDX-FileCopyrightText: 2024 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.
*/
/*
* SPDX-FileCopyrightText: 2024 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.
*/
/*
* SPDX-FileCopyrightText: 2024 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 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 1.5rem;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--theme-tab--background);
  color: var(--theme-tab--color);
  touch-action: none;
}
:host *,
:host *::after,
:host *::before {
  box-sizing: border-box;
}
:host ::-webkit-scrollbar-button {
  display: none;
}
@-moz-document url-prefix() {
  :host * {
    scrollbar-color: var(--theme-scrollbar-thumb--background) var(--theme-scrollbar-track--background);
    scrollbar-width: thin;
  }
}
:host {
  /* width */
}
:host ::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
:host {
  /* Track */
}
:host ::-webkit-scrollbar-track {
  border-radius: 5px;
  background: var(--theme-scrollbar-track--background);
}
:host ::-webkit-scrollbar-track:hover {
  background: var(--theme-scrollbar-track--background--hover);
}
:host {
  /* Handle */
}
:host ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--theme-scrollbar-thumb--background);
}
:host {
  /* Handle on hover */
}
:host ::-webkit-scrollbar-thumb:hover {
  background: var(--theme-scrollbar-thumb--background--hover);
}
:host ::-webkit-scrollbar-corner {
  display: none;
}
:host::after {
  content: "";
  position: absolute;
  background-color: var(--theme-tab-indicator--background);
  width: 100%;
  height: var(--theme-tab-indicator--height);
  left: 0;
}
:host .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .text span,
:host .text span::before {
  pointer-events: none;
}
:host .text {
  vertical-align: middle;
}
:host .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
  background-color: var(--theme-animated-tab-indicator--background);
  border-radius: 50%;
  border: 2px solid var(--theme-animated-tab-circle--border-color);
  color: var(--theme-an…icon--color);
  cursor: pointer;
}
:host .circle.selected:not(.disabled) {
  background-color: var(--theme-animated-tab-circle--background--selected);
  color: var(--theme-animated-tab-icon--color--selected);
  border-color: var(--theme-animated-tab-circle--border-color--selected);
}
:host .circle.selected:not(.disabled):hover {
  background-color: var(--theme-animated-tab-circle--background--selected);
}
:host .circle:hover {
  background-color: var(--theme-animated-tab-circle--background--hover);
}
:host .circle:active {
  background-color: var(--theme-animated-tab-circle--background--active);
}
:host .circle:active {
  background-color: var(--theme-animated-tab-circle--background--active);
}
:host .circle.disabled {
  background-color: var(--theme-animated-tab-circle--background--disabled);
  border-color: var(--theme-animated-tab-circle--border-color--disabled);
  cursor: default;
}
:host .counter {
  position: absolute;
  z-index: 1;
  height: 16px;
  width: auto;
  background-color: var(--theme-color-1);
  border: 1px solid var(--theme-tab-pill--border-color);
  border-radius: 100px;
  bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-size: 12px;
  line-height: 14px;
  color: var(--theme-pill-outline--color);
  cursor: pointer;
}
:host .counter.selected {
  border-color: var(--theme-tab-pill--border-color--selected);
}
:host .counter.disabled {
  border-color: var(--theme-tab-pill--border-color--disabled);
  cursor: default;
}
:host .hidden {
  display: none;
}

:host(.circle) {
  height: 72px;
}

:host(.top)::after {
  top: 0;
}

:host(.bottom)::after {
  bottom: 0;
}

:host(.stretched) {
  flex-basis: 100%;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:host(:hover:not(.circle):not(.disabled):not(.selected)) {
  background-color: var(--theme-tab--background--hover);
  color: var(--theme-tab-color-hover);
  cursor: pointer;
}
:host(:hover:not(.circle):not(.disabled):not(.selected))::after {
  background-color: var(--theme-tab-indicator--background--hover);
}

:host(:active:not(.circle):not(.disabled):not(.selected)) {
  background-color: var(--theme-tab--background--active);
  color: var(--theme-tab-color--active);
}
:host(:active:not(.circle):not(.disabled):not(.selected))::after {
  background-color: var(--theme-tab-indicator--background--active);
}

:host(:focus-visible) {
  outline: 0px solid var(--focus--border-color);
}
:host(:focus-visible) .circle {
  outline: 1px solid var(--focus--border-color);
}

:host(:focus-visible:not(.circle)) {
  outline: 1px solid var(--focus--border-color);
}

:host(.disabled) {
  cursor: default;
  color: var(--theme-tab--color--disabled);
  background-color: var(--theme-tab--background--disabled);
}
:host(.disabled)::after {
  background-color: var(--theme-tab-indicator--background--disabled);
}

:host(.selected:not(.disabled)) {
  background-color: var(--theme-tab--background--selected);
  color: var(--theme-tab--color--selected);
}
:host(.selected:not(.disabled))::after {
  background-color: var(--theme-tab-indicator--background--selected);
}

:host(.icon) {
  padding: 1.5rem 0.5rem;
}

:host(.small-tab) {
  height: 32px;
  padding: 1rem;
}

:host(.small-tab.icon) {
  padding: 1rem 0.25rem;
}