/*
 * 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 {
  display: block;
  background-color: var(--theme-menu--background);
  border-radius: 4px;
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
: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 ix-layout-grid {
  border-radius: 0.25rem;
  box-shadow: var(--theme-shadow-4);
}
:host ix-time-picker {
  width: 100%;
}
:host .no-padding {
  padding: 0;
}
:host ix-col {
  display: flex;
  flex-direction: column;
  padding: 0;
}
:host .flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
:host .row-separator,
:host .col-separator {
  border-bottom: 0.0625rem solid var(--theme-datepicker-separator--background);
}
:host .col-separator {
  border-right: none;
}
@media (min-width: 576px) {
  :host {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  :host .btn-select-date-container {
    display: inline-flex;
    flex-grow: 1;
  }
  :host .btn-select-date-container ix-button {
    margin-left: auto;
    margin-top: auto;
  }
  :host .min-width {
    width: -moz-min-content;
    width: min-content;
  }
  :host ix-time-picker {
    width: initial;
  }
  :host .col-separator {
    border-right: 0.0625rem solid var(--theme-datepicker-separator--background);
    border-bottom: none;
  }
}
:host .individual {
  box-shadow: none;
  border: none;
}
:host .btn-select-date-container {
  padding: 1rem;
}
@media (max-width: 576px) {
  :host .btn-select-date-container .btn-select-date {
    width: 100%;
  }
}