/*
 * 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.
*/
: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 .card {
  background-color: var(--theme-menu--background);
  width: 100%;
  box-shadow: none;
  border: none;
  border-radius: unset;
  display: flex;
  flex-direction: column;
}
:host .card.standaloneAppearance {
  box-shadow: var(--theme-shadow-4);
  border-radius: 0.25rem;
}
:host .card.rounded {
  border-radius: 4px;
}
:host .card.left {
  border-radius: 4px 0 0 4px;
  height: 100%;
}
:host .card.right {
  border-radius: 0 4px 4px 0;
  height: 100%;
}
:host .card.straight {
  border-radius: 0;
}
:host .card .header-container {
  width: 100%;
}
:host .card .header-container .header {
  padding: 0.75rem 1rem;
  flex: 0 1 auto;
}
:host .card .separator {
  height: 1px;
  background-color: var(--theme-datepicker-separator--background);
  width: 100%;
  flex: 0 1 auto;
}
:host .card .content {
  padding: 0 1rem 1rem 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
:host .card .content--time-picker {
  padding: 0 1rem;
}
:host .card .footer-container {
  width: 100%;
}
:host .card .footer-container .footer {
  padding: 1rem;
}