/**
 * 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-pad-expanded-max-width: When `layout` is `"vertical"`, specifies the expanded max width of the component.
*/
:host {
  display: block;
}
@keyframes in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:host {
  animation: in var(--calcite-internal-animation-timing-slow) ease-in-out;
  border-radius: 0.125rem;
  --calcite-action-pad-expanded-max-width: auto;
  background: transparent;
}

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

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

.container {
  display: inline-flex;
  flex-direction: column;
  overflow-y: auto;
  border-radius: 0.25rem;
  background-color: var(--calcite-color-background);
  --tw-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  --tw-shadow-colored: 0 6px 20px -4px var(--tw-shadow-color), 0 4px 12px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.action-group--bottom {
  flex-grow: 1;
  justify-content: flex-end;
  padding-block-end: 0px;
}

:host([layout=horizontal]) .container {
  flex-direction: row;
}
:host([layout=horizontal]) .container .action-group--bottom {
  padding: 0px;
}
:host([layout=horizontal]) .container ::slotted(calcite-action-group) {
  border-width: 0px;
  padding: 0px;
  border-inline-end-width: 1px;
}

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

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

[hidden] {
  display: none;
}