@livechat/design-system-react-components 1.0.0-alpha.8 → 1.0.0-y.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dsrc.cjs.js +15 -1
- package/dist/dsrc.es.js +3158 -971
- package/dist/dsrc.umd.js +15 -1
- package/dist/shadow/shadow.css +7 -0
- package/dist/shadow/shadow.css.map +1 -0
- package/dist/shadow/spacing.css +18 -0
- package/dist/shadow/spacing.css.map +1 -0
- package/dist/spacing/shadow.css +7 -0
- package/dist/spacing/shadow.css.map +1 -0
- package/dist/spacing/spacing.css +18 -0
- package/dist/spacing/spacing.css.map +1 -0
- package/dist/src/components/Alert/Alert.d.ts +3 -7
- package/dist/src/components/Avatar/Avatar.d.ts +19 -0
- package/dist/src/components/Avatar/Avatar.helpers.d.ts +2 -0
- package/dist/src/components/Avatar/index.d.ts +1 -0
- package/dist/src/components/Badge/Badge.d.ts +6 -2
- package/dist/src/components/Badge/Badge.helpers.d.ts +1 -0
- package/dist/src/components/Button/Button.d.ts +4 -3
- package/dist/src/components/Button/index.d.ts +1 -1
- package/dist/src/components/Card/Card.d.ts +8 -2
- package/dist/src/components/Checkbox/Checkbox.d.ts +3 -3
- package/dist/src/components/Checkbox/index.d.ts +0 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts +4 -0
- package/dist/src/components/DatePicker/DatePickerNavbar.d.ts +4 -0
- package/dist/src/components/DatePicker/RangeDatePicker.d.ts +16 -0
- package/dist/src/components/DatePicker/helpers.d.ts +39 -0
- package/dist/src/components/DatePicker/hooks.d.ts +6 -0
- package/dist/src/components/DatePicker/index.d.ts +2 -0
- package/dist/src/components/DatePicker/types.d.ts +100 -0
- package/dist/src/components/FileUploadProgress/FileUploadProgress.d.ts +15 -0
- package/dist/src/components/FileUploadProgress/FileUploadProgressActions.d.ts +9 -0
- package/dist/src/components/FileUploadProgress/index.d.ts +2 -0
- package/dist/src/components/{TextField/TextField.d.ts → FormField/FormField.d.ts} +2 -2
- package/dist/src/components/FormField/index.d.ts +1 -0
- package/dist/src/components/Icon/Icon.d.ts +6 -62
- package/dist/src/components/Icon/index.d.ts +1 -1
- package/dist/src/components/Input/Input.d.ts +14 -0
- package/dist/src/components/Input/index.d.ts +1 -0
- package/dist/src/components/Modal/Modal.d.ts +2 -0
- package/dist/src/components/Modal/ModalBase.d.ts +1 -0
- package/dist/src/components/Modal/ModalCloseButton.d.ts +4 -1
- package/dist/src/components/Modal/ModalPortal.d.ts +1 -1
- package/dist/src/components/Modal/index.d.ts +0 -2
- package/dist/src/components/NumericInput/index.d.ts +0 -1
- package/dist/src/components/Picker/Picker.d.ts +23 -0
- package/dist/src/components/Picker/PickerList.d.ts +23 -0
- package/dist/src/components/Picker/Trigger.d.ts +15 -0
- package/dist/src/components/Picker/TriggerBody.d.ts +16 -0
- package/dist/src/components/Picker/constants.d.ts +21 -0
- package/dist/src/components/Picker/index.d.ts +2 -0
- package/dist/src/components/Popover/Popover.d.ts +4 -7
- package/dist/src/components/Progress/ProgressBar.d.ts +9 -0
- package/dist/src/components/Progress/ProgressCircle.d.ts +1 -1
- package/dist/src/components/Progress/constants.d.ts +2 -10
- package/dist/src/components/Progress/index.d.ts +1 -0
- package/dist/src/components/PromoBanner/PromoBanner.d.ts +0 -6
- package/dist/src/components/RadioButton/RadioButton.d.ts +2 -2
- package/dist/src/components/Search/Search.d.ts +12 -0
- package/dist/src/components/Search/index.d.ts +1 -0
- package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +18 -0
- package/dist/src/components/SegmentedControl/index.d.ts +2 -0
- package/dist/src/components/Switch/Switch.d.ts +5 -8
- package/dist/src/components/Tab/Tab.d.ts +4 -1
- package/dist/src/components/Tag/Tag.d.ts +3 -1
- package/dist/src/components/TagInput/TagInput.d.ts +1 -0
- package/dist/src/components/Textarea/Textarea.d.ts +6 -0
- package/dist/src/components/Textarea/index.d.ts +1 -0
- package/dist/src/components/Toast/Toast.d.ts +7 -13
- package/dist/src/components/Toast/ToastWrapper.d.ts +2 -9
- package/dist/src/components/Tooltip/Info.d.ts +8 -0
- package/dist/src/components/Tooltip/Interactive.d.ts +14 -0
- package/dist/src/components/Tooltip/Simple.d.ts +4 -0
- package/dist/src/components/Tooltip/SpotlightOverlay.d.ts +7 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +22 -0
- package/dist/src/components/Tooltip/UserGuide.d.ts +12 -0
- package/dist/src/components/Tooltip/helpers.d.ts +2 -0
- package/dist/src/components/Tooltip/index.d.ts +5 -0
- package/dist/src/components/Tooltip/virtualElementReference.d.ts +9 -0
- package/dist/src/components/UploadBar/UploadBar.d.ts +16 -0
- package/dist/src/components/UploadBar/index.d.ts +1 -0
- package/dist/src/foundations/shadow-token.d.ts +5 -0
- package/dist/src/foundations/spacing-token.d.ts +16 -0
- package/dist/src/index.d.ts +16 -4
- package/dist/src/themes/{designTokens.d.ts → design-token.d.ts} +104 -4
- package/dist/src/utils/constants.d.ts +1 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/themes/dark.css +128 -21
- package/dist/themes/dark.css.map +1 -1
- package/dist/themes/legacy.css +116 -9
- package/dist/themes/legacy.css.map +1 -1
- package/dist/themes/light.css +116 -9
- package/dist/themes/light.css.map +1 -1
- package/package.json +21 -11
- package/dist/src/components/ButtonGroup/ButtonGroup.d.ts +0 -11
- package/dist/src/components/ButtonGroup/index.d.ts +0 -1
- package/dist/src/components/Checkbox/CheckboxField.d.ts +0 -7
- package/dist/src/components/InputField/InputField.d.ts +0 -15
- package/dist/src/components/InputField/index.d.ts +0 -1
- package/dist/src/components/Modal/ActionModal.d.ts +0 -8
- package/dist/src/components/NumericInput/NumericInputField.d.ts +0 -19
- package/dist/src/components/TextField/index.d.ts +0 -1
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,.lc-legacy-theme{--background: #fff;--surface-basic-default: #fff;--surface-basic-subtle: #f1f6f8;--surface-basic-hover: #e0e8eb;--surface-basic-active: #dae4eb;--surface-basic-disabled: #eaedf0;--surface-secondary-default: #bdc7d1;--surface-secondary-subtle: #e4e8ec;--surface-secondary-hover: #a0a6ab;--surface-secondary-disabled: #dee3e8;--surface-feedback-info: #e5f3ff;--surface-feedback-negative: #fbeaed;--surface-feedback-warning: #fff8e0;--surface-feedback-positive: #e6f4ec;--surface-invert-default: #424d57;--surface-invert-subtle: #677179;--surface-invert-disabled: #a0a6ab;--surface-overlay: rgba(0, 0, 0, .7);--content-default: #424d57;--content-subtle: #677179;--content-disabled: #a0a6ab;--content-white-locked: #fff;--content-invert-default: #fff;--content-invert-subtle: rgba(255, 255, 255, .7);--content-invert-disabled: rgba(255, 255, 255, .5);--border-default: #bdc7d1;--border-subtle: #e4e8ec;--border-hover: #a0a6ab;--border-disabled: #dee3e8;--border-invert-default: rgba(255, 255, 255, .7);--border-invert-subtle: rgba(255, 255, 255, .3);--border-invert-hover: #fff;--border-invert-disabled: rgba(255, 255, 255, .5);--color-action-active: #295fbc;--color-action-hover: #4379d6;--color-action-default: #4284f5;--color-action-default-rgb: 66, 132, 245;--color-action-disabled: #a3c3fa;--color-negative-active: #94383a;--color-negative-hover: #b94648;--color-negative-default: #d74747;--color-negative-disabled: #eba3a3;--color-warning-default: #fbbd04;--color-warning-hover: #f99a01;--color-positive-default: #22aa61;--color-positive-hover: #0d874a;--color-positive-disabled: #90d5c4;--color-bot: #6b5aba;--color-black: #424d57;--color-white: #fff;--decor-blue900: #003288;--decor-blue800: #003fa4;--decor-blue700: #004bc2;--decor-blue600: #0059e1;--decor-blue500: #06f;--decor-blue400: #328dff;--decor-blue300: #68afff;--decor-blue200: #9dceff;--decor-blue100: #daedff;--decor-blue50: #f4faff;--decor-orange900: #6c1d00;--decor-orange800: #842600;--decor-orange700: #9c2e00;--decor-orange600: #b43700;--decor-orange500: #d54300;--decor-orange400: #ff5100;--decor-orange300: #ff8a77;--decor-orange200: #ffb8af;--decor-orange100: #ffe5e3;--decor-orange50: #fff8f7;--decor-yellow900: #493700;--decor-yellow800: #755b00;--decor-yellow700: #c9a100;--decor-yellow600: #e8bb00;--decor-yellow500: #f3c600;--decor-yellow400: #d1aa00;--decor-yellow300: #fed65e;--decor-yellow200: #fedc89;--decor-yellow100: #fff2d6;--decor-yellow50: #fff9ed;--decor-gray950: #131317;--decor-gray900: #1b1b20;--decor-gray800: #29292f;--decor-gray700: #3b3b43;--decor-gray600: #4e4e58;--decor-gray500: #62626d;--decor-gray400: #767680;--decor-gray300: #8d8d95;--decor-gray200: #ababb1;--decor-gray150: #c9c9cd;--decor-gray100: #c9c9cd;--decor-gray75: #eeeeef;--decor-gray50: #e2e2e4;--decor-gray40: #eeeeef;--decor-gray20: #fcfcfc;--decor-green900: #00431a;--decor-green800: #005321;--decor-green700: #006329;--decor-green600: #007331;--decor-green500: #00893c;--decor-green400: #00a449;--decor-green300: #00c057;--decor-green200: #7edd92;--decor-green100: #e4f4ed;--decor-green50: #f3fcf4;--decor-red900: #790002;--decor-red800: #930002;--decor-red700: #ae0003;--decor-red600: #ca0005;--decor-red500: #ee0007;--decor-red400: #ff4c4d;--decor-red300: #ff8889;--decor-red200: #ffb7b7;--decor-red100: #ffe5e5;--decor-red50: #fff8f8;--decor-purple900: #50009c;--decor-purple800: #6100bd;--decor-purple700: #7400df;--decor-purple600: #8609ff;--decor-purple500: #9146ff;--decor-purple400: #a372ff;--decor-purple300: #b99aff;--decor-purple200: #d1c0ff;--decor-purple100: #eee8ff;--decor-purple50: #faf8ff}*[class^=lc-]{box-sizing:border-box;font-family:Source Sans Pro,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lc-Typography-module__heading-xl___nhr-6{font-size:32px;font-style:normal;font-weight:600;letter-spacing:0;line-height:40px}.lc-Typography-module__heading-lg___XYF7l{font-size:24px;font-style:normal;font-weight:600;letter-spacing:0;line-height:32px}.lc-Typography-module__heading-md___wHOIs{font-size:20px;font-style:normal;font-weight:600;letter-spacing:0;line-height:28px}.lc-Typography-module__heading-sm___nBmTV{font-size:18px;font-style:normal;font-weight:600;letter-spacing:0;line-height:24px}.lc-Typography-module__heading-xs___VcZBs{font-size:16px;font-style:normal;font-weight:600;letter-spacing:0;line-height:24px}.lc-Typography-module__caps___c3eNJ{font-size:12px;font-style:normal;font-weight:400;letter-spacing:.2px;line-height:20px;text-transform:uppercase}.lc-Typography-module__caps--bold___OZovw{font-weight:600}.lc-Typography-module__paragraph-md___UGoqq{font-size:15px;font-style:normal;font-weight:400;letter-spacing:0;line-height:22px}.lc-Typography-module__paragraph-md--bold___mWcMG{font-weight:600}.lc-Typography-module__paragraph-md--underline___Fv6zM{text-decoration-line:underline}.lc-Typography-module__paragraph-md--strike___yLGHh{text-decoration-line:line-through}.lc-Typography-module__paragraph-sm___QIEFL{font-size:14px;font-style:normal;font-weight:400;letter-spacing:0;line-height:20px}.lc-Typography-module__paragraph-sm--bold___fAjI5{font-weight:600}.lc-Typography-module__paragraph-xs___OUooD{font-size:12px;font-style:normal;font-weight:400;letter-spacing:.2px;line-height:16px}.lc-Typography-module__paragraph-xs--bold___z7om7{font-weight:600}.lc-Icon-module__icon___tw31R{align-items:center;display:flex}.lc-Icon-module__icon--primary___JJnBV{color:var(--content-default)}.lc-Icon-module__icon--subtle___sZIzL{color:var(--content-subtle)}.lc-Icon-module__icon--inverted___zA9QC{color:var(--content-invert-default)}.lc-Icon-module__icon--inverted-subtle___6UwBT{color:var(--content-invert-subtle)}.lc-Icon-module__icon--link___Jwkw9{color:var(--color-action-default)}.lc-Icon-module__icon--success___MKdz3{color:var(--color-positive-default)}.lc-Icon-module__icon--warning___5YCSW{color:var(--color-warning-default)}.lc-Icon-module__icon--error___CiJCD{color:var(--color-negative-default)}.lc-Icon-module__icon--disabled--primary___E0nee,.lc-Icon-module__icon--disabled--subtle___l-hK4{color:var(--content-disabled)}.lc-Icon-module__icon--disabled--inverted___5SBAf,.lc-Icon-module__icon--disabled--inverted-subtle___w-NBk{color:var(--content-invert-disabled)}.lc-Icon-module__icon--disabled--link___sVJOa{color:var(--color-action-disabled)}.lc-Icon-module__icon--disabled--success___sG-7d{color:var(--color-positive-disabled)}.lc-Icon-module__icon--disabled--warning___8ko1e{color:var(--color-warning-default)}.lc-Icon-module__icon--disabled--error___9KbVo{color:var(--color-negative-disabled)}.lc-Alert-module__alert___HBTns{box-sizing:border-box;overflow:hidden;padding:20px;position:relative;width:100%;word-break:break-word}.lc-Alert-module__alert__content___9nZdf{display:flex;justify-content:flex-start;width:100%}.lc-Alert-module__alert__content-text___x2Un5{color:var(--content-default)}.lc-Alert-module__alert__content-text--margin___whVzG{margin-right:22px}.lc-Alert-module__alert__content-icon___-EXJm{height:22px;margin-right:22px}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content___9nZdf{flex-direction:column}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content-text--margin___whVzG{margin-right:0}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content-icon___-EXJm{margin-bottom:14px}.lc-Alert-module__alert__close-icon___rYxVy{background-color:transparent;border:0;box-shadow:none;height:24px;overflow:hidden;padding:0;position:absolute;right:17px;top:17px;width:24px}.lc-Alert-module__alert--info___GmIGN{background-color:var(--surface-feedback-info);box-shadow:inset 0 3px 0 0 var(--color-action-default)}.lc-Alert-module__alert--warning___MubhD{background-color:var(--surface-feedback-warning);box-shadow:inset 0 3px 0 0 var(--color-warning-default)}.lc-Alert-module__alert--success___fPtlZ{background-color:var(--surface-feedback-positive);box-shadow:inset 0 3px 0 0 var(--color-positive-default)}.lc-Alert-module__alert--error___DKPo0{background-color:var(--surface-feedback-negative);box-shadow:inset 0 3px 0 0 var(--color-negative-default)}.lc-Alert-module__alert__icon___8TaAH{flex-shrink:0}.lc-Badge-module__badge___GhLnu{background-color:var(--color-negative-default);border-radius:18px;box-sizing:border-box;color:var(--content-invert-default);display:inline-block;font-size:10px;font-weight:600;height:18px;line-height:18px;min-width:18px;padding:0 3px;text-align:center}.lc-Badge-module__badge___GhLnu+.lc-Badge-module__badge___GhLnu{margin-left:4px}.lc-Badge-module__badge--secondary___JjNIJ{background-color:var(--surface-secondary-default);color:var(--surface-invert-default)}@keyframes lc-Loader-module__rotate___Tlni-{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.lc-Loader-module__loader___LRflD{align-items:center;display:inline-flex;flex-direction:row;flex-wrap:nowrap}.lc-Loader-module__loader__spinner___l3C1g{flex-shrink:0;height:36px;width:36px}.lc-Loader-module__loader__spinner--small___dGFFt{height:15px;width:15px}.lc-Loader-module__loader__spinner--small___dGFFt [class*=spinner-circle]{border-width:2px}.lc-Loader-module__loader__spinner--medium___J-ki0{height:36px;width:36px}.lc-Loader-module__loader__spinner--medium___J-ki0 [class*=spinner-circle]{border-width:3px}.lc-Loader-module__loader__spinner--large___Poqq7{height:56px;width:56px}.lc-Loader-module__loader__spinner--large___Poqq7 [class*=spinner-circle]{border-width:4px}.lc-Loader-module__loader__spinner-circle___ApBUO{animation:lc-Loader-module__rotate___Tlni- 1s infinite linear;border-color:var(--surface-secondary-subtle);border-radius:50%;border-style:solid;border-top-color:var(--color-action-default);border-width:3px;box-sizing:border-box;height:100%;width:100%}.lc-Loader-module__loader__label___R74f6{color:var(--content-subtle);margin-left:10px}.lc-Button-module__btn___aijZJ{align-items:center;border-radius:4px;border-style:solid;border-width:1px;cursor:pointer;display:inline-flex;font-size:15px;font-weight:600;height:36px;justify-content:center;min-width:36px;padding:8px 16px;position:relative;text-align:center;text-decoration:none;transition-duration:.2s;transition-property:opacity,border,color,background-color,box-shadow;transition-timing-function:cubic-bezier(.64,0,.35,1);user-select:none}.lc-Button-module__btn___aijZJ:focus,.lc-Button-module__btn___aijZJ:hover,.lc-Button-module__btn___aijZJ:active{outline:0}.lc-Button-module__btn___aijZJ:focus{box-shadow:0 0 1px 2px rgba(var(--color-action-default-rgb),.7)}.lc-Button-module__btn--disabled___lXBav{cursor:not-allowed}.lc-Button-module__btn--icon-only___bF5pW{padding:6px}.lc-Button-module__btn--icon-only___bF5pW .lc-Button-module__btn__icon--left___H68zu,.lc-Button-module__btn--icon-only___bF5pW .lc-Button-module__btn__icon--right___fHr3D{margin:0}.lc-Button-module__btn--full-width___kdbAr{width:100%}.lc-Button-module__btn--basic___Jc2gD{background-color:var(--surface-basic-default);border-color:var(--color-action-default);color:var(--color-action-default)}.lc-Button-module__btn--basic___Jc2gD:hover{background-color:var(--surface-basic-subtle);color:var(--color-action-hover)}.lc-Button-module__btn--basic___Jc2gD:active{background-color:var(--surface-feedback-info);color:var(--color-action-hover)}.lc-Button-module__btn--basic___Jc2gD[disabled]{background-color:inherit;border-color:var(--color-action-disabled);color:var(--color-action-disabled)}.lc-Button-module__btn--primary___ajbjQ{background-color:var(--color-action-default);border-color:var(--color-action-default);color:var(--content-invert-default)}.lc-Button-module__btn--primary___ajbjQ:hover{background-color:var(--color-action-hover);border-color:var(--color-action-hover)}.lc-Button-module__btn--primary___ajbjQ:active{background-color:var(--color-action-active);border-color:var(--color-action-active)}.lc-Button-module__btn--primary___ajbjQ[disabled]{background-color:var(--color-action-disabled);border-color:var(--color-action-disabled)}.lc-Button-module__btn--secondary___iWzE0{background-color:var(--surface-basic-default);border-color:var(--surface-secondary-default);color:var(--content-default)}.lc-Button-module__btn--secondary___iWzE0:hover{background-color:var(--surface-basic-hover);border-color:var(--surface-secondary-hover)}.lc-Button-module__btn--secondary___iWzE0:active{background-color:var(--surface-feedback-info);border-color:var(--color-action-default);color:var(--color-action-default)}.lc-Button-module__btn--secondary___iWzE0[disabled]{background-color:inherit;border-color:var(--border-disabled);color:var(--content-disabled)}.lc-Button-module__btn--destructive___-kLCl{background-color:var(--color-negative-default);border-color:var(--color-negative-default);color:var(--content-invert-default)}.lc-Button-module__btn--destructive___-kLCl:hover{background-color:var(--color-negative-hover);border-color:var(--color-negative-hover)}.lc-Button-module__btn--destructive___-kLCl:active{background-color:var(--color-negative-active);border-color:var(--color-negative-active)}.lc-Button-module__btn--destructive___-kLCl[disabled]{background-color:var(--color-negative-disabled);border-color:var(--color-negative-disabled)}.lc-Button-module__btn--compact___4eptQ{height:32px;min-width:32px;padding:6px 16px}.lc-Button-module__btn--compact___4eptQ.lc-Button-module__btn--icon-only___bF5pW{padding:4px}.lc-Button-module__btn--large___lb-z6{height:42px;min-width:42px;padding:11px 16px}.lc-Button-module__btn--large___lb-z6.lc-Button-module__btn--icon-only___bF5pW{padding:9px}.lc-Button-module__btn--text___WA8OL,.lc-Button-module__btn--plain___eOPui,.lc-Button-module__btn--plain-light___eS9em{background-color:transparent;border-color:transparent;color:var(--color-action-default)}.lc-Button-module__btn--text___WA8OL:hover,.lc-Button-module__btn--plain___eOPui:hover,.lc-Button-module__btn--plain-light___eS9em:hover{color:var(--color-action-hover)}.lc-Button-module__btn--text___WA8OL[disabled],.lc-Button-module__btn--plain___eOPui[disabled],.lc-Button-module__btn--plain-light___eS9em[disabled]{color:var(--color-action-disabled)}.lc-Button-module__btn--plain-light___eS9em{font-weight:400}.lc-Button-module__btn--plain___eOPui{font-weight:600}.lc-Button-module__btn--plain___eOPui,.lc-Button-module__btn--plain-light___eS9em{border:0;height:auto;min-width:auto;padding:0}.lc-Button-module__btn--plain___eOPui:hover,.lc-Button-module__btn--plain___eOPui:focus,.lc-Button-module__btn--plain-light___eS9em:hover,.lc-Button-module__btn--plain-light___eS9em:focus{box-shadow:none;text-decoration:underline}.lc-Button-module__btn--plain___eOPui:disabled,.lc-Button-module__btn--plain-light___eS9em:disabled{text-decoration:none}.lc-Button-module__btn--loading___ZAgjv{cursor:progress;transition:all .2s cubic-bezier(.64,0,.35,1)}.lc-Button-module__btn--loading___ZAgjv>*{opacity:0}.lc-Button-module__btn--loading___ZAgjv .lc-Button-module__btn__loader___c8zZz{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;left:0;opacity:1;padding:inherit;position:absolute;top:0;width:100%}.lc-Button-module__btn--loading___ZAgjv .lc-Button-module__btn__loader___c8zZz>*{color:inherit;font-weight:inherit;margin:0 5px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.lc-Button-module__btn__content___wefl2{margin-top:-2px}.lc-Button-module__btn__icon___GVExB{color:inherit;display:inline-block;height:20px;line-height:1;width:20px}.lc-Button-module__btn__icon--left___H68zu{margin-left:-4px;margin-right:5px;order:-1}.lc-Button-module__btn__icon--right___fHr3D{margin-left:5px;margin-right:-4px;order:1}.lc-ButtonGroup-module__btn-group___R-lZQ{border:1px solid var(--border-subtle);border-radius:4px;display:inline-flex;flex-direction:row;padding:3px;vertical-align:middle}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn___bXPrU{border-color:transparent;color:var(--content-default)}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn--active___VAc37{background-color:var(--surface-basic-active)}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn--compact___t1whe{height:24px}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn--medium___XFRBP{height:28px}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn--large___OtNUz{height:34px}.lc-ButtonGroup-module__btn-group___R-lZQ .lc-ButtonGroup-module__btn___bXPrU+.lc-ButtonGroup-module__btn___bXPrU{margin-left:2px}.lc-Card-module__card___GqMm2{background-color:var(--surface-basic-default);border:solid 1px var(--border-subtle);border-radius:4px;color:var(--content-default);margin-top:8px;overflow:hidden;padding:16px}.lc-Card-module__card__title___1YjAR{align-items:center;display:flex;margin-bottom:14px}.lc-Card-module__card__text___-jYlF{color:var(--content-default);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.lc-Card-module__card__img___teLC8{border-radius:4px;display:inline-block;height:24px;margin-right:10px;width:24px}.lc-Checkbox-module__checkbox___G7nTf{display:inline-block}.lc-Checkbox-module__checkbox__label___-o01x{align-items:center;cursor:pointer;display:inline-flex;flex:0 1 auto;width:100%}.lc-Checkbox-module__checkbox__square___MHUyd{align-items:center;background-color:var(--surface-basic-default);border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;display:flex;height:16px;justify-content:center;margin-right:8px;position:relative;transition:all .2s ease;width:16px}.lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:0;pointer-events:none;transition:all .2s ease}.lc-Checkbox-module__checkbox--selected___S2vqY .lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-default);border-color:var(--color-action-default)}.lc-Checkbox-module__checkbox--selected___S2vqY .lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:1}.lc-Checkbox-module__checkbox--selected___S2vqY:hover .lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-hover);border-color:var(--color-action-hover)}.lc-Checkbox-module__checkbox__text___P2SIq{color:var(--content-default);flex:1 0 auto}.lc-Checkbox-module__checkbox__input___YLbVF{display:none;height:100%;width:100%}.lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-default);border-color:var(--color-action-default)}.lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd .lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:1}.lc-Checkbox-module__checkbox__input___YLbVF:focus+.lc-Checkbox-module__checkbox__square___MHUyd{box-shadow:0 0 1px 2px #4284f5b3}.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--surface-basic-disabled);border-color:var(--border-disabled);opacity:.4}.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__label___-o01x,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__input___YLbVF,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__helper___YSJ-n,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__text___P2SIq{color:var(--content-disabled);cursor:not-allowed}.lc-Checkbox-module__checkbox__helper___YSJ-n{cursor:default;margin-left:24px}.lc-FieldDescription-module__field-description___IcRDH{color:var(--content-subtle);display:block;margin:4px 0 0}.lc-FieldError-module__field-error___IDkPT{color:var(--color-negative-default);display:block;margin:4px 0 0}.lc-FieldGroup-module__field-group___gy8lp{align-items:flex-start;display:flex;flex-direction:column;margin:-8px 0}.lc-FieldGroup-module__field-group___gy8lp>*{padding:0 0 8px}.lc-FieldGroup-module__field-group--inline___or4qf{flex-direction:row;margin:0 -8px}.lc-FieldGroup-module__field-group--inline___or4qf>*{padding:0 8px}.lc-FieldGroup-module__field-group--stretched___6rkuO>*{width:100%}.lc-Form-module__form___1nOYF{border:0;box-sizing:border-box;margin:0;padding:0}.lc-Form-module__form__header___U4B7t,.lc-Form-module__form__footer___1-sUX{margin-bottom:32px}.lc-Form-module__form__label___spg-J{color:var(--content-default);margin:0 0 16px}.lc-Form-module__form__helper___bhfwS{color:var(--content-default);margin:0}.lc-FormGroup-module__form-group___e2JHa{border-style:none;margin:0 0 32px;min-width:auto;padding:0}.lc-FormGroup-module__form-group__header___DgGmR{margin-bottom:16px}.lc-FormGroup-module__form-group__label___NC-JW{color:var(--content-default);display:block;margin-bottom:4px}.lc-FormGroup-module__form-group__helper___SRuxe{color:var(--content-subtle)}.lc-TextField-module__text-field___bis8c{margin-bottom:20px}.lc-TextField-module__text-field--inline___MPHqg{display:flex;flex-direction:column}.lc-TextField-module__text-field__wrapper--inline___-gOob{display:flex;flex-direction:row;flex-wrap:nowrap}.lc-TextField-module__text-field__label___vpNdg{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;margin-bottom:4px}.lc-TextField-module__text-field__label___vpNdg label{margin-bottom:0}.lc-TextField-module__text-field__label--inline___YSRYX{align-items:center;height:32px;justify-content:center;margin-bottom:0;margin-right:10px}.lc-TextField-module__text-field__label--no-text___XSyn2{justify-content:flex-end;margin-right:0}.lc-TextField-module__text-field__label-wrapper___SNCct{display:flex;flex-grow:1}.lc-TextField-module__text-field__label-adornment___--pgp{align-items:center;align-self:flex-end;display:flex;flex-shrink:0;height:20px;justify-content:flex-end;line-height:20px;margin-left:4px;overflow:hidden;width:20px}.lc-TextField-module__text-field__label-right-node___sdnWg{align-self:flex-end;color:var(--content-default);display:flex;flex-shrink:0;font-size:14px;justify-content:flex-end;line-height:20px;margin-left:5px}.lc-TextField-module__text-field__label-right-node--inline___vMBP2{flex-grow:1;margin-bottom:4px}.lc-TextField-module__text-field__row-break___AnNrI{flex-basis:100%;height:0}.lc-TextField-module__text-field__content___dCkUW{flex-grow:1}.lc-TextField-module__field-label___q8Y-p{color:var(--content-default);display:block;font-size:14px;line-height:20px;margin-bottom:4px}.lc-InputField-module__input-field___A-GHj{background-clip:padding-box;border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;color:var(--content-default);font-size:15px;line-height:1.2;padding:8px 10px;transition:border .25s ease-in-out;width:100%;will-change:border-color}.lc-InputField-module__input-field___A-GHj::placeholder{color:var(--content-disabled)}.lc-InputField-module__input-field___A-GHj:hover{border-color:var(--border-hover);outline:0}.lc-InputField-module__input-field___A-GHj:focus{border-color:var(--color-action-default);outline:0}.lc-InputField-module__input-field--error___MMchC,.lc-InputField-module__input-field--error___MMchC:focus{border-color:var(--color-negative-default)}.lc-InputField-module__input-field___A-GHj:disabled{color:var(--content-disabled);cursor:not-allowed}.lc-Link-module__link___kqx52{color:var(--color-action-default);cursor:pointer;text-decoration:none}.lc-Link-module__link___kqx52:hover{color:var(--color-action-hover);text-decoration:underline}.lc-Link-module__link___kqx52:active{color:var(--color-action-active)}.lc-Link-module__link--bold___1rGdO{font-weight:600}.lc-Modal-module__modal-base___hbL1U{background-color:var(--surface-basic-default);border-radius:4px;box-shadow:0 20px 60px #0000004d;color:var(--content-default);display:flex;flex-direction:column;margin:10px;max-width:800px;min-width:400px;overflow:hidden;position:relative}.lc-Modal-module__modal-base__overlay___kCQ8t{align-items:center;background-color:var(--surface-overlay);display:none;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:13000}.lc-Modal-module__modal-base__overlay--visible___zUNJL{display:flex}.lc-Modal-module__modal-base__close___gJlgr{align-items:center;background-color:transparent;border-style:none;box-shadow:none;color:var(--content-subtle);cursor:pointer;display:flex;height:24px;justify-content:center;outline:none;padding:0;position:absolute;right:18px;top:18px;width:24px;z-index:1}.lc-Modal-module__modal-base__close___gJlgr:hover{color:var(--content-default)}.lc-Modal-module__modal__header___Fp5VE{background-color:var(--surface-basic-default);box-shadow:inset 0 -1px 0 var(--border-subtle);box-sizing:border-box;color:var(--content-default);padding:20px;width:100%}.lc-Modal-module__modal__heading___G9KVK{color:var(--content-default);margin:0;max-width:calc(100% - 32px);padding:0;text-align:left}.lc-Modal-module__modal__body___M-jmN{background-color:var(--surface-basic-default);box-sizing:border-box;color:var(--content-default);display:flex;flex-direction:column;flex-grow:1;padding:20px;position:relative;width:100%}.lc-Modal-module__modal__footer___2LYdc{box-shadow:inset 0 1px 0 var(--border-subtle);box-sizing:border-box;display:flex;flex-shrink:0;justify-content:flex-end;padding:20px;width:100%}.lc-Modal-module__action-modal___CsRC7{align-items:center;box-sizing:border-box;justify-content:center;padding:52px 20px}.lc-Modal-module__action-modal__heading___m3MuG{color:var(--content-default);font-size:24px;font-weight:600;line-height:1.33;margin:0 0 20px;text-align:center;width:100%}.lc-Modal-module__action-modal__content___gf-R2{color:var(--content-default);font-size:15px;line-height:1.33;text-align:center;width:100%}.lc-Modal-module__action-modal__actions___kpRXD{box-sizing:border-box;display:flex;justify-content:center;margin-top:32px;width:100%}.lc-Modal-module__action-modal__icon___MK5xt{margin-bottom:20px}.lc-NumericInput-module__numeric-input___j1esc{display:inline-block;height:36px;position:relative;width:64px}.lc-NumericInput-module__numeric-input__increment___i3Tys,.lc-NumericInput-module__numeric-input__decrement___3qgn0{align-items:center;background:transparent;border:0;border-left:1px solid var(--border-default);box-sizing:border-box;cursor:pointer;display:flex;height:50%;justify-content:center;padding:0;position:absolute;right:1px;top:1px;width:23px}.lc-NumericInput-module__numeric-input__increment___i3Tys:hover,.lc-NumericInput-module__numeric-input__increment___i3Tys:focus,.lc-NumericInput-module__numeric-input__decrement___3qgn0:hover,.lc-NumericInput-module__numeric-input__decrement___3qgn0:focus{outline:0}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__increment___i3Tys:disabled{border-color:var(--border-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__decrement___3qgn0{border-top:1px solid var(--border-default);bottom:1px;top:auto}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__decrement___3qgn0:disabled{border-color:var(--border-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc input{appearance:textfield;background-clip:padding-box;border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;color:var(--content-default);height:100%;line-height:36px;padding:0 28px 0 4px;text-align:right;transition:border .25s ease-in-out;width:100%;will-change:border-color}.lc-NumericInput-module__numeric-input___j1esc input::-webkit-outer-spin-button,.lc-NumericInput-module__numeric-input___j1esc input::-webkit-inner-spin-button{appearance:none;margin:0}.lc-NumericInput-module__numeric-input___j1esc input:hover{border-color:var(--border-hover);outline:0}.lc-NumericInput-module__numeric-input___j1esc input:focus{border-color:var(--color-action-default);outline:0}.lc-NumericInput-module__numeric-input___j1esc input:disabled{color:var(--content-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc input:disabled:hover{border-color:var(--border-disabled)}.lc-NumericInput-module__numeric-input--disabled___yaRvQ{background-color:var(--surface-basic-disabled);color:var(--content-default);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--no-controls___D90rG input{padding:0 4px}.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input,.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input:hover,.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input:focus{border-color:var(--color-negative-default)}.lc-Popover-module__popover___8X1b2{background-color:var(--surface-basic-default);border-radius:4px;box-shadow:0 1px 10px #424d574d;display:none;max-width:336px;min-width:168px}.lc-Popover-module__popover___8X1b2:focus{outline:none}.lc-Popover-module__popover--visible___u5NXB{display:block}.lc-ProgressCircle-module__progress-circle___NRHCi{height:36px;transform:rotate(-90deg);width:36px}.lc-ProgressCircle-module__progress-circle--small___8FVwG{height:15px;width:15px}.lc-ProgressCircle-module__progress-circle--medium___XlzEX{height:36px;width:36px}.lc-ProgressCircle-module__progress-circle--large___qxa2y{height:56px;width:56px}.lc-ProgressCircle-module__progress-circle__bg-line--normal___nDNwj{stroke:var(--color-action-disabled)}.lc-ProgressCircle-module__progress-circle__bg-line--success___1aP-O{stroke:var(--color-positive-disabled)}.lc-ProgressCircle-module__progress-circle__bg-line--error___oqMZL{stroke:var(--color-negative-disabled)}.lc-ProgressCircle-module__progress-circle__indicator--normal___0SdkX{stroke:var(--color-action-default);transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle__indicator--success___fLwRR{stroke:var(--color-positive-default);transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle__indicator--error___nwJS9{transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle--error___2AA9K .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-negative-disabled)}.lc-ProgressCircle-module__progress-circle--success___hH5jv .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-positive-disabled)}.lc-ProgressCircle-module__progress-circle--normal___dFneQ .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-action-disabled)}.lc-PromoBanner-module__promo-banner___-mGpq{align-items:center;background-color:var(--surface-basic-subtle);border-radius:4px;box-sizing:border-box;color:var(--content-default);display:flex;font-size:16px;justify-content:space-between;min-width:180px;padding:20px;position:relative;width:100%;word-break:break-word}.lc-PromoBanner-module__promo-banner___-mGpq b{font-weight:600}.lc-PromoBanner-module__promo-banner__content___kRWar{display:flex;flex-direction:row;justify-content:flex-start}.lc-PromoBanner-module__promo-banner__wrapper___I-8cl{display:flex;flex-direction:column}.lc-PromoBanner-module__promo-banner__header___ebYHW{font-weight:600;margin-bottom:8px}.lc-PromoBanner-module__promo-banner__img___eaShb{height:48px;object-fit:contain;width:48px}.lc-PromoBanner-module__promo-banner__button-text___taYKa{margin-right:24px}.lc-PromoBanner-module__promo-banner--light___eJxOR{background-color:var(--surface-basic-default);border:solid 1px var(--border-subtle)}.lc-PromoBanner-module__promo-banner--small___7sWLV{flex-wrap:wrap;max-width:400px}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__content___kRWar{flex-direction:column}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__img___eaShb{margin-bottom:12px}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__footer___8OjvH{display:flex;margin-top:12px}.lc-PromoBanner-module__promo-banner--medium___NeeoJ{flex-wrap:wrap;max-width:800px}.lc-PromoBanner-module__promo-banner--medium___NeeoJ .lc-PromoBanner-module__promo-banner__img___eaShb{margin-right:20px}.lc-PromoBanner-module__promo-banner--medium___NeeoJ .lc-PromoBanner-module__promo-banner__wrapper___I-8cl{max-width:680px}.lc-PromoBanner-module__promo-banner--medium___NeeoJ .lc-PromoBanner-module__promo-banner__footer___8OjvH{display:flex;flex-shrink:0;margin-top:12px}.lc-PromoBanner-module__promo-banner--large___pMiCU{min-width:600px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__img___eaShb{margin-right:20px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__wrapper___I-8cl{max-width:680px;min-width:180px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__footer___8OjvH{align-items:center;display:inline-flex;flex-shrink:0;margin:0 56px}.lc-PromoBanner-module__promo-banner__close-icon___GowBL{background-color:transparent;border:0;box-shadow:none;cursor:pointer;height:24px;overflow:hidden;padding:0;position:absolute;right:12px;top:12px;width:24px}.lc-RadioButton-module__radio-button___WaToM{display:inline-block}.lc-RadioButton-module__radio-button__label___i7ygg{align-items:center;cursor:pointer;display:inline-flex;flex:0 1 auto;width:100%}.lc-RadioButton-module__radio-button__circle___wimWA{background-color:var(--surface-basic-default);border:1px solid var(--border-default);border-radius:16px;box-sizing:border-box;height:16px;margin-right:8px;position:relative;transition:all .2s ease;width:16px}.lc-RadioButton-module__radio-button__inner-circle___qkRVf{background-color:var(--color-action-default);border-radius:8px;height:8px;left:3px;opacity:0;position:absolute;top:3px;transition:all .2s ease;width:8px}.lc-RadioButton-module__radio-button__text___mT8c0{color:var(--content-default);flex:1 0 auto}.lc-RadioButton-module__radio-button__input___7OTAK{cursor:pointer;height:100%;margin:0;opacity:0;width:100%}.lc-RadioButton-module__radio-button__helper___r8gJJ{cursor:default;margin-left:24px}.lc-RadioButton-module__radio-button___WaToM:focus .lc-RadioButton-module__radio-button__circle___wimWA{border-radius:20px;box-shadow:0 0 1px 1.6px #4384f5b3}.lc-RadioButton-module__radio-button--selected___s9lqj .lc-RadioButton-module__radio-button__circle___wimWA{border-color:var(--color-action-default)}.lc-RadioButton-module__radio-button--selected___s9lqj .lc-RadioButton-module__radio-button__inner-circle___qkRVf{opacity:1}.lc-RadioButton-module__radio-button--selected___s9lqj:hover .lc-RadioButton-module__radio-button__circle___wimWA{border-color:var(--color-action-hover)}.lc-RadioButton-module__radio-button--selected___s9lqj:hover .lc-RadioButton-module__radio-button__inner-circle___qkRVf{background-color:var(--color-action-hover)}.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__circle___wimWA{opacity:.4}.lc-RadioButton-module__radio-button--disabled___wHSA7:not(.lc-RadioButton-module__radio-button--selected___s9lqj) .lc-RadioButton-module__radio-button__circle___wimWA{background-color:var(--surface-basic-disabled)}.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__label___i7ygg,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__input___7OTAK,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__text___mT8c0,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__helper___r8gJJ{color:var(--content-disabled);cursor:not-allowed}.lc-Switch-module__switch___AaA2k{display:inline-block;outline:none;position:relative}.lc-Switch-module__switch___AaA2k:hover .lc-Switch-module__switch__track--enabled___sy4Xl{background-color:var(--color-positive-default)}.lc-Switch-module__switch___AaA2k:hover .lc-Switch-module__switch__track--disabled___HkDhl{background-color:var(--surface-secondary-default)}.lc-Switch-module__switch--basic___jKO4n{height:28px;width:44px}.lc-Switch-module__switch--compact___OGFIX{height:16px;width:25px}.lc-Switch-module__switch__input___NiiOR{cursor:pointer;height:100%;margin:0;opacity:0;width:100%}.lc-Switch-module__switch__input___NiiOR:focus+.lc-Switch-module__switch__container___79F7W .lc-Switch-module__switch__track___2wr2M{box-shadow:0 0 1px 2px #4379d6b3}.lc-Switch-module__switch__container___79F7W{align-items:center;display:flex;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.lc-Switch-module__switch__track___2wr2M{border-radius:24px;flex:1;height:100%;transition-duration:.3s;transition-property:background-color;transition-timing-function:cubic-bezier(.33,0,.67,1)}.lc-Switch-module__switch__track--enabled___sy4Xl{background-color:var(--color-positive-default)}.lc-Switch-module__switch__track--disabled___HkDhl{background-color:var(--surface-secondary-default)}.lc-Switch-module__switch__slider___WHd--{background:var(--content-white-locked);border-radius:50%;position:absolute;top:50%;transform:translateY(-50%);transition-duration:.3s;transition-property:left,right;transition-timing-function:cubic-bezier(.33,0,.67,1)}.lc-Switch-module__switch__slider--basic___OMKTp{height:24px;width:24px}.lc-Switch-module__switch__slider--basic--enabled___sh9jo{left:18px;right:2px}.lc-Switch-module__switch__slider--basic--disabled___GSTO9{left:2px;right:18px}.lc-Switch-module__switch__slider--compact___uZ-lS{height:14px;width:14px}.lc-Switch-module__switch__slider--compact--enabled___04TFA{left:9px;right:2px}.lc-Switch-module__switch__slider--compact--disabled___Vqznr{left:2px;right:9px}.lc-Tab-module__tab___fME7u{align-items:center;background:none;border:0;color:var(--content-default);cursor:pointer;display:flex;flex-direction:row;margin:0 8px 11px;outline:none;overflow:visible;padding:0 12px 1px;position:relative;transition:color .25s}.lc-Tab-module__tab__description___JGXU6{color:var(--content-subtle);display:inline-block;padding-left:3px;transition:color .25s}.lc-Tab-module__tab___fME7u:before{background-color:var(--color-action-default);bottom:0;content:"";display:block;height:0;left:0;position:absolute;right:0;z-index:1}.lc-Tab-module__tab--selected___c0EkL,.lc-Tab-module__tab--selected___c0EkL .lc-Tab-module__tab__description___JGXU6{color:var(--color-action-default)}.lc-Tab-module__tab--selected___c0EkL:before{bottom:-12px;height:3px}.lc-Tab-module__tab___fME7u:hover{color:var(--color-action-default);text-decoration:none}.lc-Tab-module__tab___fME7u:hover .lc-Tab-module__tab__description___JGXU6{color:var(--color-action-default)}.lc-TabsWrapper-module__tabs___Y2xyD{border-bottom:1px solid var(--border-subtle);position:relative}.lc-TabsWrapper-module__tabs__list___i6tVO{display:flex;flex-direction:row;margin:0 -8px;position:relative}.lc-Tag-module__tag___1QRVY{align-items:center;background-color:var(--surface-secondary-default);border-color:var(--border-default);border-radius:4px;border-style:none;border-width:1px;box-sizing:border-box;color:var(--content-default);display:inline-flex;position:relative}.lc-Tag-module__tag--success___P2hXQ{background-color:#d1f4d5;border-color:#005321;color:#005321}.lc-Tag-module__tag--success___P2hXQ .lc-Tag-module__tag__remove___UmtrW{color:#005321}.lc-Tag-module__tag--error___1cjsm{background-color:var(--surface-feedback-negative);border-color:var(--color-negative-active);color:var(--color-negative-active)}.lc-Tag-module__tag--error___1cjsm .lc-Tag-module__tag__remove___UmtrW{color:var(--color-negative-active)}.lc-Tag-module__tag--warning___PstMG{background-color:#ffe9bc;border-color:#755b00;color:#755b00}.lc-Tag-module__tag--warning___PstMG .lc-Tag-module__tag__remove___UmtrW{color:#755b00}.lc-Tag-module__tag--info___RTH0C{background-color:var(--surface-feedback-info);border-color:var(--color-action-active);color:var(--color-action-active)}.lc-Tag-module__tag--info___RTH0C .lc-Tag-module__tag__remove___UmtrW{color:var(--color-action-active)}.lc-Tag-module__tag--medium___l5-KI{padding:1px 8px}.lc-Tag-module__tag--large___ytC6Y{padding:5px 12px}.lc-Tag-module__tag--outline___aZXtr{background-color:transparent;border-style:solid}.lc-Tag-module__tag--outline___aZXtr.lc-Tag-module__tag--medium___l5-KI{padding:0 7px}.lc-Tag-module__tag--outline___aZXtr.lc-Tag-module__tag--large___ytC6Y{padding:4px 11px}.lc-Tag-module__tag--outline___aZXtr .lc-Tag-module__icon___2Z-35{background-color:transparent}.lc-Tag-module__tag--text-white___x0fnD{color:#fff}.lc-Tag-module__tag--text-black___dUvmD{color:#000}.lc-Tag-module__tag--with-icon___ZlkvT.lc-Tag-module__tag--medium___l5-KI{padding-left:4px}.lc-Tag-module__tag--with-icon___ZlkvT.lc-Tag-module__tag--large___ytC6Y{padding-left:6px}.lc-Tag-module__tag--dismissible___Qobyr.lc-Tag-module__tag--medium___l5-KI{padding-right:4px}.lc-Tag-module__tag--dismissible___Qobyr.lc-Tag-module__tag--large___ytC6Y{padding-right:6px}.lc-Tag-module__tag__icon___tZoQ9{margin-right:4px}.lc-Tag-module__tag__avatar___U4c-P{border-radius:50%;height:20px;margin-right:4px;width:20px}.lc-Tag-module__tag__remove___UmtrW{align-items:center;background-color:transparent;border-style:none;box-shadow:none;color:var(--content-subtle);cursor:pointer;display:flex;justify-content:center;outline:none;padding:0 0 0 4px}.lc-Tag-module__tag__remove___UmtrW:hover{color:var(--content-default)}.lc-TagInput-module__tag-input___CLVY-{align-items:center;background-clip:padding-box;border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;color:var(--content-default);display:flex;flex-wrap:wrap;font-size:15px;overflow-y:auto;padding:4px;transition:border .25s ease-in-out;width:100%;will-change:border-color}.lc-TagInput-module__tag-input___CLVY-::placeholder{color:var(--content-disabled)}.lc-TagInput-module__tag-input___CLVY-:hover{border-color:var(--border-hover);outline:0}.lc-TagInput-module__tag-input___CLVY-:focus-within{border-color:var(--color-action-default);outline:0}.lc-TagInput-module__tag-input--error___RP0SB,.lc-TagInput-module__tag-input--error___RP0SB:focus-within{border-color:var(--color-negative-default)}.lc-TagInput-module__tag-input___CLVY-:disabled{color:var(--content-disabled);cursor:not-allowed}.lc-TagInput-module__tag-input___CLVY- *{box-sizing:border-box}.lc-TagInput-module__tag-input___CLVY->*{margin:2px}.lc-TagInput-module__tag-input__input___dgEYB{appearance:none;background:transparent;border-style:none;box-shadow:none;color:var(--content-default);flex-grow:1;font-size:15px;margin:0 4px;outline:0;padding:0 0 0 4px;width:auto}.lc-TagInput-module__tag-input__input--medium___DYF7X{line-height:28px}.lc-TagInput-module__tag-input__input--large___G6iEO{line-height:36px}.lc-TagInput-module__tag-input__input___dgEYB:focus{border-style:none}.lc-TagInput-module__tag-input__tag__content___x95-M{border-style:none;outline:0;padding:0;white-space:nowrap}.lc-Toast-module__toast___j5Amn{align-items:center;background:#fff;border-radius:4px;box-shadow:0 6px 30px -10px #0000004d;box-sizing:border-box;display:inline-flex;flex:0 1 auto;font-size:15px;font-stretch:normal;font-style:normal;font-weight:600;justify-content:flex-start;letter-spacing:normal;line-height:20px;max-width:500px;min-width:300px;padding:10px 12px}.lc-Toast-module__toast__content___HjaNw{color:var(--content-default);width:100%}.lc-Toast-module__toast__icon___wLbLu,.lc-Toast-module__toast__close___O18Lh{align-self:baseline;height:20px;padding-right:12px}.lc-Toast-module__toast__icon___wLbLu svg{display:flex;fill:var(--color-action-default);height:20px;width:20px}.lc-Toast-module__toast__actions___JWu-1{align-items:center;align-self:flex-start;display:inline-flex;flex:1 0 auto;flex-wrap:nowrap;height:20px;margin-bottom:auto;margin-left:auto}.lc-Toast-module__toast__actions-close___xN8YT{align-items:center;display:flex;flex:0 1 auto;height:100%;margin-left:16px;width:100%}.lc-Toast-module__toast__actions-close___xN8YT svg{cursor:pointer;display:flex;fill:var(--content-subtle);height:16px;width:16px}.lc-Toast-module__toast__actions-custom___z1UUf{background-color:transparent;border:0;color:var(--content-default);cursor:pointer;font-weight:600;line-height:20px;margin-left:16px;outline:0;padding:0;text-decoration:underline;white-space:nowrap}.lc-Toast-module__toast--notification___pDXnc{background:#fff}.lc-Toast-module__toast--success___7UC6m{background:var(--color-positive-default)}.lc-Toast-module__toast--warning___pteb7{background:var(--color-warning-default)}.lc-Toast-module__toast--warning___pteb7 .lc-Toast-module__toast__content___HjaNw{color:#424d57}.lc-Toast-module__toast--error___trg--{background:var(--color-negative-default)}.lc-Toast-module__toast--info___IOp44{background:var(--color-action-default)}.lc-Toast-module__toast--success___7UC6m .lc-Toast-module__toast__content___HjaNw,.lc-Toast-module__toast--success___7UC6m .lc-Toast-module__toast__actions-custom___z1UUf,.lc-Toast-module__toast--error___trg-- .lc-Toast-module__toast__content___HjaNw,.lc-Toast-module__toast--error___trg-- .lc-Toast-module__toast__actions-custom___z1UUf,.lc-Toast-module__toast--info___IOp44 .lc-Toast-module__toast__content___HjaNw,.lc-Toast-module__toast--info___IOp44 .lc-Toast-module__toast__actions-custom___z1UUf{color:#fff}.lc-Toast-module__toast-wrapper___Oiwqp{align-items:center;display:flex;flex-direction:column;position:absolute;z-index:120}.lc-Toast-module__toast-wrapper--fixed___QYxRI{position:fixed}.lc-Toast-module__toast-wrapper--block___j0kGt{position:static}.lc-Toast-module__toast-wrapper--horizontal-center___t9AFd{left:50%;transform:translate(-50%)}.lc-Toast-module__toast-wrapper--horizontal-left___-GY4I{left:5px}.lc-Toast-module__toast-wrapper--horizontal-right___VVMgm{right:5px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG{top:5px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast___j5Amn{margin-bottom:10px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--slide___G7GAp{transform:translateY(-100%)!important}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--slide___G7GAp.lc-Toast-module__toast-appear-active--slide___brfgK{transform:translateY(0)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--slide___aqiBq{transform:translateY(0)!important}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--slide___aqiBq.lc-Toast-module__toast-exit-active--slide___WryMi{transform:translateY(-100%)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH{bottom:5px}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast___j5Amn{margin-top:10px}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--slide___G7GAp{transform:translateY(100%)!important}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--slide___G7GAp.lc-Toast-module__toast-appear-active--slide___brfgK{transform:translateY(0)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--slide___aqiBq{transform:translateY(0)!important}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--slide___aqiBq.lc-Toast-module__toast-exit-active--slide___WryMi{transform:translateY(100%)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--fade___oUwHm,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--fade___oUwHm{opacity:0}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--fade___oUwHm.lc-Toast-module__toast-appear-active--fade___D3--J,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--fade___oUwHm.lc-Toast-module__toast-appear-active--fade___D3--J,.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--fade___iDA1p,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--fade___iDA1p{opacity:1;transition:opacity .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--fade___iDA1p.lc-Toast-module__toast-exit-active--fade___tL7sb,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--fade___iDA1p.lc-Toast-module__toast-exit-active--fade___tL7sb{opacity:0}
|
|
1
|
+
:root,.lc-legacy-theme{--background: #fff;--background-01: #fff;--background-02: #fff;--background-03: #f1f1f2;--surface-basic-default: #fff;--surface-primary-default: #fff;--surface-basic-subtle: #f1f6f8;--surface-secondary-default: #f1f6f8;--surface-secondary-hover: #e0e8eb;--surface-secondary-active: #dae4eb;--surface-secondary-disabled: #eaedf0;--surface-basic-hover: #e0e8eb;--surface-primary-hover: #f3f6f7;--surface-basic-active: #dae4eb;--surface-primary-active: #ebf1f4;--surface-primary-active-colored: rgb(66 132 245 / 25%);--surface-basic-disabled: #eaedf0;--surface-primary-disabled: #f9fafb;--surface-tertiary-default: #e4e8ec;--surface-secondary-subtle: #e4e8ec;--surface-moderate-default: #bdc7d1;--surface-moderate-hover: #b7c2cd;--surface-moderate-active: #b1bdc9;--surface-tertiary-hover: #c2c2c6;--surface-tertiary-active: #bababe;--surface-tertiary-disabled: #e4e8ec;--surface-feedback-info: #e5f3ff;--surface-accent-emphasis-low-info: #e6f3ff;--surface-feedback-negative: #fbeaed;--surface-accent-emphasis-low-negative: #fbeaed;--surface-feedback-warning: #fff8e0;--surface-accent-emphasis-low-warning: #fff8e0;--surface-feedback-positive: #e6f4ec;--surface-accent-emphasis-low-positive: #e6f4ec;--surface-accent-emphasis-low-purple: #eee8ff;--surface-accent-emphasis-min-info: #f4faff;--surface-accent-emphasis-min-negative: #fff8f8;--surface-accent-emphasis-min-warning: #fff9ed;--surface-accent-emphasis-min-positive: #f3fcf4;--surface-accent-emphasis-min-purple: #faf8ff;--surface-invert-default: #424d57;--surface-invert-primary: #424d57;--surface-invert-subtle: #677179;--surface-invert-secondary: #677179;--surface-invert-disabled: #a0a6ab;--surface-locked-default: #fff;--surface-locked-hover: #efeff0;--surface-locked-active: #daedff;--surface-locked-disabled: rgb(255 255 255 / 70%);--surface-locked-white: #fff;--surface-locked-black: #000;--surface-accent-emphasis-high-info: #4284f5;--surface-accent-emphasis-high-negative: #d74747;--surface-accent-emphasis-high-warning: #fbbd04;--surface-accent-emphasis-high-positive: #22aa61;--surface-accent-emphasis-high-purple: #9642f5;--surface-overlay: rgb(0 0 0 / 70%);--surface-other-overlay: rgb(0 0 0 / 70%);--surface-other-agent: #4284f5;--surface-other-skeleton: #e5e8ec;--content-default: #424d57;--content-basic-primary: #424d57;--content-subtle: #677179;--content-basic-secondary: #677179;--content-disabled: #a0a6ab;--content-basic-disabled: #a0a6ab;--content-basic-negative: #930002;--content-basic-warning: #755b00;--content-basic-positive: #005321;--content-basic-info: #003fa4;--content-basic-purple: #6100bd;--content-basic-gradient-01: linear-gradient( 254.49deg, #b99aff -.38%, #68afff 94.44% );--content-white-locked: #fff;--content-locked-white: #fff;--content-black-locked: #424d57;--content-locked-black: #000;--content-locked-default: #424d57;--content-locked-hover: #131317;--content-locked-active: #003fa4;--content-locked-disabled: #8d8d95;--content-invert-default: #fff;--content-invert-primary: #fff;--content-invert-subtle: rgb(255 255 255 / 70%);--content-invert-secondary: rgb(255 255 255 / 70%);--content-invert-disabled: rgb(255 255 255 / 50%);--content-invert-gradient-01: linear-gradient( 254.49deg, #b99aff -.38%, #68afff 94.44% );--border-default: #bdc7d1;--border-basic-primary: #bdc7d1;--border-basic-secondary: #e4e8ec;--border-subtle: #e4e8ec;--border-basic-tertiary: #e9edf0;--border-hover: #a0a6ab;--border-basic-hover: #a0a6ab;--border-disabled: #dee3e8;--border-basic-disabled: #dee3e8;--border-basic-negative: #930002;--border-basic-warning: #755b00;--border-basic-positive: #005321;--border-basic-info: #003fa4;--border-basic-purple: #6100bd;--border-invert-default: rgb(255 255 255 / 70%);--border-invert-primary: rgb(255 255 255 / 70%);--border-invert-subtle: rgb(255 255 255 / 30%);--border-invert-secondary: rgb(255 255 255 / 30%);--border-invert-hover: #fff;--border-invert-disabled: rgb(255 255 255 / 50%);--color-action-active: #295fbc;--action-primary-active: #295fbc;--color-action-hover: #4379d6;--action-primary-hover: #4379d6;--color-action-default: #4284f5;--action-primary-default: #4284f5;--color-action-default-rgb: 66, 132, 245;--color-action-disabled: #a3c3fa;--action-primary-disabled: #a3c3fa;--color-negative-active: #94383a;--action-negative-active: #94383a;--color-negative-hover: #b94648;--action-negative-hover: #b94648;--color-negative-default: #d74747;--action-negative-default: #d74747;--color-negative-disabled: #eba3a3;--action-negative-disabled: #eba3a3;--color-warning-default: #fbbd04;--action-warning-default: #fbbd04;--color-warning-hover: #f99a01;--action-warning-hover: #f99a01;--color-positive-default: #22aa61;--action-positive-default: #22aa61;--color-positive-hover: #0d874a;--action-positive-hover: #0d874a;--color-positive-disabled: #90d5c4;--action-positive-disabled: #90d5c4;--action-neutral-default: #bdc7d1;--action-neutral-hover: #a0a6ab;--action-neutral-disabled: #dee3e8;--color-bot: #6b5aba;--surface-other-bot: #6b5aba;--color-black: #424d57;--color-white: #fff;--decor-blue900: #003288;--decor-blue800: #003fa4;--decor-blue700: #004bc2;--decor-blue600: #0059e1;--decor-blue500: #06f;--decor-blue400: #328dff;--decor-blue300: #68afff;--decor-blue200: #9dceff;--decor-blue100: #daedff;--decor-blue50: #f4faff;--decor-orange900: #6c1d00;--decor-orange800: #842600;--decor-orange700: #9c2e00;--decor-orange600: #b43700;--decor-orange500: #d54300;--decor-orange400: #ff5100;--decor-orange300: #ff8a77;--decor-orange200: #ffb8af;--decor-orange100: #ffe5e3;--decor-orange50: #fff8f7;--decor-yellow900: #493700;--decor-yellow800: #755b00;--decor-yellow700: #c9a100;--decor-yellow600: #e8bb00;--decor-yellow500: #f3c600;--decor-yellow400: #d1aa00;--decor-yellow300: #fed65e;--decor-yellow200: #fedc89;--decor-yellow100: #fff2d6;--decor-yellow50: #fff9ed;--decor-gray950: #131317;--decor-gray900: #1b1b20;--decor-gray800: #29292f;--decor-gray700: #3b3b43;--decor-gray600: #4e4e58;--decor-gray500: #62626d;--decor-gray400: #767680;--decor-gray300: #8d8d95;--decor-gray200: #ababb1;--decor-gray150: #c9c9cd;--decor-gray100: #c9c9cd;--decor-gray75: #eeeeef;--decor-gray50: #e2e2e4;--decor-gray40: #eeeeef;--decor-gray20: #fcfcfc;--decor-green900: #00431a;--decor-green800: #005321;--decor-green700: #006329;--decor-green600: #007331;--decor-green500: #00893c;--decor-green400: #00a449;--decor-green300: #00c057;--decor-green200: #7edd92;--decor-green100: #e4f4ed;--decor-green50: #f3fcf4;--decor-red900: #790002;--decor-red800: #930002;--decor-red700: #ae0003;--decor-red600: #ca0005;--decor-red500: #ee0007;--decor-red400: #ff4c4d;--decor-red300: #ff8889;--decor-red200: #ffb7b7;--decor-red100: #ffe5e5;--decor-red50: #fff8f8;--decor-purple900: #50009c;--decor-purple800: #6100bd;--decor-purple700: #7400df;--decor-purple600: #8609ff;--decor-purple500: #9146ff;--decor-purple400: #a372ff;--decor-purple300: #b99aff;--decor-purple200: #d1c0ff;--decor-purple100: #eee8ff;--decor-purple50: #faf8ff;--products-livechat: #fe5100;--products-helpdesk: #00c057;--products-chatbot: #06f;--products-knowledgebase: #9146ff;--illustrations-primary: #ffd000;--illustrations-secondary: #e2e2e4;--illustrations-stroke: #1b1b20;--tag-surface-01: #e4e8ec;--tag-content-01: #424d57}.lc-light-theme{--background: #fff;--background-01: #fff;--background-02: #fff;--background-03: #f1f1f2;--surface-basic-default: #fff;--surface-primary-default: #fff;--surface-basic-subtle: #f6f6f7;--surface-secondary-default: #f1f1f2;--surface-secondary-hover: #e8e8ea;--surface-secondary-active: #dfdfe1;--surface-secondary-disabled: #f6f6f7;--surface-basic-hover: #e2e2e4;--surface-primary-hover: #f6f6f6;--surface-basic-active: #c9c9cd;--surface-primary-active: #ececec;--surface-primary-active-colored: rgb(0 102 255 / 25%);--surface-basic-disabled: #f6f6f7;--surface-primary-disabled: #f6f6f7;--surface-tertiary-default: #e2e2e4;--surface-secondary-subtle: #e4e8ec;--surface-moderate-default: #c9c9cd;--surface-moderate-hover: #c2c2c6;--surface-moderate-active: #bababe;--surface-tertiary-hover: #dadadc;--surface-tertiary-active: #d1d1d4;--surface-tertiary-disabled: #eeeeef;--surface-feedback-info: #daedff;--surface-accent-emphasis-low-info: #daedff;--surface-feedback-negative: #ffe5e5;--surface-accent-emphasis-low-negative: #ffe5e5;--surface-feedback-warning: #fff2d6;--surface-accent-emphasis-low-warning: #ffe9bc;--surface-feedback-positive: #e4f4ed;--surface-accent-emphasis-low-positive: #d1f4d5;--surface-accent-emphasis-low-purple: #eee8ff;--surface-accent-emphasis-min-info: #f4faff;--surface-accent-emphasis-min-negative: #fff8f8;--surface-accent-emphasis-min-warning: #fff9ed;--surface-accent-emphasis-min-positive: #f3fcf4;--surface-accent-emphasis-min-purple: #faf8ff;--surface-invert-default: #1b1b20;--surface-invert-primary: #1b1b20;--surface-invert-subtle: #4e4e58;--surface-invert-secondary: #3b3b43;--surface-invert-disabled: #8d8d95;--surface-locked-default: #fff;--surface-locked-hover: #eeeeef;--surface-locked-active: #daedff;--surface-locked-disabled: rgb(255 255 255 / 70%);--surface-locked-white: #fff;--surface-locked-black: #000;--surface-accent-emphasis-high-info: #06f;--surface-accent-emphasis-high-negative: #ca0005;--surface-accent-emphasis-high-warning: #e8bb00;--surface-accent-emphasis-high-positive: #00893c;--surface-accent-emphasis-high-purple: #9146ff;--surface-overlay: rgb(19 19 23 / 70%);--surface-other-overlay: rgb(19 19 23 / 70%);--surface-other-agent: #06f;--surface-other-skeleton: #e2e2e4;--content-default: #131317;--content-basic-primary: #131317;--content-subtle: #62626d;--content-basic-secondary: #4e4e58;--content-disabled: #8d8d95;--content-basic-disabled: #8d8d95;--content-basic-negative: #ca0005;--content-basic-warning: #755b00;--content-basic-positive: #005321;--content-basic-info: #003fa4;--content-basic-purple: #6100bd;--content-basic-gradient-01: linear-gradient( 254.49deg, #b99aff -.38%, #68afff 94.44% );--content-white-locked: #fff;--content-locked-white: #fff;--content-black-locked: #131317;--content-locked-black: #000;--content-locked-default: #131317;--content-locked-hover: #131317;--content-locked-active: #003fa4;--content-locked-disabled: #8d8d95;--content-invert-default: #fff;--content-invert-primary: #fff;--content-invert-subtle: rgb(255 255 255 / 70%);--content-invert-secondary: rgb(255 255 255 / 70%);--content-invert-disabled: rgb(255 255 255 / 50%);--content-invert-gradient-01: linear-gradient( 254.49deg, #b99aff -.38%, #68afff 94.44% );--border-default: #c9c9cd;--border-basic-primary: #c9c9cd;--border-basic-secondary: #e2e2e4;--border-subtle: #eeeeef;--border-basic-tertiary: #e5e5e6;--border-hover: #ababb1;--border-basic-hover: #ababb1;--border-disabled: #e2e2e4;--border-basic-disabled: #e2e2e4;--border-basic-negative: #ca0005;--border-basic-warning: #755b00;--border-basic-positive: #005321;--border-basic-info: #003fa4;--border-basic-purple: #6100bd;--border-invert-default: rgb(255 255 255 / 70%);--border-invert-primary: rgb(255 255 255 / 70%);--border-invert-subtle: rgb(255 255 255 / 30%);--border-invert-secondary: rgb(255 255 255 / 30%);--border-invert-hover: #fff;--border-invert-disabled: rgb(255 255 255 / 50%);--color-action-active: #003fa4;--action-primary-active: #b7cbea;--color-action-hover: #004bc2;--action-primary-hover: #064db9;--color-action-default: #06f;--action-primary-default: #06f;--color-action-default-rgb: 0, 102, 255;--color-action-disabled: #9dceff;--action-primary-disabled: rgb(0 102 255 / 20%);--color-negative-active: #930002;--action-negative-active: #6f090e;--color-negative-hover: #ae0003;--action-negative-hover: #8d0004;--color-negative-default: #ca0005;--action-negative-default: #ca0005;--color-negative-disabled: #eba3a3;--action-negative-disabled: rgb(202 0 5 / 20%);--color-warning-default: #e8bb00;--action-warning-default: #e8bb00;--color-warning-hover: #c9a100;--action-warning-hover: #a88907;--color-positive-default: #00893c;--action-positive-default: #00893c;--color-positive-hover: #006329;--action-positive-hover: #066631;--color-positive-disabled: #d1f4d5;--action-positive-disabled: rgb(0 137 60 / 20%);--action-neutral-default: #8d8d95;--action-neutral-hover: #68686f;--action-neutral-disabled: rgb(141 141 149 / 20%);--color-bot: #50009c;--surface-other-bot: #50009c;--color-black: #131317;--color-white: #fff;--decor-blue900: #003288;--decor-blue800: #003fa4;--decor-blue700: #004bc2;--decor-blue600: #0059e1;--decor-blue500: #06f;--decor-blue400: #328dff;--decor-blue300: #68afff;--decor-blue200: #9dceff;--decor-blue100: #daedff;--decor-blue50: #f4faff;--decor-orange900: #6c1d00;--decor-orange800: #842600;--decor-orange700: #9c2e00;--decor-orange600: #b43700;--decor-orange500: #d54300;--decor-orange400: #ff5100;--decor-orange300: #ff8a77;--decor-orange200: #ffb8af;--decor-orange100: #ffe5e3;--decor-orange50: #fff8f7;--decor-yellow900: #493700;--decor-yellow800: #755b00;--decor-yellow700: #c9a100;--decor-yellow600: #e8bb00;--decor-yellow500: #f3c600;--decor-yellow400: #d1aa00;--decor-yellow300: #fed65e;--decor-yellow200: #fedc89;--decor-yellow100: #fff2d6;--decor-yellow50: #fff9ed;--decor-gray950: #131317;--decor-gray900: #1b1b20;--decor-gray800: #29292f;--decor-gray700: #3b3b43;--decor-gray600: #4e4e58;--decor-gray500: #62626d;--decor-gray400: #767680;--decor-gray300: #8d8d95;--decor-gray200: #ababb1;--decor-gray150: #c9c9cd;--decor-gray100: #c9c9cd;--decor-gray75: #eeeeef;--decor-gray50: #e2e2e4;--decor-gray40: #eeeeef;--decor-gray20: #fcfcfc;--decor-green900: #00431a;--decor-green800: #005321;--decor-green700: #006329;--decor-green600: #007331;--decor-green500: #00893c;--decor-green400: #00a449;--decor-green300: #00c057;--decor-green200: #7edd92;--decor-green100: #e4f4ed;--decor-green50: #f3fcf4;--decor-red900: #790002;--decor-red800: #930002;--decor-red700: #ae0003;--decor-red600: #ca0005;--decor-red500: #ee0007;--decor-red400: #ff4c4d;--decor-red300: #ff8889;--decor-red200: #ffb7b7;--decor-red100: #ffe5e5;--decor-red50: #fff8f8;--decor-purple900: #50009c;--decor-purple800: #6100bd;--decor-purple700: #7400df;--decor-purple600: #8609ff;--decor-purple500: #9146ff;--decor-purple400: #a372ff;--decor-purple300: #b99aff;--decor-purple200: #d1c0ff;--decor-purple100: #eee8ff;--decor-purple50: #faf8ff;--products-livechat: #fe5100;--products-helpdesk: #00c057;--products-chatbot: #06f;--products-knowledgebase: #9146ff;--illustrations-primary: #ffd000;--illustrations-secondary: #e2e2e4;--illustrations-stroke: #1b1b20;--tag-surface-01: #e2e2e4;--tag-content-01: #131317}.lc-dark-theme{--background: #131317;--background-01: #131317;--background-02: #202024;--background-03: #202024;--surface-basic-default: #202024;--surface-primary-default: #202024;--surface-basic-subtle: #29292f;--surface-secondary-default: #2d2d33;--surface-secondary-hover: #343439;--surface-secondary-active: #3a3a40;--surface-secondary-disabled: #2d2d32;--surface-basic-hover: rgb(255 255 255 / 10%);--surface-primary-hover: #2b2b2f;--surface-basic-active: rgb(255 255 255 / 20%);--surface-primary-active: #323236;--surface-primary-active-colored: rgb(0 102 255 / 25%);--surface-basic-disabled: #2d2d32;--surface-primary-disabled: #333338;--surface-tertiary-default: #3b3b43;--surface-secondary-subtle: #3b3b43;--surface-moderate-default: #4e4e58;--surface-moderate-hover: #55555f;--surface-moderate-active: #5c5c65;--surface-tertiary-hover: #43434b;--surface-tertiary-active: #4b4b52;--surface-tertiary-disabled: #3b3b43;--surface-feedback-info: #323640;--surface-accent-emphasis-low-info: #20324d;--surface-feedback-negative: #3a3136;--surface-accent-emphasis-low-negative: #492529;--surface-feedback-warning: #3a362b;--surface-accent-emphasis-low-warning: #3d361b;--surface-feedback-positive: #263532;--surface-accent-emphasis-low-positive: #163628;--surface-accent-emphasis-low-purple: #362c4d;--surface-accent-emphasis-min-info: #232a36;--surface-accent-emphasis-min-negative: #32262b;--surface-accent-emphasis-min-warning: #322e26;--surface-accent-emphasis-min-positive: #182c26;--surface-accent-emphasis-min-purple: #2b2836;--surface-invert-default: #eeeeef;--surface-invert-primary: #e2e2e4;--surface-invert-subtle: #c9c9cd;--surface-invert-secondary: #c9c9cd;--surface-invert-disabled: #29292f;--surface-locked-default: #f6f6f7;--surface-locked-hover: #fff;--surface-locked-active: #36363b;--surface-locked-disabled: #333338;--surface-locked-white: #fff;--surface-locked-black: #000;--surface-accent-emphasis-high-info: #06f;--surface-accent-emphasis-high-negative: #ca0005;--surface-accent-emphasis-high-warning: #e8bb00;--surface-accent-emphasis-high-positive: #00893c;--surface-accent-emphasis-high-purple: #9146ff;--surface-overlay: rgb(19 19 23 / 90%);--surface-other-overlay: rgb(19 19 23 / 90%);--surface-other-agent: #06f;--surface-other-skeleton: #3b3b43;--content-default: rgb(255 255 255 / 80%);--content-basic-primary: #eeeeef;--content-subtle: rgb(255 255 255 / 60%);--content-basic-secondary: #ababb1;--content-disabled: rgb(255 255 255 / 40%);--content-basic-disabled: #767680;--content-basic-negative: #ff8282;--content-basic-warning: #e5c155;--content-basic-positive: #4cbf80;--content-basic-info: #68afff;--content-basic-purple: #bf9cff;--content-basic-gradient-01: linear-gradient( 254.49deg, #8609ff -.38%, #004bc2 94.44% );--content-white-locked: #fff;--content-locked-white: #fff;--content-black-locked: #131317;--content-locked-black: #000;--content-locked-default: #131317;--content-locked-hover: #131317;--content-locked-active: #68afff;--content-locked-disabled: #767680;--content-invert-default: #131317;--content-invert-primary: #131317;--content-invert-subtle: rgb(19 19 23 / 70%);--content-invert-secondary: rgb(19 19 23 / 70%);--content-invert-disabled: rgb(19 19 23 / 30%);--content-invert-gradient-01: linear-gradient( 254.49deg, #8609ff -.38%, #004bc2 94.44% );--border-default: rgb(255 255 255 / 40%);--border-basic-primary: rgb(255 255 255 / 20%);--border-basic-secondary: rgb(255 255 255 / 10%);--border-subtle: rgb(255 255 255 / 10%);--border-basic-tertiary: #131317;--border-hover: rgb(255 255 255 / 60%);--border-basic-hover: rgb(255 255 255 / 60%);--border-disabled: rgb(255 255 255 / 50%);--border-basic-disabled: rgb(255 255 255 / 10%);--border-basic-negative: #ff7071;--border-basic-warning: #e6bb00;--border-basic-positive: #33b66d;--border-basic-info: #5ba4ff;--border-basic-purple: #b58eff;--border-invert-default: rgb(19 19 23 / 50%);--border-invert-primary: rgb(19 19 23 / 60%);--border-invert-subtle: rgb(19 19 23 / 10%);--border-invert-secondary: rgb(19 19 23 / 10%);--border-invert-hover: rgba(19 19 23 / 80%);--border-invert-disabled: rgb(19 19 23 / 30%);--color-action-active: #b6d5fb;--action-primary-active: #b3d7ff;--color-action-hover: #8abbf9;--action-primary-hover: #86bfff;--color-action-default: #6daaf8;--action-primary-default: #68afff;--color-action-default-rgb: 157, 206, 255;--color-action-disabled: #6daaf8;--action-primary-disabled: rgb(104 175 255 / 30%);--color-negative-active: #ffe5e5;--action-negative-active: #ffa6a6;--color-negative-hover: #ffb7b7;--action-negative-hover: #ff7071;--color-negative-default: #ff5354;--action-negative-default: #ff4c4d;--color-negative-disabled: rgb(255 76 77 / 30%);--action-negative-disabled: rgb(255 76 77 / 30%);--color-warning-default: #fed65e;--action-warning-default: #e8bb00;--color-warning-hover: #fedc89;--action-warning-hover: #efcf4c;--color-positive-default: #00c057;--action-positive-default: #00a449;--color-positive-hover: #00e066;--action-positive-hover: #4cbf80;--color-positive-disabled: #4d735e;--action-positive-disabled: rgb(0 164 73 / 20%);--action-neutral-default: #8d8d95;--action-neutral-hover: #afafb5;--action-neutral-disabled: rgb(141 141 149 / 20%);--color-bot: #50009c;--surface-other-bot: #50009c;--color-black: #131317;--color-white: #fff;--decor-blue900: #003288;--decor-blue800: #003fa4;--decor-blue700: #004bc2;--decor-blue600: #0059e1;--decor-blue500: #06f;--decor-blue400: #328dff;--decor-blue300: #68afff;--decor-blue200: #9dceff;--decor-blue100: #daedff;--decor-blue50: #f4faff;--decor-orange900: #6c1d00;--decor-orange800: #842600;--decor-orange700: #9c2e00;--decor-orange600: #b43700;--decor-orange500: #d54300;--decor-orange400: #ff5100;--decor-orange300: #ff8a77;--decor-orange200: #ffb8af;--decor-orange100: #ffe5e3;--decor-orange50: #fff8f7;--decor-yellow900: #493700;--decor-yellow800: #755b00;--decor-yellow700: #c9a100;--decor-yellow600: #e8bb00;--decor-yellow500: #f3c600;--decor-yellow400: #d1aa00;--decor-yellow300: #fed65e;--decor-yellow200: #fedc89;--decor-yellow100: #fff2d6;--decor-yellow50: #fff9ed;--decor-gray950: #131317;--decor-gray900: #1b1b20;--decor-gray800: #29292f;--decor-gray700: #3b3b43;--decor-gray600: #4e4e58;--decor-gray500: #62626d;--decor-gray400: #767680;--decor-gray300: #8d8d95;--decor-gray200: #ababb1;--decor-gray150: #c9c9cd;--decor-gray100: #c9c9cd;--decor-gray75: #eeeeef;--decor-gray50: #e2e2e4;--decor-gray40: #eeeeef;--decor-gray20: #fcfcfc;--decor-green900: #00431a;--decor-green800: #005321;--decor-green700: #006329;--decor-green600: #007331;--decor-green500: #00893c;--decor-green400: #00a449;--decor-green300: #00c057;--decor-green200: #7edd92;--decor-green100: #e4f4ed;--decor-green50: #f3fcf4;--decor-red900: #790002;--decor-red800: #930002;--decor-red700: #ae0003;--decor-red600: #ca0005;--decor-red500: #ee0007;--decor-red400: #ff4c4d;--decor-red300: #ff8889;--decor-red200: #ffb7b7;--decor-red100: #ffe5e5;--decor-red50: #fff8f8;--decor-purple900: #50009c;--decor-purple800: #6100bd;--decor-purple700: #7400df;--decor-purple600: #8609ff;--decor-purple500: #9146ff;--decor-purple400: #a372ff;--decor-purple300: #b99aff;--decor-purple200: #d1c0ff;--decor-purple100: #eee8ff;--decor-purple50: #faf8ff;--products-livechat: #fe5100;--products-helpdesk: #00c057;--products-chatbot: #06f;--products-knowledgebase: #9146ff;--illustrations-primary: #3b3b43;--illustrations-secondary: #62626d;--illustrations-stroke: #c9c9cd;--tag-surface-01: #3b3b43;--tag-content-01: #eeeeef}:root{--spacing-0: 0;--spacing-05: 2px;--spacing-1: 4px;--spacing-2: 8px;--spacing-3: 12px;--spacing-4: 16px;--spacing-5: 20px;--spacing-6: 24px;--spacing-8: 32px;--spacing-12: 48px;--spacing-16: 64px;--spacing-18: 72px;--spacing-20: 80px;--spacing-24: 96px}:root{--shadow-float: 0 2px 6px rgb(66 77 87 / 40%);--shadow-pop-over: 0 6px 20px rgb(66 77 87 / 40%);--shadow-modal: 0 10px 50px rgb(66 77 87 / 40%)}*[class^=lc-]{box-sizing:border-box;font-family:Source Sans Pro,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lc-Typography-module__heading-xl___nhr-6{font-size:32px;font-style:normal;font-weight:600;letter-spacing:0;line-height:40px}.lc-Typography-module__heading-lg___XYF7l{font-size:24px;font-style:normal;font-weight:600;letter-spacing:0;line-height:32px}.lc-Typography-module__heading-md___wHOIs{font-size:20px;font-style:normal;font-weight:600;letter-spacing:0;line-height:28px}.lc-Typography-module__heading-sm___nBmTV{font-size:18px;font-style:normal;font-weight:600;letter-spacing:0;line-height:24px}.lc-Typography-module__heading-xs___VcZBs{font-size:16px;font-style:normal;font-weight:600;letter-spacing:0;line-height:24px}.lc-Typography-module__caps___c3eNJ{font-size:12px;font-style:normal;font-weight:400;letter-spacing:.2px;line-height:20px;text-transform:uppercase}.lc-Typography-module__caps--bold___OZovw{font-weight:600}.lc-Typography-module__paragraph-md___UGoqq{font-size:15px;font-style:normal;font-weight:400;letter-spacing:0;line-height:22px}.lc-Typography-module__paragraph-md--bold___mWcMG{font-weight:600}.lc-Typography-module__paragraph-md--underline___Fv6zM{text-decoration-line:underline}.lc-Typography-module__paragraph-md--strike___yLGHh{text-decoration-line:line-through}.lc-Typography-module__paragraph-sm___QIEFL{font-size:14px;font-style:normal;font-weight:400;letter-spacing:0;line-height:20px}.lc-Typography-module__paragraph-sm--bold___fAjI5{font-weight:600}.lc-Typography-module__paragraph-xs___OUooD{font-size:12px;font-style:normal;font-weight:400;letter-spacing:.2px;line-height:16px}.lc-Typography-module__paragraph-xs--bold___z7om7{font-weight:600}.lc-Icon-module__icon___tw31R{display:flex;align-items:center}.lc-Icon-module__icon___tw31R svg{pointer-events:none}.lc-Icon-module__icon--primary___JJnBV{color:var(--content-default)}.lc-Icon-module__icon--subtle___sZIzL{color:var(--content-subtle)}.lc-Icon-module__icon--inverted___zA9QC{color:var(--content-invert-default)}.lc-Icon-module__icon--inverted-subtle___6UwBT{color:var(--content-invert-subtle)}.lc-Icon-module__icon--link___Jwkw9{color:var(--color-action-default)}.lc-Icon-module__icon--success___MKdz3{color:var(--color-positive-default)}.lc-Icon-module__icon--warning___5YCSW{color:var(--color-warning-default)}.lc-Icon-module__icon--error___CiJCD{color:var(--color-negative-default)}.lc-Icon-module__icon--disabled--primary___E0nee,.lc-Icon-module__icon--disabled--subtle___l-hK4{color:var(--content-disabled)}.lc-Icon-module__icon--disabled--inverted___5SBAf,.lc-Icon-module__icon--disabled--inverted-subtle___w-NBk{color:var(--content-invert-disabled)}.lc-Icon-module__icon--disabled--link___sVJOa{color:var(--color-action-disabled)}.lc-Icon-module__icon--disabled--success___sG-7d{color:var(--color-positive-disabled)}.lc-Icon-module__icon--disabled--warning___8ko1e{color:var(--color-warning-default)}.lc-Icon-module__icon--disabled--error___9KbVo{color:var(--color-negative-disabled)}.lc-Alert-module__alert___HBTns{box-sizing:border-box;overflow:hidden;padding:20px;position:relative;width:100%;word-break:break-word}.lc-Alert-module__alert__content___9nZdf{display:flex;justify-content:flex-start;width:100%}.lc-Alert-module__alert__content-text___x2Un5{color:var(--content-default)}.lc-Alert-module__alert__content-text--margin___whVzG{margin-right:22px}.lc-Alert-module__alert__content-icon___-EXJm{height:22px;margin-right:22px}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content___9nZdf{flex-direction:column}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content-text--margin___whVzG{margin-right:0}.lc-Alert-module__alert--small___Fyk-v .lc-Alert-module__alert__content-icon___-EXJm{margin-bottom:14px}.lc-Alert-module__alert__close-icon___rYxVy{background-color:transparent;border:0;box-shadow:none;height:24px;overflow:hidden;padding:0;position:absolute;right:17px;top:17px;width:24px}.lc-Alert-module__alert--info___GmIGN{background-color:var(--surface-feedback-info);box-shadow:inset 0 3px 0 0 var(--color-action-default)}.lc-Alert-module__alert--warning___MubhD{background-color:var(--surface-feedback-warning);box-shadow:inset 0 3px 0 0 var(--color-warning-default)}.lc-Alert-module__alert--success___fPtlZ{background-color:var(--surface-feedback-positive);box-shadow:inset 0 3px 0 0 var(--color-positive-default)}.lc-Alert-module__alert--error___DKPo0{background-color:var(--surface-feedback-negative);box-shadow:inset 0 3px 0 0 var(--color-negative-default)}.lc-Alert-module__alert__icon___8TaAH{flex-shrink:0}.lc-Avatar-module__avatar___1zTCE{display:flex;position:relative;align-items:center;justify-content:center;background-color:var(--surface-basic-disabled);font-weight:600}.lc-Avatar-module__avatar__status___nX2Ls{position:absolute;border:1px solid var(--background);border-radius:50%}.lc-Avatar-module__avatar__status--available___tcpFg{background:var(--color-positive-default)}.lc-Avatar-module__avatar__status--unavailable___ciauF{background:var(--color-negative-default)}.lc-Avatar-module__avatar__status--unknown___MBaGB{background:var(--surface-moderate-default)}.lc-Avatar-module__avatar__status--xxxsmall___8pkEO.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--xxsmall___M69lx.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--xsmall___RKQiI.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--small___cVrA7.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--medium___n5z1H.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--large___Lt-0p.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--xlarge___RWIcJ.lc-Avatar-module__avatar__status--circle___doV5H,.lc-Avatar-module__avatar__status--xxlarge___crG9D.lc-Avatar-module__avatar__status--circle___doV5H{bottom:75%;left:75%}.lc-Avatar-module__avatar__status--xxxsmall___8pkEO.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--xxsmall___M69lx.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--xsmall___RKQiI.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--small___cVrA7.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--medium___n5z1H.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--large___Lt-0p.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--xlarge___RWIcJ.lc-Avatar-module__avatar__status--rounded-square___-My1P,.lc-Avatar-module__avatar__status--xxlarge___crG9D.lc-Avatar-module__avatar__status--rounded-square___-My1P{bottom:81.25%;left:81.25%}.lc-Avatar-module__avatar__status--xxxsmall___8pkEO{border-width:.5px;width:4px;height:4px}.lc-Avatar-module__avatar__status--xxsmall___M69lx{border-width:.625px;width:5px;height:5px}.lc-Avatar-module__avatar__status--xsmall___RKQiI{border-width:.75px;width:6px;height:6px}.lc-Avatar-module__avatar__status--small___cVrA7{border-width:1px;width:8px;height:8px}.lc-Avatar-module__avatar__status--medium___n5z1H{border-width:1px;width:9px;height:9px}.lc-Avatar-module__avatar__status--large___Lt-0p{border-width:1.5px;width:12px;height:12px}.lc-Avatar-module__avatar__status--xlarge___RWIcJ{border-width:2px;width:16px;height:16px}.lc-Avatar-module__avatar__status--xxlarge___crG9D{border-width:3px;width:24px;height:24px}.lc-Avatar-module__avatar__rim___RCQ8Q{box-sizing:content-box;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-style:solid;border-radius:inherit;border-color:var(--color-negative-default);background:transparent}.lc-Avatar-module__avatar__rim--xxxsmall___0CH9D,.lc-Avatar-module__avatar__rim--xxsmall___Mde0K,.lc-Avatar-module__avatar__rim--xsmall___LAN-b{border-width:2px;width:calc(100% + 2px);height:calc(100% + 2px)}.lc-Avatar-module__avatar__rim--small___FT8LX,.lc-Avatar-module__avatar__rim--medium___Dy0pr,.lc-Avatar-module__avatar__rim--large___FPvGp,.lc-Avatar-module__avatar__rim--xlarge___CY0kN,.lc-Avatar-module__avatar__rim--xxlarge___tE053{border-width:3px;width:calc(100% + 4px);height:calc(100% + 4px)}.lc-Avatar-module__avatar__image___YqfqE{border-radius:inherit;width:100%;height:100%;object-fit:cover}.lc-Avatar-module__avatar__icon--xxxsmall___KaoMa svg{width:8px;height:8px}.lc-Avatar-module__avatar__icon--xxsmall___NJJNV svg{width:10px;height:10px}.lc-Avatar-module__avatar__icon--xsmall___yHEZK svg{width:12px;height:12px}.lc-Avatar-module__avatar__icon--small___l6lBu svg{width:16px;height:16px}.lc-Avatar-module__avatar__icon--medium___LF4w2 svg{width:18px;height:18px}.lc-Avatar-module__avatar__icon--large___QntBf svg{width:24px;height:24px}.lc-Avatar-module__avatar__icon--xlarge___bcHbI svg{width:32px;height:32px}.lc-Avatar-module__avatar__icon--xxlarge___sx8Fq svg{width:48px;height:48px}.lc-Avatar-module__avatar--circle___XwEz-{border-radius:50%}.lc-Avatar-module__avatar--rounded-square___m7-4I{border-radius:4px}.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--xxxsmall___EHzpP,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--xxsmall___EDOVp,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--xsmall___nI348{margin:3px}.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--small___UuQen,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--medium___Bt9Eo,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--large___OU-08,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--xlarge___zwgeW,.lc-Avatar-module__avatar--with-rim___pvFZR.lc-Avatar-module__avatar--xxlarge___Ur0ul{margin:5px}.lc-Avatar-module__avatar--xxxsmall___EHzpP{width:16px;height:16px;line-height:20px;font-size:12px}.lc-Avatar-module__avatar--xxsmall___EDOVp{width:20px;height:20px;line-height:20px;font-size:12px}.lc-Avatar-module__avatar--xsmall___nI348{width:24px;height:24px;line-height:20px;font-size:12px}.lc-Avatar-module__avatar--small___UuQen{width:32px;height:32px;line-height:22px;font-size:15px}.lc-Avatar-module__avatar--medium___Bt9Eo{width:36px;height:36px;line-height:22px;font-size:15px}.lc-Avatar-module__avatar--large___OU-08{width:48px;height:48px;line-height:24px;font-size:18px}.lc-Avatar-module__avatar--xlarge___zwgeW{width:64px;height:64px;line-height:32px;font-size:24px}.lc-Avatar-module__avatar--xxlarge___Ur0ul{width:96px;height:96px;line-height:40px;font-size:32px}.lc-Badge-module__badge___GhLnu{box-sizing:border-box;display:inline-flex;flex-direction:column;gap:10px;align-items:center;justify-content:center;line-height:16px;font-size:12px;font-weight:600}.lc-Badge-module__badge__dot___z6RO6{margin:0 -2px;background-color:var(--content-invert-default)}.lc-Badge-module__badge___GhLnu+.lc-Badge-module__badge___GhLnu{margin-left:4px}.lc-Badge-module__badge--large___B131q{border-radius:24px;padding:4px 7px;min-width:24px;height:24px}.lc-Badge-module__badge--large___B131q .lc-Badge-module__badge__dot___z6RO6{border-radius:10px;width:10px;height:10px}.lc-Badge-module__badge--medium___TDU8a{border-radius:20px;padding:2px 6px;min-width:20px;height:20px}.lc-Badge-module__badge--medium___TDU8a .lc-Badge-module__badge__dot___z6RO6{border-radius:8px;width:8px;height:8px}.lc-Badge-module__badge--compact___9xJ4y{border-radius:24px;padding:1px 5px;min-width:18px;height:18px}.lc-Badge-module__badge--compact___9xJ4y .lc-Badge-module__badge__dot___z6RO6{border-radius:6px;width:6px;height:6px}.lc-Badge-module__badge--primary___8LRpp{background-color:var(--color-negative-default);color:var(--content-invert-default)}.lc-Badge-module__badge--primary___8LRpp:hover{background-color:var(--color-negative-hover)}.lc-Badge-module__badge--primary___8LRpp .lc-Badge-module__badge__dot___z6RO6{background-color:var(--content-invert-default)}.lc-Badge-module__badge--secondary___JjNIJ{background-color:var(--color-action-default);color:var(--content-invert-default)}.lc-Badge-module__badge--secondary___JjNIJ:hover{background-color:var(--color-action-hover)}.lc-Badge-module__badge--secondary___JjNIJ .lc-Badge-module__badge__dot___z6RO6{background-color:var(--content-invert-default)}.lc-Badge-module__badge--tertiary___e83wV{background-color:var(--surface-tertiary-default);color:var(--content-default)}.lc-Badge-module__badge--tertiary___e83wV:hover{background-color:var(--surface-tertiary-hover)}.lc-Badge-module__badge--tertiary___e83wV .lc-Badge-module__badge__dot___z6RO6{background-color:var(--content-default)}@keyframes lc-Loader-module__rotate___Tlni-{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.lc-Loader-module__loader___LRflD{align-items:center;display:inline-flex;flex-direction:row;flex-wrap:nowrap}.lc-Loader-module__loader__spinner___l3C1g{flex-shrink:0;height:36px;width:36px}.lc-Loader-module__loader__spinner--small___dGFFt{height:15px;width:15px}.lc-Loader-module__loader__spinner--small___dGFFt [class*=spinner-circle]{border-width:2px}.lc-Loader-module__loader__spinner--medium___J-ki0{height:36px;width:36px}.lc-Loader-module__loader__spinner--medium___J-ki0 [class*=spinner-circle]{border-width:3px}.lc-Loader-module__loader__spinner--large___Poqq7{height:56px;width:56px}.lc-Loader-module__loader__spinner--large___Poqq7 [class*=spinner-circle]{border-width:4px}.lc-Loader-module__loader__spinner-circle___ApBUO{animation:lc-Loader-module__rotate___Tlni- 1s infinite linear;border-color:var(--surface-secondary-subtle);border-radius:50%;border-style:solid;border-top-color:var(--color-action-default);border-width:3px;box-sizing:border-box;height:100%;width:100%}.lc-Loader-module__loader__label___R74f6{color:var(--content-subtle);margin-left:10px}.lc-Button-module__btn___aijZJ{display:inline-flex;position:relative;align-items:center;justify-content:center;transition-duration:.2s;transition-property:opacity,border,color,background-color,box-shadow;transition-timing-function:cubic-bezier(.64,0,.35,1);border-width:1px;border-style:solid;border-radius:4px;cursor:pointer;padding:8px 16px;min-width:36px;height:36px;text-align:center;text-decoration:none;font-size:15px;font-weight:600;user-select:none}.lc-Button-module__btn___aijZJ:focus,.lc-Button-module__btn___aijZJ:hover,.lc-Button-module__btn___aijZJ:active{outline:0}.lc-Button-module__btn___aijZJ:focus{filter:drop-shadow(0 0 1px 2px rgb(var(--color-action-default-rgb) .7))}.lc-Button-module__btn--disabled___lXBav{cursor:not-allowed}.lc-Button-module__btn--icon-only___bF5pW{padding:6px}.lc-Button-module__btn--icon-only___bF5pW .lc-Button-module__btn__icon--left___H68zu,.lc-Button-module__btn--icon-only___bF5pW .lc-Button-module__btn__icon--right___fHr3D{margin:0}.lc-Button-module__btn--full-width___kdbAr{width:100%}.lc-Button-module__btn--basic___Jc2gD{border-color:var(--color-action-default);background-color:var(--surface-basic-default);color:var(--color-action-default)}.lc-Button-module__btn--basic___Jc2gD:hover{background-color:var(--surface-basic-subtle);color:var(--color-action-hover)}.lc-Button-module__btn--basic___Jc2gD:active{background-color:var(--surface-feedback-info);color:var(--color-action-hover)}.lc-Button-module__btn--basic___Jc2gD[aria-disabled=true]{border-color:var(--color-action-disabled);background-color:inherit;color:var(--color-action-disabled)}.lc-Button-module__btn--primary___ajbjQ{border-color:var(--color-action-default);background-color:var(--color-action-default);color:var(--content-invert-default)}.lc-Button-module__btn--primary___ajbjQ:hover{border-color:var(--color-action-hover);background-color:var(--color-action-hover)}.lc-Button-module__btn--primary___ajbjQ:active{border-color:var(--color-action-active);background-color:var(--color-action-active)}.lc-Button-module__btn--primary___ajbjQ[aria-disabled=true]{border-color:var(--color-action-disabled);background-color:var(--color-action-disabled)}.lc-Button-module__btn--secondary___iWzE0{border-color:var(--border-basic-primary);background-color:var(--surface-basic-default);color:var(--content-default)}.lc-Button-module__btn--secondary___iWzE0:hover{border-color:var(--surface-secondary-hover);background-color:var(--surface-basic-hover)}.lc-Button-module__btn--secondary___iWzE0:active{border-color:var(--color-action-default);background-color:var(--surface-feedback-info);color:var(--color-action-default)}.lc-Button-module__btn--secondary___iWzE0[aria-disabled=true]{border-color:var(--border-disabled);background-color:inherit;color:var(--content-disabled)}.lc-Button-module__btn--destructive___-kLCl{border-color:var(--color-negative-default);background-color:var(--color-negative-default);color:var(--content-invert-default)}.lc-Button-module__btn--destructive___-kLCl:hover{border-color:var(--color-negative-hover);background-color:var(--color-negative-hover)}.lc-Button-module__btn--destructive___-kLCl:active{border-color:var(--color-negative-active);background-color:var(--color-negative-active)}.lc-Button-module__btn--destructive___-kLCl[aria-disabled=true]{border-color:var(--color-negative-disabled);background-color:var(--color-negative-disabled)}.lc-Button-module__btn--compact___4eptQ{padding:6px 16px;min-width:32px;height:32px}.lc-Button-module__btn--compact___4eptQ.lc-Button-module__btn--icon-only___bF5pW{padding:4px}.lc-Button-module__btn--large___lb-z6{padding:11px 16px;min-width:42px;height:42px}.lc-Button-module__btn--large___lb-z6.lc-Button-module__btn--icon-only___bF5pW{padding:9px}.lc-Button-module__btn--text___WA8OL,.lc-Button-module__btn--plain___eOPui,.lc-Button-module__btn--plain-light___eS9em{border-color:transparent;background-color:transparent;color:var(--color-action-default)}.lc-Button-module__btn--text___WA8OL:hover,.lc-Button-module__btn--plain___eOPui:hover,.lc-Button-module__btn--plain-light___eS9em:hover{color:var(--color-action-hover)}.lc-Button-module__btn--text___WA8OL[aria-disabled=true],.lc-Button-module__btn--plain___eOPui[aria-disabled=true],.lc-Button-module__btn--plain-light___eS9em[aria-disabled=true]{color:var(--color-action-disabled)}.lc-Button-module__btn--plain-light___eS9em{font-weight:400}.lc-Button-module__btn--plain___eOPui{font-weight:600}.lc-Button-module__btn--plain___eOPui,.lc-Button-module__btn--plain-light___eS9em{border:0;padding:0;min-width:auto;height:auto}.lc-Button-module__btn--plain___eOPui:hover,.lc-Button-module__btn--plain___eOPui:focus,.lc-Button-module__btn--plain-light___eS9em:hover,.lc-Button-module__btn--plain-light___eS9em:focus{box-shadow:none;text-decoration:underline}.lc-Button-module__btn--plain___eOPui:disabled,.lc-Button-module__btn--plain-light___eS9em:disabled{text-decoration:none}.lc-Button-module__btn--loading___ZAgjv{transition:all .2s cubic-bezier(.64,0,.35,1);cursor:progress}.lc-Button-module__btn--loading___ZAgjv>*{opacity:0}.lc-Button-module__btn--loading___ZAgjv .lc-Button-module__btn__loader___c8zZz{box-sizing:border-box;display:flex;position:absolute;top:0;left:0;align-items:center;justify-content:center;opacity:1;padding:inherit;width:100%;height:100%}.lc-Button-module__btn--loading___ZAgjv .lc-Button-module__btn__loader___c8zZz>*{margin:0 5px;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap;color:inherit;font-weight:inherit}.lc-Button-module__btn__content___wefl2{margin-top:-2px}.lc-Button-module__btn__icon___GVExB{display:inline-block;width:20px;height:20px;line-height:1;color:inherit}.lc-Button-module__btn__icon--left___H68zu{order:-1;margin-right:5px;margin-left:-4px}.lc-Button-module__btn__icon--right___fHr3D{order:1;margin-right:-4px;margin-left:5px}.lc-SegmentedControl-module__segmented-control___LHWSk{display:inline-flex;flex-direction:row;border:1px solid var(--border-subtle);border-radius:4px;padding:3px;vertical-align:middle}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn___tfsvL{border-color:transparent}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn--active___Za-th{background-color:var(--surface-basic-active)}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn--compact___gcSwq{height:24px}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn--medium___w3UzC{height:28px}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn--large___yHPw4{height:34px}.lc-SegmentedControl-module__segmented-control___LHWSk .lc-SegmentedControl-module__btn___tfsvL+.lc-SegmentedControl-module__btn___tfsvL{margin-left:2px}.lc-Card-module__card___GqMm2{display:flex;flex-direction:column;gap:16px;align-items:center;border:solid 1px var(--border-subtle);border-radius:4px;background-color:var(--background);padding:16px}.lc-Card-module__card__header___0ptfD{display:flex;flex-direction:row;gap:12px;align-items:center;padding:0;width:100%;height:48px}.lc-Card-module__card__header__image___QMwSu{border-radius:4px;background-color:var(--surface-basic-disabled);width:48px;height:48px}.lc-Card-module__card__header__heading___Wkikx{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.lc-Card-module__card__header__heading__title___Uxi8s{margin:0;color:var(--content-default)}.lc-Card-module__card__header__heading__description___6LnOK{margin:0;color:var(--content-subtle)}.lc-Card-module__card__header__no-image___UcnNY{height:16px}.lc-Card-module__card__content___KuDcc,.lc-Card-module__card__expanded-content___yB-QL{gap:10px;margin:0;width:100%}.lc-Card-module__card__actions___q9sAo{display:flex;flex-direction:column;gap:16px;align-items:flex-start;width:100%}.lc-Card-module__card__actions__line___TF1bt{background-color:var(--border-subtle);width:100%;height:1px}.lc-Card-module__card__actions__buttons___PDMMR{display:flex;gap:12px;align-items:center;width:100%}.lc-Card-module__card__actions__buttons-expander___lz4h-{margin-left:auto}.lc-FieldDescription-module__field-description___IcRDH{color:var(--content-subtle);display:block;margin:4px 0 0}.lc-Checkbox-module__checkbox___G7nTf{display:inline-block}.lc-Checkbox-module__checkbox__label___-o01x{align-items:center;cursor:pointer;display:inline-flex;flex:0 1 auto;width:100%}.lc-Checkbox-module__checkbox__square___MHUyd{align-items:center;background-color:var(--surface-basic-default);border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;display:flex;height:16px;justify-content:center;position:relative;transition:all .2s ease;width:16px}.lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:0;pointer-events:none;transition:all .2s ease}.lc-Checkbox-module__checkbox--selected___S2vqY .lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-default);border-color:var(--color-action-default)}.lc-Checkbox-module__checkbox--selected___S2vqY .lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:1}.lc-Checkbox-module__checkbox--selected___S2vqY:hover .lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-hover);border-color:var(--color-action-hover)}.lc-Checkbox-module__checkbox__text___P2SIq{color:var(--content-default);flex:1 0 auto;margin-left:8px}.lc-Checkbox-module__checkbox__input___YLbVF{display:none;height:100%;width:100%}.lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--color-action-default);border-color:var(--color-action-default)}.lc-Checkbox-module__checkbox__input___YLbVF:checked+.lc-Checkbox-module__checkbox__square___MHUyd .lc-Checkbox-module__checkbox__checkmark___16pfY{opacity:1}.lc-Checkbox-module__checkbox__input___YLbVF:focus+.lc-Checkbox-module__checkbox__square___MHUyd{box-shadow:0 0 1px 2px #4284f5b3}.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__square___MHUyd{background-color:var(--surface-basic-disabled);border-color:var(--border-disabled);opacity:.4}.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__label___-o01x,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__input___YLbVF,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__helper___YSJ-n,.lc-Checkbox-module__checkbox--disabled___-lAqW .lc-Checkbox-module__checkbox__text___P2SIq{color:var(--content-disabled);cursor:not-allowed}.lc-Checkbox-module__checkbox__helper___YSJ-n{cursor:default;margin-left:24px}.lc-DatePicker-module__date-picker___9AqJ2{display:inline-block;color:var(--content-default)}.lc-DatePicker-module__date-picker___9AqJ2:not(.lc-DatePicker-module__date-picker--interaction-disabled___-zn8o) .lc-DatePicker-module__date-picker__day___ZTSw9:not(.lc-DatePicker-module__date-picker__day--disabled___4O6yW):not(.lc-DatePicker-module__date-picker__day--selected___1D1tC):not(.lc-DatePicker-module__date-picker__day--outside___ptNdC):hover .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:2px;background-color:var(--surface-basic-hover)}.lc-DatePicker-module__date-picker__wrapper___tNp4l{position:relative;flex-direction:row;transition:.2s border-color ease-in-out;border:1px solid transparent;padding-bottom:10px;user-select:none}.lc-DatePicker-module__date-picker__wrapper___tNp4l:focus{transition:.2s border-color ease-in-out;outline:none;border:1px solid var(--color-action-default);border-radius:4px}.lc-DatePicker-module__date-picker__months___QuPb0{display:flex;flex-wrap:wrap;justify-content:center}.lc-DatePicker-module__date-picker__month___239nh{display:table;margin:0;user-select:none}.lc-DatePicker-module__date-picker__nav-bar___u-l17{display:flex;position:absolute;top:0;left:50%;justify-content:space-between;transform:translate(-50%);width:calc(100% - 18px)}.lc-DatePicker-module__date-picker__nav-button___1Ysdp{display:flex;align-content:center;transition:.2s border-color ease-in-out;border:1px solid transparent;background-color:transparent;cursor:pointer;padding:0;color:var(--content-subtle)}.lc-DatePicker-module__date-picker__nav-button___1Ysdp:hover,.lc-DatePicker-module__date-picker__nav-button___1Ysdp:focus{outline:none}.lc-DatePicker-module__date-picker__nav-button___1Ysdp:hover svg,.lc-DatePicker-module__date-picker__nav-button___1Ysdp:focus svg{color:var(--content-default)}.lc-DatePicker-module__date-picker__nav-button--interaction-disabled___Ivjrx{display:none;pointer-events:none}.lc-DatePicker-module__date-picker__caption___XPgZJ{display:table-caption;margin-bottom:12px;padding:0 50px}.lc-DatePicker-module__date-picker__caption___XPgZJ>div{text-align:center;line-height:20px;color:var(--content-default);font-size:14px;font-weight:600}.lc-DatePicker-module__date-picker__weekdays___kpTY9{display:table-header-group}.lc-DatePicker-module__date-picker__weekdays-row___tGgay{display:table-row}.lc-DatePicker-module__date-picker__weekday___3FCx8{display:table-cell;margin-bottom:2px;padding:6px 0;text-align:center;line-height:16px;letter-spacing:.2px;color:var(--content-subtle);font-size:12px}.lc-DatePicker-module__date-picker__weekday___3FCx8 abbr[title]{border-bottom:initial;text-decoration:none}.lc-DatePicker-module__date-picker__body___toP1u{display:table-row-group}.lc-DatePicker-module__date-picker__week___nZI1x{display:table-row}.lc-DatePicker-module__date-picker__day___ZTSw9{display:table-cell;cursor:pointer;width:18px;height:18px;color:var(--content-default);font-size:14px}.lc-DatePicker-module__date-picker__day___ZTSw9:focus{outline:none}.lc-DatePicker-module__date-picker__day___ZTSw9:focus .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:2px;box-shadow:0 0 0 1px var(--border-default)}.lc-DatePicker-module__date-picker__day-wrapper___gGeeJ{margin:1px 0;padding:0 2px}.lc-DatePicker-module__date-picker__day-content___rDIa0{display:flex;align-items:center;justify-content:center;width:28px;height:28px}.lc-DatePicker-module__date-picker__day--today___LL51c .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:2px;box-shadow:0 0 0 1px var(--border-default);background-color:var(--surface-basic-default)}.lc-DatePicker-module__date-picker__day--selected___1D1tC .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:2px;background-color:var(--color-action-default);color:var(--content-invert-default)}.lc-DatePicker-module__date-picker__day--outside___ptNdC{cursor:default;color:var(--content-disabled)}.lc-DatePicker-module__date-picker__day--disabled___4O6yW{cursor:default;color:var(--content-disabled);pointer-events:none}.lc-DatePicker-module__date-picker--interaction-disabled___-zn8o .lc-DatePicker-module__date-picker__day___ZTSw9{cursor:default;pointer-events:none}.lc-DatePicker-module__date-picker__footer___cXMQ5{padding-top:5px}.lc-DatePicker-module__date-picker__input___r6qih{display:inline-block}.lc-DatePicker-module__date-picker__input-overlay-wrapper___vmC0M{position:relative}.lc-DatePicker-module__date-picker__input-overlay___eJ9D0{display:block}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--selected___1D1tC:not(.lc-DatePicker-module__date-picker__day--disabled___4O6yW):not(.lc-DatePicker-module__date-picker__day--outside___ptNdC):not(.lc-DatePicker-module__date-picker__day--start___-oB8U):not(.lc-DatePicker-module__date-picker__day--end___TtN5P):not(.lc-DatePicker-module__date-picker__day--single___biWcB):not(.lc-DatePicker-module__date-picker__day--sunday___JEnhV):not(.lc-DatePicker-module__date-picker__day--monday___NXYIr) .lc-DatePicker-module__date-picker__day-wrapper___gGeeJ{background-color:var(--surface-feedback-info)}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--selected___1D1tC .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:0;background-color:transparent;color:var(--content-default)}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--start___-oB8U:not(.lc-DatePicker-module__date-picker__day--end___TtN5P):not(.lc-DatePicker-module__date-picker__day--sunday___JEnhV):not(.lc-DatePicker-module__date-picker__day--monday___NXYIr) .lc-DatePicker-module__date-picker__day-wrapper___gGeeJ,.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--monday___NXYIr.lc-DatePicker-module__date-picker__day--selected___1D1tC:not(.lc-DatePicker-module__date-picker__day--end___TtN5P) .lc-DatePicker-module__date-picker__day-wrapper___gGeeJ{background:linear-gradient(to left,var(--surface-feedback-info) 0%,var(--surface-feedback-info) 50%,var(--surface-basic-default) 50%,var(--surface-basic-default) 100%)}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--end___TtN5P:not(.lc-DatePicker-module__date-picker__day--start___-oB8U):not(.lc-DatePicker-module__date-picker__day--monday___NXYIr):not(.lc-DatePicker-module__date-picker__day--sunday___JEnhV) .lc-DatePicker-module__date-picker__day-wrapper___gGeeJ,.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--sunday___JEnhV.lc-DatePicker-module__date-picker__day--selected___1D1tC:not(.lc-DatePicker-module__date-picker__day--start___-oB8U) .lc-DatePicker-module__date-picker__day-wrapper___gGeeJ{background:linear-gradient(to right,var(--surface-feedback-info) 0%,var(--surface-feedback-info) 50%,var(--surface-basic-default) 50%,var(--surface-basic-default) 100%)}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--monday___NXYIr.lc-DatePicker-module__date-picker__day--selected___1D1tC:not(.lc-DatePicker-module__date-picker__day--start___-oB8U):not(.lc-DatePicker-module__date-picker__day--end___TtN5P) .lc-DatePicker-module__date-picker__day-content___rDIa0,.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--sunday___JEnhV.lc-DatePicker-module__date-picker__day--selected___1D1tC:not(.lc-DatePicker-module__date-picker__day--start___-oB8U):not(.lc-DatePicker-module__date-picker__day--end___TtN5P) .lc-DatePicker-module__date-picker__day-content___rDIa0{background-color:var(--surface-feedback-info)}.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--start___-oB8U .lc-DatePicker-module__date-picker__day-content___rDIa0,.lc-DatePicker-module__date-picker--range___ZU-7k .lc-DatePicker-module__date-picker__day--end___TtN5P .lc-DatePicker-module__date-picker__day-content___rDIa0{border-radius:2px;background-color:var(--color-action-default);color:var(--content-invert-default)}.lc-DatePicker-module__date-picker--range__select-input___6pyj3{border-color:transparent;padding:0 5px;max-width:90px;text-align:left}.lc-DatePicker-module__date-picker--range__calendars-wrapper___8nWaW{display:flex;align-items:flex-start}.lc-DatePicker-module__date-picker--range__calendars-wrapper___8nWaW .lc-DatePicker-module__date-picker__months___QuPb0{flex-wrap:nowrap;margin:0 -12px}.lc-DatePicker-module__date-picker--range__calendars-wrapper___8nWaW .lc-DatePicker-module__date-picker__months___QuPb0:before{position:absolute;top:0;left:50%;background-color:var(--border-subtle);width:1px;height:100%;content:""}.lc-DatePicker-module__date-picker--range__calendars-wrapper___8nWaW .lc-DatePicker-module__date-picker__month___239nh{padding:0 12px}.lc-DatePicker-module__date-picker___9AqJ2 .lc-DatePicker-module__date-picker__navbar-buttons-wrapper___Hnksb{display:flex}.lc-FieldError-module__field-error___IDkPT{color:var(--color-negative-default);display:block;margin:4px 0 0}.lc-FieldGroup-module__field-group___gy8lp{align-items:flex-start;display:flex;flex-direction:column;margin:-8px 0}.lc-FieldGroup-module__field-group___gy8lp>*{padding:0 0 8px}.lc-FieldGroup-module__field-group--inline___or4qf{flex-direction:row;margin:0 -8px}.lc-FieldGroup-module__field-group--inline___or4qf>*{padding:0 8px}.lc-FieldGroup-module__field-group--stretched___6rkuO>*{width:100%}.lc-Form-module__form___1nOYF{border:0;box-sizing:border-box;margin:0;padding:0}.lc-Form-module__form__header___U4B7t,.lc-Form-module__form__footer___1-sUX{margin-bottom:32px}.lc-Form-module__form__label___spg-J{color:var(--content-default);margin:0 0 16px}.lc-Form-module__form__helper___bhfwS{color:var(--content-default);margin:0}.lc-FormField-module__form-field___JqnX6{display:inline-block;margin-bottom:20px}.lc-FormField-module__form-field--inline___4DgIq{display:flex;flex-direction:column}.lc-FormField-module__form-field__wrapper--inline___Ubvrn{display:flex;flex-direction:row;flex-wrap:nowrap}.lc-FormField-module__form-field__label___hNCFS{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;margin-bottom:4px}.lc-FormField-module__form-field__label___hNCFS label{margin-bottom:0}.lc-FormField-module__form-field__label--inline___QxyM6{align-items:center;justify-content:center;margin-bottom:0;margin-right:10px}.lc-FormField-module__form-field__label--no-text___Ohs-I{justify-content:flex-end;margin-right:0}.lc-FormField-module__form-field__label-wrapper___61-NO{display:flex;flex-grow:1}.lc-FormField-module__form-field__label-adornment___HB0z7{align-items:center;align-self:flex-end;display:flex;flex-shrink:0;height:20px;justify-content:flex-end;line-height:20px;margin-left:4px;overflow:hidden;width:20px}.lc-FormField-module__form-field__label-left-node___dvipB{color:var(--content-default);display:block;font-size:14px;line-height:20px;margin-bottom:4px}.lc-FormField-module__form-field__label-right-node___LR-03{align-self:flex-end;color:var(--content-default);display:flex;flex-shrink:0;font-size:14px;justify-content:flex-end;line-height:20px;margin-left:5px}.lc-FormField-module__form-field__label-right-node--inline___BkiPG{flex-grow:1;margin-bottom:4px}.lc-FormField-module__form-field__row-break___DCBjC{flex-basis:100%;height:0}.lc-FormField-module__form-field__content___XaOx3{flex-grow:1}.lc-FormGroup-module__form-group___e2JHa{border-style:none;margin:0 0 32px;min-width:auto;padding:0}.lc-FormGroup-module__form-group__header___DgGmR{margin-bottom:16px}.lc-FormGroup-module__form-group__label___NC-JW{color:var(--content-default);display:block;margin-bottom:4px}.lc-FormGroup-module__form-group__helper___SRuxe{color:var(--content-subtle)}.lc-Input-module__input___qeMAQ{box-sizing:border-box;display:flex;align-items:center;outline:none;border:1px solid var(--border-default);border-radius:4px;background:var(--surface-basic-default);padding:5px 12px;line-height:22px;color:var(--content-default);font-size:15px}.lc-Input-module__input___qeMAQ::placeholder{color:var(--content-disabled)}.lc-Input-module__input___qeMAQ:hover{border-color:var(--border-hover)}.lc-Input-module__input___qeMAQ:focus{border-color:var(--color-action-default)}.lc-Input-module__input___qeMAQ:disabled{border-color:var(--border-disabled);background-color:var(--surface-basic-disabled);color:var(--content-disabled)}.lc-Input-module__input--focused___wQH5-,.lc-Input-module__input--focused___wQH5-:hover{border-color:var(--color-action-default)}.lc-Input-module__input--disabled___HidXX,.lc-Input-module__input--disabled___HidXX:hover{border-color:var(--border-disabled);background-color:var(--surface-basic-disabled)}.lc-Input-module__input___qeMAQ input{outline:none;border:0;background:none;padding:0;width:100%;color:var(--content-default)}.lc-Input-module__input--error___DlDbC,.lc-Input-module__input--error___DlDbC:hover{border-color:var(--color-negative-default)}.lc-Input-module__input--compact___iKSQZ{height:32px}.lc-Input-module__input--medium___3BjqQ{height:36px}.lc-Input-module__input--large___jX5RW{height:40px}.lc-Input-module__input__icon--disabled___XO3dc{color:var(--content-disabled)}.lc-Input-module__input__icon--left___BcySs{margin-right:9px}.lc-Input-module__input__icon--right___VefSK,.lc-Input-module__input__visibility-button___eWrVe{margin-left:9px}.lc-Link-module__link___kqx52{color:var(--color-action-default);cursor:pointer;text-decoration:none}.lc-Link-module__link___kqx52:hover{color:var(--color-action-hover);text-decoration:underline}.lc-Link-module__link___kqx52:active{color:var(--color-action-active)}.lc-Link-module__link--bold___1rGdO{font-weight:600}.lc-Modal-module__modal-base___hbL1U{display:flex;position:relative;flex-direction:column;margin:10px;border-radius:4px;box-shadow:0 20px 60px #0000004d;background-color:var(--surface-basic-default);min-width:400px;max-width:800px;color:var(--content-default)}.lc-Modal-module__modal-base__overlay___kCQ8t{display:none;position:fixed;top:0;left:0;align-items:center;justify-content:center;z-index:13000;background-color:var(--surface-overlay);width:100%;height:100%}.lc-Modal-module__modal-base__overlay--visible___zUNJL{display:flex}.lc-Modal-module__modal-base__close___gJlgr{display:flex;position:absolute;top:18px;right:18px;align-items:center;justify-content:center;z-index:1;outline:none;border-style:none;box-shadow:none;background-color:transparent;cursor:pointer;padding:0;width:24px;height:24px;color:var(--content-subtle)}.lc-Modal-module__modal-base__close___gJlgr:hover{color:var(--content-default)}.lc-Modal-module__modal-base__close--label-type___Om0Vb{position:initial;color:var(--content-invert-default)}.lc-Modal-module__modal-base__close--label-type___Om0Vb:hover{color:var(--content-invert-subtle)}.lc-Modal-module__modal__header___Fp5VE{box-sizing:border-box;display:flex;align-items:center;box-shadow:inset 0 -1px 0 var(--border-subtle);padding:0 20px;width:100%;height:64px;color:var(--content-default)}.lc-Modal-module__modal__label-header___ZPtEy{display:flex;position:absolute;top:-52px;align-items:center;justify-content:space-between;width:100%;height:40px}.lc-Modal-module__modal__heading___G9KVK{margin:0;padding:0;max-width:calc(100% - 32px);text-align:left;color:var(--content-default)}.lc-Modal-module__modal__label-heading___WnYcF{color:var(--color-white)}.lc-Modal-module__modal__body___M-jmN{box-sizing:border-box;display:flex;position:relative;flex-direction:column;flex-grow:1;padding:20px;width:100%;color:var(--content-default)}.lc-Modal-module__modal__body--full-space___LsSNE{padding:0}.lc-Modal-module__modal__footer___2LYdc{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:flex-end;box-shadow:inset 0 1px 0 var(--border-subtle);padding:20px;width:100%}.lc-Modal-module__action-modal___CsRC7{box-sizing:border-box;align-items:center;justify-content:center;padding:52px 20px}.lc-Modal-module__action-modal__heading___m3MuG{margin:0 0 20px;width:100%;text-align:center;line-height:1.33;color:var(--content-default);font-size:24px;font-weight:600}.lc-Modal-module__action-modal__content___gf-R2{width:100%;text-align:center;line-height:1.33;color:var(--content-default);font-size:15px}.lc-Modal-module__action-modal__actions___kpRXD{box-sizing:border-box;display:flex;justify-content:center;margin-top:32px;width:100%}.lc-Modal-module__action-modal__icon___MK5xt{margin-bottom:20px}.lc-NumericInput-module__numeric-input___j1esc{display:inline-block;height:36px;position:relative;width:64px}.lc-NumericInput-module__numeric-input__increment___i3Tys,.lc-NumericInput-module__numeric-input__decrement___3qgn0{align-items:center;background:transparent;border:0;border-left:1px solid var(--border-default);box-sizing:border-box;cursor:pointer;display:flex;height:50%;justify-content:center;padding:0;position:absolute;right:1px;top:1px;width:23px}.lc-NumericInput-module__numeric-input__increment___i3Tys:hover,.lc-NumericInput-module__numeric-input__increment___i3Tys:focus,.lc-NumericInput-module__numeric-input__decrement___3qgn0:hover,.lc-NumericInput-module__numeric-input__decrement___3qgn0:focus{outline:0}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__increment___i3Tys:disabled{border-color:var(--border-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__decrement___3qgn0{border-top:1px solid var(--border-default);bottom:1px;top:auto}.lc-NumericInput-module__numeric-input___j1esc .lc-NumericInput-module__numeric-input__decrement___3qgn0:disabled{border-color:var(--border-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc input{appearance:textfield;background-clip:padding-box;border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;color:var(--content-default);height:100%;line-height:36px;padding:0 28px 0 4px;text-align:right;transition:border .25s ease-in-out;width:100%;will-change:border-color}.lc-NumericInput-module__numeric-input___j1esc input::-webkit-outer-spin-button,.lc-NumericInput-module__numeric-input___j1esc input::-webkit-inner-spin-button{appearance:none;margin:0}.lc-NumericInput-module__numeric-input___j1esc input:hover{border-color:var(--border-hover);outline:0}.lc-NumericInput-module__numeric-input___j1esc input:focus{border-color:var(--color-action-default);outline:0}.lc-NumericInput-module__numeric-input___j1esc input:disabled{color:var(--content-disabled);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc input:disabled:hover{border-color:var(--border-disabled)}.lc-NumericInput-module__numeric-input--disabled___yaRvQ{background-color:var(--surface-basic-disabled);color:var(--content-default);cursor:not-allowed}.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--no-controls___D90rG input{padding:0 4px}.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input,.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input:hover,.lc-NumericInput-module__numeric-input___j1esc.lc-NumericInput-module__numeric-input--error___TMxRx input:focus{border-color:var(--color-negative-default)}.lc-Trigger-module__picker-trigger___BIvTx{box-sizing:border-box;display:flex;position:relative;align-items:center;justify-content:flex-end;transition:border .15s ease-in-out;border:1px solid var(--border-default);border-radius:4px;background-color:var(--surface-basic-default);padding:7px 12px;width:100%;line-height:22px;font-size:15px;font-weight:400}.lc-Trigger-module__picker-trigger___BIvTx:hover{border-color:var(--border-hover);cursor:pointer}.lc-Trigger-module__picker-trigger--compact___3i1DL{height:32px}.lc-Trigger-module__picker-trigger--medium___-fbEx{height:36px}.lc-Trigger-module__picker-trigger--large___C8qkZ{height:42px}.lc-Trigger-module__picker-trigger--multi-select___rLpTy{overflow:hidden}.lc-Trigger-module__picker-trigger--multi-select--with-items___QFhY2{height:auto}.lc-Trigger-module__picker-trigger__controls___EsSeM{display:flex;align-items:center;align-self:flex-start}.lc-Trigger-module__picker-trigger__controls--compact___g3P6e{height:18px}.lc-Trigger-module__picker-trigger__controls--medium___G4OYQ{height:22px}.lc-Trigger-module__picker-trigger__controls--large___h-egq{height:28px}.lc-Trigger-module__picker-trigger__clear-icon___8H-4T{display:flex;align-items:center;justify-content:center;border-radius:50%;background-color:var(--surface-secondary-subtle);width:20px;height:20px}.lc-Trigger-module__picker-trigger__content___bYnCH{flex-grow:2;max-height:96px;overflow-y:auto}.lc-Trigger-module__picker-trigger--disabled___7H4tD{background-color:var(--surface-basic-disabled);color:var(--content-disabled)}.lc-Trigger-module__picker-trigger--disabled___7H4tD:hover{border-color:var(--border-default);cursor:auto}.lc-Trigger-module__picker-trigger--focused___vTr39,.lc-Trigger-module__picker-trigger--focused___vTr39:hover{border-color:var(--color-action-default)}.lc-Trigger-module__picker-trigger--error___Rh8Qd,.lc-Trigger-module__picker-trigger--error___Rh8Qd:hover{border-color:var(--color-negative-default)}.lc-PickerList-module__picker-list___FqdgZ{box-sizing:border-box;position:absolute;top:calc(100% + 4px);z-index:2000;margin:0;border-radius:4px;box-shadow:0 6px 20px #424d5766;background-color:var(--surface-basic-default);padding:4px 0;width:100%;max-height:242px;overflow:scroll;line-height:22px;font-size:15px;font-weight:400}.lc-PickerList-module__picker-list__no-results___tX172{display:flex;align-items:center;justify-content:center;height:36px}.lc-PickerList-module__picker-list__item___8QNS0{box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;border:1px solid transparent;cursor:pointer;padding:6px 11px;height:36px}.lc-PickerList-module__picker-list__item___8QNS0:hover{background-color:var(--surface-basic-hover)}.lc-PickerList-module__picker-list__item___8QNS0[aria-current=true]{border-color:var(--color-action-default)}.lc-PickerList-module__picker-list__item___8QNS0[aria-disabled=true]{color:var(--content-disabled)}.lc-PickerList-module__picker-list__item___8QNS0[aria-disabled=true]:hover{background-color:unset;cursor:auto}.lc-PickerList-module__picker-list__item--select-all___PlTHV{border-bottom:1px solid var(--border-subtle)}.lc-PickerList-module__picker-list__item__header___mxmg0{display:flex;align-items:center;justify-content:space-between;background-color:var(--surface-basic-subtle);cursor:auto;padding:12px 12px 4px;height:36px;text-transform:uppercase;color:var(--content-subtle);font-size:12px;font-weight:600}.lc-PickerList-module__picker-list__item__content___D-tsE{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lc-PickerList-module__picker-list__item__custom___kJEP6{width:100%;height:auto}.lc-Picker-module__picker___GRj9W{box-sizing:border-box;display:inline-block;position:relative;width:100%;color:var(--content-default)}.lc-Picker-module__picker__container___s0PUc{position:relative}.lc-Picker-module__picker__label___Ac7Vu{margin-bottom:4px;line-height:20px;font-size:14px;font-weight:400}.lc-Picker-module__picker__label--disabled___Opu7s{color:var(--content-disabled)}.lc-Picker-module__picker__error___H865k{display:flex;margin-top:4px;line-height:20px;color:var(--color-negative-default);font-size:14px;font-weight:400}.lc-Picker-module__picker__error__icon___bbL7r{margin-right:5px}.lc-Tag-module__tag___1QRVY{box-sizing:border-box;display:inline-flex;position:relative;align-items:center;border-radius:4px;border-color:var(--decor-gray800);background-color:var(--surface-secondary-subtle);color:var(--decor-gray800)}.lc-Tag-module__tag--success___P2hXQ{border-color:var(--decor-green800);background-color:var(--decor-green100);color:var(--decor-green800)}.lc-Tag-module__tag--success___P2hXQ .lc-Tag-module__tag__remove___UmtrW{color:var(--decor-green800)}.lc-Tag-module__tag--error___1cjsm{border-color:var(--decor-red800);background-color:var(--decor-red100);color:var(--decor-red800)}.lc-Tag-module__tag--error___1cjsm .lc-Tag-module__tag__remove___UmtrW{color:var(--decor-red800)}.lc-Tag-module__tag--warning___PstMG{border-color:var(--decor-yellow800);background-color:var(--decor-yellow100);color:var(--decor-yellow800)}.lc-Tag-module__tag--warning___PstMG .lc-Tag-module__tag__remove___UmtrW{color:var(--decor-yellow800)}.lc-Tag-module__tag--info___RTH0C{border-color:var(--decor-blue800);background-color:var(--decor-blue100);color:var(--decor-blue800)}.lc-Tag-module__tag--info___RTH0C .lc-Tag-module__tag__remove___UmtrW{color:var(--decor-blue800)}.lc-Tag-module__tag--medium___l5-KI{padding:1px 8px}.lc-Tag-module__tag--large___ytC6Y{padding:5px 12px}.lc-Tag-module__tag--outline___aZXtr{border-style:solid;background-color:transparent}.lc-Tag-module__tag--outline___aZXtr.lc-Tag-module__tag--medium___l5-KI{padding:0 7px}.lc-Tag-module__tag--outline___aZXtr.lc-Tag-module__tag--large___ytC6Y{padding:4px 11px}.lc-Tag-module__tag--outline___aZXtr .lc-Tag-module__icon___2Z-35{background-color:transparent}.lc-Tag-module__tag--text-white___x0fnD{color:#fff}.lc-Tag-module__tag--text-black___dUvmD{color:#000}.lc-Tag-module__tag--with-icon___ZlkvT.lc-Tag-module__tag--medium___l5-KI{padding-left:4px}.lc-Tag-module__tag--with-icon___ZlkvT.lc-Tag-module__tag--large___ytC6Y{padding-left:6px}.lc-Tag-module__tag--dismissible___Qobyr.lc-Tag-module__tag--medium___l5-KI{padding-right:4px}.lc-Tag-module__tag--dismissible___Qobyr.lc-Tag-module__tag--large___ytC6Y{padding-right:6px}.lc-Tag-module__tag__icon___tZoQ9{margin-right:4px}.lc-Tag-module__tag__avatar___U4c-P{margin-right:4px;border-radius:50%;width:20px;height:20px}.lc-Tag-module__tag__remove___UmtrW{display:flex;align-items:center;justify-content:center;outline:none;border-style:none;box-shadow:none;background-color:transparent;cursor:pointer;padding:0 0 0 4px;color:var(--content-subtle)}.lc-Tag-module__tag__remove___UmtrW:hover{color:var(--content-default)}.lc-TriggerBody-module__picker-trigger-body___ZWjX9{display:flex;flex-wrap:wrap;gap:4px;justify-content:flex-start}.lc-TriggerBody-module__picker-trigger-body__item___0DBg1{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lc-TriggerBody-module__picker-trigger-body__input___ezPyz{display:flex;flex-grow:2;align-items:center;outline:none;border:0;background:none;padding:0;height:22px;color:var(--content-default);font-size:15px}.lc-Popover-module__popover___8X1b2{display:none;z-index:1000;border-radius:4px;box-shadow:var(--shadow-pop-over);background-color:var(--surface-basic-default);min-width:168px;max-width:336px}.lc-Popover-module__popover___8X1b2:focus{outline:none}.lc-Popover-module__popover--visible___u5NXB{display:block}.lc-ProgressCircle-module__progress-circle___NRHCi{transform:rotate(-90deg);width:36px;height:36px}.lc-ProgressCircle-module__progress-circle--small___8FVwG{width:16px;height:16px}.lc-ProgressCircle-module__progress-circle--medium___XlzEX{width:36px;height:36px}.lc-ProgressCircle-module__progress-circle--large___qxa2y{width:56px;height:56px}.lc-ProgressCircle-module__progress-circle__bg-line--normal___nDNwj{stroke:var(--surface-tertiary-default)}.lc-ProgressCircle-module__progress-circle__bg-line--success___1aP-O{stroke:var(--color-positive-disabled)}.lc-ProgressCircle-module__progress-circle__bg-line--error___oqMZL{stroke:var(--color-negative-disabled)}.lc-ProgressCircle-module__progress-circle__indicator--normal___0SdkX{stroke:var(--color-action-default);transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle__indicator--success___fLwRR{stroke:var(--color-positive-default);transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle__indicator--error___nwJS9{transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.lc-ProgressCircle-module__progress-circle--error___2AA9K .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-negative-disabled)}.lc-ProgressCircle-module__progress-circle--success___hH5jv .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-positive-disabled)}.lc-ProgressCircle-module__progress-circle--normal___dFneQ .lc-ProgressCircle-module__progress-circle__bg-line___12YrE{stroke:var(--color-action-disabled)}.lc-ProgressBar-module__progress-bar___3pa3d{display:inline-block;position:relative;border-radius:100px;background-color:var(--color-action-disabled);width:100%;height:4px}.lc-ProgressBar-module__progress-bar--small___7nQKx{height:3px}.lc-ProgressBar-module__progress-bar--medium___cM44p{height:4px}.lc-ProgressBar-module__progress-bar--large___UlzNR{height:6px}.lc-ProgressBar-module__progress-bar--error___MulqI{background-color:var(--color-negative-disabled)}.lc-ProgressBar-module__progress-bar--success___p7nB-{background-color:var(--color-positive-disabled)}.lc-ProgressBar-module__progress-bar--normal___ZwCb-{background-color:var(--surface-tertiary-default)}.lc-ProgressBar-module__progress-bar__indicator--success___wRjR3{position:relative;transition:all .4s cubic-bezier(.08,.82,.17,1) 0s;border-radius:100px;background-color:var(--color-positive-default);height:100%}.lc-ProgressBar-module__progress-bar__indicator--normal___0Uhle{position:relative;transition:all .4s cubic-bezier(.08,.82,.17,1) 0s;border-radius:100px;background-color:var(--color-action-default);height:100%}.lc-PromoBanner-module__promo-banner___-mGpq{align-items:center;background-color:var(--surface-basic-subtle);border-radius:4px;box-sizing:border-box;color:var(--content-default);display:flex;font-size:15px;justify-content:space-between;min-width:180px;padding:20px;position:relative;width:100%;word-break:break-word}.lc-PromoBanner-module__promo-banner___-mGpq b{font-weight:600}.lc-PromoBanner-module__promo-banner__content___kRWar{display:flex;flex-direction:row;justify-content:flex-start}.lc-PromoBanner-module__promo-banner__wrapper___I-8cl{display:flex;flex-direction:column}.lc-PromoBanner-module__promo-banner__header___ebYHW{font-size:16px;font-weight:600;margin-bottom:8px}.lc-PromoBanner-module__promo-banner__img___eaShb{height:48px;object-fit:contain;width:48px}.lc-PromoBanner-module__promo-banner__button-text___taYKa{margin-right:24px}.lc-PromoBanner-module__promo-banner--light___eJxOR{background-color:var(--surface-basic-default);border:solid 1px var(--border-subtle)}.lc-PromoBanner-module__promo-banner___-mGpq .lc-PromoBanner-module__promo-banner__img___eaShb{margin-right:20px}.lc-PromoBanner-module__promo-banner___-mGpq .lc-PromoBanner-module__promo-banner__wrapper___I-8cl{max-width:680px}.lc-PromoBanner-module__promo-banner___-mGpq .lc-PromoBanner-module__promo-banner__footer___8OjvH{display:flex;flex-shrink:0;margin-top:12px}.lc-PromoBanner-module__promo-banner--small___7sWLV{flex-wrap:wrap}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__content___kRWar{flex-direction:column}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__img___eaShb{margin-bottom:12px}.lc-PromoBanner-module__promo-banner--small___7sWLV .lc-PromoBanner-module__promo-banner__footer___8OjvH{display:flex;margin-top:12px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__img___eaShb{margin-right:20px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__wrapper___I-8cl{max-width:680px;min-width:180px}.lc-PromoBanner-module__promo-banner--large___pMiCU .lc-PromoBanner-module__promo-banner__footer___8OjvH{align-items:center;display:inline-flex;flex-shrink:0;margin:0 56px}.lc-PromoBanner-module__promo-banner__close-icon___GowBL{background-color:transparent;border:0;box-shadow:none;cursor:pointer;height:24px;overflow:hidden;padding:0;position:absolute;right:12px;top:12px;width:24px}.lc-RadioButton-module__radio-button___WaToM{display:inline-block}.lc-RadioButton-module__radio-button__label___i7ygg{align-items:center;cursor:pointer;display:inline-flex;flex:0 1 auto;width:100%}.lc-RadioButton-module__radio-button__circle___wimWA{background-color:var(--surface-basic-default);border:1px solid var(--border-default);border-radius:16px;box-sizing:border-box;height:16px;position:relative;transition:all .2s ease;width:16px}.lc-RadioButton-module__radio-button__inner-circle___qkRVf{background-color:var(--color-action-default);border-radius:8px;height:8px;left:3px;opacity:0;position:absolute;top:3px;transition:all .2s ease;width:8px}.lc-RadioButton-module__radio-button__text___mT8c0{color:var(--content-default);flex:1 0 auto;margin-left:8px}.lc-RadioButton-module__radio-button__input___7OTAK{cursor:pointer;height:100%;margin:0;opacity:0;width:100%}.lc-RadioButton-module__radio-button__helper___r8gJJ{cursor:default;margin-left:24px}.lc-RadioButton-module__radio-button___WaToM:focus .lc-RadioButton-module__radio-button__circle___wimWA{border-radius:20px;box-shadow:0 0 1px 1.6px #4384f5b3}.lc-RadioButton-module__radio-button--selected___s9lqj .lc-RadioButton-module__radio-button__circle___wimWA{border-color:var(--color-action-default)}.lc-RadioButton-module__radio-button--selected___s9lqj .lc-RadioButton-module__radio-button__inner-circle___qkRVf{opacity:1}.lc-RadioButton-module__radio-button--selected___s9lqj:hover .lc-RadioButton-module__radio-button__circle___wimWA{border-color:var(--color-action-hover)}.lc-RadioButton-module__radio-button--selected___s9lqj:hover .lc-RadioButton-module__radio-button__inner-circle___qkRVf{background-color:var(--color-action-hover)}.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__circle___wimWA{opacity:.4}.lc-RadioButton-module__radio-button--disabled___wHSA7:not(.lc-RadioButton-module__radio-button--selected___s9lqj) .lc-RadioButton-module__radio-button__circle___wimWA{background-color:var(--surface-basic-disabled)}.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__label___i7ygg,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__input___7OTAK,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__text___mT8c0,.lc-RadioButton-module__radio-button--disabled___wHSA7 .lc-RadioButton-module__radio-button__helper___r8gJJ{color:var(--content-disabled);cursor:not-allowed}.lc-Search-module__search-input___FsbCk{box-sizing:border-box;display:flex;position:relative;align-items:center;transition:all .25s ease-in-out;border:1px solid var(--border-default);border-radius:4px;background-color:var(--surface-basic-default);width:100%;overflow:hidden;color:var(--content-default)}.lc-Search-module__search-input___FsbCk:hover{border-color:var(--border-hover);cursor:text}.lc-Search-module__search-input--compact___498To{height:32px}.lc-Search-module__search-input--medium___Hwteg{height:36px}.lc-Search-module__search-input--large___-IBuC{height:42px}.lc-Search-module__search-input--focused___i2eul,.lc-Search-module__search-input--focused___i2eul:hover{border-color:var(--color-action-default)}.lc-Search-module__search-input--disabled___LSJ2e,.lc-Search-module__search-input--disabled___LSJ2e:hover{border-color:var(--border-disabled);background-color:var(--surface-basic-disabled);cursor:not-allowed;color:var(--content-disabled)}.lc-Search-module__search-input--collapsable___5GaIH{transition:width .25s ease-in-out,background .25s ease-in-out .25s,border .25s ease-in-out .25s;border-color:transparent;background-color:transparent;width:42px}.lc-Search-module__search-input--collapsable___5GaIH:hover{border-color:transparent}.lc-Search-module__search-input--collapsable___5GaIH .lc-Search-module__search-input__search-icon___BBQoD{cursor:pointer}.lc-Search-module__search-input--collapsable--open___vqTpD{transition:border .25s ease-in-out,background .25s ease-in-out,width .25s ease-in-out .25s;border-color:var(--border-default);background-color:var(--surface-basic-default);width:100%}.lc-Search-module__search-input--collapsable--open___vqTpD:hover{border-color:var(--border-hover)}.lc-Search-module__search-input--collapsable--open___vqTpD.lc-Search-module__search-input--focused___i2eul,.lc-Search-module__search-input--collapsable--open___vqTpD.lc-Search-module__search-input--focused___i2eul:hover{border-color:var(--color-action-default)}.lc-Search-module__search-input--collapsable--open___vqTpD .lc-Search-module__search-input__search-icon___BBQoD{cursor:text;pointer-events:none}.lc-Search-module__search-input__search-icon___BBQoD{position:absolute;justify-content:center;width:40px;height:100%}.lc-Search-module__search-input__clear-icon___LoNkc{display:inline-flex;flex:0 0 40px;flex-shrink:0;align-items:center;justify-content:center;margin-right:6px;margin-left:11px;outline:0;border:1px solid transparent;background:transparent;cursor:pointer;padding:0;width:40px;height:100%}.lc-Search-module__search-input__clear-icon___LoNkc:focus{border-color:var(--color-action-default)}.lc-Search-module__search-input__loader___pkpIG{display:flex;align-items:center;margin-right:16px;margin-left:11px;border-radius:50%;background-color:var(--surface-basic-default);padding:2px}.lc-Search-module__search-input__input___OhyTr{flex:1 1;border:0;background-color:transparent;padding:0 0 0 40px;width:100%;line-height:22px;color:inherit;font-size:15px;font-weight:400}.lc-Search-module__search-input__input___OhyTr::placeholder{color:var(--content-disabled)}.lc-Search-module__search-input__input___OhyTr:focus{outline:none}.lc-Switch-module__switch___AaA2k{display:inline-block;position:relative;outline:none}.lc-Switch-module__switch___AaA2k:hover .lc-Switch-module__switch__track--enabled___sy4Xl.lc-Switch-module__switch__track--on___aOMWe{background-color:var(--color-positive-hover)}.lc-Switch-module__switch___AaA2k:hover .lc-Switch-module__switch__track--enabled___sy4Xl.lc-Switch-module__switch__track--off___NAisj{background-color:var(--action-neutral-hover)}.lc-Switch-module__switch--large___pSoJ7{width:44px;height:24px}.lc-Switch-module__switch--compact___OGFIX{width:32px;height:16px}.lc-Switch-module__switch--medium___EcZwT{width:36px;height:20px}.lc-Switch-module__switch__input___NiiOR{opacity:0;margin:0;cursor:pointer;width:100%;height:100%}.lc-Switch-module__switch__input--disabled___Po8gh{cursor:not-allowed}.lc-Switch-module__switch__input___NiiOR:focus+.lc-Switch-module__switch__container___79F7W .lc-Switch-module__switch__track___2wr2M{box-shadow:0 0 1px 2px rgb(var(--color-action-default-rgb) .7)}.lc-Switch-module__switch__container___79F7W{display:flex;position:absolute;top:0;left:0;align-items:center;width:100%;height:100%;pointer-events:none}.lc-Switch-module__switch__track___2wr2M{flex:1;transition-duration:.3s;transition-property:background-color;transition-timing-function:cubic-bezier(.33,0,.67,1);border-radius:24px;height:100%}.lc-Switch-module__switch__track--on___aOMWe.lc-Switch-module__switch__track--enabled___sy4Xl{background-color:var(--color-positive-default)}.lc-Switch-module__switch__track--on___aOMWe.lc-Switch-module__switch__track--disabled___HkDhl{background-color:var(--color-positive-disabled)}.lc-Switch-module__switch__track--off___NAisj.lc-Switch-module__switch__track--enabled___sy4Xl{background-color:var(--action-neutral-default)}.lc-Switch-module__switch__track--off___NAisj.lc-Switch-module__switch__track--disabled___HkDhl{background-color:var(--surface-secondary-disabled)}.lc-Switch-module__switch__slider___WHd--{display:flex;position:absolute;top:50%;align-items:center;justify-content:center;transform:translateY(-50%);transition-duration:.3s;transition-property:left,right;transition-timing-function:cubic-bezier(.33,0,.67,1);border-radius:50%;background:var(--content-white-locked)}.lc-Switch-module__switch__slider--large___WoEgi{width:20px;height:20px}.lc-Switch-module__switch__slider--large--on___7Qp3G{right:3px;left:21px}.lc-Switch-module__switch__slider--large--off___iRMmD{right:21px;left:3px}.lc-Switch-module__switch__slider--compact___uZ-lS{width:12px;height:12px}.lc-Switch-module__switch__slider--compact--on___FykE3{right:2px;left:18px}.lc-Switch-module__switch__slider--compact--off___s5yR8{right:18px;left:2px}.lc-Switch-module__switch__slider--medium___uhptz{width:16px;height:16px}.lc-Switch-module__switch__slider--medium--on___SfeAV{right:3px;left:17px}.lc-Switch-module__switch__slider--medium--off___eXJJz{right:17px;left:3px}.lc-Switch-module__switch__loader___FE-fA{width:100%;height:100%}.lc-Switch-module__switch__loader--compact___3imUh{padding:1.5px}.lc-Switch-module__switch__loader--medium___2zi05{padding:2px}.lc-Switch-module__switch__loader--large___vLRFa{padding:3px}.lc-Switch-module__switch__loader___FE-fA>div{width:100%;height:100%}.lc-Switch-module__switch__loader___FE-fA div:last-child{border-width:2px}.lc-Switch-module__switch__icon___-O1qY{color:var(--content-black-locked)}.lc-Tab-module__tab___fME7u{display:flex;position:relative;flex-direction:row;align-items:center;transition:color .25s;margin:0 8px;outline:none;border:0;background:none;cursor:pointer;padding:0 12px 1px;overflow:visible;color:var(--content-default)}.lc-Tab-module__tab___fME7u:before{display:block;position:absolute;right:0;bottom:0;left:0;z-index:1;background-color:var(--color-action-default);height:0;content:""}.lc-Tab-module__tab___fME7u:hover{text-decoration:none;color:var(--color-action-default)}.lc-Tab-module__tab___fME7u:hover .lc-Tab-module__tab__count___gc8tA{color:var(--color-action-default)}.lc-Tab-module__tab--compact___4qead{height:32px}.lc-Tab-module__tab--medium___bHnGV{height:40px}.lc-Tab-module__tab--large___JL30g{height:48px}.lc-Tab-module__tab__count___gc8tA{display:inline-block;transition:color .25s;padding-left:3px;color:var(--content-subtle)}.lc-Tab-module__tab__badge___W9c-T{margin-left:4px}.lc-Tab-module__tab--selected___c0EkL{color:var(--color-action-default)}.lc-Tab-module__tab--selected___c0EkL:before{height:3px}.lc-Tab-module__tab--selected___c0EkL .lc-Tab-module__tab__count___gc8tA{color:var(--color-action-default)}.lc-Tab-module__tab--disabled___URdTh{cursor:not-allowed;color:var(--content-disabled)}.lc-Tab-module__tab--disabled___URdTh:hover,.lc-Tab-module__tab--disabled___URdTh:hover .lc-Tab-module__tab__count___gc8tA,.lc-Tab-module__tab--disabled___URdTh .lc-Tab-module__tab__count___gc8tA{color:var(--content-disabled)}.lc-TabsWrapper-module__tabs___Y2xyD{border-bottom:1px solid var(--border-subtle);position:relative}.lc-TabsWrapper-module__tabs__list___i6tVO{display:flex;flex-direction:row;margin:0 -8px;position:relative}.lc-TagInput-module__tag-input___CLVY-{align-items:center;background:var(--surface-basic-default);background-clip:padding-box;border:1px solid var(--border-default);border-radius:4px;box-sizing:border-box;color:var(--content-default);display:flex;flex-wrap:wrap;font-size:15px;overflow-y:auto;padding:4px;transition:border .25s ease-in-out;width:100%;will-change:border-color}.lc-TagInput-module__tag-input___CLVY-::placeholder{color:var(--content-disabled)}.lc-TagInput-module__tag-input___CLVY-:hover{border-color:var(--border-hover);outline:0}.lc-TagInput-module__tag-input___CLVY-:focus-within{border-color:var(--color-action-default);outline:0}.lc-TagInput-module__tag-input--error___RP0SB,.lc-TagInput-module__tag-input--error___RP0SB:focus-within{border-color:var(--color-negative-default)}.lc-TagInput-module__tag-input___CLVY-:disabled{background-color:var(--surface-basic-disabled);border:1px solid var(--border-disabled);color:var(--content-disabled);cursor:not-allowed}.lc-TagInput-module__tag-input___CLVY- *{box-sizing:border-box}.lc-TagInput-module__tag-input___CLVY->*{margin:2px}.lc-TagInput-module__tag-input__input___dgEYB{appearance:none;background:transparent;border-style:none;box-shadow:none;color:var(--content-default);flex-grow:1;font-size:15px;margin:0 4px;outline:0;padding:0 0 0 4px;width:auto}.lc-TagInput-module__tag-input__input--medium___DYF7X{line-height:28px}.lc-TagInput-module__tag-input__input--large___G6iEO{line-height:36px}.lc-TagInput-module__tag-input__input___dgEYB:focus{border-style:none}.lc-TagInput-module__tag-input__tag__content___x95-M{border-style:none;outline:0;padding:0;white-space:nowrap}.lc-Toast-module__toast___j5Amn{box-sizing:border-box;display:inline-flex;flex-direction:row;gap:8px;align-items:center;justify-content:flex-start;border-radius:4px;box-shadow:var(--shadow-pop-over);padding:10px 12px;min-width:300px;max-width:500px;line-height:22px;font-size:15px}.lc-Toast-module__toast__content___HjaNw{width:100%;min-width:192px;color:var(--content-default);font-weight:600}.lc-Toast-module__toast__actions___JWu-1{display:inline-flex;flex-wrap:nowrap;gap:8px;align-items:center}.lc-Toast-module__toast__actions--close___QuXHY svg{cursor:pointer;fill:var(--content-subtle)}.lc-Toast-module__toast__actions--custom___lm-pM,.lc-Toast-module__toast__actions--custom___lm-pM:hover{text-decoration:underline;white-space:nowrap;color:var(--content-default)}.lc-Toast-module__toast__actions___JWu-1 button{font-weight:400}.lc-Toast-module__toast--success___7UC6m{background:var(--color-positive-default)}.lc-Toast-module__toast--warning___pteb7{background:var(--color-warning-default)}.lc-Toast-module__toast--warning___pteb7 .lc-Toast-module__toast__content___HjaNw{color:var(--content-default)}.lc-Toast-module__toast--error___trg--{background:var(--color-negative-default)}.lc-Toast-module__toast--info___IOp44{background:var(--decor-blue200)}.lc-Toast-module__toast--info___IOp44 .lc-Toast-module__toast__content___HjaNw{color:var(--content-default)}.lc-Toast-module__toast--success___7UC6m .lc-Toast-module__toast__content___HjaNw,.lc-Toast-module__toast--success___7UC6m .lc-Toast-module__toast__actions--custom___lm-pM,.lc-Toast-module__toast--error___trg-- .lc-Toast-module__toast__content___HjaNw,.lc-Toast-module__toast--error___trg-- .lc-Toast-module__toast__actions--custom___lm-pM{color:var(--content-invert-default)}.lc-Toast-module__toast-wrapper___Oiwqp{display:flex;position:absolute;flex-direction:column;align-items:center;z-index:120}.lc-Toast-module__toast-wrapper--fixed___QYxRI{position:fixed}.lc-Toast-module__toast-wrapper--block___j0kGt{position:static}.lc-Toast-module__toast-wrapper--horizontal-center___t9AFd{left:50%;transform:translate(-50%)}.lc-Toast-module__toast-wrapper--horizontal-left___-GY4I{left:5px}.lc-Toast-module__toast-wrapper--horizontal-right___VVMgm{right:5px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG{top:5px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast___j5Amn{margin-bottom:10px}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--slide___G7GAp{transform:translateY(-100%)!important}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--slide___G7GAp.lc-Toast-module__toast-appear-active--slide___brfgK{transform:translateY(0)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--slide___aqiBq{transform:translateY(0)!important}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--slide___aqiBq.lc-Toast-module__toast-exit-active--slide___WryMi{transform:translateY(-100%)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH{bottom:5px}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast___j5Amn{margin-top:10px}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--slide___G7GAp{transform:translateY(100%)!important}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--slide___G7GAp.lc-Toast-module__toast-appear-active--slide___brfgK{transform:translateY(0)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--slide___aqiBq{transform:translateY(0)!important}.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--slide___aqiBq.lc-Toast-module__toast-exit-active--slide___WryMi{transform:translateY(100%)!important;transition:transform .2s ease-in}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--fade___oUwHm,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--fade___oUwHm{opacity:0}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-appear--fade___oUwHm.lc-Toast-module__toast-appear-active--fade___D3--J,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-appear--fade___oUwHm.lc-Toast-module__toast-appear-active--fade___D3--J,.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--fade___iDA1p,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--fade___iDA1p{transition:opacity .2s ease-in;opacity:1}.lc-Toast-module__toast-wrapper--vertical-top___uBfEG .lc-Toast-module__toast-exit--fade___iDA1p.lc-Toast-module__toast-exit-active--fade___tL7sb,.lc-Toast-module__toast-wrapper--vertical-bottom___erPuH .lc-Toast-module__toast-exit--fade___iDA1p.lc-Toast-module__toast-exit-active--fade___tL7sb{opacity:0}.lc-Tooltip-module__tooltip___QOOAr{background-color:var(--surface-basic-default);border-color:var(--surface-basic-default);border-radius:4px;box-shadow:0 1px 10px #424d574d;color:var(--content-default);max-width:320px;padding:12px;z-index:999999999}.lc-Tooltip-module__tooltip___QOOAr:focus{outline:none}.lc-Tooltip-module__tooltip--invert___PVjhE{background-color:var(--surface-invert-default);border-color:var(--surface-invert-default);color:var(--content-invert-default)}.lc-Tooltip-module__tooltip--important___X-IMK{background-color:var(--color-warning-default);border-color:var(--color-warning-default);color:var(--content-default)}.lc-Tooltip-module__tooltip__arrow___Ov1YW{border-color:inherit;color:inherit;height:6px;margin:-6px 0;position:absolute;width:12px}.lc-Tooltip-module__tooltip__arrow___Ov1YW:after{border:6px solid transparent;content:"";position:absolute;transform:rotate(-45deg)}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=bottom]{height:0;top:1px}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=bottom]:after{border-right-color:inherit;border-top-color:inherit;box-shadow:8px -6px 10px -2px #424d574d}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=top]{top:100%}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=top]:after{border-bottom-color:inherit;border-left-color:inherit;box-shadow:-7px 6px 5px -3px #424d574d}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=right]{left:0;margin:-3px -5px}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=right]:after{border-left-color:inherit;border-top-color:inherit;box-shadow:-5px -5px 10px -2px #424d574d}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=left]{height:12px;left:100%;margin:0 -7px;width:6px}.lc-Tooltip-module__tooltip__arrow___Ov1YW[data-arrow-placement*=left]:after{border-bottom-color:inherit;border-right-color:inherit;box-shadow:6px 6px 10px -2px #424d574d}.lc-Tooltip-module__tooltip-header___QV0Vd{font-size:16px;font-weight:600;line-height:24px;margin-bottom:4px;margin-left:4px;margin-right:4px}.lc-Tooltip-module__tooltip-image___Aorwg{aspect-ratio:16/9;border-radius:4px;margin-bottom:12px;max-height:138px;width:100%}.lc-Tooltip-module__tooltip-text___FB8OV{font-size:15px;font-weight:400;line-height:22px;margin-bottom:12px;margin-left:4px;margin-right:4px}.lc-Tooltip-module__tooltip-close___3r3h9{cursor:pointer;position:absolute;right:-4px;top:-4px}.lc-Tooltip-module__tooltip-step___-j0n8{font-size:14px;font-style:normal;font-weight:400;line-height:20px}.lc-Tooltip-module__guide-tooltip--slide___Uawm2{transition-property:opacity,visibility,transform}.lc-Tooltip-module__guide-tooltip__overlay___IyrKK{background-color:var(--surface-invert-default);display:none;opacity:.5;position:fixed}.lc-Tooltip-module__guide-tooltip__overlay--slide___VW8oq{transition-duration:.2s;transition-property:top,left,width,height;transition-timing-function:ease-in-out}.lc-Tooltip-module__guide-tooltip__overlay--visible___dbdsZ{display:block}.lc-Textarea-module__textarea___g6U8F{box-sizing:border-box;display:inline-block;border:1px solid var(--border-default);border-radius:4px;background:var(--surface-basic-default);line-height:22px;color:var(--content-default);font-size:15px;font-weight:400}.lc-Textarea-module__textarea___g6U8F:hover{border-color:var(--border-hover)}.lc-Textarea-module__textarea--focused___1vtEx,.lc-Textarea-module__textarea--focused___1vtEx:hover{border-color:var(--color-action-default)}.lc-Textarea-module__textarea--disabled___xXaGv,.lc-Textarea-module__textarea--disabled___xXaGv:hover{border-color:var(--border-disabled);background-color:var(--surface-basic-disabled);color:var(--content-disabled)}.lc-Textarea-module__textarea--error___0EGuq,.lc-Textarea-module__textarea--error___0EGuq:hover{border-color:var(--color-negative-default)}.lc-Textarea-module__textarea___g6U8F textarea{display:block;outline:none;border:0;border-radius:4px;background:inherit;padding:8px 12px;min-width:125px;min-height:32px;color:inherit}.lc-FileUploadProgress-module__file-upload-progress___xw8h8{display:flex;align-items:center;width:100%}.lc-FileUploadProgress-module__file-upload-progress__icon___p8Rfz{margin-right:8px;height:18px}.lc-FileUploadProgress-module__file-upload-progress__wrapper___01Nkq{display:flex;flex:0 1 auto;flex-direction:column;align-self:flex-end;width:100%}.lc-FileUploadProgress-module__file-upload-progress__wrapper--with-icon___GSXmA{width:calc(100% - 28px)}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header___mYBGK{display:flex;justify-content:space-between;height:21px}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header___mYBGK:hover .lc-FileUploadProgress-module__file-upload-progress__wrapper__header__actions___tvhB3{display:block}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header__title___2IVuv{justify-self:flex-start;margin-bottom:2px;width:100%;overflow:hidden;text-overflow:ellipsis;line-height:1.3;white-space:nowrap;color:var(--content-default);font-size:14px}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header__title--success___E6DQl{margin-bottom:0;line-height:normal}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header__title--error___5BPpI{color:var(--color-negative-default)}.lc-FileUploadProgress-module__file-upload-progress__wrapper__header__actions___tvhB3{display:none}.lc-FileUploadProgressActions-module__file-upload-progress-actions___qOBr2{align-items:center;display:inline-flex;flex:1 0 auto;flex-wrap:nowrap;margin-left:auto}.lc-FileUploadProgressActions-module__file-upload-progress-actions__close-button___Eh4um,.lc-FileUploadProgressActions-module__file-upload-progress-actions__retry-button___DqFEo{align-items:center;background-color:transparent;border:0;border-radius:4px;color:var(--content-default);display:flex;flex:0 1 auto;justify-self:flex-end;margin:0 0 0 8px;padding:0}.lc-FileUploadProgressActions-module__file-upload-progress-actions__close-button___Eh4um svg,.lc-FileUploadProgressActions-module__file-upload-progress-actions__retry-button___DqFEo svg{cursor:pointer;display:flex;fill:currentColor;height:18px;width:18px}.lc-UploadBar-module__upload-bar___6Or8h{box-sizing:border-box;border:solid 1px var(--border-deault);border-radius:8px;box-shadow:0 2px 6px #0003;background-color:var(--surface-default);padding:10px;width:100%;overflow:hidden;color:var(--content-default)}.lc-UploadBar-module__upload-bar--error___MzvhT{color:var(--color-negative-default)}.lc-UploadBar-module__upload-bar__wrapper___MAUeH{box-sizing:border-box;display:flex;align-content:center;justify-content:space-between;cursor:pointer}.lc-UploadBar-module__upload-bar__wrapper__header___x9fen{display:flex;align-items:center;width:100%;font-size:15px}.lc-UploadBar-module__upload-bar__wrapper__header__icon___Aetm5{margin-right:12px}.lc-UploadBar-module__upload-bar__wrapper__header__title___BNuDu{justify-self:flex-start;width:100%;overflow:hidden;text-overflow:ellipsis;line-height:1.3;white-space:nowrap;font-size:14px}.lc-UploadBar-module__upload-bar__wrapper__header__collapse-button___3khMy{display:flex;flex:0 1 auto;align-items:center;margin:0 0 0 8px;border:0;border-radius:4px;background-color:transparent;cursor:pointer;padding:4px;color:var(--content-default)}.lc-UploadBar-module__upload-bar__wrapper__header__actions-container___5Pj4y{display:flex;align-items:center;height:28px}.lc-UploadBar-module__upload-bar__files___3W4nx{box-sizing:border-box;display:flex;max-height:200px}.lc-UploadBar-module__upload-bar__files--enter___zGq19{max-height:0}.lc-UploadBar-module__upload-bar__files--enter-active___-dMVb{transition:max-height .3s cubic-bezier(.14,0,0,1);max-height:200px}.lc-UploadBar-module__upload-bar__files--exit___MXBRY{max-height:200px}.lc-UploadBar-module__upload-bar__files--exit-active___krGW5,.lc-UploadBar-module__upload-bar__files--exit-done___2I72G{transition:max-height .3s cubic-bezier(.14,0,0,1);max-height:0}.lc-UploadBar-module__upload-bar__files-wrapper___93bs8{box-sizing:border-box;display:flex;flex-direction:column;padding-top:16px;width:100%;max-height:inherit}.lc-UploadBar-module__upload-bar__files__list___QJFEq{padding-right:20px;height:100%;overflow-y:auto}.lc-UploadBar-module__upload-bar__files__list___QJFEq>div:not(:last-child){margin-bottom:16px}
|
package/dist/themes/dark.css
CHANGED
|
@@ -1,52 +1,150 @@
|
|
|
1
1
|
.lc-dark-theme {
|
|
2
2
|
--background: #131317;
|
|
3
|
+
--background-01: #131317;
|
|
4
|
+
--background-02: #202024;
|
|
5
|
+
--background-03: #202024;
|
|
3
6
|
--surface-basic-default: #202024;
|
|
7
|
+
--surface-primary-default: #202024;
|
|
4
8
|
--surface-basic-subtle: #29292f;
|
|
5
|
-
--surface-
|
|
6
|
-
--surface-
|
|
9
|
+
--surface-secondary-default: #2d2d33;
|
|
10
|
+
--surface-secondary-hover: #343439;
|
|
11
|
+
--surface-secondary-active: #3a3a40;
|
|
12
|
+
--surface-secondary-disabled: #2d2d32;
|
|
13
|
+
--surface-basic-hover: rgb(255 255 255 / 10%);
|
|
14
|
+
--surface-primary-hover: #2b2b2f;
|
|
15
|
+
--surface-basic-active: rgb(255 255 255 / 20%);
|
|
16
|
+
--surface-primary-active: #323236;
|
|
17
|
+
--surface-primary-active-colored: rgb(0 102 255 / 25%);
|
|
7
18
|
--surface-basic-disabled: #2d2d32;
|
|
8
|
-
--surface-
|
|
19
|
+
--surface-primary-disabled: #333338;
|
|
20
|
+
--surface-tertiary-default: #3b3b43;
|
|
9
21
|
--surface-secondary-subtle: #3b3b43;
|
|
10
|
-
--surface-
|
|
11
|
-
--surface-
|
|
22
|
+
--surface-moderate-default: #4e4e58;
|
|
23
|
+
--surface-moderate-hover: #55555f;
|
|
24
|
+
--surface-moderate-active: #5c5c65;
|
|
25
|
+
--surface-tertiary-hover: #43434b;
|
|
26
|
+
--surface-tertiary-active: #4b4b52;
|
|
27
|
+
--surface-tertiary-disabled: #3b3b43;
|
|
12
28
|
--surface-feedback-info: #323640;
|
|
29
|
+
--surface-accent-emphasis-low-info: #20324d;
|
|
13
30
|
--surface-feedback-negative: #3a3136;
|
|
31
|
+
--surface-accent-emphasis-low-negative: #492529;
|
|
14
32
|
--surface-feedback-warning: #3a362b;
|
|
33
|
+
--surface-accent-emphasis-low-warning: #3d361b;
|
|
15
34
|
--surface-feedback-positive: #263532;
|
|
35
|
+
--surface-accent-emphasis-low-positive: #163628;
|
|
36
|
+
--surface-accent-emphasis-low-purple: #362c4d;
|
|
37
|
+
--surface-accent-emphasis-min-info: #232a36;
|
|
38
|
+
--surface-accent-emphasis-min-negative: #32262b;
|
|
39
|
+
--surface-accent-emphasis-min-warning: #322e26;
|
|
40
|
+
--surface-accent-emphasis-min-positive: #182c26;
|
|
41
|
+
--surface-accent-emphasis-min-purple: #2b2836;
|
|
16
42
|
--surface-invert-default: #eeeeef;
|
|
43
|
+
--surface-invert-primary: #e2e2e4;
|
|
17
44
|
--surface-invert-subtle: #c9c9cd;
|
|
45
|
+
--surface-invert-secondary: #c9c9cd;
|
|
18
46
|
--surface-invert-disabled: #29292f;
|
|
19
|
-
--surface-
|
|
20
|
-
--
|
|
21
|
-
--
|
|
22
|
-
--
|
|
47
|
+
--surface-locked-default: #f6f6f7;
|
|
48
|
+
--surface-locked-hover: #fff;
|
|
49
|
+
--surface-locked-active: #36363b;
|
|
50
|
+
--surface-locked-disabled: #333338;
|
|
51
|
+
--surface-locked-white: #fff;
|
|
52
|
+
--surface-locked-black: #000;
|
|
53
|
+
--surface-accent-emphasis-high-info: #06f;
|
|
54
|
+
--surface-accent-emphasis-high-negative: #ca0005;
|
|
55
|
+
--surface-accent-emphasis-high-warning: #e8bb00;
|
|
56
|
+
--surface-accent-emphasis-high-positive: #00893c;
|
|
57
|
+
--surface-accent-emphasis-high-purple: #9146ff;
|
|
58
|
+
--surface-overlay: rgb(19 19 23 / 90%);
|
|
59
|
+
--surface-other-overlay: rgb(19 19 23 / 90%);
|
|
60
|
+
--surface-other-agent: #06f;
|
|
61
|
+
--surface-other-skeleton: #3b3b43;
|
|
62
|
+
--content-default: rgb(255 255 255 / 80%);
|
|
63
|
+
--content-basic-primary: #eeeeef;
|
|
64
|
+
--content-subtle: rgb(255 255 255 / 60%);
|
|
65
|
+
--content-basic-secondary: #ababb1;
|
|
66
|
+
--content-disabled: rgb(255 255 255 / 40%);
|
|
67
|
+
--content-basic-disabled: #767680;
|
|
68
|
+
--content-basic-negative: #ff8282;
|
|
69
|
+
--content-basic-warning: #e5c155;
|
|
70
|
+
--content-basic-positive: #4cbf80;
|
|
71
|
+
--content-basic-info: #68afff;
|
|
72
|
+
--content-basic-purple: #bf9cff;
|
|
73
|
+
--content-basic-gradient-01: linear-gradient(
|
|
74
|
+
254.49deg,
|
|
75
|
+
#8609ff -0.38%,
|
|
76
|
+
#004bc2 94.44%
|
|
77
|
+
);
|
|
23
78
|
--content-white-locked: #fff;
|
|
79
|
+
--content-locked-white: #fff;
|
|
80
|
+
--content-black-locked: #131317;
|
|
81
|
+
--content-locked-black: #000;
|
|
82
|
+
--content-locked-default: #131317;
|
|
83
|
+
--content-locked-hover: #131317;
|
|
84
|
+
--content-locked-active: #68afff;
|
|
85
|
+
--content-locked-disabled: #767680;
|
|
24
86
|
--content-invert-default: #131317;
|
|
25
|
-
--content-invert-
|
|
26
|
-
--content-invert-
|
|
27
|
-
--
|
|
28
|
-
--
|
|
29
|
-
--
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
--border-
|
|
87
|
+
--content-invert-primary: #131317;
|
|
88
|
+
--content-invert-subtle: rgb(19 19 23 / 70%);
|
|
89
|
+
--content-invert-secondary: rgb(19 19 23 / 70%);
|
|
90
|
+
--content-invert-disabled: rgb(19 19 23 / 30%);
|
|
91
|
+
--content-invert-gradient-01: linear-gradient(
|
|
92
|
+
254.49deg,
|
|
93
|
+
#8609ff -0.38%,
|
|
94
|
+
#004bc2 94.44%
|
|
95
|
+
);
|
|
96
|
+
--border-default: rgb(255 255 255 / 40%);
|
|
97
|
+
--border-basic-primary: rgb(255 255 255 / 20%);
|
|
98
|
+
--border-basic-secondary: rgb(255 255 255 / 10%);
|
|
99
|
+
--border-subtle: rgb(255 255 255 / 10%);
|
|
100
|
+
--border-basic-tertiary: #131317;
|
|
101
|
+
--border-hover: rgb(255 255 255 / 60%);
|
|
102
|
+
--border-basic-hover: rgb(255 255 255 / 60%);
|
|
103
|
+
--border-disabled: rgb(255 255 255 / 50%);
|
|
104
|
+
--border-basic-disabled: rgb(255 255 255 / 10%);
|
|
105
|
+
--border-basic-negative: #ff7071;
|
|
106
|
+
--border-basic-warning: #e6bb00;
|
|
107
|
+
--border-basic-positive: #33b66d;
|
|
108
|
+
--border-basic-info: #5ba4ff;
|
|
109
|
+
--border-basic-purple: #b58eff;
|
|
110
|
+
--border-invert-default: rgb(19 19 23 / 50%);
|
|
111
|
+
--border-invert-primary: rgb(19 19 23 / 60%);
|
|
112
|
+
--border-invert-subtle: rgb(19 19 23 / 10%);
|
|
113
|
+
--border-invert-secondary: rgb(19 19 23 / 10%);
|
|
114
|
+
--border-invert-hover: rgba(19 19 23 / 80%);
|
|
115
|
+
--border-invert-disabled: rgb(19 19 23 / 30%);
|
|
35
116
|
--color-action-active: #b6d5fb;
|
|
117
|
+
--action-primary-active: #b3d7ff;
|
|
36
118
|
--color-action-hover: #8abbf9;
|
|
119
|
+
--action-primary-hover: #86bfff;
|
|
37
120
|
--color-action-default: #6daaf8;
|
|
121
|
+
--action-primary-default: #68afff;
|
|
38
122
|
--color-action-default-rgb: 157, 206, 255;
|
|
39
123
|
--color-action-disabled: #6daaf8;
|
|
124
|
+
--action-primary-disabled: rgb(104 175 255 / 30%);
|
|
40
125
|
--color-negative-active: #ffe5e5;
|
|
126
|
+
--action-negative-active: #ffa6a6;
|
|
41
127
|
--color-negative-hover: #ffb7b7;
|
|
42
|
-
--
|
|
43
|
-
--color-negative-
|
|
128
|
+
--action-negative-hover: #ff7071;
|
|
129
|
+
--color-negative-default: #ff5354;
|
|
130
|
+
--action-negative-default: #ff4c4d;
|
|
131
|
+
--color-negative-disabled: rgb(255 76 77 / 30%);
|
|
132
|
+
--action-negative-disabled: rgb(255 76 77 / 30%);
|
|
44
133
|
--color-warning-default: #fed65e;
|
|
134
|
+
--action-warning-default: #e8bb00;
|
|
45
135
|
--color-warning-hover: #fedc89;
|
|
136
|
+
--action-warning-hover: #efcf4c;
|
|
46
137
|
--color-positive-default: #00c057;
|
|
138
|
+
--action-positive-default: #00a449;
|
|
47
139
|
--color-positive-hover: #00e066;
|
|
140
|
+
--action-positive-hover: #4cbf80;
|
|
48
141
|
--color-positive-disabled: #4d735e;
|
|
142
|
+
--action-positive-disabled: rgb(0 164 73 / 20%);
|
|
143
|
+
--action-neutral-default: #8d8d95;
|
|
144
|
+
--action-neutral-hover: #afafb5;
|
|
145
|
+
--action-neutral-disabled: rgb(141 141 149 / 20%);
|
|
49
146
|
--color-bot: #50009c;
|
|
147
|
+
--surface-other-bot: #50009c;
|
|
50
148
|
--color-black: #131317;
|
|
51
149
|
--color-white: #fff;
|
|
52
150
|
--decor-blue900: #003288;
|
|
@@ -124,6 +222,15 @@
|
|
|
124
222
|
--decor-purple200: #d1c0ff;
|
|
125
223
|
--decor-purple100: #eee8ff;
|
|
126
224
|
--decor-purple50: #faf8ff;
|
|
225
|
+
--products-livechat: #fe5100;
|
|
226
|
+
--products-helpdesk: #00c057;
|
|
227
|
+
--products-chatbot: #06f;
|
|
228
|
+
--products-knowledgebase: #9146ff;
|
|
229
|
+
--illustrations-primary: #3b3b43;
|
|
230
|
+
--illustrations-secondary: #62626d;
|
|
231
|
+
--illustrations-stroke: #c9c9cd;
|
|
232
|
+
--tag-surface-01: #3b3b43;
|
|
233
|
+
--tag-content-01: #eeeeef;
|
|
127
234
|
}
|
|
128
235
|
|
|
129
236
|
/*# sourceMappingURL=dark.css.map */
|
package/dist/themes/dark.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/themes/dark.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA","file":"dark.css"}
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/themes/dark.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAA;AAAA;AAAA;AAAA;EAKA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAA;AAAA;AAAA;AAAA;EAKA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA","file":"dark.css"}
|