/*
 * 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.
 */
/*
* 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 {
  min-width: 11.937rem;
  max-width: 11.937rem;
  width: 11.937rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--theme-tile--border);
  border-radius: var(--theme-tile--border-radius);
  background-color: var(--theme-color-2);
  color: var(--theme-color-std-text);
  box-shadow: var(--theme-tile--box-shadow);
}
: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 .tile-header {
  display: flex;
  align-items: center;
  font-family: Siemens Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--theme-color-std-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smooting: grayscale;
}
:host .tile-header,
:host .tile-subheader,
:host .tile-content,
:host .tile-footer {
  padding: 0 1rem;
}
:host .tile-header,
:host .tile-content {
  flex-grow: 1;
}
:host .tile-header.has-content {
  display: flex;
  height: 2.5rem;
  max-height: 2.5rem;
  padding-inline-end: 0.5rem;
}
:host .tile-subheader {
  color: var(--theme-btn-invisible-secondary--color);
  flex-grow: 0;
}
:host .tile-footer.has-content {
  border-block-start: 1px solid var(--theme-color-1);
  height: 2.5rem;
}

:host(.tile-small) {
  height: 2.5rem;
  min-height: 2.5rem;
  max-height: 2.5rem;
}

:host(.tile-medium) {
  height: 5rem;
  min-height: 5rem;
  max-height: 5rem;
}

:host(.tile-big) {
  height: 10rem;
  min-height: 10rem;
  max-height: 10rem;
}

:host(:active),
:host(:focus-visible),
:host(:visited) {
  outline: none;
}