{"version":3,"file":"SegmentedControl.module.cjs","names":[],"sources":["../../../src/components/SegmentedControl/SegmentedControl.module.css"],"sourcesContent":[".root {\n  --sc-padding-xs: 2px 6px;\n  --sc-padding-sm: 3px 10px;\n  --sc-padding-md: 4px 14px;\n  --sc-padding-lg: 7px 16px;\n  --sc-padding-xl: 10px 20px;\n\n  --sc-transition-duration: 200ms;\n  --sc-padding: var(--sc-padding-sm);\n  --sc-transition-timing-function: ease;\n  --sc-font-size: var(--mantine-font-size-sm);\n\n  position: relative;\n  display: inline-flex;\n  flex-direction: row;\n  width: auto;\n  border-radius: var(--sc-radius, var(--mantine-radius-default));\n  overflow: hidden;\n  padding: 4px;\n\n  &:where([data-full-width]) {\n    display: flex;\n  }\n\n  &:where([data-orientation='vertical']) {\n    display: flex;\n    flex-direction: column;\n    width: max-content;\n\n    &:where([data-full-width]) {\n      width: auto;\n    }\n  }\n\n  @mixin where-light {\n    background-color: var(--mantine-color-gray-1);\n  }\n\n  @mixin where-dark {\n    background-color: var(--mantine-color-dark-8);\n  }\n}\n\n.indicator {\n  position: absolute;\n  display: block;\n  z-index: 1;\n  border-radius: calc(var(--sc-radius, var(--mantine-radius-default)) - 4px);\n\n  @mixin where-light {\n    box-shadow: var(--sc-shadow, none);\n    background-color: var(--sc-color, var(--mantine-color-white));\n  }\n\n  @mixin where-dark {\n    box-shadow: none;\n    background-color: var(--sc-color, var(--mantine-color-dark-5));\n  }\n}\n\n.label {\n  -webkit-tap-highlight-color: transparent;\n  font-weight: var(--mantine-font-weight-medium);\n  display: block;\n  text-align: center;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  user-select: none;\n  border-radius: calc(var(--sc-radius, var(--mantine-radius-default)) - 4px);\n  font-size: var(--sc-font-size);\n  padding: var(--sc-padding);\n  transition: color var(--sc-transition-duration) var(--sc-transition-timing-function);\n  cursor: pointer;\n\n  /* outline is controlled by .input */\n  outline: var(--segmented-control-outline, none);\n\n  @mixin where-light {\n    color: var(--mantine-color-gray-7);\n  }\n\n  @mixin where-dark {\n    color: var(--mantine-color-dark-1);\n  }\n\n  &:where([data-read-only]) {\n    cursor: default;\n  }\n\n  fieldset:disabled &,\n  &:where([data-disabled]) {\n    cursor: not-allowed;\n    color: var(--mantine-color-disabled-color);\n  }\n\n  &:where([data-active]) {\n    @mixin where-light {\n      color: var(--sc-label-color, var(--mantine-color-black));\n    }\n\n    @mixin where-dark {\n      color: var(--sc-label-color, var(--mantine-color-white));\n    }\n\n    &::before {\n      .root:where([data-initialized]) & {\n        display: none;\n      }\n      content: '';\n      inset: 0;\n      z-index: 0;\n      position: absolute;\n      border-radius: calc(var(--sc-radius, var(--mantine-radius-default)) - 4px);\n\n      @mixin where-light {\n        box-shadow: var(--sc-shadow, none);\n        background-color: var(--sc-color, var(--mantine-color-white));\n      }\n\n      @mixin where-dark {\n        box-shadow: none;\n        background-color: var(--sc-color, var(--mantine-color-dark-5));\n      }\n    }\n  }\n\n  &:where(:not([data-disabled], [data-active], [data-read-only])) {\n    @mixin hover {\n      @mixin where-light {\n        color: var(--mantine-color-black);\n      }\n\n      @mixin where-dark {\n        color: var(--mantine-color-white);\n      }\n    }\n  }\n\n  fieldset:disabled & {\n    @mixin hover {\n      color: var(--mantine-color-disabled-color) !important;\n    }\n  }\n}\n\n.input {\n  height: 0;\n  width: 0;\n  position: absolute;\n  overflow: hidden;\n  white-space: nowrap;\n  opacity: 0;\n\n  &[data-focus-ring='auto'] {\n    &:focus:focus-visible {\n      & + .label {\n        --segmented-control-outline: 2px solid var(--mantine-primary-color-filled);\n      }\n    }\n  }\n\n  &[data-focus-ring='always'] {\n    &:focus {\n      & + .label {\n        --segmented-control-outline: 2px solid var(--mantine-primary-color-filled);\n      }\n    }\n  }\n}\n\n.control {\n  position: relative;\n  flex: 1;\n  z-index: 2;\n  transition: border-color var(--sc-transition-duration) var(--sc-transition-timing-function);\n\n  .root[data-with-items-borders] :where(&)::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    inset-inline-start: 0;\n    background-color: var(--separator-color);\n    width: 1px;\n    transition: background-color var(--sc-transition-duration) var(--sc-transition-timing-function);\n  }\n\n  &[data-orientation='vertical'] {\n    &::before {\n      top: 0;\n      inset-inline: 0;\n      bottom: auto;\n      height: 1px;\n      width: auto;\n    }\n  }\n\n  @mixin where-light {\n    --separator-color: var(--mantine-color-gray-3);\n  }\n\n  @mixin where-dark {\n    --separator-color: var(--mantine-color-dark-4);\n  }\n\n  &:first-of-type {\n    &::before {\n      --separator-color: transparent;\n    }\n  }\n\n  &[data-active] {\n    [data-mantine-color-scheme] & {\n      &,\n      & + .control {\n        &::before {\n          --separator-color: transparent;\n        }\n      }\n    }\n  }\n}\n\n.innerLabel {\n  position: relative;\n  z-index: 2;\n}\n"],"mappings":""}