/*
 * 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.
*/
/*
* 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;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  margin: 0.5rem;
}
: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 .CardList_Title {
  display: flex;
  position: relative;
  height: 1.5rem;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
:host .CardList_Title__Label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
:host .CardList__Title__Button {
  margin-right: 1rem;
  transition: var(--theme-default-time) transform ease-in-out;
}
:host .CardList__Title__Button__Collapsed {
  transform: rotate(-90deg);
}
:host .CardList__Title__Show__All {
  align-self: center;
  margin-left: auto;
  margin-right: 0px;
  flex-shrink: 0;
}
:host .CardList__Content {
  display: flex;
  position: relative;
  height: calc(100% - 1.5rem);
  width: 100%;
  gap: 1.5rem;
  transition: var(--theme-default-time) ease-in-out;
  overflow: auto;
}
:host .CardList__Content__Collapsed {
  min-height: 0px;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
}
:host .CardList__Style__Flexbox__Scroll {
  flex-wrap: wrap;
}
:host .CardList__Style__Infinite__Scroll {
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
:host .CardList__Style__Infinite__Scroll::-webkit-scrollbar {
  display: none;
}
:host .CardList__Overflow {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  pointer-events: all;
  -webkit-mask-image: var(--ix-card-list-overflow, none);
          mask-image: var(--ix-card-list-overflow, none);
}
:host .Show__All__Card {
  display: flex;
  position: relative;
  align-self: flex-start;
  justify-self: center;
  max-width: 11.25rem;
  min-width: 11.25rem;
  width: 11.25rem;
  min-height: 11.25rem;
  max-height: 11.25rem;
  height: 11.25rem;
  --ix-card-border-color: var(--theme-color-primary);
  color: var(--theme-color-primary);
}
:host .CardList__Style__Infinite__Scroll .Show__All__Card {
  margin-top: 2.375rem;
}
:host .CardList__Style__Flexbox__Scroll .Show__All__Card {
  margin-bottom: 2.375rem;
}
:host .Show__All__Card:hover {
  background-color: var(--theme-color-ghost--hover);
}
:host .Show__All__Card:active {
  background-color: var(--theme-color-ghost--active);
}
:host .Show__All__Card__Content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
:host .Show__All__Card__Icon {
  display: flex;
  position: absolute;
  height: 4rem;
  width: 4rem;
  justify-content: center;
  align-items: center;
}
:host .Show__All__Card__Text {
  margin-bottom: 0px;
  margin-top: auto;
}

::slotted(.display-none) {
  display: none !important;
}