/**
 * 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([disabled]) {
  cursor: default;
  -webkit-user-select: none;
          user-select: none;
  opacity: var(--calcite-opacity-disabled);
}

:host([disabled]) *,
:host([disabled]) ::slotted(*) {
  pointer-events: none;
}

:host {
  display: flex;
}

.handle {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-style: none;
  outline-color: transparent;
  color: var(--calcite-color-border-input);
  padding-block: 0.75rem;
  padding-inline: 0.25rem;
  line-height: 0;
}
.handle calcite-icon {
  color: inherit;
}

:host(:not([disabled])) .handle {
  cursor: move;
}
:host(:not([disabled])) .handle:hover {
  background-color: var(--calcite-color-foreground-2);
  color: var(--calcite-color-text-1);
}
:host(:not([disabled])) .handle:focus {
  color: var(--calcite-color-text-1);
  outline: 2px solid var(--calcite-ui-focus-color, var(--calcite-color-brand));
  outline-offset: calc(
            -2px *
            calc(
              1 -
              2 * clamp(
                0,
                var(--calcite-offset-invert-focus),
                1
              )
            )
          );
}
:host(:not([disabled])) .handle--selected {
  background-color: var(--calcite-color-foreground-3);
  color: var(--calcite-color-text-1);
}

:host([disabled]) ::slotted([calcite-hydrated][disabled]),
:host([disabled]) [calcite-hydrated][disabled] {
  /* prevent opacity stacking */
  opacity: 1;
}

.interaction-container {
  display: contents;
}

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

[hidden] {
  display: none;
}