/*
 * 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: 2025 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;
}
:host ix-card {
  cursor: default;
}
:host ix-card-accordion {
  cursor: pointer;
}
:host .icon {
  height: 2.5rem;
  width: 2.5rem;
}
:host ix-card-title {
  height: 2.5rem;
}
:host ix-card-content {
  height: 11rem;
}

:host(.card-outline) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-outline-accordion--border-color);
}

:host(.card-filled) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-filled-accordion--border-color);
}

:host(.card-alarm) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-alarm-accordion--border-color);
}

:host(.card-critical) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-critical-accordion--border-color);
}

:host(.card-warning) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-warning-accordion--border-color);
}

:host(.card-success) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-success-accordion--border-color);
}

:host(.card-info) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-info-accordion--border-color);
}

:host(.card-neutral) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-neutral-accordion--border-color);
}

:host(.card-primary) ix-card-content {
  border-bottom: var(--theme-push-card--border-width) solid var(--theme-push-card-primary-accordion--border-color);
}