/*
 * 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.
*/
/* 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: flex;
  flex-direction: column;
  position: relative;
  width: 19.75rem;
  min-width: 12rem;
  border-color: var(--theme-group-item--border-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .group-header {
  height: 4rem;
  min-height: 4rem;
  max-height: 4rem;
  border-radius: var(--theme-group--border-radius) var(--theme-group--border-radius) 0 0;
  display: flex;
  background-color: var(--theme-group-item--background);
  color: var(--theme-group-header--color);
  cursor: pointer;
}
:host .group-header:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .group-header:not(.disabled):not(:disabled):hover, :host .group-header:not(.disabled):not(:disabled).hover {
  background-color: var(--theme-group-item--background--hover);
}
:host .group-header:not(.disabled):not(:disabled):hover.selected, :host .group-header:not(.disabled):not(:disabled).hover.selected {
  background-color: var(--theme-group-item--background--selected);
}
:host .group-header:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .group-header:not(.disabled):not(:disabled):active, :host .group-header:not(.disabled):not(:disabled).active {
  background-color: var(--theme-group-item--background--active);
}
:host .group-header:not(.disabled):not(:disabled):active.selected, :host .group-header:not(.disabled):not(:disabled).active.selected {
  background-color: var(--theme-group-item--background--selected);
}
:host .group-header:not(.disabled):not(:disabled):focus-visible {
  height: calc(4rem - 2px);
  min-height: calc(4rem - 2px);
  border: 1px solid var(--theme-color-focus-bdr);
  border-radius: var(--theme-default-border-radius) var(--theme-default-border-radius) 0px 0px;
  outline: none;
}
:host .group-header:not(.disabled):not(:disabled):focus-visible .group-header-selection-indicator {
  width: calc(0.25rem - 1px);
}
:host .group-header:not(.disabled):not(:disabled):focus-visible .group-header-content {
  padding: calc(0.5rem - 1px) calc(0.5rem - 1px) calc(0.5rem - 1px) 0;
}
:host .group-header:not(.disabled):not(:disabled):focus-visible .btn-expand-header {
  margin-top: calc(0.5rem - 1px);
  margin-bottom: calc(0.5rem - 1px);
}
:host .group-header.selected {
  background-color: var(--theme-group-item--background--selected);
}
:host .group-header.selected .group-header-selection-indicator {
  background-color: var(--theme-group-item-indicator--background--selected);
}
:host .group-header .group-header-selection-indicator {
  background-color: var(--theme-color-input--focus);
}
:host .group-header .group-header-selection-indicator.group-header-selection-indicator-item-selected {
  background-color: var(--theme-group-item-indicator--background--selected);
}
:host .group-header-clickable {
  display: flex;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .group-header-selection-indicator {
  width: 0.25rem;
  border-top-left-radius: var(--theme-group--border-radius);
}
:host .group-header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0.5rem;
  padding-left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .group-header-content .group-header-props-container {
  width: 100%;
}
:host .group-header-content .group-header-title {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  height: 1.5rem;
}
:host .group-header-content .group-header-title > * {
  min-width: 0;
  padding-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .group-header-content .group-subheader {
  height: 1.25rem;
  font-size: 0.875rem;
  color: var(--theme-group-subheader--color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .expand-icon {
  padding: 0.125rem 0.437rem;
  color: var(--theme-color-std-text);
}
:host .btn-expand-header {
  margin: 0.5rem;
  margin-inline-end: 0.25rem;
  min-width: 1.5rem;
}
:host .group-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 1px;
}
:host .footer {
  visibility: collapse;
  height: auto;
  min-height: 0;
}
:host .footer-visible {
  visibility: visible;
}
:host .hidden {
  display: none;
}