/*
 * 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 {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  margin-right: 0.75rem;
}
: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 .avatar {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 2.5rem;
  width: 100%;
  max-height: 2.5rem;
  padding-left: 0.25rem;
  margin-left: 0.41rem;
  margin-right: 0.35rem;
  transition: var(--theme-default-time);
}
:host .avatar .avatar-name {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 1rem;
  line-height: 1.14;
}
:host .avatar .avatar-name .text-default-single {
  color: var(--theme-nav-item-primary--color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .avatar {
  border-radius: 1.25rem;
}
:host .avatar:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .avatar:not(.disabled):not(:disabled):hover, :host .avatar:not(.disabled):not(:disabled).hover {
  background-color: var(--theme-avatar-btn--background--hover);
  color: var(--theme-avatar-btn--color--hover);
}
:host .avatar:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .avatar:not(.disabled):not(:disabled):active, :host .avatar:not(.disabled):not(:disabled).active {
  background-color: var(--theme-avatar-btn--background--active);
  color: var(--theme-avatar-btn--color--active);
}
:host .avatar:focus-visible {
  outline: 1px solid var(--theme-color-focus-bdr);
}