@hyphen/hyphen-components 6.9.0 → 6.12.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/components/Badge/Badge.d.ts +3 -10
- package/dist/components/Formik/FormikToggleGroupMulti/FormikToggleGroupMulti.d.ts +3 -1
- package/dist/components/Modal/Modal.d.ts +9 -1
- package/dist/components/SelectInputNative/SelectInputNative.stories.d.ts +4 -1
- package/dist/css/index.css +1 -1
- package/dist/hyphen-components.cjs.development.js +15 -6
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +15 -6
- package/dist/hyphen-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Badge/Badge.stories.tsx +6 -3
- package/src/components/Badge/Badge.test.tsx +1 -2
- package/src/components/Badge/Badge.tsx +8 -13
- package/src/components/Formik/FormikToggleGroupMulti/FormikToggleGroupMulti.tsx +4 -0
- package/src/components/Modal/Modal.tsx +13 -2
- package/src/components/SelectInputNative/SelectInputNative.module.scss +11 -0
- package/src/components/SelectInputNative/SelectInputNative.stories.tsx +49 -2
- package/src/components/Table/Table.stories.tsx +3 -3
- package/src/components/Tooltip/Tooltip.stories.tsx +3 -1
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import { FontSize, BaseSpacing, ResponsiveProp } from '../../types';
|
|
3
|
+
import { BoxProps } from '../Box/Box';
|
|
3
4
|
export type BadgeSize = 'sm' | 'md' | 'lg';
|
|
4
5
|
export type BadgeVariant = 'light-grey' | 'dark-grey' | 'inverse' | 'green' | 'yellow' | 'blue' | 'red' | 'purple' | 'hyphen';
|
|
5
6
|
export type BadgeSizeAttributes = {
|
|
6
7
|
fontSize: FontSize;
|
|
7
8
|
padding: BaseSpacing;
|
|
8
9
|
};
|
|
9
|
-
export interface BadgeProps {
|
|
10
|
+
export interface BadgeProps extends BoxProps {
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
-
*/
|
|
13
|
-
className?: string;
|
|
14
|
-
/**
|
|
15
|
-
* The text message or ReactNode to be rendered in the badge.
|
|
12
|
+
* @deprecated Use children instead. The text message or ReactNode to be rendered in the badge.
|
|
16
13
|
*/
|
|
17
14
|
message?: string | ReactNode;
|
|
18
15
|
/**
|
|
@@ -23,9 +20,5 @@ export interface BadgeProps {
|
|
|
23
20
|
* The type/color of the badge to show.
|
|
24
21
|
*/
|
|
25
22
|
variant?: BadgeVariant;
|
|
26
|
-
/**
|
|
27
|
-
* Additional props to be spread to rendered element
|
|
28
|
-
*/
|
|
29
|
-
[x: string]: any;
|
|
30
23
|
}
|
|
31
24
|
export declare const Badge: React.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ToggleVariant } from '../../ToggleGroup/ToggleGroup';
|
|
3
|
+
import { BaseSpacing, ResponsiveProp } from 'src/types';
|
|
3
4
|
export interface FormikToggleGroupMultiProps {
|
|
4
5
|
name: string;
|
|
5
6
|
options: Array<{
|
|
@@ -12,5 +13,6 @@ export interface FormikToggleGroupMultiProps {
|
|
|
12
13
|
label?: string;
|
|
13
14
|
children?: React.ReactNode;
|
|
14
15
|
variant: ToggleVariant;
|
|
16
|
+
gap?: BaseSpacing | ResponsiveProp<BaseSpacing>;
|
|
15
17
|
}
|
|
16
|
-
export declare const FormikToggleGroupMulti: ({ name, options, helpText, label, children, variant, ...props }: FormikToggleGroupMultiProps) => React.JSX.Element;
|
|
18
|
+
export declare const FormikToggleGroupMulti: ({ name, options, helpText, label, children, variant, gap, ...props }: FormikToggleGroupMultiProps) => React.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode, RefObject } from 'react';
|
|
2
|
-
import { CssOverflowValue } from '../../types';
|
|
2
|
+
import { BackgroundColor, CssOverflowValue } from '../../types';
|
|
3
3
|
import { BoxProps } from '../Box/Box';
|
|
4
4
|
import { ModalFooter, ModalHeader, ModalBody } from './components';
|
|
5
5
|
export interface ModalProps {
|
|
@@ -36,6 +36,10 @@ export interface ModalProps {
|
|
|
36
36
|
* At mobile viewport widths, the modal will take up the fullscreen
|
|
37
37
|
*/
|
|
38
38
|
fullScreenMobile?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Background color for the modal content using design tokens
|
|
41
|
+
*/
|
|
42
|
+
background?: BackgroundColor;
|
|
39
43
|
/**
|
|
40
44
|
* By default the first focusable element will receive focus when the dialog
|
|
41
45
|
* opens but you can provide a ref to focus instead.
|
|
@@ -60,6 +64,10 @@ export interface ModalProps {
|
|
|
60
64
|
* The css overflow behavior of the Modal
|
|
61
65
|
*/
|
|
62
66
|
overflow?: CssOverflowValue;
|
|
67
|
+
/**
|
|
68
|
+
* Inline styles for the modal container
|
|
69
|
+
*/
|
|
70
|
+
style?: React.CSSProperties;
|
|
63
71
|
/**
|
|
64
72
|
* Allows spread props
|
|
65
73
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectInputNative } from './SelectInputNative';
|
|
3
|
-
import type { Meta } from '@storybook/react-vite';
|
|
3
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
4
4
|
declare const meta: Meta<typeof SelectInputNative>;
|
|
5
5
|
export default meta;
|
|
6
6
|
export declare const Default: () => React.JSX.Element;
|
|
@@ -14,3 +14,6 @@ export declare const CustomRequiredIndicator: () => React.JSX.Element;
|
|
|
14
14
|
export declare const Disabled: () => React.JSX.Element;
|
|
15
15
|
export declare const Error: () => React.JSX.Element;
|
|
16
16
|
export declare const Sizes: () => React.JSX.Element;
|
|
17
|
+
export declare const InteractionTest: StoryObj<typeof SelectInputNative>;
|
|
18
|
+
export declare const InteractionDisabled: StoryObj<typeof SelectInputNative>;
|
|
19
|
+
export declare const InteractionChangePreSelected: StoryObj<typeof SelectInputNative>;
|
package/dist/css/index.css
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
.SelectInputInset-module_size-md__6MFcV,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md__6MFcV{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputInset-module_size-md__6MFcV .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_size-md__6MFcV:after,.SelectInputInset-module_size-md__6MFcV:before,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md__6MFcV:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md__6MFcV:before{top:calc(var(--size-spacing-md) + 12px)}.SelectInputInset-module_size-md__6MFcV select,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md__6MFcV select{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputInset-module_size-md__6MFcV select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-md__6MFcV select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-md__6MFcV select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-md__6MFcV .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_size-lg__i2Bzf,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg__i2Bzf{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputInset-module_size-lg__i2Bzf .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputInset-module_size-lg__i2Bzf:after,.SelectInputInset-module_size-lg__i2Bzf:before,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg__i2Bzf:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg__i2Bzf:before{top:calc(var(--size-spacing-md) + 14px)}.SelectInputInset-module_size-lg__i2Bzf select,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg__i2Bzf select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_size-lg__i2Bzf select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-lg__i2Bzf select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-lg__i2Bzf select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_size-lg__i2Bzf .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}.SelectInputInset-module_text-input-wrapper__hZ4Fy select:disabled,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_disabled__DYSr2{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.SelectInputInset-module_text-input-wrapper__hZ4Fy select:hover:disabled,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_disabled__DYSr2:hover{cursor:not-allowed}.SelectInputInset-module_select-input-label__6XdR6{color:--form-control-label-font-color,var(--INTERNAL_form-control-label-font-color);cursor:text;font-size:1rem;font-weight:--form-control-label-font-weight,var(--INTERNAL_form-control-label-font-weigh);position:absolute;top:0;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out;white-space:nowrap}.SelectInputInset-module_text-input-wrapper__hZ4Fy{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family));position:relative}.SelectInputInset-module_text-input-wrapper__hZ4Fy:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy:before{background:var(--color-base-grey-300);border-radius:100px;content:"";height:2px;pointer-events:none;position:absolute;width:10px}.SelectInputInset-module_text-input-wrapper__hZ4Fy:before{right:calc(var(--size-spacing-sm) + 7px);transform:rotate(42deg);transform-origin:50% 50%;z-index:1}.SelectInputInset-module_text-input-wrapper__hZ4Fy:after{right:calc(var(--size-spacing-sm) + 1px);transform:rotate(-42deg);transform-origin:50% 50%}@media (min-width:680px){.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz:before{top:calc(var(--size-spacing-md) + 12px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz select{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-tablet__xwoPz .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa:before{top:calc(var(--size-spacing-md) + 14px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-tablet__2DgFa .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}@media (min-width:992px){.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS:before{top:calc(var(--size-spacing-md) + 12px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS select{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-desktop__MfemS .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ:before{top:calc(var(--size-spacing-md) + 14px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-desktop__etLGJ .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}@media (min-width:1280px){.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q:before{top:calc(var(--size-spacing-md) + 12px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q select{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-md-hd__NWb1q .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC .SelectInputInset-module_select-input-label__6XdR6{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC:after,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC:before{top:calc(var(--size-spacing-md) + 14px)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC select:focus+.SelectInputInset-module_select-input-label__6XdR6{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC select:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC select:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_size-lg-hd__ycjXC .SelectInputInset-module_clear-button__xbZaY{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}.SelectInputInset-module_text-input-wrapper__hZ4Fy select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;box-sizing:border-box;color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));display:flex;line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.SelectInputInset-module_text-input-wrapper__hZ4Fy select::-moz-placeholder{color:transparent}.SelectInputInset-module_text-input-wrapper__hZ4Fy select::placeholder{color:transparent}.SelectInputInset-module_text-input-wrapper__hZ4Fy select:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.SelectInputInset-module_text-input-wrapper__hZ4Fy select:disabled{background-color:transparent}.SelectInputInset-module_text-input-wrapper__hZ4Fy select:disabled+.SelectInputInset-module_select-input-label__6XdR6{cursor:not-allowed}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS{background-color:var(--form-control-background-color-error,var(--INTERNAL_form-control-background-color-error))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS label,.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS select{color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS select:focus{background-color:transparent;color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color));outline:none}.SelectInputInset-module_text-input-wrapper__hZ4Fy.SelectInputInset-module_error__j-jgS select:focus+label{color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color))}.SelectInputInset-module_text-input-wrapper__hZ4Fy:not(.SelectInputInset-module_error__j-jgS)>.SelectInputInset-module_disabled__DYSr2:not(input),.SelectInputInset-module_text-input-wrapper__hZ4Fy:not(.SelectInputInset-module_error__j-jgS)>:focus:not(input){box-shadow:inset 0 1px 0 0 var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus)),inset 0 -1px 0 0 var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus))}.SelectInputInset-module_text-input-wrapper__hZ4Fy:focus-within{box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus)),inset 0 0 0 1px var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.SelectInputInset-module_text-input-wrapper__hZ4Fy .SelectInputInset-module_clear-button__xbZaY{background:none;border:0;border-radius:0;color:var(--form-control-icon-color,var(--INTERNAL_form-control-icon-color));cursor:pointer;font-style:inherit;height:100%;position:absolute;right:var(--size-spacing-xl);transition-duration:.2s;transition-property:color}.SelectInputInset-module_text-input-wrapper__hZ4Fy .SelectInputInset-module_clear-button__xbZaY:hover{color:var(--form-control-icon-hover-color,var(--INTERNAL_form-control-icon-hover-color))}
|
|
21
21
|
.TextareaInputInset-module_size-md__Hkdpr,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md__Hkdpr{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInputInset-module_size-md__Hkdpr .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextareaInputInset-module_size-md__Hkdpr textarea,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md__Hkdpr textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInputInset-module_size-md__Hkdpr textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_size-md__Hkdpr textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_size-md__Hkdpr textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_size-lg__wOXof,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg__wOXof{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInputInset-module_size-lg__wOXof .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextareaInputInset-module_size-lg__wOXof textarea,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg__wOXof textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextareaInputInset-module_size-lg__wOXof textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_size-lg__wOXof textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_size-lg__wOXof textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea:disabled,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_disabled__U-Fpa{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea:hover:disabled,.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_disabled__U-Fpa:hover{cursor:not-allowed}.TextareaInputInset-module_text-input-label__yHDss{color:--form-control-label-font-color,var(--INTERNAL_form-control-label-font-color);cursor:text;font-size:1rem;font-weight:--form-control-label-font-weight,var(--INTERNAL_form-control-label-font-weigh);position:absolute;top:0;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out;white-space:nowrap}.TextareaInputInset-module_text-input-wrapper__0VNFI{border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family));position:relative}@media (min-width:680px){.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9 .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9 textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9 textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9 textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-tablet__KnN-9 textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-tablet__oJ0ib textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}}@media (min-width:992px){.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-desktop__uBIxD textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-desktop__3qmko textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}}@media (min-width:1280px){.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-md-hd__6340p textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT .TextareaInputInset-module_text-input-label__yHDss{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT textarea:focus+.TextareaInputInset-module_text-input-label__yHDss{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT textarea:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextareaInputInset-module_text-input-wrapper__0VNFI.TextareaInputInset-module_size-lg-hd__PtVQT textarea:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:none;box-sizing:border-box;color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea::-moz-placeholder{color:transparent}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea::placeholder{color:transparent}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus)),inset 0 0 0 1px var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea:disabled{background-color:transparent}.TextareaInputInset-module_text-input-wrapper__0VNFI textarea:disabled+.TextareaInputInset-module_text-input-label__yHDss{cursor:not-allowed}.TextareaInputInset-module_text-input-wrapper__0VNFI .TextareaInputInset-module_error__sxX-U{background-color:var(--form-control-background-color-error,var(--INTERNAL_form-control-background-color-error));box-shadow:var(--form-control-box-shadow,var(--INTERNAL_form-control-box-shadow)),inset 0 0 0 1px var(--form-control-border-color-error,var(--INTERNAL_form-control-border-color-error));color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.TextareaInputInset-module_text-input-wrapper__0VNFI .TextareaInputInset-module_error__sxX-U:focus{background-color:transparent;outline:none}.TextareaInputInset-module_text-input-wrapper__0VNFI .TextareaInputInset-module_error__sxX-U+label{color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.TextareaInputInset-module_text-input-wrapper__0VNFI .TextareaInputInset-module_error__sxX-U:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--color-border-active);box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus));color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));outline:none}.TextareaInputInset-module_text-input-wrapper__0VNFI .TextareaInputInset-module_error__sxX-U:focus-within+label{color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color))}.TextareaInputInset-module_text-input-wrapper__0VNFI:not(.TextareaInputInset-module_error__sxX-U)>.TextareaInputInset-module_disabled__U-Fpa:not(textarea){box-shadow:inset 0 1px 0 0 var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus)),inset 0 -1px 0 0 var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus))}.TextareaInputInset-module_textarea-resize-both__53-Ff{resize:both}.TextareaInputInset-module_textarea-resize-horizontal__X0ibH{resize:horizontal}.TextareaInputInset-module_textarea-resize-vertical__YlsyR{resize:vertical}.TextareaInputInset-module_textarea-resize-none__p0eJB{resize:none}
|
|
22
22
|
.TextInputInset-module_size-md__Lg91X,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextInputInset-module_size-md__Lg91X .TextInputInset-module_text-input-label__zADJM,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextInputInset-module_size-md__Lg91X input,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd input{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_size-md__Lg91X input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-md__Lg91X input:not(:-moz-placeholder-shown)~label,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-md__Lg91X input:not(:placeholder-shown)~label,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-md__Lg91X .TextInputInset-module_prefix__i-iby,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_prefix__i-iby{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_size-md__Lg91X .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_size-md__Lg91X .TextInputInset-module_suffix__r9ZnM,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md__Lg91X .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_size-lg__ggigL,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextInputInset-module_size-lg__ggigL .TextInputInset-module_text-input-label__zADJM,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextInputInset-module_size-lg__ggigL input,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd input{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_size-lg__ggigL input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-lg__ggigL input:not(:-moz-placeholder-shown)~label,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-lg__ggigL input:not(:placeholder-shown)~label,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_size-lg__ggigL .TextInputInset-module_prefix__i-iby,.TextInputInset-module_size-lg__ggigL .TextInputInset-module_suffix__r9ZnM,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_prefix__i-iby,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_size-lg__ggigL .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg__ggigL .TextInputInset-module_label-input-wrapper__opMsd .TextInputInset-module_clear-button__kV9pf{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}.TextInputInset-module_text-input-wrapper__qQzOh input:disabled,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_disabled__udCEB{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.TextInputInset-module_text-input-wrapper__qQzOh input:hover:disabled,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_disabled__udCEB:hover{cursor:not-allowed}.TextInputInset-module_text-input-label__zADJM{color:--form-control-label-font-color,var(--INTERNAL_form-control-label-font-color);cursor:text;font-size:1rem;font-weight:--form-control-label-font-weight,var(--INTERNAL_form-control-label-font-weigh);position:absolute;top:0;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out;white-space:nowrap}.TextInputInset-module_prefix__i-iby{border-bottom-left-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));border-top-left-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius))}.TextInputInset-module_suffix__r9ZnM{border-bottom-right-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));border-top-right-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius))}.TextInputInset-module_text-input-wrapper__qQzOh{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family));position:relative}@media (min-width:680px){.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS input{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS .TextInputInset-module_prefix__i-iby{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-tablet__adPUS .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo input{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo .TextInputInset-module_prefix__i-iby,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-tablet__HZTUo .TextInputInset-module_clear-button__kV9pf{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}@media (min-width:992px){.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 input{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 .TextInputInset-module_prefix__i-iby{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-desktop__Pjze7 .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 input{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 .TextInputInset-module_prefix__i-iby,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-desktop__5ov91 .TextInputInset-module_clear-button__kV9pf{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}@media (min-width:1280px){.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) + 1px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU input{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 12px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding)) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding)) - 6px) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.6875) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU .TextInputInset-module_prefix__i-iby{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU .TextInputInset-module_clear-button__kV9pf,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-md-hd__jyglU .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS .TextInputInset-module_text-input-label__zADJM{padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 4px)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS input{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) + 16px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 6px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS input:focus+.TextInputInset-module_text-input-label__zADJM{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS input:not(:-moz-placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS input:not(:placeholder-shown)~label{opacity:.75;transform:scale(.75) translateY(-.25rem) translateX(.15rem)}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS .TextInputInset-module_prefix__i-iby,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS .TextInputInset-module_suffix__r9ZnM{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_size-lg-hd__ymgTS .TextInputInset-module_clear-button__kV9pf{padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding)) 0}}.TextInputInset-module_text-input-wrapper__qQzOh input{background-color:transparent;border:none;box-sizing:border-box;color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));display:flex;line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.TextInputInset-module_text-input-wrapper__qQzOh input::-moz-placeholder{color:transparent}.TextInputInset-module_text-input-wrapper__qQzOh input::placeholder{color:transparent}.TextInputInset-module_text-input-wrapper__qQzOh input:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.TextInputInset-module_text-input-wrapper__qQzOh input:disabled{background-color:transparent}.TextInputInset-module_text-input-wrapper__qQzOh input:disabled+.TextInputInset-module_text-input-label__zADJM{cursor:not-allowed}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB{background-color:var(--form-control-background-color-error,var(--INTERNAL_form-control-background-color-error))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB input,.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB label{color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB input:focus{background-color:transparent;color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));outline:none}.TextInputInset-module_text-input-wrapper__qQzOh.TextInputInset-module_error__LZghB input:focus+.TextInputInset-module_text-input-label__zADJM{color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color))}.TextInputInset-module_text-input-wrapper__qQzOh:not(.TextInputInset-module_error__LZghB)>.TextInputInset-module_disabled__udCEB:not(input),.TextInputInset-module_text-input-wrapper__qQzOh:not(.TextInputInset-module_error__LZghB)>:focus:not(input){box-shadow:inset 0 1px 0 0 var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus)),inset 0 -1px 0 0 var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus))}.TextInputInset-module_text-input-wrapper__qQzOh:focus-within{border:1px solid var(--color-border-active);box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus));outline:none}.TextInputInset-module_text-input-wrapper__qQzOh .TextInputInset-module_clear-button__kV9pf{background:none;border:0;border-radius:0;color:var(--form-control-icon-color,var(--INTERNAL_form-control-icon-color));cursor:pointer;font-style:inherit;transition-duration:.2s;transition-property:color}.TextInputInset-module_text-input-wrapper__qQzOh .TextInputInset-module_clear-button__kV9pf:hover{color:var(--form-control-icon-hover-color,var(--INTERNAL_form-control-icon-hover-color))}
|
|
23
|
-
.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:before,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:hover,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled:before,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:hover:disabled{cursor:not-allowed}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z,.SelectInputNative-module_size-sm__7Ql4z{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z>select,.SelectInputNative-module_size-sm__7Ql4z>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:before,.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_size-sm__7Ql4z:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:before,.SelectInputNative-module_size-sm__7Ql4z:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_size-sm__7Ql4z:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh,.SelectInputNative-module_size-md__ofleh{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh>select,.SelectInputNative-module_size-md__ofleh>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:before,.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_size-md__ofleh:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:before,.SelectInputNative-module_size-md__ofleh:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_size-md__ofleh:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6,.SelectInputNative-module_size-lg__ewS-6{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6>select,.SelectInputNative-module_size-lg__ewS-6>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:before,.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_size-lg__ewS-6:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:before,.SelectInputNative-module_size-lg__ewS-6:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_size-lg__ewS-6:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family));position:relative}.SelectInputNative-module_select-input-native-wrapper__-vvFm:focus-within{border:1px solid var(--color-border-active);box-shadow:var(--form-control-box-shadow,var(--INTERNAL_form-control-box-shadow-focus));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm:before{background:var(--color-base-grey-300);border-radius:100px;content:"";height:2px;pointer-events:none;position:absolute;width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm:before{right:calc(var(--size-spacing-sm) + 7px);transform:rotate(42deg);transform-origin:50% 50%;z-index:1}.SelectInputNative-module_select-input-native-wrapper__-vvFm:after{right:calc(var(--size-spacing-sm) + 1px);transform:rotate(-42deg);transform-origin:50% 50%}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;box-sizing:border-box;line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled{background-color:transparent}@media (min-width:680px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:after{right:calc(var(--size-spacing-sm) + 3px)}}@media (min-width:992px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:after{right:calc(var(--size-spacing-sm) + 3px)}}@media (min-width:1280px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:after{right:calc(var(--size-spacing-sm) + 3px)}}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT{background-color:var(--form-control-border-color-error,var(--INTERNAL_form-control-background-color-error));border-color:var(--form-control-border-color-error,var(--INTERNAL_form-control-border-color-error))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--color-border-active);color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT select{color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT select:focus{background-color:transparent;color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color));outline:none}.SelectInputNative-module_text-input-label__-YjDc{margin-bottom:var(--form-control-label-margin,var(--INTERNAL_form-control-label-margin))}
|
|
23
|
+
.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:before,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_disabled__gKmV4:hover,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled:before,.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:hover:disabled{cursor:not-allowed}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z,.SelectInputNative-module_size-sm__7Ql4z{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z>select,.SelectInputNative-module_size-sm__7Ql4z>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:before,.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_size-sm__7Ql4z:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:before,.SelectInputNative-module_size-sm__7Ql4z:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm__7Ql4z:after,.SelectInputNative-module_size-sm__7Ql4z:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh,.SelectInputNative-module_size-md__ofleh{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh>select,.SelectInputNative-module_size-md__ofleh>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:before,.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_size-md__ofleh:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:before,.SelectInputNative-module_size-md__ofleh:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md__ofleh:after,.SelectInputNative-module_size-md__ofleh:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6,.SelectInputNative-module_size-lg__ewS-6{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6>select,.SelectInputNative-module_size-lg__ewS-6>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:before,.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_size-lg__ewS-6:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:before,.SelectInputNative-module_size-lg__ewS-6:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg__ewS-6:after,.SelectInputNative-module_size-lg__ewS-6:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family));position:relative}.SelectInputNative-module_select-input-native-wrapper__-vvFm:focus-within{border:1px solid var(--color-border-active);box-shadow:var(--form-control-box-shadow,var(--INTERNAL_form-control-box-shadow-focus));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm:before{background:var(--color-base-grey-300);border-radius:100px;content:"";height:2px;pointer-events:none;position:absolute;width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm:before{right:calc(var(--size-spacing-sm) + 7px);transform:rotate(42deg);transform-origin:50% 50%;z-index:1}.SelectInputNative-module_select-input-native-wrapper__-vvFm:after{right:calc(var(--size-spacing-sm) + 1px);transform:rotate(-42deg);transform-origin:50% 50%}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;box-sizing:border-box;line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select option{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color))}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm>select:disabled{background-color:transparent}@media (min-width:680px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-tablet__3wbFA:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-tablet__nLo2t:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-tablet__fLu2T:after{right:calc(var(--size-spacing-sm) + 3px)}}@media (min-width:992px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-desktop__aUL7D:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-desktop__s1uoc:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-desktop__Ri2Ka:after{right:calc(var(--size-spacing-sm) + 3px)}}@media (min-width:1280px){.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--size-spacing-2xl) calc(var(--form-control-size-sm-padding, var(--INTERNAL_form-control-size-sm-padding))) var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:before{height:2px;top:calc(var(--size-spacing-sm) + 6px);width:8px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:before{right:calc(var(--size-spacing-sm) + 8px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-sm-hd__RVm4G:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--size-spacing-3xl) calc(var(--form-control-size-md-padding, var(--INTERNAL_form-control-size-md-padding))) var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:before{top:calc(var(--size-spacing-md) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:before{right:calc(var(--size-spacing-sm) + 10px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-md-hd__m4Rqf:after{right:calc(var(--size-spacing-sm) + 3px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b>select{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--size-spacing-3xl) calc(var(--form-control-size-lg-padding, var(--INTERNAL_form-control-size-lg-padding)) - 1px) var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:after,.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:before{height:2px;top:calc(var(--size-spacing-md) + 9px);width:10px}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:before{right:calc(var(--size-spacing-sm) + 11px)}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_size-lg-hd__V6i8b:after{right:calc(var(--size-spacing-sm) + 3px)}}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT{background-color:var(--form-control-border-color-error,var(--INTERNAL_form-control-background-color-error));border-color:var(--form-control-border-color-error,var(--INTERNAL_form-control-border-color-error))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:1px solid var(--color-border-active);color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));outline:none}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT select{color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.SelectInputNative-module_select-input-native-wrapper__-vvFm.SelectInputNative-module_error__RBOZT select:focus{background-color:transparent;color:var(--form-control-font-color,var(--INTERNAL_form-control-label-color));outline:none}.SelectInputNative-module_text-input-label__-YjDc{margin-bottom:var(--form-control-label-margin,var(--INTERNAL_form-control-label-margin))}
|
|
24
24
|
.TextareaInput-module_size-sm__-YCcV,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm__-YCcV{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.TextareaInput-module_size-sm__-YCcV>textarea,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm__-YCcV>textarea{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));padding:var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.TextareaInput-module_size-md__uPOvN,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md__uPOvN{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInput-module_size-md__uPOvN>textarea,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md__uPOvN>textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInput-module_size-lg__P5SYv,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg__P5SYv{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInput-module_size-lg__P5SYv>textarea,.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg__P5SYv>textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea:disabled{background-color:var(--color-background-disabled);color:var(--color-font-disabled);-webkit-text-fill-color:var(--color-font-disabled);opacity:1}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea:hover:disabled{cursor:not-allowed}.TextareaInput-module_textarea-input-wrapper__mJBZN{border:1px solid var(--form-control-border-color,var(--INTERNAL_form-control-border-color));font-family:var(--form-control-font-family,var(--INTERNAL_form-control-font-family))}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border:none;color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color));line-height:var(--form-control-line-height,var(--INTERNAL_form-control-line-height));transition-duration:.3s;transition-property:border,background-color;transition-timing-function:cubic-bezier(.2,.8,.4,1);width:100%}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea::-moz-placeholder{color:var(--color-font-placeholder);opacity:1}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea::placeholder{color:var(--color-font-placeholder);opacity:1}.TextareaInput-module_textarea-input-wrapper__mJBZN>textarea:focus{border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus));outline:none}@media (min-width:680px){.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-tablet__rYP2T{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-tablet__rYP2T>textarea{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));padding:var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-tablet__D1PYq{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-tablet__D1PYq>textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-tablet__N-UED{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-tablet__N-UED>textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}}@media (min-width:992px){.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-desktop__Z-Zdg{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-desktop__Z-Zdg>textarea{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));padding:var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-desktop__W3jIm{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-desktop__W3jIm>textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-desktop__XLwk0{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-desktop__XLwk0>textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}}@media (min-width:1280px){.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-hd__KP21d{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));font-size:var(--form-control-size-sm-font-size,var(--INTERNAL_form-control-size-sm-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-sm-hd__KP21d>textarea{border-radius:var(--form-control-size-sm-border-radius,var(--INTERNAL_form-control-size-sm-border-radius));padding:var(--form-control-size-sm-padding,var(--INTERNAL_form-control-size-sm-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-hd__3me0R{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));font-size:var(--form-control-size-md-font-size,var(--INTERNAL_form-control-size-md-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-md-hd__3me0R>textarea{border-radius:var(--form-control-size-md-border-radius,var(--INTERNAL_form-control-size-md-border-radius));padding:var(--form-control-size-md-padding,var(--INTERNAL_form-control-size-md-padding))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-hd__BcgC-{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));font-size:var(--form-control-size-lg-font-size,var(--INTERNAL_form-control-size-lg-font-size))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_size-lg-hd__BcgC->textarea{border-radius:var(--form-control-size-lg-border-radius,var(--INTERNAL_form-control-size-lg-border-radius));padding:var(--form-control-size-lg-padding,var(--INTERNAL_form-control-size-lg-padding))}}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_error__JpCpt>textarea{background-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-background-color-error));border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-error));color:var(--form-control-font-color,var(--INTERNAL_form-control-input-color-error))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_error__JpCpt textarea:focus{background-color:transparent;outline:none}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_error__JpCpt:focus-within{background-color:var(--form-control-background-color,var(--INTERNAL_form-control-background-color));border-color:var(--form-control-border-color-focus,var(--INTERNAL_form-control-border-color-focus))}.TextareaInput-module_textarea-input-wrapper__mJBZN.TextareaInput-module_error__JpCpt:focus-within>textarea{color:var(--form-control-font-color,var(--INTERNAL_form-control-font-color))}.TextareaInput-module_textarea-input-wrapper__mJBZN:focus-within{border:1px solid var(--color-border-active);box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus));outline:none}.TextareaInput-module_textarea-input-label__1zb77{margin-bottom:var(--form-control-label-margin,var(--INTERNAL_form-control-label-margin))}.TextareaInput-module_textarea-resize-both__Gn3Zh{resize:both}.TextareaInput-module_textarea-resize-horizontal__0aRED{resize:horizontal}.TextareaInput-module_textarea-resize-vertical__DbKar{resize:vertical}.TextareaInput-module_textarea-resize-none__l6dRF{resize:none}
|
|
25
25
|
.Switch-module_thumb-size-sm__0cIei{height:calc(var(--size-spacing-2xl) - 4px);width:calc(var(--size-spacing-2xl) - 4px)}.Switch-module_thumb-size-md__wB9aa{height:calc(var(--size-spacing-3xl) - 4px);width:calc(var(--size-spacing-3xl) - 4px)}.Switch-module_thumb-size-lg__sD9d9{height:calc(var(--size-spacing-4xl) - 4px);width:calc(var(--size-spacing-4xl) - 4px)}.Switch-module_track-size-sm__6dGMb{height:var(--size-spacing-2xl);min-width:2rem;width:2rem}.Switch-module_track-size-md__XXrdH{height:var(--size-spacing-3xl);min-width:2.5rem;width:2.5rem}.Switch-module_track-size-lg__Rm3qX{height:var(--size-spacing-4xl);min-width:3.5rem;width:3.5rem}@media (min-width:680px){.Switch-module_thumb-size-sm-tablet__kMoMh{height:calc(var(--size-spacing-2xl) - 4px);width:calc(var(--size-spacing-2xl) - 4px)}.Switch-module_thumb-size-md-tablet__xWxiX{height:calc(var(--size-spacing-3xl) - 4px);width:calc(var(--size-spacing-3xl) - 4px)}.Switch-module_thumb-size-lg-tablet__sFOqF{height:calc(var(--size-spacing-4xl) - 4px);width:calc(var(--size-spacing-4xl) - 4px)}.Switch-module_track-size-sm-tablet__iaxm-{height:var(--size-spacing-2xl);min-width:2rem;width:2rem}.Switch-module_track-size-md-tablet__UJUGh{height:var(--size-spacing-3xl);min-width:2.5rem;width:2.5rem}.Switch-module_track-size-lg-tablet__Azrsy{height:var(--size-spacing-4xl);min-width:3.5rem;width:3.5rem}}@media (min-width:992px){.Switch-module_thumb-size-sm-desktop__8HEdQ{height:calc(var(--size-spacing-2xl) - 4px);width:calc(var(--size-spacing-2xl) - 4px)}.Switch-module_thumb-size-md-desktop__Zc9eN{height:calc(var(--size-spacing-3xl) - 4px);width:calc(var(--size-spacing-3xl) - 4px)}.Switch-module_thumb-size-lg-desktop__nctEB{height:calc(var(--size-spacing-4xl) - 4px);width:calc(var(--size-spacing-4xl) - 4px)}.Switch-module_track-size-sm-desktop__M4yd-{height:var(--size-spacing-2xl);min-width:2rem;width:2rem}.Switch-module_track-size-md-desktop__4PYHn{height:var(--size-spacing-3xl);min-width:2.5rem;width:2.5rem}.Switch-module_track-size-lg-desktop__3fzJY{height:var(--size-spacing-4xl);min-width:3.5rem;width:3.5rem}}@media (min-width:1280px){.Switch-module_thumb-size-sm-hd__No76h{height:calc(var(--size-spacing-2xl) - 4px);width:calc(var(--size-spacing-2xl) - 4px)}.Switch-module_thumb-size-md-hd__3MR-O{height:calc(var(--size-spacing-3xl) - 4px);width:calc(var(--size-spacing-3xl) - 4px)}.Switch-module_thumb-size-lg-hd__4AQ8O{height:calc(var(--size-spacing-4xl) - 4px);width:calc(var(--size-spacing-4xl) - 4px)}.Switch-module_track-size-sm-hd__gQTpP{height:var(--size-spacing-2xl);min-width:2rem;width:2rem}.Switch-module_track-size-md-hd__JOSCe{height:var(--size-spacing-3xl);min-width:2.5rem;width:2.5rem}.Switch-module_track-size-lg-hd__CBQq3{height:var(--size-spacing-4xl);min-width:3.5rem;width:3.5rem}}.Switch-module_disabled__VeSGJ{cursor:not-allowed;opacity:.4}.Switch-module_switch-thumb__bTWJz{background-color:var(--color-base-white);border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.45);display:block;transition:transform .25s ease}.Switch-module_switch-track__rAmhp{background-color:var(--switch-background-color,var(--color-base-grey-200));border-radius:9999em;cursor:pointer;display:block;padding:2px;transition:background-color .25s ease}.Switch-module_switch-track__rAmhp.Switch-module_error__OBYv6{background-color:var(--switch-background-color-error,var(--color-base-red-500))}.Switch-module_switch-input__oQwtt{position:absolute;clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;white-space:nowrap;width:1px}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp{background-color:var(--switch-background-color-checked,var(--color-base-green-500))}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp.Switch-module_error__OBYv6{background-color:var(--switch-background-color-error,var(--color-base-red-500))}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-sm__0cIei{transform:translateX(.75rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-md__wB9aa{transform:translateX(1rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-lg__sD9d9{transform:translateX(1.5rem)}@media (min-width:680px){.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-sm-tablet__kMoMh{transform:translateX(.5rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-md-tablet__xWxiX{transform:translateX(1rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-lg-tablet__sFOqF{transform:translateX(1.5rem)}}@media (min-width:992px){.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-sm-desktop__8HEdQ{transform:translateX(.5rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-md-desktop__Zc9eN{transform:translateX(1rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-lg-desktop__nctEB{transform:translateX(1.5rem)}}@media (min-width:1280px){.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-sm-hd__No76h{transform:translateX(.5rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-md-hd__3MR-O{transform:translateX(1rem)}.Switch-module_switch-input__oQwtt:checked+.Switch-module_switch-track__rAmhp .Switch-module_switch-thumb__bTWJz.Switch-module_thumb-size-lg-hd__4AQ8O{transform:translateX(1.5rem)}}.Switch-module_switch-input__oQwtt:focus+.Switch-module_switch-track__rAmhp{box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus));outline:0}.Switch-module_switch-input__oQwtt:focus-visible+.Switch-module_switch-track__rAmhp{box-shadow:var(--form-control-box-shadow-focus,var(--INTERNAL_form-control-box-shadow-focus));outline:0}.Switch-module_switch-input__oQwtt:focus:not(:focus-visible)+.Switch-module_switch-track__rAmhp{box-shadow:none;outline:0}
|
|
26
26
|
.ToggleGroup-module_item__dIBO0{background-color:var(--color-background-transparent);border-width:0;color:var(--color-font-secondary);cursor:pointer;font-size:var(--size-font-size-sm);line-height:1;padding:var(--size-spacing-sm)}.ToggleGroup-module_item__dIBO0:hover{background-color:var(--color-background-toggle-group-item-hover)}.ToggleGroup-module_item__dIBO0[data-state=on]{background-color:var(--color-background-toggle-group-item-active);color:var(--color-font-base)}.ToggleGroup-module_item__dIBO0:focus-visible{box-shadow:0 0 0 2px #000;position:relative}.ToggleGroup-module_item__dIBO0:disabled{opacity:.5;pointer-events:none}.ToggleGroup-module_outline__d5OlO{border:1px solid var(--color-border-default);box-shadow:var(--size-box-shadow-xs)}.ToggleGroup-module_outline__d5OlO:disabled,.ToggleGroup-module_outline__d5OlO[data-state=on]{box-shadow:none}.ToggleGroup-module_outline__d5OlO:disabled{pointer-events:none}
|
|
@@ -655,7 +655,7 @@ var AspectRatio = AspectRatioPrimitive__namespace.Root;
|
|
|
655
655
|
|
|
656
656
|
var styles$y = {"badge":"Badge-module_badge__ZbEBU","size-sm":"Badge-module_size-sm__rL8a6","size-md":"Badge-module_size-md__kf6IH","size-lg":"Badge-module_size-lg__of6XJ","inverse":"Badge-module_inverse__qZCFA","purple":"Badge-module_purple__rX-xW","green":"Badge-module_green__W03uU","red":"Badge-module_red__fl2jg","blue":"Badge-module_blue__C7kyV","yellow":"Badge-module_yellow__gGZ6R","light-grey":"Badge-module_light-grey__Wtrhx","dark-grey":"Badge-module_dark-grey__X-807","hyphen":"Badge-module_hyphen__9pe7x","size-sm-tablet":"Badge-module_size-sm-tablet__6xMVk","size-md-tablet":"Badge-module_size-md-tablet__4w-7I","size-lg-tablet":"Badge-module_size-lg-tablet__8xyRF","size-sm-desktop":"Badge-module_size-sm-desktop__Ayf5L","size-md-desktop":"Badge-module_size-md-desktop__XSq7m","size-lg-desktop":"Badge-module_size-lg-desktop__Baw3S","size-sm-hd":"Badge-module_size-sm-hd__Da6Au","size-md-hd":"Badge-module_size-md-hd__-VNMk","size-lg-hd":"Badge-module_size-lg-hd__6MOwL"};
|
|
657
657
|
|
|
658
|
-
var _excluded$N = ["className", "message", "variant", "size"];
|
|
658
|
+
var _excluded$N = ["className", "message", "variant", "size", "children"];
|
|
659
659
|
var Badge = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
660
660
|
var _classNames;
|
|
661
661
|
var _ref$className = _ref.className,
|
|
@@ -666,6 +666,7 @@ var Badge = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
666
666
|
variant = _ref$variant === void 0 ? 'light-grey' : _ref$variant,
|
|
667
667
|
_ref$size = _ref.size,
|
|
668
668
|
size = _ref$size === void 0 ? 'md' : _ref$size,
|
|
669
|
+
children = _ref.children,
|
|
669
670
|
restProps = _objectWithoutPropertiesLoose(_ref, _excluded$N);
|
|
670
671
|
var responsiveClasses = generateResponsiveClasses('size', size).map(function (c) {
|
|
671
672
|
return styles$y[c];
|
|
@@ -674,8 +675,10 @@ var Badge = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
674
675
|
return React.createElement(Box, _extends({
|
|
675
676
|
ref: ref,
|
|
676
677
|
className: badgeClasses,
|
|
677
|
-
display: "inline-
|
|
678
|
-
|
|
678
|
+
display: "inline-flex",
|
|
679
|
+
alignItems: "center",
|
|
680
|
+
direction: "row"
|
|
681
|
+
}, restProps), children || message);
|
|
679
682
|
});
|
|
680
683
|
|
|
681
684
|
var styles$x = {"spinner":"Spinner-module_spinner__SZoUP","spin":"Spinner-module_spin__Yk0wm"};
|
|
@@ -3657,7 +3660,7 @@ var FormikToggleGroup = function FormikToggleGroup(_ref) {
|
|
|
3657
3660
|
})));
|
|
3658
3661
|
};
|
|
3659
3662
|
|
|
3660
|
-
var _excluded$8 = ["name", "options", "helpText", "label", "children", "variant"];
|
|
3663
|
+
var _excluded$8 = ["name", "options", "helpText", "label", "children", "variant", "gap"];
|
|
3661
3664
|
var FormikToggleGroupMulti = function FormikToggleGroupMulti(_ref) {
|
|
3662
3665
|
var name = _ref.name,
|
|
3663
3666
|
options = _ref.options,
|
|
@@ -3665,6 +3668,7 @@ var FormikToggleGroupMulti = function FormikToggleGroupMulti(_ref) {
|
|
|
3665
3668
|
label = _ref.label,
|
|
3666
3669
|
children = _ref.children,
|
|
3667
3670
|
variant = _ref.variant,
|
|
3671
|
+
gap = _ref.gap,
|
|
3668
3672
|
props = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
3669
3673
|
var _useField = formik.useField(name),
|
|
3670
3674
|
field = _useField[0],
|
|
@@ -3678,6 +3682,7 @@ var FormikToggleGroupMulti = function FormikToggleGroupMulti(_ref) {
|
|
|
3678
3682
|
name: name
|
|
3679
3683
|
}, function () {
|
|
3680
3684
|
return React.createElement(ToggleGroup, _extends({}, props, {
|
|
3685
|
+
gap: gap,
|
|
3681
3686
|
name: name,
|
|
3682
3687
|
onValueChange: function onValueChange(selectedValues) {
|
|
3683
3688
|
helpers.setValue(selectedValues);
|
|
@@ -3777,13 +3782,15 @@ var ModalBody = function ModalBody(_ref) {
|
|
|
3777
3782
|
|
|
3778
3783
|
var styles$a = {"modal-close":"Modal-module_modal-close__1YmMa","modal":"Modal-module_modal__yNG-7","modal-content":"Modal-module_modal-content__GMtBm"};
|
|
3779
3784
|
|
|
3780
|
-
var _excluded$5 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow"];
|
|
3785
|
+
var _excluded$5 = ["ariaLabel", "ariaLabelledBy", "allowPinchZoom", "background", "children", "className", "containerRef", "fullScreenMobile", "initialFocusRef", "isOpen", "maxWidth", "onDismiss", "overflow", "style"];
|
|
3781
3786
|
var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
3782
3787
|
var _classNames;
|
|
3783
3788
|
var ariaLabel = _ref.ariaLabel,
|
|
3784
3789
|
ariaLabelledBy = _ref.ariaLabelledBy,
|
|
3785
3790
|
_ref$allowPinchZoom = _ref.allowPinchZoom,
|
|
3786
3791
|
allowPinchZoom = _ref$allowPinchZoom === void 0 ? false : _ref$allowPinchZoom,
|
|
3792
|
+
_ref$background = _ref.background,
|
|
3793
|
+
background = _ref$background === void 0 ? undefined : _ref$background,
|
|
3787
3794
|
children = _ref.children,
|
|
3788
3795
|
className = _ref.className,
|
|
3789
3796
|
_ref$containerRef = _ref.containerRef,
|
|
@@ -3797,6 +3804,7 @@ var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
3797
3804
|
onDismiss = _ref.onDismiss,
|
|
3798
3805
|
_ref$overflow = _ref.overflow,
|
|
3799
3806
|
overflow = _ref$overflow === void 0 ? 'hidden' : _ref$overflow,
|
|
3807
|
+
style = _ref.style,
|
|
3800
3808
|
restProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
3801
3809
|
var activateFocusLock = React.useCallback(function () {
|
|
3802
3810
|
setTimeout(function () {
|
|
@@ -3833,11 +3841,12 @@ var ModalBaseComponent = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
3833
3841
|
return parentElement;
|
|
3834
3842
|
} : undefined,
|
|
3835
3843
|
style: {
|
|
3836
|
-
content: _extends({}, maxWidthCss.styles)
|
|
3844
|
+
content: _extends({}, maxWidthCss.styles, style)
|
|
3837
3845
|
}
|
|
3838
3846
|
}, restProps), React.createElement(Box, {
|
|
3839
3847
|
"aria-label": ariaLabel,
|
|
3840
3848
|
"aria-labelledby": ariaLabelledBy,
|
|
3849
|
+
background: background,
|
|
3841
3850
|
height: "100",
|
|
3842
3851
|
padding: {
|
|
3843
3852
|
base: '2xl',
|