/**
 * Do not edit directly
 * Generated on Fri, 02 Aug 2024 20:03:08 GMT
 */
/**
 * Do not edit directly
 * Generated on Fri, 02 Aug 2024 20:03:08 GMT
 */
/**
 * Do not edit directly
 * Generated on Fri, 02 Aug 2024 20:03:08 GMT
 */
/**
 * Do not edit directly
 * Generated on Fri, 02 Aug 2024 20:03:08 GMT
 */
/**
 * Do not edit directly
 * Generated on Fri, 02 Aug 2024 20:03:06 GMT
 */
/* mixins & extensions */
/* helper to properly scale internal durations */
/**
* Currently only used in Checkbox.
*/
:host {
  /* Base ":host" styles for the component */
  box-sizing: border-box;
  background-color: var(--calcite-color-foreground-1);
  color: var(--calcite-color-text-2);
  font-size: var(--calcite-font-size--1);
}
:host * {
  box-sizing: border-box;
}

/**
* CSS Custom Properties
*
* These properties can be overridden using the component's tag as selector.
*
* @prop --calcite-action-bar-expanded-max-width: When `layout` is `"vertical"`, specifies the expanded max width of the component.
*/
:host {
  pointer-events: auto;
  display: inline-flex;
  align-self: stretch;
  --calcite-action-bar-expanded-max-width: auto;
}

:host([layout=vertical]) {
  flex-direction: column;
}
:host([layout=vertical]) .action-group--end {
  margin-block-start: auto;
}

:host([layout=horizontal]) {
  flex-direction: row;
}
:host([layout=horizontal]) .action-group--end {
  margin-inline-start: auto;
}

:host([layout=vertical][overflow-actions-disabled]) {
  overflow-y: auto;
}

:host([layout=horizontal][overflow-actions-disabled]) {
  overflow-x: auto;
}

:host([layout=vertical][expanded]) {
  max-inline-size: var(--calcite-action-bar-expanded-max-width);
}

::slotted(calcite-action-group) {
  border-block-end: 1px solid var(--calcite-color-border-3);
}

:host([layout=horizontal]) ::slotted(calcite-action-group) {
  border-block-end: 0;
  border-inline-end: 1px solid var(--calcite-color-border-3);
}

:host([layout=horizontal][expand-disabled]) ::slotted(calcite-action-group:last-of-type) {
  border-inline-end: 0;
}

::slotted(calcite-action-group:last-child) {
  border-block-end: 0;
  border-inline-end: 0;
}

.action-group--end {
  justify-content: flex-end;
}

:host([hidden]) {
  display: none;
}

[hidden] {
  display: none;
}