@synerise/ds-button 1.1.5 → 1.2.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.2.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@1.1.5...@synerise/ds-button@1.2.0) (2025-05-07)
7
+
8
+
9
+ ### Features
10
+
11
+ * **button:** add ButtonToggle component ([1e86e54](https://github.com/synerise/synerise-design/commit/1e86e54273e2204bcbbbbe302ff0c2e2a326e94f))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.5](https://github.com/synerise/synerise-design/compare/@synerise/ds-button@1.1.4...@synerise/ds-button@1.1.5) (2025-04-24)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-button
package/README.md CHANGED
@@ -55,7 +55,7 @@ import { AngleDownS } from '@synerise/ds-icon';
55
55
  ## Button
56
56
 
57
57
  | Property | Description | Type | Default |
58
- |----------------|------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|-------------|
58
+ | -------------- | ---------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
59
59
  | color | Defines color of `custom-color` button. | `green` / `grey` / `yellow` / `blue` / `pink`/ `mars`/ `orange`/ `fern`/ `cyan`/ `purple` / `violet` | `red` |
60
60
  | disabled | Defines if the button is disabled. | boolean | `false` |
61
61
  | groupVariant | Defines shape of the button | `left-rounded` / `squared` / `right-rounded` | - |
@@ -66,28 +66,43 @@ import { AngleDownS } from '@synerise/ds-icon';
66
66
  | type | Defines the type of the button. | `primary` / `secondary`/ `tertiary`/ `tertiary-white` / `ghost-primary` / `ghost` / `ghost-white` / `custom-color` / `custom-color-ghost` | `secondary` |
67
67
  | iconColor | Defines color of `icon` in button. | `green` / `grey` / `yellow` / `blue` / `pink`/ `mars`/ `orange`/ `fern`/ `cyan`/ `purple` / `violet` | `grey` |
68
68
  | error | Defines if the button has error button styles . | boolean | `false` |
69
- | activated | Defines if the button has activated button styles . | boolean | `false` |
70
69
  | tagProps | Renders a status tag next to button label | TagProps see ds-tag | - |
71
70
 
71
+ ## ButtonToggle
72
+
73
+ Special type of Button, with two states: default and activated (selected). Inherits most props from Button.
74
+
75
+ | Property | Description | Type | Default |
76
+ | -------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------- |
77
+ | disabled | Defines if the button is disabled. | boolean | `false` |
78
+ | groupVariant | Defines shape of the button | `left-rounded` / `squared` / `right-rounded` | - |
79
+ | justifyContent | Defines justify of content in button. | JustifyContentProperty (React.CSSPRroperties) | - |
80
+ | loading | Sets the loading status of button. | boolean / `{ delay?: number }` | `false` |
81
+ | mode | Defines the mode of the button content. It affects content inside the button | `single-icon` / `split` / `two-icons` /`label-icon` / `icon-label` | - |
82
+ | onClick | Callback executed after clicking the button | (event: React.MouseEvent) => void | - |
83
+ | type | Defines the type of the button. | `solid` / `ghost` | `solid` |
84
+ | error | Defines if the button has error button styles . | boolean | `false` |
85
+ | activated | Defines if the button has activated button styles . | boolean | `false` |
86
+ | tagProps | Renders a status tag next to button label | TagProps see ds-tag | - |
72
87
 
73
88
  ## Button.Creator
74
89
 
75
- | Property | Description | Type | Default |
76
- | -------- | ------------------------------------------------------ | ---------------------------------------------- | --------- |
77
- | block | Defines if the button should take all available space. | boolean | `false` |
78
- | disabled | Defines if the button is disabled. | boolean | `false` |
79
- | label | Label of the button. | string / React.ReactNode | - |
80
- | onClick | Callback executed after clicking the button | (event: React.MouseEvent) => void | - |
81
- | status | Defines the color of the button. | `upload` / `error`/ `default` | `default` |
90
+ | Property | Description | Type | Default |
91
+ | -------- | ------------------------------------------------------ | --------------------------------- | --------- |
92
+ | block | Defines if the button should take all available space. | boolean | `false` |
93
+ | disabled | Defines if the button is disabled. | boolean | `false` |
94
+ | label | Label of the button. | string / React.ReactNode | - |
95
+ | onClick | Callback executed after clicking the button | (event: React.MouseEvent) => void | - |
96
+ | status | Defines the color of the button. | `upload` / `error`/ `default` | `default` |
82
97
 
83
98
  ## Button.Expander
84
99
 
85
- | Property | Description | Type | Default |
86
- | -------- | ------------------------------------------- | ---------------------------------------------- | ------- |
87
- | disabled | Defines if the button is disabled. | boolean | `false` |
88
- | expanded | The current state of the button. | boolean | `false` |
89
- | onClick | Callback executed after clicking the button | (event: React.MouseEvent) => void | - |
90
- | size | Defines the size of the button. | `S` / `M` | `M` |
100
+ | Property | Description | Type | Default |
101
+ | -------- | ------------------------------------------- | --------------------------------- | ------- |
102
+ | disabled | Defines if the button is disabled. | boolean | `false` |
103
+ | expanded | The current state of the button. | boolean | `false` |
104
+ | onClick | Callback executed after clicking the button | (event: React.MouseEvent) => void | - |
105
+ | size | Defines the size of the button. | `S` / `M` | `M` |
91
106
 
92
107
  ## Button.Checkbox
93
108
 
@@ -95,10 +110,11 @@ This is special checkbox built on Button and inheriting its appereance.
95
110
  It behaves like checkbox input due to `role="checkbox"` and `aria-checked` attributes.
96
111
 
97
112
  ### Props
113
+
98
114
  It inherits all `Button`'s props excluding `type`, `block`, `color`, `groupVariant`, `icon`, `iconColor`, `leftIconSize`, `mode`, `rightIconSize`, `size`, `onChange`.
99
115
 
100
116
  | Property | Description | Type | Default |
101
- |----------------|------------------------------------------------------------|------------------------------|-------------|
117
+ | -------------- | ---------------------------------------------------------- | ---------------------------- | ----------- |
102
118
  | checked | (optional) Sets checkbox state for controlled component. | `boolean` | `undefined` |
103
119
  | defaultChecked | (optional) Sets checkbox state for uncontrolled component. | `boolean` | `false` |
104
120
  | hasError | (optional) Changes appereance for wrong validation. | `boolean` | `undefined` |
@@ -110,9 +126,9 @@ It inherits all `Button`'s props excluding `type`, `block`, `color`, `groupVaria
110
126
  This is star toggle built on Button and inheriting its appereance.
111
127
 
112
128
  ### Props
113
- It inherits all `Button`'s props excluding.
114
129
 
115
- | Property | Description | Type | Default |
116
- |----------------|------------------------------------------------------------|------------------------------|-------------|
117
- | active | (optional) Sets checkbox state for controlled component. | `boolean` | `undefined` |
130
+ It inherits all `Button`'s props excluding.
118
131
 
132
+ | Property | Description | Type | Default |
133
+ | -------- | -------------------------------------------------------- | --------- | ----------- |
134
+ | active | (optional) Sets checkbox state for controlled component. | `boolean` | `undefined` |
package/dist/Button.d.ts CHANGED
@@ -2,5 +2,5 @@ import React from 'react';
2
2
  import '@synerise/ds-core/dist/js/style';
3
3
  import './style/index.less';
4
4
  import { ButtonProps } from './Button.types';
5
- declare const Button: ({ type, mode, justifyContent, groupVariant, loading, onClick, className, color, error, activated, tagProps, children, ...antdProps }: ButtonProps) => React.JSX.Element;
5
+ declare const Button: ({ type, mode, justifyContent, groupVariant, loading, onClick, className, color, error, tagProps, children, ...antdProps }: ButtonProps) => React.JSX.Element;
6
6
  export default Button;
package/dist/Button.js CHANGED
@@ -1,4 +1,4 @@
1
- var _excluded = ["type", "mode", "justifyContent", "groupVariant", "loading", "onClick", "className", "color", "error", "activated", "tagProps", "children"];
1
+ var _excluded = ["type", "mode", "justifyContent", "groupVariant", "loading", "onClick", "className", "color", "error", "tagProps", "children"];
2
2
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
3
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
4
  import React, { useEffect, useState, useMemo, useRef } from 'react';
@@ -22,7 +22,6 @@ var Button = function Button(_ref) {
22
22
  _ref$color = _ref.color,
23
23
  color = _ref$color === void 0 ? 'red' : _ref$color,
24
24
  error = _ref.error,
25
- activated = _ref.activated,
26
25
  tagProps = _ref.tagProps,
27
26
  children = _ref.children,
28
27
  antdProps = _objectWithoutPropertiesLoose(_ref, _excluded);
@@ -68,7 +67,6 @@ var Button = function Button(_ref) {
68
67
  type: type || 'secondary',
69
68
  mode: mode,
70
69
  error: error,
71
- activated: activated,
72
70
  groupVariant: groupVariant,
73
71
  loading: loading,
74
72
  onClick: handleClick,
@@ -94,8 +92,7 @@ var Button = function Button(_ref) {
94
92
  className: "btn-spinner",
95
93
  "data-testid": "button-spinner"
96
94
  }, /*#__PURE__*/React.createElement(Icon, {
97
- component: /*#__PURE__*/React.createElement(SpinnerM, null),
98
- color: "#fff"
95
+ component: /*#__PURE__*/React.createElement(SpinnerM, null)
99
96
  })), /*#__PURE__*/React.createElement(S.ButtonFocus, {
100
97
  className: "btn-focus"
101
98
  }));
@@ -5,4 +5,4 @@ export declare const RippleEffect: import("styled-components").StyledComponent<"
5
5
  export declare const ButtonFocus: import("styled-components").StyledComponent<"div", any, {}, never>;
6
6
  export declare const Tag: import("styled-components").StyledComponent<({ id, name, className, disabled, removable, image, shape, color, textColor, onRemove, onClick, prefixel, suffixel, texts, asPill, dashed, ...htmlAttributes }: import("@synerise/ds-tag").TagProps) => React.JSX.Element, any, {}, never>;
7
7
  export declare const ButtonLabel: import("styled-components").StyledComponent<"div", any, {}, never>;
8
- export declare const AntdButton: import("styled-components").StyledComponent<({ mode, type, loading, justifyContent, groupVariant, customColor, rightIconSize, leftIconSize, pressed, size, iconColor, error, activated, ...rest }: any) => React.JSX.Element, any, {}, never>;
8
+ export declare const AntdButton: import("styled-components").StyledComponent<({ mode, type, loading, justifyContent, groupVariant, customColor, rightIconSize, leftIconSize, pressed, size, iconColor, error, ...rest }: any) => React.JSX.Element, any, {}, never>;
@@ -1,4 +1,4 @@
1
- var _excluded = ["mode", "type", "loading", "justifyContent", "groupVariant", "customColor", "rightIconSize", "leftIconSize", "pressed", "size", "iconColor", "error", "activated"];
1
+ var _excluded = ["mode", "type", "loading", "justifyContent", "groupVariant", "customColor", "rightIconSize", "leftIconSize", "pressed", "size", "iconColor", "error"];
2
2
  function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
3
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
4
  import React from 'react';
@@ -20,7 +20,7 @@ var splitType = {
20
20
  tertiary: 'tertiary'
21
21
  };
22
22
  var pressedStyles = function pressedStyles(props) {
23
- return css(["color:", ";background:", ";svg{fill:", ";}&.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px ", ";}", " > .ds-icon:before{background-color:", ";}"], props.theme.palette['blue-600'], props.theme.palette['blue-100'], props.theme.palette['blue-600'], props.theme.palette['blue-300'], ButtonLabel, props.theme.palette['blue-200']);
23
+ return css(["color:", ";background:", ";&.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px ", ";}", " > .ds-icon:before{background-color:", ";}"], props.theme.palette['blue-600'], props.theme.palette['blue-100'], props.theme.palette['blue-300'], ButtonLabel, props.theme.palette['blue-200']);
24
24
  };
25
25
  var spinnerAnimation = keyframes(["from{transform:rotateZ(0deg);}to{transform:rotateZ(360deg);}"]);
26
26
  var rippleAnimation = keyframes(["from{opacity:1;transform:scale(1);}to{opacity:0;transform:scale(20);}"]);
@@ -44,7 +44,6 @@ export var ButtonLabel = styled.div.withConfig({
44
44
  displayName: "Buttonstyles__ButtonLabel",
45
45
  componentId: "sc-3lgta1-4"
46
46
  })(["display:flex;align-items:center;flex-grow:1;justify-content:center;"]);
47
- // eslint-disable-next-line react/jsx-props-no-spreading
48
47
  export var AntdButton = styled(function (_ref) {
49
48
  var mode = _ref.mode,
50
49
  type = _ref.type,
@@ -58,9 +57,7 @@ export var AntdButton = styled(function (_ref) {
58
57
  size = _ref.size,
59
58
  iconColor = _ref.iconColor,
60
59
  error = _ref.error,
61
- activated = _ref.activated,
62
60
  rest = _objectWithoutPropertiesLoose(_ref, _excluded);
63
- // eslint-disable-next-line react/jsx-props-no-spreading
64
61
  return /*#__PURE__*/React.createElement(Button, _extends({
65
62
  type: type === 'custom-color-ghost' ? 'ghost-primary' : type,
66
63
  size: size
@@ -68,18 +65,16 @@ export var AntdButton = styled(function (_ref) {
68
65
  }).withConfig({
69
66
  displayName: "Buttonstyles__AntdButton",
70
67
  componentId: "sc-3lgta1-5"
71
- })([" &&{-webkit-mask-image:-webkit-radial-gradient(white,black);display:inline-flex;align-items:center;padding:0 12px;position:relative;overflow:hidden;justify-content:", ";", ";&:not(:disabled):not(:focus){", " span{color:inherit;}}", " > *:not(.btn-focus){position:relative;}", " > .ds-icon,> .ds-icon{display:flex;align-items:center;justify-content:center;margin:0;width:24px;height:24px;svg{transition:all .3s cubic-bezier(.645,.045,.355,1);}}&:disabled{&&{", "{box-shadow:none;}}};", " &&.ant-btn-default:not(.ds-expander):not(.ds-button-creator):not(.read-only),&&.ant-btn-secondary:not(.ds-expander):not(.ds-button-creator):not(.read-only){&:active{", "}&:focus:not(:active){color:", ";svg{fill:", ";}background:", ";}&:hover:not(:disabled):not(:focus){background-color:", ";&.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px ", ";}", " > .ds-icon:before{background-color:", ";}", "}&:active{color:", ";svg{fill:", ";!important;}}}", " ", ";", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " &:hover:not(:disabled):not(:focus){", " span{color:", ";cursor:inherit;}}}"], function (props) {
68
+ })([" &&{-webkit-mask-image:-webkit-radial-gradient(white,black);display:inline-flex;align-items:center;padding:0 12px;position:relative;overflow:hidden;justify-content:", ";", ";&:not(:disabled):not(:focus){", " span{color:inherit;}}", " > *:not(.btn-focus){position:relative;}", " > .ds-icon,> .ds-icon{display:flex;align-items:center;justify-content:center;margin:0;width:24px;height:24px;svg{transition:all .3s cubic-bezier(.645,.045,.355,1);}}", " &&.ant-btn-default:not(.ds-expander):not(.ds-button-creator):not(.read-only):not([disabled]),&&.ant-btn-secondary:not(.ds-expander):not(.ds-button-creator):not(.read-only):not([disabled]){&:active{", "}&:focus:not(:active){color:", ";svg{fill:currentColor;}background:", ";}&:hover:not(:disabled):not(:focus){background-color:", ";&.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px ", ";}", " > .ds-icon:before{background-color:", ";}}&:active{color:", ";svg{fill:", ";!important;}}}", " ", ";", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " &:hover:not(:disabled):not(:focus){", " span{color:", ";cursor:inherit;}}}"], function (props) {
72
69
  return props.justifyContent;
73
70
  }, function (props) {
74
71
  return props.shape && props.shape === 'circle' && css(["border-radius:50%;"]);
75
- }, ButtonLabel, ButtonLabel, ButtonLabel, ButtonFocus, function (props) {
72
+ }, ButtonLabel, ButtonLabel, ButtonLabel, function (props) {
76
73
  return props.mode !== 'single-icon' && css(["&.ant-btn:not(.ds-expander):not(.ds-button-creator):not(.btn-search):not(.btn-search-open){min-width:54px;}"]);
77
74
  }, function (props) {
78
75
  return pressedStyles(props);
79
76
  }, function (props) {
80
77
  return props.error ? props.theme.palette['red-600'] : props.theme.palette['grey-600'];
81
- }, function (props) {
82
- return props.error ? props.theme.palette['red-600'] : props.theme.palette['grey-600'];
83
78
  }, function (props) {
84
79
  return props.theme.palette['grey-050'];
85
80
  }, function (props) {
@@ -88,8 +83,6 @@ export var AntdButton = styled(function (_ref) {
88
83
  return props.theme.palette['blue-300'];
89
84
  }, ButtonLabel, function (props) {
90
85
  return props.theme.palette['blue-200'];
91
- }, function (props) {
92
- return props.pressed && pressedStyles(props);
93
86
  }, function (props) {
94
87
  return props.theme.palette['blue-600'];
95
88
  }, function (props) {
@@ -99,7 +92,7 @@ export var AntdButton = styled(function (_ref) {
99
92
  }, function (props) {
100
93
  return props.loading && css(["> *:not(.btn-focus){opacity:0;visibility:hidden;}", "{opacity:1;visibility:visible;}"], Spinner);
101
94
  }, function (props) {
102
- return props.type === buttonType[props.type] && !props.error && css(["&.ant-btn{&:not(:disabled){svg{fill:", ";}&:hover{svg{fill:", ";}}}}"], props.iconColor ? props.theme.palette[props.iconColor + "-600"] : props.theme.palette['grey-600'], props.iconColor ? props.theme.palette['blue-600'] : props.theme.palette['grey-600']);
95
+ return props.type === buttonType[props.type] && !props.error && css(["&.ant-btn{&:not(:disabled){svg{fill:", ";}&:hover{svg{fill:currentColor;}}}}"], props.iconColor ? props.theme.palette[props.iconColor + "-600"] : 'currentColor');
103
96
  }, function (props) {
104
97
  return props.mode === 'split' && css(["&.ant-btn{padding-right:0;", "{position:relative;}", " > .ds-icon{margin:0 4px 0 15px;position:relative;&:before{content:'';background-color:", ";top:", ";height:", ";width:1px;left:-4px;position:absolute;transition:all 0.3s ease;}}}"], ButtonLabel, ButtonLabel, props.type !== splitType[props.type] ? "rgba(255, 255, 255, 0.15);" : props.theme.palette['grey-300'], props.size === 'large' ? '-12px' : '-4px', props.size === 'large' ? '48px' : '32px');
105
98
  }, function (props) {
@@ -118,8 +111,6 @@ export var AntdButton = styled(function (_ref) {
118
111
  return props.groupVariant === 'left-rounded' && css(["&.ant-btn{border-radius:3px 0 0 3px;}"]);
119
112
  }, function (props) {
120
113
  return props.groupVariant === 'right-rounded' && css(["&.ant-btn{border-radius:0 3px 3px 0;}"]);
121
- }, function (props) {
122
- return props.activated && css(["&&&.ant-btn:not(.read-only){background-color:", ";", "{color:", ";}svg{fill:", ";}&&&:focus{background-color:", ";", "{color:", ";}svg{fill:", ";}&&&:hover:not(:active){background-color:", ";}}}&.ant-btn .btn-focus{box-shadow:none;}"], props.theme.palette["blue-050"], ButtonLabel, props.theme.palette['blue-600'], props.theme.palette['blue-600'], props.theme.palette["blue-050"], ButtonLabel, props.theme.palette['blue-600'], props.theme.palette['blue-600'], props.theme.palette["blue-100"]);
123
114
  }, function (props) {
124
115
  return props.error && css(["&.ant-btn{background-color:", ";box-shadow:inset 0 0 0 1px ", ";", "{color:", ";}svg{fill:", ";}.btn-focus{box-shadow:none;}&&&:hover:not(:disabled):not(:focus){background-color:", ";box-shadow:inset 0 0 0 1px ", ";", "{color:", ";}svg{fill:", " !important;}}&:active{background-color:", ";box-shadow:none;", "{color:", ";}svg{fill:", ";}}&&&:focus:not(:active){border:none !important;background-color:", ";", "{color:", ";}.btn-focus{box-shadow:inset 0 0 0 2px ", ";}}svg{fill:", ";}}", "{background-color:", ";}"], props.theme.palette["red-100"], props.theme.palette['red-600'], ButtonLabel, props.theme.palette["red-600"], props.theme.palette["red-600"], props.theme.palette["red-200"], props.theme.palette['red-600'], ButtonLabel, props.theme.palette["red-600"], props.theme.palette["red-600"], props.theme.palette["red-700"], ButtonLabel, props.theme.palette.white, props.theme.palette.white, props.theme.palette["red-100"], ButtonLabel, props.theme.palette["red-600"], props.theme.palette['blue-600'], props.theme.palette["red-600"], RippleEffect, props.theme.palette["red-700"]);
125
116
  }, function (props) {
@@ -3,13 +3,14 @@ import type { ButtonProps as AntdButtonProps } from 'antd/lib/button';
3
3
  import type { JustifyContentProperty } from 'csstype';
4
4
  import type { LiteralStringUnion } from '@synerise/ds-utils';
5
5
  import type { TagProps } from '@synerise/ds-tag';
6
- export type ButtonProps = Omit<AntdButtonProps, 'type'> & {
6
+ export type ButtonType = 'primary' | 'secondary' | 'tertiary' | 'tertiary-white' | 'ghost-primary' | 'ghost' | 'ghost-white' | 'custom-color' | 'custom-color-ghost';
7
+ export type ButtonProps = Omit<AntdButtonProps, 'type' | 'ghost'> & {
7
8
  /**
8
9
  * Defines the type of the button. It affects the button color
9
10
  *
10
11
  * @default secondary
11
12
  */
12
- type?: LiteralStringUnion<'primary' | 'secondary' | 'tertiary' | 'tertiary-white' | 'ghost-primary' | 'ghost' | 'ghost-white' | 'custom-color' | 'custom-color-ghost'>;
13
+ type?: LiteralStringUnion<ButtonType>;
13
14
  /**
14
15
  * Defines the type of the button content. It affects content inside the button
15
16
  *
@@ -43,7 +44,6 @@ export type ButtonProps = Omit<AntdButtonProps, 'type'> & {
43
44
  onClick?: (event: MouseEvent<HTMLElement>) => void;
44
45
  iconColor?: LiteralStringUnion<'blue' | 'grey' | 'red' | 'green' | 'yellow' | 'pink' | 'mars' | 'orange' | 'fern' | 'cyan' | 'purple' | 'violet'>;
45
46
  error?: boolean;
46
- activated?: boolean;
47
47
  readOnly?: boolean;
48
48
  tagProps?: TagProps;
49
49
  };
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { ButtonToggleProps } from './ButtonToggle.types';
3
+ declare const ButtonToggle: ({ activated, type, ...buttonProps }: ButtonToggleProps) => React.JSX.Element;
4
+ export default ButtonToggle;
@@ -0,0 +1,34 @@
1
+ var _excluded = ["activated", "type"];
2
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
3
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
4
+ import React, { useMemo } from 'react';
5
+ import * as S from './ButtonToggle.styles';
6
+ var ButtonToggle = function ButtonToggle(_ref) {
7
+ var activated = _ref.activated,
8
+ type = _ref.type,
9
+ buttonProps = _objectWithoutPropertiesLoose(_ref, _excluded);
10
+ var mappedButtonType = useMemo(function () {
11
+ switch (type) {
12
+ case 'ghost':
13
+ return activated ? 'ghost' : 'ghost';
14
+ case 'solid':
15
+ default:
16
+ return activated ? 'primary' : 'secondary';
17
+ }
18
+ }, [activated, type]);
19
+ var handlePointerUp = function handlePointerUp(event) {
20
+ var button = event.currentTarget;
21
+ // eslint-disable-next-line no-unused-expressions
22
+ buttonProps.onPointerUp == null || buttonProps.onPointerUp(event);
23
+ setTimeout(function () {
24
+ button && button.blur();
25
+ }, 200);
26
+ };
27
+ return /*#__PURE__*/React.createElement(S.ButtonToggle, _extends({}, buttonProps, {
28
+ toggleType: type,
29
+ activated: activated,
30
+ onPointerUp: handlePointerUp,
31
+ type: mappedButtonType
32
+ }));
33
+ };
34
+ export default ButtonToggle;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const ButtonToggle: import("styled-components").StyledComponent<({ toggleType, activated, ...rest }: any) => React.JSX.Element, any, {}, never>;
@@ -0,0 +1,17 @@
1
+ var _excluded = ["toggleType", "activated"];
2
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
3
+ import React from 'react';
4
+ import styled, { css } from 'styled-components';
5
+ import Button from '../Button';
6
+ import { ButtonFocus } from '../Button.styles';
7
+ export var ButtonToggle = styled(function (_ref) {
8
+ var toggleType = _ref.toggleType,
9
+ activated = _ref.activated,
10
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded);
11
+ return /*#__PURE__*/React.createElement(Button, rest);
12
+ }).withConfig({
13
+ displayName: "ButtonTogglestyles__ButtonToggle",
14
+ componentId: "sc-1m60zt6-0"
15
+ })(["", ""], function (props) {
16
+ return props.toggleType === 'ghost' && css(["&:hover:not(:disabled):not(:focus){color:", ";}", ""], props.theme.palette['grey-600'], !props.activated ? css(["&:hover:not(:disabled):not(:focus){color:", ";svg{fill:currentColor;}}"], props.theme.palette['grey-600']) : css(["", ""], !props.disabled && css(["&&{background:", ";color:", ";svg{fill:currentColor;}", "{box-shadow:none;}}}"], props.theme.palette['blue-050'], props.theme.palette['blue-600'], ButtonFocus)));
17
+ });
@@ -0,0 +1,5 @@
1
+ import type { ButtonProps } from '../Button.types';
2
+ export type ButtonToggleProps = Omit<ButtonProps, 'type' | 'danger' | 'ghost' | 'color'> & {
3
+ type?: 'solid' | 'ghost';
4
+ activated?: boolean;
5
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -40,7 +40,7 @@ export var Creator = styled(function (_ref3) {
40
40
  return props.withLabel ? "0 12px 0 0" : '0';
41
41
  }, function (_ref4) {
42
42
  var theme = _ref4.theme;
43
- return theme.palette['grey-400'];
43
+ return theme.palette['grey-300'];
44
44
  }, function (props) {
45
45
  return props.withLabel && !props.block ? "flex-start" : 'center';
46
46
  }, IconContainer, function (props) {
@@ -60,7 +60,7 @@ export var Creator = styled(function (_ref3) {
60
60
  return theme.palette['grey-400'];
61
61
  }, function (_ref6) {
62
62
  var theme = _ref6.theme;
63
- return hexToRgba(theme.palette['grey-200'], 0.2);
63
+ return hexToRgba(theme.palette['grey-200'], 0.25);
64
64
  }, function (props) {
65
65
  return props.pressed && "&&{ background-color: " + hexToRgba(props.theme.palette['grey-200'], 0.4) + "; }";
66
66
  }, function (props) {
package/dist/index.d.ts CHANGED
@@ -13,6 +13,8 @@ declare class Button extends React.Component<ButtonProps> {
13
13
  render(): React.JSX.Element;
14
14
  }
15
15
  export default Button;
16
+ export { default as ButtonToggle } from './ButtonToggle/ButtonToggle';
17
+ export type { ButtonToggleProps } from './ButtonToggle/ButtonToggle.types';
16
18
  export type { CreatorProps } from './Creator/Creator.types';
17
19
  export type { StarButtonProps } from './Star/Star.types';
18
20
  export type { CheckboxButtonProps } from './Checkbox/Checkbox.types';
package/dist/index.js CHANGED
@@ -27,6 +27,7 @@ Button.Creator = Creator;
27
27
  Button.Expander = Expander;
28
28
  Button.Star = StarButton;
29
29
  export default Button;
30
+ export { default as ButtonToggle } from './ButtonToggle/ButtonToggle';
30
31
  export { ExpanderSize } from './Expander/Expander.types';
31
32
  export { CreatorStatus } from './Creator/Creator.types';
32
33
  export var ButtonStyles = {
@@ -1 +1 @@
1
- .ant-btn{line-height:1.38;position:relative;display:inline-block;font-weight:500;white-space:nowrap;text-align:center;background-image:none;border:1px solid transparent;box-shadow:0 2px 0 rgba(0,0,0,.015);cursor:pointer;transition:all .3s cubic-bezier(.645,.045,.355,1);user-select:none;touch-action:manipulation;height:32px;padding:6px 15px;font-size:13px;border-radius:3px;color:#57616d;border-color:#dbe0e3;background:#f9fafb}.ant-btn>.anticon{line-height:1}.ant-btn,.ant-btn:active,.ant-btn:focus{outline:0}.ant-btn:not([disabled]):hover{text-decoration:none}.ant-btn:not([disabled]):active{outline:0;box-shadow:none}.ant-btn[disabled]{cursor:not-allowed}.ant-btn[disabled]>*{pointer-events:none}.ant-btn-lg{height:48px;padding:12px 15px;font-size:16px;border-radius:3px}.ant-btn-sm{height:28px;padding:4.7px 7px;font-size:12px;border-radius:3px}.ant-btn>a:only-child{color:currentcolor}.ant-btn>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:focus,.ant-btn:hover{color:#38f;border-color:#38f;background:#f9fafb}.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child{color:currentcolor}.ant-btn:focus>a:only-child::after,.ant-btn:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:active{color:#004cd9;border-color:#004cd9;background:#f9fafb}.ant-btn:active>a:only-child{color:currentcolor}.ant-btn:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn[disabled],.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:active,.ant-btn:focus,.ant-btn:hover{text-decoration:none;background:#f9fafb}.ant-btn>a:only-child{color:currentcolor}.ant-btn>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px #dbe0e3}.ant-btn:hover{box-shadow:none}.ant-btn:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:#dbe0e3;background:#fff}.ant-btn:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn:focus{color:#57616d;border-color:#dbe0e3;background:#f9fafb}.ant-btn:focus>a:only-child{color:currentcolor}.ant-btn:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn.active,.ant-btn:active{color:#57616d;border-color:#f3f5f6;background:#f3f5f6;border-color:#dbe0e3}.ant-btn.active>a:only-child,.ant-btn:active>a:only-child{color:currentcolor}.ant-btn.active>a:only-child::after,.ant-btn:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn .btn-ripple{background-color:#f3f5f6}.ant-btn[disabled],.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);text-shadow:none;box-shadow:none}.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn.disabled,.ant-btn.disabled.active,.ant-btn.disabled:active,.ant-btn.disabled:focus,.ant-btn.disabled:hover,.ant-btn[disabled],.ant-btn[disabled].active,.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);box-shadow:none}.ant-btn.disabled.active>a:only-child,.ant-btn.disabled:active>a:only-child,.ant-btn.disabled:focus>a:only-child,.ant-btn.disabled:hover>a:only-child,.ant-btn.disabled>a:only-child,.ant-btn[disabled].active>a:only-child,.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn.disabled.active>a:only-child::after,.ant-btn.disabled:active>a:only-child::after,.ant-btn.disabled:focus>a:only-child::after,.ant-btn.disabled:hover>a:only-child::after,.ant-btn.disabled>a:only-child::after,.ant-btn[disabled].active>a:only-child::after,.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn.disabled svg,.ant-btn.disabled.active svg,.ant-btn.disabled:active svg,.ant-btn.disabled:focus svg,.ant-btn.disabled:hover svg,.ant-btn[disabled] svg,.ant-btn[disabled].active svg,.ant-btn[disabled]:active svg,.ant-btn[disabled]:focus svg,.ant-btn[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:12px!important;padding-right:12px!important}.ant-btn-sm.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:8px!important;padding-right:8px!important}.ant-btn-lg.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:16px!important;padding-right:16px!important}.ant-btn>span{display:inline-block}.ant-btn-primary{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#0b68ff;background:#0b68ff}.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:focus,.ant-btn-primary:hover{color:#fff;border-color:#38f;background:#38f}.ant-btn-primary:focus>a:only-child,.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-primary:focus>a:only-child::after,.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:active{color:#fff;border-color:#004cd9;background:#004cd9}.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary[disabled],.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary .btn-focus{box-shadow:inset 0 0 0 0 #dbe0e3}.ant-btn-primary:hover{box-shadow:none}.ant-btn-primary:hover:not(:disabled):not(:focus){color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-primary:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-primary:focus{color:#fff;border-color:#0044d9;background:#0b68ff}.ant-btn-primary:focus>a:only-child{color:currentcolor}.ant-btn-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-primary.active,.ant-btn-primary:active{color:#fff;border-color:#0044d9;background:#0044d9}.ant-btn-primary.active>a:only-child,.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-primary.active>a:only-child::after,.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary .btn-ripple{background-color:#0044d9}.ant-btn-primary svg{fill:#fff;color:#fff}.ant-btn-primary[disabled],.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(11,104,255,.4);text-shadow:none;box-shadow:none}.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary.disabled,.ant-btn-primary.disabled.active,.ant-btn-primary.disabled:active,.ant-btn-primary.disabled:focus,.ant-btn-primary.disabled:hover,.ant-btn-primary[disabled],.ant-btn-primary[disabled].active,.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(11,104,255,.4);box-shadow:none}.ant-btn-primary.disabled.active>a:only-child,.ant-btn-primary.disabled:active>a:only-child,.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-primary.disabled>a:only-child,.ant-btn-primary[disabled].active>a:only-child,.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary.disabled.active>a:only-child::after,.ant-btn-primary.disabled:active>a:only-child::after,.ant-btn-primary.disabled:focus>a:only-child::after,.ant-btn-primary.disabled:hover>a:only-child::after,.ant-btn-primary.disabled>a:only-child::after,.ant-btn-primary[disabled].active>a:only-child::after,.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary.disabled svg,.ant-btn-primary.disabled.active svg,.ant-btn-primary.disabled:active svg,.ant-btn-primary.disabled:focus svg,.ant-btn-primary.disabled:hover svg,.ant-btn-primary[disabled] svg,.ant-btn-primary[disabled].active svg,.ant-btn-primary[disabled]:active svg,.ant-btn-primary[disabled]:focus svg,.ant-btn-primary[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child){border-right-color:#238afe;border-left-color:#238afe}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled{border-color:#dbe0e3}.ant-btn-group .ant-btn-primary:first-child:not(:last-child){border-right-color:#238afe}.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled]{border-right-color:#dbe0e3}.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group .ant-btn-primary:last-child:not(:first-child){border-left-color:#238afe}.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled]{border-left-color:#dbe0e3}.ant-btn-ghost{color:#57616d;background:0 0;box-shadow:none;border-color:transparent}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus,.ant-btn-ghost:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-ghost:focus>a:only-child,.ant-btn-ghost:hover>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after,.ant-btn-ghost:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost:hover{box-shadow:none}.ant-btn-ghost:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn-ghost:focus{color:#57616d;border-color:transparent;background:0 0}.ant-btn-ghost:focus>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost.active,.ant-btn-ghost:active{color:#57616d;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost.active>a:only-child,.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost.active>a:only-child::after,.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled,.ant-btn-ghost.disabled.active,.ant-btn-ghost.disabled:active,.ant-btn-ghost.disabled:focus,.ant-btn-ghost.disabled:hover,.ant-btn-ghost[disabled],.ant-btn-ghost[disabled].active,.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost.disabled.active>a:only-child,.ant-btn-ghost.disabled:active>a:only-child,.ant-btn-ghost.disabled:focus>a:only-child,.ant-btn-ghost.disabled:hover>a:only-child,.ant-btn-ghost.disabled>a:only-child,.ant-btn-ghost[disabled].active>a:only-child,.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost.disabled.active>a:only-child::after,.ant-btn-ghost.disabled:active>a:only-child::after,.ant-btn-ghost.disabled:focus>a:only-child::after,.ant-btn-ghost.disabled:hover>a:only-child::after,.ant-btn-ghost.disabled>a:only-child::after,.ant-btn-ghost[disabled].active>a:only-child::after,.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled svg,.ant-btn-ghost.disabled.active svg,.ant-btn-ghost.disabled:active svg,.ant-btn-ghost.disabled:focus svg,.ant-btn-ghost.disabled:hover svg,.ant-btn-ghost[disabled] svg,.ant-btn-ghost[disabled].active svg,.ant-btn-ghost[disabled]:active svg,.ant-btn-ghost[disabled]:focus svg,.ant-btn-ghost[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-dashed{color:#57616d;border-color:#dbe0e3;background:#f9fafb;border-style:dashed}.ant-btn-dashed>a:only-child{color:currentcolor}.ant-btn-dashed>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed:focus,.ant-btn-dashed:hover{color:#38f;border-color:#38f;background:#f9fafb}.ant-btn-dashed:focus>a:only-child,.ant-btn-dashed:hover>a:only-child{color:currentcolor}.ant-btn-dashed:focus>a:only-child::after,.ant-btn-dashed:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed:active{color:#004cd9;border-color:#004cd9;background:#f9fafb}.ant-btn-dashed:active>a:only-child{color:currentcolor}.ant-btn-dashed:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed[disabled],.ant-btn-dashed[disabled]:active,.ant-btn-dashed[disabled]:focus,.ant-btn-dashed[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dashed[disabled]:active>a:only-child,.ant-btn-dashed[disabled]:focus>a:only-child,.ant-btn-dashed[disabled]:hover>a:only-child,.ant-btn-dashed[disabled]>a:only-child{color:currentcolor}.ant-btn-dashed[disabled]:active>a:only-child::after,.ant-btn-dashed[disabled]:focus>a:only-child::after,.ant-btn-dashed[disabled]:hover>a:only-child::after,.ant-btn-dashed[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#f52922;background:#f52922}.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:focus,.ant-btn-danger:hover{color:#fff;border-color:#ff584d;background:#ff584d}.ant-btn-danger:focus>a:only-child,.ant-btn-danger:hover>a:only-child{color:currentcolor}.ant-btn-danger:focus>a:only-child::after,.ant-btn-danger:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:active{color:#fff;border-color:#cf1313;background:#cf1313}.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger[disabled],.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-danger:hover{box-shadow:none;box-shadow:0 2px 4px 0 rgba(255,90,77,.2)}.ant-btn-danger:hover:not(:disabled):not(:focus){color:#fff;border-color:#ff5a4d;background:#ff5a4d}.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-danger:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-danger:focus{color:#fff;border-color:#f52922;background:#f52922}.ant-btn-danger:focus>a:only-child{color:currentcolor}.ant-btn-danger:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-danger.active,.ant-btn-danger:active{color:#fff;border-color:#cf1413;background:#cf1413}.ant-btn-danger.active>a:only-child,.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-danger.active>a:only-child::after,.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger .btn-ripple{background-color:#cf1413}.ant-btn-danger svg{fill:#fff;color:#fff}.ant-btn-danger[disabled],.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);text-shadow:none;box-shadow:none}.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger.disabled,.ant-btn-danger.disabled.active,.ant-btn-danger.disabled:active,.ant-btn-danger.disabled:focus,.ant-btn-danger.disabled:hover,.ant-btn-danger[disabled],.ant-btn-danger[disabled].active,.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);box-shadow:none}.ant-btn-danger.disabled.active>a:only-child,.ant-btn-danger.disabled:active>a:only-child,.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-danger.disabled>a:only-child,.ant-btn-danger[disabled].active>a:only-child,.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger.disabled.active>a:only-child::after,.ant-btn-danger.disabled:active>a:only-child::after,.ant-btn-danger.disabled:focus>a:only-child::after,.ant-btn-danger.disabled:hover>a:only-child::after,.ant-btn-danger.disabled>a:only-child::after,.ant-btn-danger[disabled].active>a:only-child::after,.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger.disabled svg,.ant-btn-danger.disabled.active svg,.ant-btn-danger.disabled:active svg,.ant-btn-danger.disabled:focus svg,.ant-btn-danger.disabled:hover svg,.ant-btn-danger[disabled] svg,.ant-btn-danger[disabled].active svg,.ant-btn-danger[disabled]:active svg,.ant-btn-danger[disabled]:focus svg,.ant-btn-danger[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-link{color:#0b68ff;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:focus,.ant-btn-link:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-link:focus>a:only-child,.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-link:focus>a:only-child::after,.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:hover{background:0 0}.ant-btn-link:active,.ant-btn-link:focus,.ant-btn-link:hover{border-color:transparent}.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link.disabled,.ant-btn-link.disabled.active,.ant-btn-link.disabled:active,.ant-btn-link.disabled:focus,.ant-btn-link.disabled:hover,.ant-btn-link[disabled],.ant-btn-link[disabled].active,.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-link.disabled.active>a:only-child,.ant-btn-link.disabled:active>a:only-child,.ant-btn-link.disabled:focus>a:only-child,.ant-btn-link.disabled:hover>a:only-child,.ant-btn-link.disabled>a:only-child,.ant-btn-link[disabled].active>a:only-child,.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link.disabled.active>a:only-child::after,.ant-btn-link.disabled:active>a:only-child::after,.ant-btn-link.disabled:focus>a:only-child::after,.ant-btn-link.disabled:hover>a:only-child::after,.ant-btn-link.disabled>a:only-child::after,.ant-btn-link[disabled].active>a:only-child::after,.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link.disabled svg,.ant-btn-link.disabled.active svg,.ant-btn-link.disabled:active svg,.ant-btn-link.disabled:focus svg,.ant-btn-link.disabled:hover svg,.ant-btn-link[disabled] svg,.ant-btn-link[disabled].active svg,.ant-btn-link[disabled]:active svg,.ant-btn-link[disabled]:focus svg,.ant-btn-link[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-text{color:#6a7580;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-text>a:only-child{color:currentcolor}.ant-btn-text>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:focus,.ant-btn-text:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-text:focus>a:only-child,.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-text:focus>a:only-child::after,.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:focus,.ant-btn-text:hover{color:#6a7580;background:rgba(0,0,0,.018);border-color:transparent}.ant-btn-text:active{color:#6a7580;background:rgba(0,0,0,.028);border-color:transparent}.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text.disabled,.ant-btn-text.disabled.active,.ant-btn-text.disabled:active,.ant-btn-text.disabled:focus,.ant-btn-text.disabled:hover,.ant-btn-text[disabled],.ant-btn-text[disabled].active,.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-text.disabled.active>a:only-child,.ant-btn-text.disabled:active>a:only-child,.ant-btn-text.disabled:focus>a:only-child,.ant-btn-text.disabled:hover>a:only-child,.ant-btn-text.disabled>a:only-child,.ant-btn-text[disabled].active>a:only-child,.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text.disabled.active>a:only-child::after,.ant-btn-text.disabled:active>a:only-child::after,.ant-btn-text.disabled:focus>a:only-child::after,.ant-btn-text.disabled:hover>a:only-child::after,.ant-btn-text.disabled>a:only-child::after,.ant-btn-text[disabled].active>a:only-child::after,.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text.disabled svg,.ant-btn-text.disabled.active svg,.ant-btn-text.disabled:active svg,.ant-btn-text.disabled:focus svg,.ant-btn-text.disabled:hover svg,.ant-btn-text[disabled] svg,.ant-btn-text[disabled].active svg,.ant-btn-text[disabled]:active svg,.ant-btn-text[disabled]:focus svg,.ant-btn-text[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-dangerous{color:#f52922;border-color:#f52922;background:#f9fafb}.ant-btn-dangerous>a:only-child{color:currentcolor}.ant-btn-dangerous>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous:focus,.ant-btn-dangerous:hover{color:#ff584d;border-color:#ff584d;background:#f9fafb}.ant-btn-dangerous:focus>a:only-child,.ant-btn-dangerous:hover>a:only-child{color:currentcolor}.ant-btn-dangerous:focus>a:only-child::after,.ant-btn-dangerous:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous:active{color:#cf1313;border-color:#cf1313;background:#f9fafb}.ant-btn-dangerous:active>a:only-child{color:currentcolor}.ant-btn-dangerous:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous[disabled],.ant-btn-dangerous[disabled]:active,.ant-btn-dangerous[disabled]:focus,.ant-btn-dangerous[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-dangerous[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous[disabled]:active>a:only-child::after,.ant-btn-dangerous[disabled]:focus>a:only-child::after,.ant-btn-dangerous[disabled]:hover>a:only-child::after,.ant-btn-dangerous[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#f52922;background:#f52922}.ant-btn-dangerous.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:focus,.ant-btn-dangerous.ant-btn-primary:hover{color:#fff;border-color:#ff584d;background:#ff584d}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:active{color:#fff;border-color:#cf1313;background:#cf1313}.ant-btn-dangerous.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-dangerous.ant-btn-primary:hover{box-shadow:none;box-shadow:0 2px 4px 0 rgba(255,90,77,.2)}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus){color:#fff;border-color:#ff5a4d;background:#ff5a4d}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-dangerous.ant-btn-primary:focus{color:#fff;border-color:#f52922;background:#f52922}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-dangerous.ant-btn-primary.active,.ant-btn-dangerous.ant-btn-primary:active{color:#fff;border-color:#cf1413;background:#cf1413}.ant-btn-dangerous.ant-btn-primary.active>a:only-child,.ant-btn-dangerous.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary.active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary .btn-ripple{background-color:#cf1413}.ant-btn-dangerous.ant-btn-primary svg{fill:#fff;color:#fff}.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary.disabled,.ant-btn-dangerous.ant-btn-primary.disabled.active,.ant-btn-dangerous.ant-btn-primary.disabled:active,.ant-btn-dangerous.ant-btn-primary.disabled:focus,.ant-btn-dangerous.ant-btn-primary.disabled:hover,.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled].active,.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);box-shadow:none}.ant-btn-dangerous.ant-btn-primary.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary.disabled svg,.ant-btn-dangerous.ant-btn-primary.disabled.active svg,.ant-btn-dangerous.ant-btn-primary.disabled:active svg,.ant-btn-dangerous.ant-btn-primary.disabled:focus svg,.ant-btn-dangerous.ant-btn-primary.disabled:hover svg,.ant-btn-dangerous.ant-btn-primary[disabled] svg,.ant-btn-dangerous.ant-btn-primary[disabled].active svg,.ant-btn-dangerous.ant-btn-primary[disabled]:active svg,.ant-btn-dangerous.ant-btn-primary[disabled]:focus svg,.ant-btn-dangerous.ant-btn-primary[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-dangerous.ant-btn-link{color:#f52922;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover{color:#ff584d;border-color:transparent;background:0 0}.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:active{color:#cf1313;border-color:transparent;background:0 0}.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link.disabled,.ant-btn-dangerous.ant-btn-link.disabled.active,.ant-btn-dangerous.ant-btn-link.disabled:active,.ant-btn-dangerous.ant-btn-link.disabled:focus,.ant-btn-dangerous.ant-btn-link.disabled:hover,.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled].active,.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-link.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link.disabled svg,.ant-btn-dangerous.ant-btn-link.disabled.active svg,.ant-btn-dangerous.ant-btn-link.disabled:active svg,.ant-btn-dangerous.ant-btn-link.disabled:focus svg,.ant-btn-dangerous.ant-btn-link.disabled:hover svg,.ant-btn-dangerous.ant-btn-link[disabled] svg,.ant-btn-dangerous.ant-btn-link[disabled].active svg,.ant-btn-dangerous.ant-btn-link[disabled]:active svg,.ant-btn-dangerous.ant-btn-link[disabled]:focus svg,.ant-btn-dangerous.ant-btn-link[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-dangerous.ant-btn-text{color:#f52922;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-text>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-dangerous.ant-btn-text:focus>a:only-child,.ant-btn-dangerous.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-dangerous.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover{color:#ff584d;border-color:transparent;background:rgba(0,0,0,.018)}.ant-btn-dangerous.ant-btn-text:focus>a:only-child,.ant-btn-dangerous.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:active{color:#cf1313;border-color:transparent;background:rgba(0,0,0,.028)}.ant-btn-dangerous.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text.disabled,.ant-btn-dangerous.ant-btn-text.disabled.active,.ant-btn-dangerous.ant-btn-text.disabled:active,.ant-btn-dangerous.ant-btn-text.disabled:focus,.ant-btn-dangerous.ant-btn-text.disabled:hover,.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled].active,.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-text.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text.disabled svg,.ant-btn-dangerous.ant-btn-text.disabled.active svg,.ant-btn-dangerous.ant-btn-text.disabled:active svg,.ant-btn-dangerous.ant-btn-text.disabled:focus svg,.ant-btn-dangerous.ant-btn-text.disabled:hover svg,.ant-btn-dangerous.ant-btn-text[disabled] svg,.ant-btn-dangerous.ant-btn-text[disabled].active svg,.ant-btn-dangerous.ant-btn-text[disabled]:active svg,.ant-btn-dangerous.ant-btn-text[disabled]:focus svg,.ant-btn-dangerous.ant-btn-text[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-icon-only{width:32px;height:32px;padding:4.7px 0;font-size:15px;border-radius:3px;vertical-align:-3px}.ant-btn-icon-only>*{font-size:15px}.ant-btn-icon-only.ant-btn-lg{width:48px;height:48px;padding:10.6px 0;font-size:18px;border-radius:3px}.ant-btn-icon-only.ant-btn-lg>*{font-size:18px}.ant-btn-icon-only.ant-btn-sm{width:28px;height:28px;padding:4px 0;font-size:13px;border-radius:3px}.ant-btn-icon-only.ant-btn-sm>*{font-size:13px}.ant-btn-icon-only>.anticon{display:flex;justify-content:center}.ant-btn-icon-only .anticon-loading{padding:0!important}a.ant-btn-icon-only{vertical-align:-1px}a.ant-btn-icon-only>.anticon{display:inline}.ant-btn-round{height:32px;padding:6px 16px;font-size:13px;border-radius:32px}.ant-btn-round.ant-btn-lg{height:48px;padding:12px 24px;font-size:16px;border-radius:48px}.ant-btn-round.ant-btn-sm{height:28px;padding:4px 14px;font-size:13px;border-radius:28px}.ant-btn-round.ant-btn-icon-only{width:auto}.ant-btn-circle{min-width:32px;padding-right:0;padding-left:0;text-align:center;border-radius:50%}.ant-btn-circle.ant-btn-lg{min-width:48px;border-radius:50%}.ant-btn-circle.ant-btn-sm{min-width:28px;border-radius:50%}.ant-btn::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:1;display:none;background:#fff;border-radius:inherit;opacity:.35;transition:opacity .2s;content:'';pointer-events:none}.ant-btn .anticon{transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-btn .anticon.anticon-minus>svg,.ant-btn .anticon.anticon-plus>svg{shape-rendering:optimizespeed}.ant-btn.ant-btn-loading{position:relative;cursor:default}.ant-btn.ant-btn-loading::before{display:block}.ant-btn>.ant-btn-loading-icon{transition:width .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1)}.ant-btn>.ant-btn-loading-icon .anticon{padding-right:8px;animation:none}.ant-btn>.ant-btn-loading-icon .anticon svg{animation:loadingCircle 1s infinite linear}.ant-btn-group{position:relative;display:inline-flex}.ant-btn-group>.ant-btn,.ant-btn-group>span>.ant-btn{position:relative}.ant-btn-group>.ant-btn:active,.ant-btn-group>.ant-btn:focus,.ant-btn-group>.ant-btn:hover,.ant-btn-group>span>.ant-btn:active,.ant-btn-group>span>.ant-btn:focus,.ant-btn-group>span>.ant-btn:hover{z-index:2}.ant-btn-group>.ant-btn[disabled],.ant-btn-group>span>.ant-btn[disabled]{z-index:0}.ant-btn-group .ant-btn-icon-only{font-size:13px}.ant-btn+.ant-btn-group,.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group .ant-btn+span,.ant-btn-group span+.ant-btn,.ant-btn-group+.ant-btn,.ant-btn-group+.ant-btn-group,.ant-btn-group>span+span{margin-left:-1px}.ant-btn-group .ant-btn-primary+.ant-btn:not(.ant-btn-primary):not([disabled]){border-left-color:transparent}.ant-btn-group .ant-btn{border-radius:0}.ant-btn-group>.ant-btn:first-child,.ant-btn-group>span:first-child>.ant-btn{margin-left:0}.ant-btn-group>.ant-btn:only-child{border-radius:3px}.ant-btn-group>span:only-child>.ant-btn{border-radius:3px}.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:3px;border-bottom-left-radius:3px}.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:3px;border-bottom-right-radius:3px}.ant-btn-group-sm>.ant-btn:only-child{border-radius:3px}.ant-btn-group-sm>span:only-child>.ant-btn{border-radius:3px}.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:3px;border-bottom-left-radius:3px}.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:3px;border-bottom-right-radius:3px}.ant-btn-group>.ant-btn-group{float:left}.ant-btn-group>.ant-btn-group:not(:first-child):not(:last-child)>.ant-btn{border-radius:0}.ant-btn-group>.ant-btn-group:first-child:not(:last-child)>.ant-btn:last-child{padding-right:8px;border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-group>.ant-btn-group:last-child:not(:first-child)>.ant-btn:first-child{padding-left:8px;border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-group-rtl.ant-btn+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group-rtl.ant-btn-group .ant-btn+span,.ant-btn-group-rtl.ant-btn-group span+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group>span+span,.ant-btn-rtl.ant-btn+.ant-btn-group,.ant-btn-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-rtl.ant-btn-group .ant-btn+span,.ant-btn-rtl.ant-btn-group span+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn-group,.ant-btn-rtl.ant-btn-group>span+span{margin-right:-1px;margin-left:auto}.ant-btn-group.ant-btn-group-rtl{direction:rtl}.ant-btn-group-rtl.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group>span:first-child:not(:last-child)>.ant-btn{border-radius:0 3px 3px 0}.ant-btn-group-rtl.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group>span:last-child:not(:first-child)>.ant-btn{border-radius:3px 0 0 3px}.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn{border-radius:0 3px 3px 0}.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn{border-radius:3px 0 0 3px}.ant-btn:active>span,.ant-btn:focus>span{position:relative}.ant-btn>.anticon+span,.ant-btn>span+.anticon{margin-left:8px}.ant-btn.ant-btn-background-ghost{color:#fff;border-color:#fff}.ant-btn.ant-btn-background-ghost,.ant-btn.ant-btn-background-ghost:active,.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover{background:0 0}.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover{color:#38f;border-color:#38f}.ant-btn.ant-btn-background-ghost:active{color:#004cd9;border-color:#004cd9}.ant-btn.ant-btn-background-ghost[disabled]{color:#b5bdc3;background:0 0;border-color:#dbe0e3}.ant-btn-background-ghost.ant-btn-primary{color:#0b68ff;border-color:#0b68ff;text-shadow:none}.ant-btn-background-ghost.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary:focus,.ant-btn-background-ghost.ant-btn-primary:hover{color:#38f;border-color:#38f}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary:active{color:#004cd9;border-color:#004cd9}.ant-btn-background-ghost.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary[disabled],.ant-btn-background-ghost.ant-btn-primary[disabled]:active,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger{color:#f52922;border-color:#f52922;text-shadow:none}.ant-btn-background-ghost.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:focus,.ant-btn-background-ghost.ant-btn-danger:hover{color:#ff584d;border-color:#ff584d}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:active{color:#cf1313;border-color:#cf1313}.ant-btn-background-ghost.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous{color:#f52922;border-color:#f52922;text-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous:focus,.ant-btn-background-ghost.ant-btn-dangerous:hover{color:#ff584d;border-color:#ff584d}.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous:active{color:#cf1313;border-color:#cf1313}.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous[disabled],.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link{color:#f52922;border-color:transparent;text-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover{color:#ff584d;border-color:transparent}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active{color:#cf1313;border-color:transparent}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-two-chinese-chars::first-letter{letter-spacing:.34em}.ant-btn-two-chinese-chars>:not(.anticon){margin-right:-.34em;letter-spacing:.34em}.ant-btn.ant-btn-block{width:100%}.ant-btn:empty{display:inline-block;width:0;visibility:hidden;content:'\a0'}a.ant-btn{padding-top:.01px!important;line-height:30px}a.ant-btn-disabled{cursor:not-allowed}a.ant-btn-disabled>*{pointer-events:none}a.ant-btn-disabled,a.ant-btn-disabled:active,a.ant-btn-disabled:focus,a.ant-btn-disabled:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}a.ant-btn-disabled:active>a:only-child,a.ant-btn-disabled:focus>a:only-child,a.ant-btn-disabled:hover>a:only-child,a.ant-btn-disabled>a:only-child{color:currentcolor}a.ant-btn-disabled:active>a:only-child::after,a.ant-btn-disabled:focus>a:only-child::after,a.ant-btn-disabled:hover>a:only-child::after,a.ant-btn-disabled>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}a.ant-btn-lg{line-height:46px}a.ant-btn-sm{line-height:26px}.ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl){margin-right:-1px}.ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl{margin-left:-1px}.ant-btn-compact-item:active,.ant-btn-compact-item:focus,.ant-btn-compact-item:hover{z-index:2}.ant-btn-compact-item[disabled]{z-index:0}.ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn{border-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-icon-only.ant-btn-compact-item{flex:none}.ant-btn-compact-item.ant-btn-primary:not([disabled])+.ant-btn-compact-item.ant-btn-primary:not([disabled]){position:relative}.ant-btn-compact-item.ant-btn-primary:not([disabled])+.ant-btn-compact-item.ant-btn-primary:not([disabled])::after{position:absolute;top:-1px;left:-1px;display:inline-block;width:1px;height:calc(100% + 1px * 2);background-color:#238afe;content:' '}.ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])+.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after{right:-1px}.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item){margin-bottom:-1px}.ant-btn-compact-vertical-item:active,.ant-btn-compact-vertical-item:focus,.ant-btn-compact-vertical-item:hover{z-index:2}.ant-btn-compact-vertical-item[disabled]{z-index:0}.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item){border-radius:0}.ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item){border-bottom-right-radius:0;border-bottom-left-radius:0}.ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item){border-top-left-radius:0;border-top-right-radius:0}.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])+.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]){position:relative}.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])+.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])::after{position:absolute;top:-1px;left:-1px;display:inline-block;width:calc(100% + 1px * 2);height:1px;background-color:#238afe;content:' '}.ant-btn-rtl{direction:rtl}.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child){border-right-color:#238afe;border-left-color:#dbe0e3}.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled]{border-right-color:#dbe0e3;border-left-color:#238afe}.ant-btn-rtl.ant-btn>.ant-btn-loading-icon .anticon{padding-right:0;padding-left:8px}.ant-btn-rtl.ant-btn>.anticon+span,.ant-btn-rtl.ant-btn>span+.anticon{margin-right:8px;margin-left:0}.ant-btn.ant-btn>span{display:contents}.ant-btn-default{color:#57616d;border-color:#dbe0e3;background:#f9fafb}.ant-btn-default>a:only-child{color:currentcolor}.ant-btn-default>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default .btn-focus{box-shadow:inset 0 0 0 1px #dbe0e3}.ant-btn-default:hover{box-shadow:none}.ant-btn-default:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:#dbe0e3;background:#fff}.ant-btn-default:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-default:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-default:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn-default:focus{color:#57616d;border-color:#dbe0e3;background:#f9fafb}.ant-btn-default:focus>a:only-child{color:currentcolor}.ant-btn-default:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-default.active,.ant-btn-default:active{color:#57616d;border-color:#f3f5f6;background:#f3f5f6;border-color:#dbe0e3}.ant-btn-default.active>a:only-child,.ant-btn-default:active>a:only-child{color:currentcolor}.ant-btn-default.active>a:only-child::after,.ant-btn-default:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default .btn-ripple{background-color:#f3f5f6}.ant-btn-default[disabled],.ant-btn-default[disabled]:active,.ant-btn-default[disabled]:focus,.ant-btn-default[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);text-shadow:none;box-shadow:none}.ant-btn-default[disabled]:active>a:only-child,.ant-btn-default[disabled]:focus>a:only-child,.ant-btn-default[disabled]:hover>a:only-child,.ant-btn-default[disabled]>a:only-child{color:currentcolor}.ant-btn-default[disabled]:active>a:only-child::after,.ant-btn-default[disabled]:focus>a:only-child::after,.ant-btn-default[disabled]:hover>a:only-child::after,.ant-btn-default[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default.disabled,.ant-btn-default.disabled.active,.ant-btn-default.disabled:active,.ant-btn-default.disabled:focus,.ant-btn-default.disabled:hover,.ant-btn-default[disabled],.ant-btn-default[disabled].active,.ant-btn-default[disabled]:active,.ant-btn-default[disabled]:focus,.ant-btn-default[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);box-shadow:none}.ant-btn-default.disabled.active>a:only-child,.ant-btn-default.disabled:active>a:only-child,.ant-btn-default.disabled:focus>a:only-child,.ant-btn-default.disabled:hover>a:only-child,.ant-btn-default.disabled>a:only-child,.ant-btn-default[disabled].active>a:only-child,.ant-btn-default[disabled]:active>a:only-child,.ant-btn-default[disabled]:focus>a:only-child,.ant-btn-default[disabled]:hover>a:only-child,.ant-btn-default[disabled]>a:only-child{color:currentcolor}.ant-btn-default.disabled.active>a:only-child::after,.ant-btn-default.disabled:active>a:only-child::after,.ant-btn-default.disabled:focus>a:only-child::after,.ant-btn-default.disabled:hover>a:only-child::after,.ant-btn-default.disabled>a:only-child::after,.ant-btn-default[disabled].active>a:only-child::after,.ant-btn-default[disabled]:active>a:only-child::after,.ant-btn-default[disabled]:focus>a:only-child::after,.ant-btn-default[disabled]:hover>a:only-child::after,.ant-btn-default[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default.disabled svg,.ant-btn-default.disabled.active svg,.ant-btn-default.disabled:active svg,.ant-btn-default.disabled:focus svg,.ant-btn-default.disabled:hover svg,.ant-btn-default[disabled] svg,.ant-btn-default[disabled].active svg,.ant-btn-default[disabled]:active svg,.ant-btn-default[disabled]:focus svg,.ant-btn-default[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:12px!important;padding-right:12px!important}.ant-btn-default-sm.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:8px!important;padding-right:8px!important}.ant-btn-default-lg.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:16px!important;padding-right:16px!important}.ant-btn-tertiary{color:#57616d;border-color:transparent;background:rgba(181,189,195,.15)}.ant-btn-tertiary>a:only-child{color:currentcolor}.ant-btn-tertiary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary .btn-focus{box-shadow:inset 0 0 0 0 #dbe0e3}.ant-btn-tertiary:hover{box-shadow:none}.ant-btn-tertiary:hover:not(:disabled):not(:focus){color:#57616d;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-tertiary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-tertiary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary:hover:not(:disabled):not(:focus) span{color:#57616d}.ant-btn-tertiary:hover:not(:disabled):not(:focus) svg{fill:#57616d!important;color:#57616d}.ant-btn-tertiary:focus{color:#57616d;border-color:rgba(181,189,195,.15);background:rgba(181,189,195,.15)}.ant-btn-tertiary:focus>a:only-child{color:currentcolor}.ant-btn-tertiary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-tertiary.active,.ant-btn-tertiary:active{color:#57616d;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-tertiary.active>a:only-child,.ant-btn-tertiary:active>a:only-child{color:currentcolor}.ant-btn-tertiary.active>a:only-child::after,.ant-btn-tertiary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-tertiary[disabled],.ant-btn-tertiary[disabled]:active,.ant-btn-tertiary[disabled]:focus,.ant-btn-tertiary[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:rgba(181,189,195,.15);text-shadow:none;box-shadow:none}.ant-btn-tertiary[disabled]:active>a:only-child,.ant-btn-tertiary[disabled]:focus>a:only-child,.ant-btn-tertiary[disabled]:hover>a:only-child,.ant-btn-tertiary[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary[disabled]:active>a:only-child::after,.ant-btn-tertiary[disabled]:focus>a:only-child::after,.ant-btn-tertiary[disabled]:hover>a:only-child::after,.ant-btn-tertiary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary.disabled,.ant-btn-tertiary.disabled.active,.ant-btn-tertiary.disabled:active,.ant-btn-tertiary.disabled:focus,.ant-btn-tertiary.disabled:hover,.ant-btn-tertiary[disabled],.ant-btn-tertiary[disabled].active,.ant-btn-tertiary[disabled]:active,.ant-btn-tertiary[disabled]:focus,.ant-btn-tertiary[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:rgba(181,189,195,.15);box-shadow:none}.ant-btn-tertiary.disabled.active>a:only-child,.ant-btn-tertiary.disabled:active>a:only-child,.ant-btn-tertiary.disabled:focus>a:only-child,.ant-btn-tertiary.disabled:hover>a:only-child,.ant-btn-tertiary.disabled>a:only-child,.ant-btn-tertiary[disabled].active>a:only-child,.ant-btn-tertiary[disabled]:active>a:only-child,.ant-btn-tertiary[disabled]:focus>a:only-child,.ant-btn-tertiary[disabled]:hover>a:only-child,.ant-btn-tertiary[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary.disabled.active>a:only-child::after,.ant-btn-tertiary.disabled:active>a:only-child::after,.ant-btn-tertiary.disabled:focus>a:only-child::after,.ant-btn-tertiary.disabled:hover>a:only-child::after,.ant-btn-tertiary.disabled>a:only-child::after,.ant-btn-tertiary[disabled].active>a:only-child::after,.ant-btn-tertiary[disabled]:active>a:only-child::after,.ant-btn-tertiary[disabled]:focus>a:only-child::after,.ant-btn-tertiary[disabled]:hover>a:only-child::after,.ant-btn-tertiary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary.disabled svg,.ant-btn-tertiary.disabled.active svg,.ant-btn-tertiary.disabled:active svg,.ant-btn-tertiary.disabled:focus svg,.ant-btn-tertiary.disabled:hover svg,.ant-btn-tertiary[disabled] svg,.ant-btn-tertiary[disabled].active svg,.ant-btn-tertiary[disabled]:active svg,.ant-btn-tertiary[disabled]:focus svg,.ant-btn-tertiary[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-tertiary-white{color:#fff;border-color:transparent;background:rgba(219,224,227,.15)}.ant-btn-tertiary-white>a:only-child{color:currentcolor}.ant-btn-tertiary-white>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white .btn-focus{box-shadow:inset 0 0 0 0 #0b68ff}.ant-btn-tertiary-white:hover{box-shadow:none}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus){color:#fff;border-color:transparent;background:rgba(219,224,227,.25)}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-tertiary-white:focus{color:#fff;border-color:rgba(219,224,227,.15);background:rgba(219,224,227,.15)}.ant-btn-tertiary-white:focus>a:only-child{color:currentcolor}.ant-btn-tertiary-white:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-tertiary-white.active,.ant-btn-tertiary-white:active{color:#fff;border-color:rgba(219,224,227,.1);background:rgba(219,224,227,.1)}.ant-btn-tertiary-white.active>a:only-child,.ant-btn-tertiary-white:active>a:only-child{color:currentcolor}.ant-btn-tertiary-white.active>a:only-child::after,.ant-btn-tertiary-white:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white .btn-ripple{background-color:rgba(219,224,227,.1)}.ant-btn-tertiary-white svg{fill:#fff;color:#fff}.ant-btn-tertiary-white[disabled],.ant-btn-tertiary-white[disabled]:active,.ant-btn-tertiary-white[disabled]:focus,.ant-btn-tertiary-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:rgba(219,224,227,.15);text-shadow:none;box-shadow:none}.ant-btn-tertiary-white[disabled]:active>a:only-child,.ant-btn-tertiary-white[disabled]:focus>a:only-child,.ant-btn-tertiary-white[disabled]:hover>a:only-child,.ant-btn-tertiary-white[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary-white[disabled]:active>a:only-child::after,.ant-btn-tertiary-white[disabled]:focus>a:only-child::after,.ant-btn-tertiary-white[disabled]:hover>a:only-child::after,.ant-btn-tertiary-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white.disabled,.ant-btn-tertiary-white.disabled.active,.ant-btn-tertiary-white.disabled:active,.ant-btn-tertiary-white.disabled:focus,.ant-btn-tertiary-white.disabled:hover,.ant-btn-tertiary-white[disabled],.ant-btn-tertiary-white[disabled].active,.ant-btn-tertiary-white[disabled]:active,.ant-btn-tertiary-white[disabled]:focus,.ant-btn-tertiary-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:rgba(219,224,227,.15);box-shadow:none}.ant-btn-tertiary-white.disabled.active>a:only-child,.ant-btn-tertiary-white.disabled:active>a:only-child,.ant-btn-tertiary-white.disabled:focus>a:only-child,.ant-btn-tertiary-white.disabled:hover>a:only-child,.ant-btn-tertiary-white.disabled>a:only-child,.ant-btn-tertiary-white[disabled].active>a:only-child,.ant-btn-tertiary-white[disabled]:active>a:only-child,.ant-btn-tertiary-white[disabled]:focus>a:only-child,.ant-btn-tertiary-white[disabled]:hover>a:only-child,.ant-btn-tertiary-white[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary-white.disabled.active>a:only-child::after,.ant-btn-tertiary-white.disabled:active>a:only-child::after,.ant-btn-tertiary-white.disabled:focus>a:only-child::after,.ant-btn-tertiary-white.disabled:hover>a:only-child::after,.ant-btn-tertiary-white.disabled>a:only-child::after,.ant-btn-tertiary-white[disabled].active>a:only-child::after,.ant-btn-tertiary-white[disabled]:active>a:only-child::after,.ant-btn-tertiary-white[disabled]:focus>a:only-child::after,.ant-btn-tertiary-white[disabled]:hover>a:only-child::after,.ant-btn-tertiary-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white.disabled svg,.ant-btn-tertiary-white.disabled.active svg,.ant-btn-tertiary-white.disabled:active svg,.ant-btn-tertiary-white.disabled:focus svg,.ant-btn-tertiary-white.disabled:hover svg,.ant-btn-tertiary-white[disabled] svg,.ant-btn-tertiary-white[disabled].active svg,.ant-btn-tertiary-white[disabled]:active svg,.ant-btn-tertiary-white[disabled]:focus svg,.ant-btn-tertiary-white[disabled]:hover svg{fill:rgba(255,255,255,.4)!important;color:rgba(255,255,255,.4)}.ant-btn-success{color:#fff;border-color:#54cb0b;background:#54cb0b}.ant-btn-success>a:only-child{color:currentcolor}.ant-btn-success>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-success:hover{box-shadow:none}.ant-btn-success:hover:not(:disabled):not(:focus){color:#fff;border-color:#76dc25;background:#76dc25}.ant-btn-success:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-success:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-success:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-success:focus{color:#fff;border-color:#76dc25;background:#54cb0b}.ant-btn-success:focus>a:only-child{color:currentcolor}.ant-btn-success:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-success.active,.ant-btn-success:active{color:#fff;border-color:#399903;background:#399903}.ant-btn-success.active>a:only-child,.ant-btn-success:active>a:only-child{color:currentcolor}.ant-btn-success.active>a:only-child::after,.ant-btn-success:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success .btn-ripple{background-color:#399903}.ant-btn-success svg{fill:#fff;color:#fff}.ant-btn-success[disabled],.ant-btn-success[disabled]:active,.ant-btn-success[disabled]:focus,.ant-btn-success[disabled]:hover{color:#fff;border-color:transparent;background:rgba(84,203,11,.4);text-shadow:none;box-shadow:none}.ant-btn-success[disabled]:active>a:only-child,.ant-btn-success[disabled]:focus>a:only-child,.ant-btn-success[disabled]:hover>a:only-child,.ant-btn-success[disabled]>a:only-child{color:currentcolor}.ant-btn-success[disabled]:active>a:only-child::after,.ant-btn-success[disabled]:focus>a:only-child::after,.ant-btn-success[disabled]:hover>a:only-child::after,.ant-btn-success[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success.disabled,.ant-btn-success.disabled.active,.ant-btn-success.disabled:active,.ant-btn-success.disabled:focus,.ant-btn-success.disabled:hover,.ant-btn-success[disabled],.ant-btn-success[disabled].active,.ant-btn-success[disabled]:active,.ant-btn-success[disabled]:focus,.ant-btn-success[disabled]:hover{color:#fff;border-color:transparent;background:rgba(84,203,11,.4);box-shadow:none}.ant-btn-success.disabled.active>a:only-child,.ant-btn-success.disabled:active>a:only-child,.ant-btn-success.disabled:focus>a:only-child,.ant-btn-success.disabled:hover>a:only-child,.ant-btn-success.disabled>a:only-child,.ant-btn-success[disabled].active>a:only-child,.ant-btn-success[disabled]:active>a:only-child,.ant-btn-success[disabled]:focus>a:only-child,.ant-btn-success[disabled]:hover>a:only-child,.ant-btn-success[disabled]>a:only-child{color:currentcolor}.ant-btn-success.disabled.active>a:only-child::after,.ant-btn-success.disabled:active>a:only-child::after,.ant-btn-success.disabled:focus>a:only-child::after,.ant-btn-success.disabled:hover>a:only-child::after,.ant-btn-success.disabled>a:only-child::after,.ant-btn-success[disabled].active>a:only-child::after,.ant-btn-success[disabled]:active>a:only-child::after,.ant-btn-success[disabled]:focus>a:only-child::after,.ant-btn-success[disabled]:hover>a:only-child::after,.ant-btn-success[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success.disabled svg,.ant-btn-success.disabled.active svg,.ant-btn-success.disabled:active svg,.ant-btn-success.disabled:focus svg,.ant-btn-success.disabled:hover svg,.ant-btn-success[disabled] svg,.ant-btn-success[disabled].active svg,.ant-btn-success[disabled]:active svg,.ant-btn-success[disabled]:focus svg,.ant-btn-success[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-success.ant-btn-clicked:after{border-color:#54cb0b}.ant-btn-ghost{color:#57616d;background:0 0;box-shadow:none;border-color:transparent}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost:hover{box-shadow:none}.ant-btn-ghost:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn-ghost:focus{color:#57616d;border-color:transparent;background:0 0}.ant-btn-ghost:focus>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost.active,.ant-btn-ghost:active{color:#57616d;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost.active>a:only-child,.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost.active>a:only-child::after,.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled,.ant-btn-ghost.disabled.active,.ant-btn-ghost.disabled:active,.ant-btn-ghost.disabled:focus,.ant-btn-ghost.disabled:hover,.ant-btn-ghost[disabled],.ant-btn-ghost[disabled].active,.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost.disabled.active>a:only-child,.ant-btn-ghost.disabled:active>a:only-child,.ant-btn-ghost.disabled:focus>a:only-child,.ant-btn-ghost.disabled:hover>a:only-child,.ant-btn-ghost.disabled>a:only-child,.ant-btn-ghost[disabled].active>a:only-child,.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost.disabled.active>a:only-child::after,.ant-btn-ghost.disabled:active>a:only-child::after,.ant-btn-ghost.disabled:focus>a:only-child::after,.ant-btn-ghost.disabled:hover>a:only-child::after,.ant-btn-ghost.disabled>a:only-child::after,.ant-btn-ghost[disabled].active>a:only-child::after,.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled svg,.ant-btn-ghost.disabled.active svg,.ant-btn-ghost.disabled:active svg,.ant-btn-ghost.disabled:focus svg,.ant-btn-ghost.disabled:hover svg,.ant-btn-ghost[disabled] svg,.ant-btn-ghost[disabled].active svg,.ant-btn-ghost[disabled]:active svg,.ant-btn-ghost[disabled]:focus svg,.ant-btn-ghost[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-ghost-white{color:#fff;border-color:transparent;background:0 0}.ant-btn-ghost-white>a:only-child{color:currentcolor}.ant-btn-ghost-white>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost-white:hover{box-shadow:none}.ant-btn-ghost-white:hover:not(:disabled):not(:focus){color:#fff;border-color:transparent;background:rgba(148,158,166,.25)}.ant-btn-ghost-white:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost-white:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-ghost-white:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-ghost-white:focus{color:#fff;border-color:transparent;background:0 0}.ant-btn-ghost-white:focus>a:only-child{color:currentcolor}.ant-btn-ghost-white:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost-white.active,.ant-btn-ghost-white:active{color:#fff;border-color:rgba(148,158,166,.1);background:rgba(148,158,166,.1)}.ant-btn-ghost-white.active>a:only-child,.ant-btn-ghost-white:active>a:only-child{color:currentcolor}.ant-btn-ghost-white.active>a:only-child::after,.ant-btn-ghost-white:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white .btn-ripple{background-color:rgba(148,158,166,.1)}.ant-btn-ghost-white[disabled],.ant-btn-ghost-white[disabled]:active,.ant-btn-ghost-white[disabled]:focus,.ant-btn-ghost-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost-white[disabled]:active>a:only-child,.ant-btn-ghost-white[disabled]:focus>a:only-child,.ant-btn-ghost-white[disabled]:hover>a:only-child,.ant-btn-ghost-white[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-white[disabled]:active>a:only-child::after,.ant-btn-ghost-white[disabled]:focus>a:only-child::after,.ant-btn-ghost-white[disabled]:hover>a:only-child::after,.ant-btn-ghost-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white.disabled,.ant-btn-ghost-white.disabled.active,.ant-btn-ghost-white.disabled:active,.ant-btn-ghost-white.disabled:focus,.ant-btn-ghost-white.disabled:hover,.ant-btn-ghost-white[disabled],.ant-btn-ghost-white[disabled].active,.ant-btn-ghost-white[disabled]:active,.ant-btn-ghost-white[disabled]:focus,.ant-btn-ghost-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost-white.disabled.active>a:only-child,.ant-btn-ghost-white.disabled:active>a:only-child,.ant-btn-ghost-white.disabled:focus>a:only-child,.ant-btn-ghost-white.disabled:hover>a:only-child,.ant-btn-ghost-white.disabled>a:only-child,.ant-btn-ghost-white[disabled].active>a:only-child,.ant-btn-ghost-white[disabled]:active>a:only-child,.ant-btn-ghost-white[disabled]:focus>a:only-child,.ant-btn-ghost-white[disabled]:hover>a:only-child,.ant-btn-ghost-white[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-white.disabled.active>a:only-child::after,.ant-btn-ghost-white.disabled:active>a:only-child::after,.ant-btn-ghost-white.disabled:focus>a:only-child::after,.ant-btn-ghost-white.disabled:hover>a:only-child::after,.ant-btn-ghost-white.disabled>a:only-child::after,.ant-btn-ghost-white[disabled].active>a:only-child::after,.ant-btn-ghost-white[disabled]:active>a:only-child::after,.ant-btn-ghost-white[disabled]:focus>a:only-child::after,.ant-btn-ghost-white[disabled]:hover>a:only-child::after,.ant-btn-ghost-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white.disabled svg,.ant-btn-ghost-white.disabled.active svg,.ant-btn-ghost-white.disabled:active svg,.ant-btn-ghost-white.disabled:focus svg,.ant-btn-ghost-white.disabled:hover svg,.ant-btn-ghost-white[disabled] svg,.ant-btn-ghost-white[disabled].active svg,.ant-btn-ghost-white[disabled]:active svg,.ant-btn-ghost-white[disabled]:focus svg,.ant-btn-ghost-white[disabled]:hover svg{fill:rgba(255,255,255,.4)!important;color:rgba(255,255,255,.4)}.ant-btn-ghost-white svg{fill:#fff}.ant-btn-ghost-primary{color:#0b68ff;border-color:transparent;background:0 0}.ant-btn-ghost-primary>a:only-child{color:currentcolor}.ant-btn-ghost-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost-primary .btn-spinner svg{fill:#6a7580;color:#6a7580}.ant-btn-ghost-primary:hover{box-shadow:none}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn-ghost-primary:focus{color:#0b68ff;border-color:transparent;background:0 0}.ant-btn-ghost-primary:focus>a:only-child{color:currentcolor}.ant-btn-ghost-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost-primary.active,.ant-btn-ghost-primary:active{color:#0b68ff;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost-primary.active>a:only-child,.ant-btn-ghost-primary:active>a:only-child{color:currentcolor}.ant-btn-ghost-primary.active>a:only-child::after,.ant-btn-ghost-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost-primary[disabled],.ant-btn-ghost-primary[disabled]:active,.ant-btn-ghost-primary[disabled]:focus,.ant-btn-ghost-primary[disabled]:hover{color:rgba(11,104,255,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost-primary[disabled]:active>a:only-child,.ant-btn-ghost-primary[disabled]:focus>a:only-child,.ant-btn-ghost-primary[disabled]:hover>a:only-child,.ant-btn-ghost-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-primary[disabled]:active>a:only-child::after,.ant-btn-ghost-primary[disabled]:focus>a:only-child::after,.ant-btn-ghost-primary[disabled]:hover>a:only-child::after,.ant-btn-ghost-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary.disabled,.ant-btn-ghost-primary.disabled.active,.ant-btn-ghost-primary.disabled:active,.ant-btn-ghost-primary.disabled:focus,.ant-btn-ghost-primary.disabled:hover,.ant-btn-ghost-primary[disabled],.ant-btn-ghost-primary[disabled].active,.ant-btn-ghost-primary[disabled]:active,.ant-btn-ghost-primary[disabled]:focus,.ant-btn-ghost-primary[disabled]:hover{color:rgba(11,104,255,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost-primary.disabled.active>a:only-child,.ant-btn-ghost-primary.disabled:active>a:only-child,.ant-btn-ghost-primary.disabled:focus>a:only-child,.ant-btn-ghost-primary.disabled:hover>a:only-child,.ant-btn-ghost-primary.disabled>a:only-child,.ant-btn-ghost-primary[disabled].active>a:only-child,.ant-btn-ghost-primary[disabled]:active>a:only-child,.ant-btn-ghost-primary[disabled]:focus>a:only-child,.ant-btn-ghost-primary[disabled]:hover>a:only-child,.ant-btn-ghost-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-primary.disabled.active>a:only-child::after,.ant-btn-ghost-primary.disabled:active>a:only-child::after,.ant-btn-ghost-primary.disabled:focus>a:only-child::after,.ant-btn-ghost-primary.disabled:hover>a:only-child::after,.ant-btn-ghost-primary.disabled>a:only-child::after,.ant-btn-ghost-primary[disabled].active>a:only-child::after,.ant-btn-ghost-primary[disabled]:active>a:only-child::after,.ant-btn-ghost-primary[disabled]:focus>a:only-child::after,.ant-btn-ghost-primary[disabled]:hover>a:only-child::after,.ant-btn-ghost-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary.disabled svg,.ant-btn-ghost-primary.disabled.active svg,.ant-btn-ghost-primary.disabled:active svg,.ant-btn-ghost-primary.disabled:focus svg,.ant-btn-ghost-primary.disabled:hover svg,.ant-btn-ghost-primary[disabled] svg,.ant-btn-ghost-primary[disabled].active svg,.ant-btn-ghost-primary[disabled]:active svg,.ant-btn-ghost-primary[disabled]:focus svg,.ant-btn-ghost-primary[disabled]:hover svg{fill:rgba(11,104,255,.4)!important;color:rgba(11,104,255,.4)}.ant-btn-ghost-primary svg{fill:#0b68ff;color:#0b68ff}.ant-btn-warning{color:#fff;border-color:#fab700;background:#fab700}.ant-btn-warning>a:only-child{color:currentcolor}.ant-btn-warning>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-warning:hover{box-shadow:none}.ant-btn-warning:hover:not(:disabled):not(:focus){color:#fff;border-color:#ffc300;background:#ffc300}.ant-btn-warning:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-warning:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-warning:hover:not(:disabled):not(:focus) svg{fill:#fff!important;color:#fff}.ant-btn-warning:focus{color:#fff;border-color:#ffc300;background:#fab700}.ant-btn-warning:focus>a:only-child{color:currentcolor}.ant-btn-warning:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-warning.active,.ant-btn-warning:active{color:#fff;border-color:#eda600;background:#eda600}.ant-btn-warning.active>a:only-child,.ant-btn-warning:active>a:only-child{color:currentcolor}.ant-btn-warning.active>a:only-child::after,.ant-btn-warning:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning .btn-ripple{background-color:#eda600}.ant-btn-warning svg{fill:#fff;color:#fff}.ant-btn-warning[disabled],.ant-btn-warning[disabled]:active,.ant-btn-warning[disabled]:focus,.ant-btn-warning[disabled]:hover{color:#fff;border-color:transparent;background:rgba(250,183,0,.4);text-shadow:none;box-shadow:none}.ant-btn-warning[disabled]:active>a:only-child,.ant-btn-warning[disabled]:focus>a:only-child,.ant-btn-warning[disabled]:hover>a:only-child,.ant-btn-warning[disabled]>a:only-child{color:currentcolor}.ant-btn-warning[disabled]:active>a:only-child::after,.ant-btn-warning[disabled]:focus>a:only-child::after,.ant-btn-warning[disabled]:hover>a:only-child::after,.ant-btn-warning[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning.disabled,.ant-btn-warning.disabled.active,.ant-btn-warning.disabled:active,.ant-btn-warning.disabled:focus,.ant-btn-warning.disabled:hover,.ant-btn-warning[disabled],.ant-btn-warning[disabled].active,.ant-btn-warning[disabled]:active,.ant-btn-warning[disabled]:focus,.ant-btn-warning[disabled]:hover{color:#fff;border-color:transparent;background:rgba(250,183,0,.4);box-shadow:none}.ant-btn-warning.disabled.active>a:only-child,.ant-btn-warning.disabled:active>a:only-child,.ant-btn-warning.disabled:focus>a:only-child,.ant-btn-warning.disabled:hover>a:only-child,.ant-btn-warning.disabled>a:only-child,.ant-btn-warning[disabled].active>a:only-child,.ant-btn-warning[disabled]:active>a:only-child,.ant-btn-warning[disabled]:focus>a:only-child,.ant-btn-warning[disabled]:hover>a:only-child,.ant-btn-warning[disabled]>a:only-child{color:currentcolor}.ant-btn-warning.disabled.active>a:only-child::after,.ant-btn-warning.disabled:active>a:only-child::after,.ant-btn-warning.disabled:focus>a:only-child::after,.ant-btn-warning.disabled:hover>a:only-child::after,.ant-btn-warning.disabled>a:only-child::after,.ant-btn-warning[disabled].active>a:only-child::after,.ant-btn-warning[disabled]:active>a:only-child::after,.ant-btn-warning[disabled]:focus>a:only-child::after,.ant-btn-warning[disabled]:hover>a:only-child::after,.ant-btn-warning[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning.disabled svg,.ant-btn-warning.disabled.active svg,.ant-btn-warning.disabled:active svg,.ant-btn-warning.disabled:focus svg,.ant-btn-warning.disabled:hover svg,.ant-btn-warning[disabled] svg,.ant-btn-warning[disabled].active svg,.ant-btn-warning[disabled]:active svg,.ant-btn-warning[disabled]:focus svg,.ant-btn-warning[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn:not(.ant-btn-circle){border-radius:3px}.ant-btn-gray{color:#fff;border-color:#949ea6;background:#949ea6}.ant-btn-gray>a:only-child{color:currentcolor}.ant-btn-gray>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray:focus,.ant-btn-gray:hover{color:#fff;border-color:#b5bdc3;background:#b5bdc3;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-btn-gray:focus>a:only-child,.ant-btn-gray:hover>a:only-child{color:currentcolor}.ant-btn-gray:focus>a:only-child::after,.ant-btn-gray:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.active,.ant-btn-gray:active{color:#fff;border-color:#949ea6;background:#949ea6}.ant-btn-gray.active>a:only-child,.ant-btn-gray:active>a:only-child{color:currentcolor}.ant-btn-gray.active>a:only-child::after,.ant-btn-gray:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray .btn-ripple{background-color:#949ea6}.ant-btn-gray[disabled],.ant-btn-gray[disabled]:active,.ant-btn-gray[disabled]:focus,.ant-btn-gray[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f9fafb;text-shadow:none;box-shadow:none}.ant-btn-gray[disabled]:active>a:only-child,.ant-btn-gray[disabled]:focus>a:only-child,.ant-btn-gray[disabled]:hover>a:only-child,.ant-btn-gray[disabled]>a:only-child{color:currentcolor}.ant-btn-gray[disabled]:active>a:only-child::after,.ant-btn-gray[disabled]:focus>a:only-child::after,.ant-btn-gray[disabled]:hover>a:only-child::after,.ant-btn-gray[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.disabled,.ant-btn-gray.disabled.active,.ant-btn-gray.disabled:active,.ant-btn-gray.disabled:focus,.ant-btn-gray.disabled:hover,.ant-btn-gray[disabled],.ant-btn-gray[disabled].active,.ant-btn-gray[disabled]:active,.ant-btn-gray[disabled]:focus,.ant-btn-gray[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f9fafb;box-shadow:none}.ant-btn-gray.disabled.active>a:only-child,.ant-btn-gray.disabled:active>a:only-child,.ant-btn-gray.disabled:focus>a:only-child,.ant-btn-gray.disabled:hover>a:only-child,.ant-btn-gray.disabled>a:only-child,.ant-btn-gray[disabled].active>a:only-child,.ant-btn-gray[disabled]:active>a:only-child,.ant-btn-gray[disabled]:focus>a:only-child,.ant-btn-gray[disabled]:hover>a:only-child,.ant-btn-gray[disabled]>a:only-child{color:currentcolor}.ant-btn-gray.disabled.active>a:only-child::after,.ant-btn-gray.disabled:active>a:only-child::after,.ant-btn-gray.disabled:focus>a:only-child::after,.ant-btn-gray.disabled:hover>a:only-child::after,.ant-btn-gray.disabled>a:only-child::after,.ant-btn-gray[disabled].active>a:only-child::after,.ant-btn-gray[disabled]:active>a:only-child::after,.ant-btn-gray[disabled]:focus>a:only-child::after,.ant-btn-gray[disabled]:hover>a:only-child::after,.ant-btn-gray[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.disabled svg,.ant-btn-gray.disabled.active svg,.ant-btn-gray.disabled:active svg,.ant-btn-gray.disabled:focus svg,.ant-btn-gray.disabled:hover svg,.ant-btn-gray[disabled] svg,.ant-btn-gray[disabled].active svg,.ant-btn-gray[disabled]:active svg,.ant-btn-gray[disabled]:focus svg,.ant-btn-gray[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-flat{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-flat>a:only-child{color:currentcolor}.ant-btn-flat>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-flat:hover{box-shadow:none}.ant-btn-flat:hover:not(:disabled):not(:focus){color:#232936;border-color:transparent;background:0 0}.ant-btn-flat:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-flat:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat:hover:not(:disabled):not(:focus) span{color:#232936}.ant-btn-flat:hover:not(:disabled):not(:focus) svg{fill:#232936!important;color:#232936}.ant-btn-flat:hover:not([disabled]){text-decoration:underline}.ant-btn-flat:focus{color:#232936;border-color:transparent;background:0 0}.ant-btn-flat:focus>a:only-child{color:currentcolor}.ant-btn-flat:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-flat.active,.ant-btn-flat:active{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-flat.active>a:only-child,.ant-btn-flat:active>a:only-child{color:currentcolor}.ant-btn-flat.active>a:only-child::after,.ant-btn-flat:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat .btn-ripple{background-color:transparent}.ant-btn-flat[disabled],.ant-btn-flat[disabled]:active,.ant-btn-flat[disabled]:focus,.ant-btn-flat[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-flat[disabled]:active>a:only-child,.ant-btn-flat[disabled]:focus>a:only-child,.ant-btn-flat[disabled]:hover>a:only-child,.ant-btn-flat[disabled]>a:only-child{color:currentcolor}.ant-btn-flat[disabled]:active>a:only-child::after,.ant-btn-flat[disabled]:focus>a:only-child::after,.ant-btn-flat[disabled]:hover>a:only-child::after,.ant-btn-flat[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat.disabled,.ant-btn-flat.disabled.active,.ant-btn-flat.disabled:active,.ant-btn-flat.disabled:focus,.ant-btn-flat.disabled:hover,.ant-btn-flat[disabled],.ant-btn-flat[disabled].active,.ant-btn-flat[disabled]:active,.ant-btn-flat[disabled]:focus,.ant-btn-flat[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-flat.disabled.active>a:only-child,.ant-btn-flat.disabled:active>a:only-child,.ant-btn-flat.disabled:focus>a:only-child,.ant-btn-flat.disabled:hover>a:only-child,.ant-btn-flat.disabled>a:only-child,.ant-btn-flat[disabled].active>a:only-child,.ant-btn-flat[disabled]:active>a:only-child,.ant-btn-flat[disabled]:focus>a:only-child,.ant-btn-flat[disabled]:hover>a:only-child,.ant-btn-flat[disabled]>a:only-child{color:currentcolor}.ant-btn-flat.disabled.active>a:only-child::after,.ant-btn-flat.disabled:active>a:only-child::after,.ant-btn-flat.disabled:focus>a:only-child::after,.ant-btn-flat.disabled:hover>a:only-child::after,.ant-btn-flat.disabled>a:only-child::after,.ant-btn-flat[disabled].active>a:only-child::after,.ant-btn-flat[disabled]:active>a:only-child::after,.ant-btn-flat[disabled]:focus>a:only-child::after,.ant-btn-flat[disabled]:hover>a:only-child::after,.ant-btn-flat[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat.disabled svg,.ant-btn-flat.disabled.active svg,.ant-btn-flat.disabled:active svg,.ant-btn-flat.disabled:focus svg,.ant-btn-flat.disabled:hover svg,.ant-btn-flat[disabled] svg,.ant-btn-flat[disabled].active svg,.ant-btn-flat[disabled]:active svg,.ant-btn-flat[disabled]:focus svg,.ant-btn-flat[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-flat.ant-btn-clicked:after{border-color:#6a7580}.ant-btn-primary-on-blue{color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary-on-blue>a:only-child{color:currentcolor}.ant-btn-primary-on-blue>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue:focus,.ant-btn-primary-on-blue:hover{color:#fff;border-color:#4da7fe;background:#4da7fe;box-shadow:none}.ant-btn-primary-on-blue:focus>a:only-child,.ant-btn-primary-on-blue:hover>a:only-child{color:currentcolor}.ant-btn-primary-on-blue:focus>a:only-child::after,.ant-btn-primary-on-blue:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.active,.ant-btn-primary-on-blue:active{color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary-on-blue.active>a:only-child,.ant-btn-primary-on-blue:active>a:only-child{color:currentcolor}.ant-btn-primary-on-blue.active>a:only-child::after,.ant-btn-primary-on-blue:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue .btn-ripple{background-color:#238afe}.ant-btn-primary-on-blue[disabled],.ant-btn-primary-on-blue[disabled]:active,.ant-btn-primary-on-blue[disabled]:focus,.ant-btn-primary-on-blue[disabled]:hover{color:#8bcaff;border-color:#238afe;background:#238afe;text-shadow:none;box-shadow:none}.ant-btn-primary-on-blue[disabled]:active>a:only-child,.ant-btn-primary-on-blue[disabled]:focus>a:only-child,.ant-btn-primary-on-blue[disabled]:hover>a:only-child,.ant-btn-primary-on-blue[disabled]>a:only-child{color:currentcolor}.ant-btn-primary-on-blue[disabled]:active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:focus>a:only-child::after,.ant-btn-primary-on-blue[disabled]:hover>a:only-child::after,.ant-btn-primary-on-blue[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.disabled,.ant-btn-primary-on-blue.disabled.active,.ant-btn-primary-on-blue.disabled:active,.ant-btn-primary-on-blue.disabled:focus,.ant-btn-primary-on-blue.disabled:hover,.ant-btn-primary-on-blue[disabled],.ant-btn-primary-on-blue[disabled].active,.ant-btn-primary-on-blue[disabled]:active,.ant-btn-primary-on-blue[disabled]:focus,.ant-btn-primary-on-blue[disabled]:hover{color:#8bcaff;border-color:#238afe;background:#238afe;box-shadow:none}.ant-btn-primary-on-blue.disabled.active>a:only-child,.ant-btn-primary-on-blue.disabled:active>a:only-child,.ant-btn-primary-on-blue.disabled:focus>a:only-child,.ant-btn-primary-on-blue.disabled:hover>a:only-child,.ant-btn-primary-on-blue.disabled>a:only-child,.ant-btn-primary-on-blue[disabled].active>a:only-child,.ant-btn-primary-on-blue[disabled]:active>a:only-child,.ant-btn-primary-on-blue[disabled]:focus>a:only-child,.ant-btn-primary-on-blue[disabled]:hover>a:only-child,.ant-btn-primary-on-blue[disabled]>a:only-child{color:currentcolor}.ant-btn-primary-on-blue.disabled.active>a:only-child::after,.ant-btn-primary-on-blue.disabled:active>a:only-child::after,.ant-btn-primary-on-blue.disabled:focus>a:only-child::after,.ant-btn-primary-on-blue.disabled:hover>a:only-child::after,.ant-btn-primary-on-blue.disabled>a:only-child::after,.ant-btn-primary-on-blue[disabled].active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:focus>a:only-child::after,.ant-btn-primary-on-blue[disabled]:hover>a:only-child::after,.ant-btn-primary-on-blue[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.disabled svg,.ant-btn-primary-on-blue.disabled.active svg,.ant-btn-primary-on-blue.disabled:active svg,.ant-btn-primary-on-blue.disabled:focus svg,.ant-btn-primary-on-blue.disabled:hover svg,.ant-btn-primary-on-blue[disabled] svg,.ant-btn-primary-on-blue[disabled].active svg,.ant-btn-primary-on-blue[disabled]:active svg,.ant-btn-primary-on-blue[disabled]:focus svg,.ant-btn-primary-on-blue[disabled]:hover svg{fill:#8bcaff!important;color:#8bcaff}.ant-btn-primary-on-blue.ant-btn-clicked:after{border-color:#fff}.ant-btn-dark{color:#b5bdc3;border-color:#57616d;background:#57616d}.ant-btn-dark>a:only-child{color:currentcolor}.ant-btn-dark>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark:focus,.ant-btn-dark:hover{color:#b5bdc3;border-color:#6a7580;background:#6a7580;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-btn-dark:focus>a:only-child,.ant-btn-dark:hover>a:only-child{color:currentcolor}.ant-btn-dark:focus>a:only-child::after,.ant-btn-dark:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.active,.ant-btn-dark:active{color:#b5bdc3;border-color:#57616d;background:#57616d}.ant-btn-dark.active>a:only-child,.ant-btn-dark:active>a:only-child{color:currentcolor}.ant-btn-dark.active>a:only-child::after,.ant-btn-dark:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark .btn-ripple{background-color:#57616d}.ant-btn-dark[disabled],.ant-btn-dark[disabled]:active,.ant-btn-dark[disabled]:focus,.ant-btn-dark[disabled]:hover{color:#949ea6;border-color:#232936;background:#232936;text-shadow:none;box-shadow:none}.ant-btn-dark[disabled]:active>a:only-child,.ant-btn-dark[disabled]:focus>a:only-child,.ant-btn-dark[disabled]:hover>a:only-child,.ant-btn-dark[disabled]>a:only-child{color:currentcolor}.ant-btn-dark[disabled]:active>a:only-child::after,.ant-btn-dark[disabled]:focus>a:only-child::after,.ant-btn-dark[disabled]:hover>a:only-child::after,.ant-btn-dark[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.disabled,.ant-btn-dark.disabled.active,.ant-btn-dark.disabled:active,.ant-btn-dark.disabled:focus,.ant-btn-dark.disabled:hover,.ant-btn-dark[disabled],.ant-btn-dark[disabled].active,.ant-btn-dark[disabled]:active,.ant-btn-dark[disabled]:focus,.ant-btn-dark[disabled]:hover{color:#949ea6;border-color:#232936;background:#232936;box-shadow:none}.ant-btn-dark.disabled.active>a:only-child,.ant-btn-dark.disabled:active>a:only-child,.ant-btn-dark.disabled:focus>a:only-child,.ant-btn-dark.disabled:hover>a:only-child,.ant-btn-dark.disabled>a:only-child,.ant-btn-dark[disabled].active>a:only-child,.ant-btn-dark[disabled]:active>a:only-child,.ant-btn-dark[disabled]:focus>a:only-child,.ant-btn-dark[disabled]:hover>a:only-child,.ant-btn-dark[disabled]>a:only-child{color:currentcolor}.ant-btn-dark.disabled.active>a:only-child::after,.ant-btn-dark.disabled:active>a:only-child::after,.ant-btn-dark.disabled:focus>a:only-child::after,.ant-btn-dark.disabled:hover>a:only-child::after,.ant-btn-dark.disabled>a:only-child::after,.ant-btn-dark[disabled].active>a:only-child::after,.ant-btn-dark[disabled]:active>a:only-child::after,.ant-btn-dark[disabled]:focus>a:only-child::after,.ant-btn-dark[disabled]:hover>a:only-child::after,.ant-btn-dark[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.disabled svg,.ant-btn-dark.disabled.active svg,.ant-btn-dark.disabled:active svg,.ant-btn-dark.disabled:focus svg,.ant-btn-dark.disabled:hover svg,.ant-btn-dark[disabled] svg,.ant-btn-dark[disabled].active svg,.ant-btn-dark[disabled]:active svg,.ant-btn-dark[disabled]:focus svg,.ant-btn-dark[disabled]:hover svg{fill:#949ea6!important;color:#949ea6}.ant-btn-dark.ant-btn-clicked:after{border-color:#b5bdc3}.ant-btn-group{display:flex}@media (max-width:480px){.ant-btn-group{flex-flow:column}}.ant-btn-group>.ant-btn{border-radius:0;width:100%}.ant-btn-group>.ant-btn:hover:not(.ant-btn-primary):not(.ant-btn-secondary):not(.ant-btn-custom-color):not(.ant-btn-tertiary-white):not(.ant-btn-ghost-white):not(.ant-btn-ghost-primary):not(.ant-btn-disabled):not(.ant-btn-success):not(.ant-btn-warning){border-color:#dbe0e3;color:#384350}.ant-btn-group>.ant-btn[disabled]{border-color:#dbe0e3!important}.ant-btn-lg{font-size:14px}.ant-btn-group-lg>.ant-btn{font-size:14px}.ant-btn-sm{padding:0 12px;font-size:13px}.ant-btn-background-ghost:after{animation:none;animation-fill-mode:none}.ant-btn-background-ghost.ant-btn-danger{color:#57616d;background:0 0;box-shadow:none;border-color:transparent;background-color:#fff6f4!important}.ant-btn-background-ghost.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-background-ghost.ant-btn-danger:hover{box-shadow:none}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus) svg{fill:#0b68ff!important;color:#0b68ff}.ant-btn-background-ghost.ant-btn-danger:focus{color:#57616d;border-color:transparent;background:0 0}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-background-ghost.ant-btn-danger.active,.ant-btn-background-ghost.ant-btn-danger:active{color:#57616d;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger.disabled,.ant-btn-background-ghost.ant-btn-danger.disabled.active,.ant-btn-background-ghost.ant-btn-danger.disabled:active,.ant-btn-background-ghost.ant-btn-danger.disabled:focus,.ant-btn-background-ghost.ant-btn-danger.disabled:hover,.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled].active,.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger.disabled svg,.ant-btn-background-ghost.ant-btn-danger.disabled.active svg,.ant-btn-background-ghost.ant-btn-danger.disabled:active svg,.ant-btn-background-ghost.ant-btn-danger.disabled:focus svg,.ant-btn-background-ghost.ant-btn-danger.disabled:hover svg,.ant-btn-background-ghost.ant-btn-danger[disabled] svg,.ant-btn-background-ghost.ant-btn-danger[disabled].active svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:active svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn.ant-btn{text-shadow:none;box-shadow:none;border:0}
1
+ .ant-btn{line-height:1.38;position:relative;display:inline-block;font-weight:500;white-space:nowrap;text-align:center;background-image:none;border:1px solid transparent;box-shadow:0 2px 0 rgba(0,0,0,.015);cursor:pointer;transition:all .3s cubic-bezier(.645,.045,.355,1);user-select:none;touch-action:manipulation;height:32px;padding:6px 15px;font-size:13px;border-radius:3px;color:#6a7580;border-color:#dbe0e3;background:#f9fafb}.ant-btn>.anticon{line-height:1}.ant-btn,.ant-btn:active,.ant-btn:focus{outline:0}.ant-btn:not([disabled]):hover{text-decoration:none}.ant-btn:not([disabled]):active{outline:0;box-shadow:none}.ant-btn[disabled]{cursor:not-allowed}.ant-btn[disabled]>*{pointer-events:none}.ant-btn-lg{height:48px;padding:12px 15px;font-size:16px;border-radius:3px}.ant-btn-sm{height:28px;padding:4.7px 7px;font-size:12px;border-radius:3px}.ant-btn>a:only-child{color:currentcolor}.ant-btn>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:focus,.ant-btn:hover{color:#38f;border-color:#38f;background:#f9fafb}.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child{color:currentcolor}.ant-btn:focus>a:only-child::after,.ant-btn:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:active{color:#004cd9;border-color:#004cd9;background:#f9fafb}.ant-btn:active>a:only-child{color:currentcolor}.ant-btn:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn[disabled],.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:active,.ant-btn:focus,.ant-btn:hover{text-decoration:none;background:#f9fafb}.ant-btn>a:only-child{color:currentcolor}.ant-btn>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn .btn-focus{box-shadow:inset 0 0 0 1px #dbe0e3}.ant-btn:hover{box-shadow:none}.ant-btn:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:#dbe0e3;background:#fff}.ant-btn:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn:focus{color:#6a7580;border-color:#dbe0e3;background:#f9fafb}.ant-btn:focus>a:only-child{color:currentcolor}.ant-btn:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn.active,.ant-btn:active{color:#6a7580;border-color:#f3f5f6;background:#f3f5f6;border-color:#dbe0e3}.ant-btn.active>a:only-child,.ant-btn:active>a:only-child{color:currentcolor}.ant-btn.active>a:only-child::after,.ant-btn:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn .btn-ripple{background-color:#f3f5f6}.ant-btn[disabled],.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);text-shadow:none;box-shadow:none}.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn.disabled,.ant-btn.disabled.active,.ant-btn.disabled:active,.ant-btn.disabled:focus,.ant-btn.disabled:hover,.ant-btn[disabled],.ant-btn[disabled].active,.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);box-shadow:none}.ant-btn.disabled.active>a:only-child,.ant-btn.disabled:active>a:only-child,.ant-btn.disabled:focus>a:only-child,.ant-btn.disabled:hover>a:only-child,.ant-btn.disabled>a:only-child,.ant-btn[disabled].active>a:only-child,.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentcolor}.ant-btn.disabled.active>a:only-child::after,.ant-btn.disabled:active>a:only-child::after,.ant-btn.disabled:focus>a:only-child::after,.ant-btn.disabled:hover>a:only-child::after,.ant-btn.disabled>a:only-child::after,.ant-btn[disabled].active>a:only-child::after,.ant-btn[disabled]:active>a:only-child::after,.ant-btn[disabled]:focus>a:only-child::after,.ant-btn[disabled]:hover>a:only-child::after,.ant-btn[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn.disabled svg,.ant-btn.disabled.active svg,.ant-btn.disabled:active svg,.ant-btn.disabled:focus svg,.ant-btn.disabled:hover svg,.ant-btn[disabled] svg,.ant-btn[disabled].active svg,.ant-btn[disabled]:active svg,.ant-btn[disabled]:focus svg,.ant-btn[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:12px!important;padding-right:12px!important}.ant-btn-sm.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:8px!important;padding-right:8px!important}.ant-btn-lg.ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline) .ant-btn-icon-only{padding-left:16px!important;padding-right:16px!important}.ant-btn>span{display:inline-block}.ant-btn-primary{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#0b68ff;background:#0b68ff}.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:focus,.ant-btn-primary:hover{color:#fff;border-color:#38f;background:#38f}.ant-btn-primary:focus>a:only-child,.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-primary:focus>a:only-child::after,.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:active{color:#fff;border-color:#004cd9;background:#004cd9}.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary[disabled],.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary .btn-focus{box-shadow:inset 0 0 0 0 #dbe0e3}.ant-btn-primary:hover{box-shadow:none}.ant-btn-primary:hover:not(:disabled):not(:focus){color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-primary:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-primary:focus{color:#fff;border-color:#0044d9;background:#0b68ff}.ant-btn-primary:focus>a:only-child{color:currentcolor}.ant-btn-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-primary.active,.ant-btn-primary:active{color:#fff;border-color:#0044d9;background:#0044d9}.ant-btn-primary.active>a:only-child,.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-primary.active>a:only-child::after,.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary .btn-ripple{background-color:#0044d9}.ant-btn-primary svg{fill:#fff;color:#fff}.ant-btn-primary[disabled],.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(11,104,255,.4);text-shadow:none;box-shadow:none}.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary.disabled,.ant-btn-primary.disabled.active,.ant-btn-primary.disabled:active,.ant-btn-primary.disabled:focus,.ant-btn-primary.disabled:hover,.ant-btn-primary[disabled],.ant-btn-primary[disabled].active,.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(11,104,255,.4);box-shadow:none}.ant-btn-primary.disabled.active>a:only-child,.ant-btn-primary.disabled:active>a:only-child,.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-primary.disabled>a:only-child,.ant-btn-primary[disabled].active>a:only-child,.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-primary.disabled.active>a:only-child::after,.ant-btn-primary.disabled:active>a:only-child::after,.ant-btn-primary.disabled:focus>a:only-child::after,.ant-btn-primary.disabled:hover>a:only-child::after,.ant-btn-primary.disabled>a:only-child::after,.ant-btn-primary[disabled].active>a:only-child::after,.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary.disabled svg,.ant-btn-primary.disabled.active svg,.ant-btn-primary.disabled:active svg,.ant-btn-primary.disabled:focus svg,.ant-btn-primary.disabled:hover svg,.ant-btn-primary[disabled] svg,.ant-btn-primary[disabled].active svg,.ant-btn-primary[disabled]:active svg,.ant-btn-primary[disabled]:focus svg,.ant-btn-primary[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child){border-right-color:#238afe;border-left-color:#238afe}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled{border-color:#dbe0e3}.ant-btn-group .ant-btn-primary:first-child:not(:last-child){border-right-color:#238afe}.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled]{border-right-color:#dbe0e3}.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group .ant-btn-primary:last-child:not(:first-child){border-left-color:#238afe}.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled]{border-left-color:#dbe0e3}.ant-btn-ghost{color:#6a7580;background:0 0;box-shadow:none;border-color:transparent}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus,.ant-btn-ghost:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-ghost:focus>a:only-child,.ant-btn-ghost:hover>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after,.ant-btn-ghost:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost:hover{box-shadow:none}.ant-btn-ghost:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-ghost:focus{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-ghost:focus>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost.active,.ant-btn-ghost:active{color:#6a7580;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost.active>a:only-child,.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost.active>a:only-child::after,.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled,.ant-btn-ghost.disabled.active,.ant-btn-ghost.disabled:active,.ant-btn-ghost.disabled:focus,.ant-btn-ghost.disabled:hover,.ant-btn-ghost[disabled],.ant-btn-ghost[disabled].active,.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost.disabled.active>a:only-child,.ant-btn-ghost.disabled:active>a:only-child,.ant-btn-ghost.disabled:focus>a:only-child,.ant-btn-ghost.disabled:hover>a:only-child,.ant-btn-ghost.disabled>a:only-child,.ant-btn-ghost[disabled].active>a:only-child,.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost.disabled.active>a:only-child::after,.ant-btn-ghost.disabled:active>a:only-child::after,.ant-btn-ghost.disabled:focus>a:only-child::after,.ant-btn-ghost.disabled:hover>a:only-child::after,.ant-btn-ghost.disabled>a:only-child::after,.ant-btn-ghost[disabled].active>a:only-child::after,.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled svg,.ant-btn-ghost.disabled.active svg,.ant-btn-ghost.disabled:active svg,.ant-btn-ghost.disabled:focus svg,.ant-btn-ghost.disabled:hover svg,.ant-btn-ghost[disabled] svg,.ant-btn-ghost[disabled].active svg,.ant-btn-ghost[disabled]:active svg,.ant-btn-ghost[disabled]:focus svg,.ant-btn-ghost[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-dashed{color:#6a7580;border-color:#dbe0e3;background:#f9fafb;border-style:dashed}.ant-btn-dashed>a:only-child{color:currentcolor}.ant-btn-dashed>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed:focus,.ant-btn-dashed:hover{color:#38f;border-color:#38f;background:#f9fafb}.ant-btn-dashed:focus>a:only-child,.ant-btn-dashed:hover>a:only-child{color:currentcolor}.ant-btn-dashed:focus>a:only-child::after,.ant-btn-dashed:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed:active{color:#004cd9;border-color:#004cd9;background:#f9fafb}.ant-btn-dashed:active>a:only-child{color:currentcolor}.ant-btn-dashed:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dashed[disabled],.ant-btn-dashed[disabled]:active,.ant-btn-dashed[disabled]:focus,.ant-btn-dashed[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dashed[disabled]:active>a:only-child,.ant-btn-dashed[disabled]:focus>a:only-child,.ant-btn-dashed[disabled]:hover>a:only-child,.ant-btn-dashed[disabled]>a:only-child{color:currentcolor}.ant-btn-dashed[disabled]:active>a:only-child::after,.ant-btn-dashed[disabled]:focus>a:only-child::after,.ant-btn-dashed[disabled]:hover>a:only-child::after,.ant-btn-dashed[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#f52922;background:#f52922}.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:focus,.ant-btn-danger:hover{color:#fff;border-color:#ff584d;background:#ff584d}.ant-btn-danger:focus>a:only-child,.ant-btn-danger:hover>a:only-child{color:currentcolor}.ant-btn-danger:focus>a:only-child::after,.ant-btn-danger:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:active{color:#fff;border-color:#cf1313;background:#cf1313}.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger[disabled],.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-danger:hover{box-shadow:none;box-shadow:0 2px 4px 0 rgba(255,90,77,.2)}.ant-btn-danger:hover:not(:disabled):not(:focus){color:#fff;border-color:#ff5a4d;background:#ff5a4d}.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-danger:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-danger:focus{color:#fff;border-color:#f52922;background:#f52922}.ant-btn-danger:focus>a:only-child{color:currentcolor}.ant-btn-danger:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-danger.active,.ant-btn-danger:active{color:#fff;border-color:#cf1413;background:#cf1413}.ant-btn-danger.active>a:only-child,.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-danger.active>a:only-child::after,.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger .btn-ripple{background-color:#cf1413}.ant-btn-danger svg{fill:#fff;color:#fff}.ant-btn-danger[disabled],.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);text-shadow:none;box-shadow:none}.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger.disabled,.ant-btn-danger.disabled.active,.ant-btn-danger.disabled:active,.ant-btn-danger.disabled:focus,.ant-btn-danger.disabled:hover,.ant-btn-danger[disabled],.ant-btn-danger[disabled].active,.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);box-shadow:none}.ant-btn-danger.disabled.active>a:only-child,.ant-btn-danger.disabled:active>a:only-child,.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-danger.disabled>a:only-child,.ant-btn-danger[disabled].active>a:only-child,.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-danger.disabled.active>a:only-child::after,.ant-btn-danger.disabled:active>a:only-child::after,.ant-btn-danger.disabled:focus>a:only-child::after,.ant-btn-danger.disabled:hover>a:only-child::after,.ant-btn-danger.disabled>a:only-child::after,.ant-btn-danger[disabled].active>a:only-child::after,.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-danger.disabled svg,.ant-btn-danger.disabled.active svg,.ant-btn-danger.disabled:active svg,.ant-btn-danger.disabled:focus svg,.ant-btn-danger.disabled:hover svg,.ant-btn-danger[disabled] svg,.ant-btn-danger[disabled].active svg,.ant-btn-danger[disabled]:active svg,.ant-btn-danger[disabled]:focus svg,.ant-btn-danger[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-link{color:#0b68ff;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:focus,.ant-btn-link:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-link:focus>a:only-child,.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-link:focus>a:only-child::after,.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link:hover{background:0 0}.ant-btn-link:active,.ant-btn-link:focus,.ant-btn-link:hover{border-color:transparent}.ant-btn-link[disabled],.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link.disabled,.ant-btn-link.disabled.active,.ant-btn-link.disabled:active,.ant-btn-link.disabled:focus,.ant-btn-link.disabled:hover,.ant-btn-link[disabled],.ant-btn-link[disabled].active,.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-link.disabled.active>a:only-child,.ant-btn-link.disabled:active>a:only-child,.ant-btn-link.disabled:focus>a:only-child,.ant-btn-link.disabled:hover>a:only-child,.ant-btn-link.disabled>a:only-child,.ant-btn-link[disabled].active>a:only-child,.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-link.disabled.active>a:only-child::after,.ant-btn-link.disabled:active>a:only-child::after,.ant-btn-link.disabled:focus>a:only-child::after,.ant-btn-link.disabled:hover>a:only-child::after,.ant-btn-link.disabled>a:only-child::after,.ant-btn-link[disabled].active>a:only-child::after,.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-link.disabled svg,.ant-btn-link.disabled.active svg,.ant-btn-link.disabled:active svg,.ant-btn-link.disabled:focus svg,.ant-btn-link.disabled:hover svg,.ant-btn-link[disabled] svg,.ant-btn-link[disabled].active svg,.ant-btn-link[disabled]:active svg,.ant-btn-link[disabled]:focus svg,.ant-btn-link[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-text{color:#6a7580;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-text>a:only-child{color:currentcolor}.ant-btn-text>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:focus,.ant-btn-text:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-text:focus>a:only-child,.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-text:focus>a:only-child::after,.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text:focus,.ant-btn-text:hover{color:#6a7580;background:rgba(0,0,0,.018);border-color:transparent}.ant-btn-text:active{color:#6a7580;background:rgba(0,0,0,.028);border-color:transparent}.ant-btn-text[disabled],.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text.disabled,.ant-btn-text.disabled.active,.ant-btn-text.disabled:active,.ant-btn-text.disabled:focus,.ant-btn-text.disabled:hover,.ant-btn-text[disabled],.ant-btn-text[disabled].active,.ant-btn-text[disabled]:active,.ant-btn-text[disabled]:focus,.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-text.disabled.active>a:only-child,.ant-btn-text.disabled:active>a:only-child,.ant-btn-text.disabled:focus>a:only-child,.ant-btn-text.disabled:hover>a:only-child,.ant-btn-text.disabled>a:only-child,.ant-btn-text[disabled].active>a:only-child,.ant-btn-text[disabled]:active>a:only-child,.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-text.disabled.active>a:only-child::after,.ant-btn-text.disabled:active>a:only-child::after,.ant-btn-text.disabled:focus>a:only-child::after,.ant-btn-text.disabled:hover>a:only-child::after,.ant-btn-text.disabled>a:only-child::after,.ant-btn-text[disabled].active>a:only-child::after,.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-text.disabled svg,.ant-btn-text.disabled.active svg,.ant-btn-text.disabled:active svg,.ant-btn-text.disabled:focus svg,.ant-btn-text.disabled:hover svg,.ant-btn-text[disabled] svg,.ant-btn-text[disabled].active svg,.ant-btn-text[disabled]:active svg,.ant-btn-text[disabled]:focus svg,.ant-btn-text[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-dangerous{color:#f52922;border-color:#f52922;background:#f9fafb}.ant-btn-dangerous>a:only-child{color:currentcolor}.ant-btn-dangerous>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous:focus,.ant-btn-dangerous:hover{color:#ff584d;border-color:#ff584d;background:#f9fafb}.ant-btn-dangerous:focus>a:only-child,.ant-btn-dangerous:hover>a:only-child{color:currentcolor}.ant-btn-dangerous:focus>a:only-child::after,.ant-btn-dangerous:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous:active{color:#cf1313;border-color:#cf1313;background:#f9fafb}.ant-btn-dangerous:active>a:only-child{color:currentcolor}.ant-btn-dangerous:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous[disabled],.ant-btn-dangerous[disabled]:active,.ant-btn-dangerous[disabled]:focus,.ant-btn-dangerous[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-dangerous[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous[disabled]:active>a:only-child::after,.ant-btn-dangerous[disabled]:focus>a:only-child::after,.ant-btn-dangerous[disabled]:hover>a:only-child::after,.ant-btn-dangerous[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary{text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:rgba(35,138,254,.2);color:#fff;border-color:#f52922;background:#f52922}.ant-btn-dangerous.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:focus,.ant-btn-dangerous.ant-btn-primary:hover{color:#fff;border-color:#ff584d;background:#ff584d}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:active{color:#fff;border-color:#cf1313;background:#cf1313}.ant-btn-dangerous.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-dangerous.ant-btn-primary:hover{box-shadow:none;box-shadow:0 2px 4px 0 rgba(255,90,77,.2)}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus){color:#fff;border-color:#ff5a4d;background:#ff5a4d}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-dangerous.ant-btn-primary:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-dangerous.ant-btn-primary:focus{color:#fff;border-color:#f52922;background:#f52922}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-dangerous.ant-btn-primary.active,.ant-btn-dangerous.ant-btn-primary:active{color:#fff;border-color:#cf1413;background:#cf1413}.ant-btn-dangerous.ant-btn-primary.active>a:only-child,.ant-btn-dangerous.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary.active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary .btn-ripple{background-color:#cf1413}.ant-btn-dangerous.ant-btn-primary svg{fill:#fff;color:#fff}.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary.disabled,.ant-btn-dangerous.ant-btn-primary.disabled.active,.ant-btn-dangerous.ant-btn-primary.disabled:active,.ant-btn-dangerous.ant-btn-primary.disabled:focus,.ant-btn-dangerous.ant-btn-primary.disabled:hover,.ant-btn-dangerous.ant-btn-primary[disabled],.ant-btn-dangerous.ant-btn-primary[disabled].active,.ant-btn-dangerous.ant-btn-primary[disabled]:active,.ant-btn-dangerous.ant-btn-primary[disabled]:focus,.ant-btn-dangerous.ant-btn-primary[disabled]:hover{color:#fff;border-color:transparent;background:rgba(245,41,34,.4);box-shadow:none}.ant-btn-dangerous.ant-btn-primary.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary.disabled>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-primary.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-primary.disabled svg,.ant-btn-dangerous.ant-btn-primary.disabled.active svg,.ant-btn-dangerous.ant-btn-primary.disabled:active svg,.ant-btn-dangerous.ant-btn-primary.disabled:focus svg,.ant-btn-dangerous.ant-btn-primary.disabled:hover svg,.ant-btn-dangerous.ant-btn-primary[disabled] svg,.ant-btn-dangerous.ant-btn-primary[disabled].active svg,.ant-btn-dangerous.ant-btn-primary[disabled]:active svg,.ant-btn-dangerous.ant-btn-primary[disabled]:focus svg,.ant-btn-dangerous.ant-btn-primary[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-dangerous.ant-btn-link{color:#f52922;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-dangerous.ant-btn-link:hover{color:#ff584d;border-color:transparent;background:0 0}.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link:active{color:#cf1313;border-color:transparent;background:0 0}.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link.disabled,.ant-btn-dangerous.ant-btn-link.disabled.active,.ant-btn-dangerous.ant-btn-link.disabled:active,.ant-btn-dangerous.ant-btn-link.disabled:focus,.ant-btn-dangerous.ant-btn-link.disabled:hover,.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-dangerous.ant-btn-link[disabled].active,.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-link.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-link.disabled>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-link.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-link.disabled svg,.ant-btn-dangerous.ant-btn-link.disabled.active svg,.ant-btn-dangerous.ant-btn-link.disabled:active svg,.ant-btn-dangerous.ant-btn-link.disabled:focus svg,.ant-btn-dangerous.ant-btn-link.disabled:hover svg,.ant-btn-dangerous.ant-btn-link[disabled] svg,.ant-btn-dangerous.ant-btn-link[disabled].active svg,.ant-btn-dangerous.ant-btn-link[disabled]:active svg,.ant-btn-dangerous.ant-btn-link[disabled]:focus svg,.ant-btn-dangerous.ant-btn-link[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-dangerous.ant-btn-text{color:#f52922;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-text>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover{color:#38f;border-color:#38f;background:0 0}.ant-btn-dangerous.ant-btn-text:focus>a:only-child,.ant-btn-dangerous.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:active{color:#004cd9;border-color:#004cd9;background:0 0}.ant-btn-dangerous.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:focus,.ant-btn-dangerous.ant-btn-text:hover{color:#ff584d;border-color:transparent;background:rgba(0,0,0,.018)}.ant-btn-dangerous.ant-btn-text:focus>a:only-child,.ant-btn-dangerous.ant-btn-text:hover>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text:active{color:#cf1313;border-color:transparent;background:rgba(0,0,0,.028)}.ant-btn-dangerous.ant-btn-text:active>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text.disabled,.ant-btn-dangerous.ant-btn-text.disabled.active,.ant-btn-dangerous.ant-btn-text.disabled:active,.ant-btn-dangerous.ant-btn-text.disabled:focus,.ant-btn-dangerous.ant-btn-text.disabled:hover,.ant-btn-dangerous.ant-btn-text[disabled],.ant-btn-dangerous.ant-btn-text[disabled].active,.ant-btn-dangerous.ant-btn-text[disabled]:active,.ant-btn-dangerous.ant-btn-text[disabled]:focus,.ant-btn-dangerous.ant-btn-text[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-dangerous.ant-btn-text.disabled.active>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:active>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:focus>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled:hover>a:only-child,.ant-btn-dangerous.ant-btn-text.disabled>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled].active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child{color:currentcolor}.ant-btn-dangerous.ant-btn-text.disabled.active>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text.disabled>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled].active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:active>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:focus>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]:hover>a:only-child::after,.ant-btn-dangerous.ant-btn-text[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dangerous.ant-btn-text.disabled svg,.ant-btn-dangerous.ant-btn-text.disabled.active svg,.ant-btn-dangerous.ant-btn-text.disabled:active svg,.ant-btn-dangerous.ant-btn-text.disabled:focus svg,.ant-btn-dangerous.ant-btn-text.disabled:hover svg,.ant-btn-dangerous.ant-btn-text[disabled] svg,.ant-btn-dangerous.ant-btn-text[disabled].active svg,.ant-btn-dangerous.ant-btn-text[disabled]:active svg,.ant-btn-dangerous.ant-btn-text[disabled]:focus svg,.ant-btn-dangerous.ant-btn-text[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-icon-only{width:32px;height:32px;padding:4.7px 0;font-size:15px;border-radius:3px;vertical-align:-3px}.ant-btn-icon-only>*{font-size:15px}.ant-btn-icon-only.ant-btn-lg{width:48px;height:48px;padding:10.6px 0;font-size:18px;border-radius:3px}.ant-btn-icon-only.ant-btn-lg>*{font-size:18px}.ant-btn-icon-only.ant-btn-sm{width:28px;height:28px;padding:4px 0;font-size:13px;border-radius:3px}.ant-btn-icon-only.ant-btn-sm>*{font-size:13px}.ant-btn-icon-only>.anticon{display:flex;justify-content:center}.ant-btn-icon-only .anticon-loading{padding:0!important}a.ant-btn-icon-only{vertical-align:-1px}a.ant-btn-icon-only>.anticon{display:inline}.ant-btn-round{height:32px;padding:6px 16px;font-size:13px;border-radius:32px}.ant-btn-round.ant-btn-lg{height:48px;padding:12px 24px;font-size:16px;border-radius:48px}.ant-btn-round.ant-btn-sm{height:28px;padding:4px 14px;font-size:13px;border-radius:28px}.ant-btn-round.ant-btn-icon-only{width:auto}.ant-btn-circle{min-width:32px;padding-right:0;padding-left:0;text-align:center;border-radius:50%}.ant-btn-circle.ant-btn-lg{min-width:48px;border-radius:50%}.ant-btn-circle.ant-btn-sm{min-width:28px;border-radius:50%}.ant-btn::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:1;display:none;background:#fff;border-radius:inherit;opacity:.35;transition:opacity .2s;content:'';pointer-events:none}.ant-btn .anticon{transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-btn .anticon.anticon-minus>svg,.ant-btn .anticon.anticon-plus>svg{shape-rendering:optimizespeed}.ant-btn.ant-btn-loading{position:relative;cursor:default}.ant-btn.ant-btn-loading::before{display:block}.ant-btn>.ant-btn-loading-icon{transition:width .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1)}.ant-btn>.ant-btn-loading-icon .anticon{padding-right:8px;animation:none}.ant-btn>.ant-btn-loading-icon .anticon svg{animation:loadingCircle 1s infinite linear}.ant-btn-group{position:relative;display:inline-flex}.ant-btn-group>.ant-btn,.ant-btn-group>span>.ant-btn{position:relative}.ant-btn-group>.ant-btn:active,.ant-btn-group>.ant-btn:focus,.ant-btn-group>.ant-btn:hover,.ant-btn-group>span>.ant-btn:active,.ant-btn-group>span>.ant-btn:focus,.ant-btn-group>span>.ant-btn:hover{z-index:2}.ant-btn-group>.ant-btn[disabled],.ant-btn-group>span>.ant-btn[disabled]{z-index:0}.ant-btn-group .ant-btn-icon-only{font-size:13px}.ant-btn+.ant-btn-group,.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group .ant-btn+span,.ant-btn-group span+.ant-btn,.ant-btn-group+.ant-btn,.ant-btn-group+.ant-btn-group,.ant-btn-group>span+span{margin-left:-1px}.ant-btn-group .ant-btn-primary+.ant-btn:not(.ant-btn-primary):not([disabled]){border-left-color:transparent}.ant-btn-group .ant-btn{border-radius:0}.ant-btn-group>.ant-btn:first-child,.ant-btn-group>span:first-child>.ant-btn{margin-left:0}.ant-btn-group>.ant-btn:only-child{border-radius:3px}.ant-btn-group>span:only-child>.ant-btn{border-radius:3px}.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:3px;border-bottom-left-radius:3px}.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:3px;border-bottom-right-radius:3px}.ant-btn-group-sm>.ant-btn:only-child{border-radius:3px}.ant-btn-group-sm>span:only-child>.ant-btn{border-radius:3px}.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:3px;border-bottom-left-radius:3px}.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:3px;border-bottom-right-radius:3px}.ant-btn-group>.ant-btn-group{float:left}.ant-btn-group>.ant-btn-group:not(:first-child):not(:last-child)>.ant-btn{border-radius:0}.ant-btn-group>.ant-btn-group:first-child:not(:last-child)>.ant-btn:last-child{padding-right:8px;border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-group>.ant-btn-group:last-child:not(:first-child)>.ant-btn:first-child{padding-left:8px;border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-group-rtl.ant-btn+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group-rtl.ant-btn-group .ant-btn+span,.ant-btn-group-rtl.ant-btn-group span+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn,.ant-btn-group-rtl.ant-btn-group+.ant-btn-group,.ant-btn-group-rtl.ant-btn-group>span+span,.ant-btn-rtl.ant-btn+.ant-btn-group,.ant-btn-rtl.ant-btn-group .ant-btn+.ant-btn,.ant-btn-rtl.ant-btn-group .ant-btn+span,.ant-btn-rtl.ant-btn-group span+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn,.ant-btn-rtl.ant-btn-group+.ant-btn-group,.ant-btn-rtl.ant-btn-group>span+span{margin-right:-1px;margin-left:auto}.ant-btn-group.ant-btn-group-rtl{direction:rtl}.ant-btn-group-rtl.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group>span:first-child:not(:last-child)>.ant-btn{border-radius:0 3px 3px 0}.ant-btn-group-rtl.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group>span:last-child:not(:first-child)>.ant-btn{border-radius:3px 0 0 3px}.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-rtl.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn{border-radius:0 3px 3px 0}.ant-btn-group-rtl.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-rtl.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn{border-radius:3px 0 0 3px}.ant-btn:active>span,.ant-btn:focus>span{position:relative}.ant-btn>.anticon+span,.ant-btn>span+.anticon{margin-left:8px}.ant-btn.ant-btn-background-ghost{color:#fff;border-color:#fff}.ant-btn.ant-btn-background-ghost,.ant-btn.ant-btn-background-ghost:active,.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover{background:0 0}.ant-btn.ant-btn-background-ghost:focus,.ant-btn.ant-btn-background-ghost:hover{color:#38f;border-color:#38f}.ant-btn.ant-btn-background-ghost:active{color:#004cd9;border-color:#004cd9}.ant-btn.ant-btn-background-ghost[disabled]{color:#b5bdc3;background:0 0;border-color:#dbe0e3}.ant-btn-background-ghost.ant-btn-primary{color:#0b68ff;border-color:#0b68ff;text-shadow:none}.ant-btn-background-ghost.ant-btn-primary>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary:focus,.ant-btn-background-ghost.ant-btn-primary:hover{color:#38f;border-color:#38f}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary:active{color:#004cd9;border-color:#004cd9}.ant-btn-background-ghost.ant-btn-primary:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-primary[disabled],.ant-btn-background-ghost.ant-btn-primary[disabled]:active,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger{color:#f52922;border-color:#f52922;text-shadow:none}.ant-btn-background-ghost.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:focus,.ant-btn-background-ghost.ant-btn-danger:hover{color:#ff584d;border-color:#ff584d}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:active{color:#cf1313;border-color:#cf1313}.ant-btn-background-ghost.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous{color:#f52922;border-color:#f52922;text-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous:focus,.ant-btn-background-ghost.ant-btn-dangerous:hover{color:#ff584d;border-color:#ff584d}.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous:active{color:#cf1313;border-color:#cf1313}.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous[disabled],.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link{color:#f52922;border-color:transparent;text-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover{color:#ff584d;border-color:transparent}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active{color:#cf1313;border-color:transparent}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f3f5f6;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-two-chinese-chars::first-letter{letter-spacing:.34em}.ant-btn-two-chinese-chars>:not(.anticon){margin-right:-.34em;letter-spacing:.34em}.ant-btn.ant-btn-block{width:100%}.ant-btn:empty{display:inline-block;width:0;visibility:hidden;content:'\a0'}a.ant-btn{padding-top:.01px!important;line-height:30px}a.ant-btn-disabled{cursor:not-allowed}a.ant-btn-disabled>*{pointer-events:none}a.ant-btn-disabled,a.ant-btn-disabled:active,a.ant-btn-disabled:focus,a.ant-btn-disabled:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}a.ant-btn-disabled:active>a:only-child,a.ant-btn-disabled:focus>a:only-child,a.ant-btn-disabled:hover>a:only-child,a.ant-btn-disabled>a:only-child{color:currentcolor}a.ant-btn-disabled:active>a:only-child::after,a.ant-btn-disabled:focus>a:only-child::after,a.ant-btn-disabled:hover>a:only-child::after,a.ant-btn-disabled>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}a.ant-btn-lg{line-height:46px}a.ant-btn-sm{line-height:26px}.ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl){margin-right:-1px}.ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl{margin-left:-1px}.ant-btn-compact-item:active,.ant-btn-compact-item:focus,.ant-btn-compact-item:hover{z-index:2}.ant-btn-compact-item[disabled]{z-index:0}.ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn{border-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-icon-only.ant-btn-compact-item{flex:none}.ant-btn-compact-item.ant-btn-primary:not([disabled])+.ant-btn-compact-item.ant-btn-primary:not([disabled]){position:relative}.ant-btn-compact-item.ant-btn-primary:not([disabled])+.ant-btn-compact-item.ant-btn-primary:not([disabled])::after{position:absolute;top:-1px;left:-1px;display:inline-block;width:1px;height:calc(100% + 1px * 2);background-color:#238afe;content:' '}.ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item){border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item){border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])+.ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after{right:-1px}.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item){margin-bottom:-1px}.ant-btn-compact-vertical-item:active,.ant-btn-compact-vertical-item:focus,.ant-btn-compact-vertical-item:hover{z-index:2}.ant-btn-compact-vertical-item[disabled]{z-index:0}.ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item){border-radius:0}.ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item){border-bottom-right-radius:0;border-bottom-left-radius:0}.ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item){border-top-left-radius:0;border-top-right-radius:0}.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])+.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]){position:relative}.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])+.ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])::after{position:absolute;top:-1px;left:-1px;display:inline-block;width:calc(100% + 1px * 2);height:1px;background-color:#238afe;content:' '}.ant-btn-rtl{direction:rtl}.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child){border-right-color:#238afe;border-left-color:#dbe0e3}.ant-btn-group-rtl.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled]{border-right-color:#dbe0e3;border-left-color:#238afe}.ant-btn-rtl.ant-btn>.ant-btn-loading-icon .anticon{padding-right:0;padding-left:8px}.ant-btn-rtl.ant-btn>.anticon+span,.ant-btn-rtl.ant-btn>span+.anticon{margin-right:8px;margin-left:0}.ant-btn.ant-btn>span{display:contents}.ant-btn-default{color:#6a7580;border-color:#dbe0e3;background:#f9fafb}.ant-btn-default>a:only-child{color:currentcolor}.ant-btn-default>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default .btn-focus{box-shadow:inset 0 0 0 1px #dbe0e3}.ant-btn-default:hover{box-shadow:none}.ant-btn-default:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:#dbe0e3;background:#fff}.ant-btn-default:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-default:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-default:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-default:focus{color:#6a7580;border-color:#dbe0e3;background:#f9fafb}.ant-btn-default:focus>a:only-child{color:currentcolor}.ant-btn-default:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-default.active,.ant-btn-default:active{color:#6a7580;border-color:#f3f5f6;background:#f3f5f6;border-color:#dbe0e3}.ant-btn-default.active>a:only-child,.ant-btn-default:active>a:only-child{color:currentcolor}.ant-btn-default.active>a:only-child::after,.ant-btn-default:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default .btn-ripple{background-color:#f3f5f6}.ant-btn-default[disabled],.ant-btn-default[disabled]:active,.ant-btn-default[disabled]:focus,.ant-btn-default[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);text-shadow:none;box-shadow:none}.ant-btn-default[disabled]:active>a:only-child,.ant-btn-default[disabled]:focus>a:only-child,.ant-btn-default[disabled]:hover>a:only-child,.ant-btn-default[disabled]>a:only-child{color:currentcolor}.ant-btn-default[disabled]:active>a:only-child::after,.ant-btn-default[disabled]:focus>a:only-child::after,.ant-btn-default[disabled]:hover>a:only-child::after,.ant-btn-default[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default.disabled,.ant-btn-default.disabled.active,.ant-btn-default.disabled:active,.ant-btn-default.disabled:focus,.ant-btn-default.disabled:hover,.ant-btn-default[disabled],.ant-btn-default[disabled].active,.ant-btn-default[disabled]:active,.ant-btn-default[disabled]:focus,.ant-btn-default[disabled]:hover{color:rgba(87,97,109,.4);border-color:#e9edee;background:rgba(249,250,251,.4);box-shadow:none}.ant-btn-default.disabled.active>a:only-child,.ant-btn-default.disabled:active>a:only-child,.ant-btn-default.disabled:focus>a:only-child,.ant-btn-default.disabled:hover>a:only-child,.ant-btn-default.disabled>a:only-child,.ant-btn-default[disabled].active>a:only-child,.ant-btn-default[disabled]:active>a:only-child,.ant-btn-default[disabled]:focus>a:only-child,.ant-btn-default[disabled]:hover>a:only-child,.ant-btn-default[disabled]>a:only-child{color:currentcolor}.ant-btn-default.disabled.active>a:only-child::after,.ant-btn-default.disabled:active>a:only-child::after,.ant-btn-default.disabled:focus>a:only-child::after,.ant-btn-default.disabled:hover>a:only-child::after,.ant-btn-default.disabled>a:only-child::after,.ant-btn-default[disabled].active>a:only-child::after,.ant-btn-default[disabled]:active>a:only-child::after,.ant-btn-default[disabled]:focus>a:only-child::after,.ant-btn-default[disabled]:hover>a:only-child::after,.ant-btn-default[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-default.disabled svg,.ant-btn-default.disabled.active svg,.ant-btn-default.disabled:active svg,.ant-btn-default.disabled:focus svg,.ant-btn-default.disabled:hover svg,.ant-btn-default[disabled] svg,.ant-btn-default[disabled].active svg,.ant-btn-default[disabled]:active svg,.ant-btn-default[disabled]:focus svg,.ant-btn-default[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:12px!important;padding-right:12px!important}.ant-btn-default-sm.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:8px!important;padding-right:8px!important}.ant-btn-default-lg.ant-btn-default:not(.ant-btn-default-circle):not(.ant-btn-default-circle-outline) .ant-btn-default-icon-only{padding-left:16px!important;padding-right:16px!important}.ant-btn-tertiary{color:#57616d;border-color:transparent;background:rgba(181,189,195,.15)}.ant-btn-tertiary>a:only-child{color:currentcolor}.ant-btn-tertiary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary .btn-focus{box-shadow:inset 0 0 0 0 #dbe0e3}.ant-btn-tertiary:hover{box-shadow:none}.ant-btn-tertiary:hover:not(:disabled):not(:focus){color:#57616d;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-tertiary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-tertiary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary:hover:not(:disabled):not(:focus) span{color:#57616d}.ant-btn-tertiary:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-tertiary:focus{color:#57616d;border-color:rgba(181,189,195,.15);background:rgba(181,189,195,.15)}.ant-btn-tertiary:focus>a:only-child{color:currentcolor}.ant-btn-tertiary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-tertiary.active,.ant-btn-tertiary:active{color:#57616d;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-tertiary.active>a:only-child,.ant-btn-tertiary:active>a:only-child{color:currentcolor}.ant-btn-tertiary.active>a:only-child::after,.ant-btn-tertiary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-tertiary[disabled],.ant-btn-tertiary[disabled]:active,.ant-btn-tertiary[disabled]:focus,.ant-btn-tertiary[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:rgba(181,189,195,.15);text-shadow:none;box-shadow:none}.ant-btn-tertiary[disabled]:active>a:only-child,.ant-btn-tertiary[disabled]:focus>a:only-child,.ant-btn-tertiary[disabled]:hover>a:only-child,.ant-btn-tertiary[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary[disabled]:active>a:only-child::after,.ant-btn-tertiary[disabled]:focus>a:only-child::after,.ant-btn-tertiary[disabled]:hover>a:only-child::after,.ant-btn-tertiary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary.disabled,.ant-btn-tertiary.disabled.active,.ant-btn-tertiary.disabled:active,.ant-btn-tertiary.disabled:focus,.ant-btn-tertiary.disabled:hover,.ant-btn-tertiary[disabled],.ant-btn-tertiary[disabled].active,.ant-btn-tertiary[disabled]:active,.ant-btn-tertiary[disabled]:focus,.ant-btn-tertiary[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:rgba(181,189,195,.15);box-shadow:none}.ant-btn-tertiary.disabled.active>a:only-child,.ant-btn-tertiary.disabled:active>a:only-child,.ant-btn-tertiary.disabled:focus>a:only-child,.ant-btn-tertiary.disabled:hover>a:only-child,.ant-btn-tertiary.disabled>a:only-child,.ant-btn-tertiary[disabled].active>a:only-child,.ant-btn-tertiary[disabled]:active>a:only-child,.ant-btn-tertiary[disabled]:focus>a:only-child,.ant-btn-tertiary[disabled]:hover>a:only-child,.ant-btn-tertiary[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary.disabled.active>a:only-child::after,.ant-btn-tertiary.disabled:active>a:only-child::after,.ant-btn-tertiary.disabled:focus>a:only-child::after,.ant-btn-tertiary.disabled:hover>a:only-child::after,.ant-btn-tertiary.disabled>a:only-child::after,.ant-btn-tertiary[disabled].active>a:only-child::after,.ant-btn-tertiary[disabled]:active>a:only-child::after,.ant-btn-tertiary[disabled]:focus>a:only-child::after,.ant-btn-tertiary[disabled]:hover>a:only-child::after,.ant-btn-tertiary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary.disabled svg,.ant-btn-tertiary.disabled.active svg,.ant-btn-tertiary.disabled:active svg,.ant-btn-tertiary.disabled:focus svg,.ant-btn-tertiary.disabled:hover svg,.ant-btn-tertiary[disabled] svg,.ant-btn-tertiary[disabled].active svg,.ant-btn-tertiary[disabled]:active svg,.ant-btn-tertiary[disabled]:focus svg,.ant-btn-tertiary[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-tertiary-white{color:#fff;border-color:transparent;background:rgba(219,224,227,.15)}.ant-btn-tertiary-white>a:only-child{color:currentcolor}.ant-btn-tertiary-white>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white .btn-focus{box-shadow:inset 0 0 0 0 #0b68ff}.ant-btn-tertiary-white:hover{box-shadow:none}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus){color:#fff;border-color:transparent;background:rgba(219,224,227,.25)}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-tertiary-white:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-tertiary-white:focus{color:#fff;border-color:rgba(219,224,227,.15);background:rgba(219,224,227,.15)}.ant-btn-tertiary-white:focus>a:only-child{color:currentcolor}.ant-btn-tertiary-white:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-tertiary-white.active,.ant-btn-tertiary-white:active{color:#fff;border-color:rgba(219,224,227,.1);background:rgba(219,224,227,.1)}.ant-btn-tertiary-white.active>a:only-child,.ant-btn-tertiary-white:active>a:only-child{color:currentcolor}.ant-btn-tertiary-white.active>a:only-child::after,.ant-btn-tertiary-white:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white .btn-ripple{background-color:rgba(219,224,227,.1)}.ant-btn-tertiary-white svg{fill:#fff;color:#fff}.ant-btn-tertiary-white[disabled],.ant-btn-tertiary-white[disabled]:active,.ant-btn-tertiary-white[disabled]:focus,.ant-btn-tertiary-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:rgba(219,224,227,.15);text-shadow:none;box-shadow:none}.ant-btn-tertiary-white[disabled]:active>a:only-child,.ant-btn-tertiary-white[disabled]:focus>a:only-child,.ant-btn-tertiary-white[disabled]:hover>a:only-child,.ant-btn-tertiary-white[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary-white[disabled]:active>a:only-child::after,.ant-btn-tertiary-white[disabled]:focus>a:only-child::after,.ant-btn-tertiary-white[disabled]:hover>a:only-child::after,.ant-btn-tertiary-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white.disabled,.ant-btn-tertiary-white.disabled.active,.ant-btn-tertiary-white.disabled:active,.ant-btn-tertiary-white.disabled:focus,.ant-btn-tertiary-white.disabled:hover,.ant-btn-tertiary-white[disabled],.ant-btn-tertiary-white[disabled].active,.ant-btn-tertiary-white[disabled]:active,.ant-btn-tertiary-white[disabled]:focus,.ant-btn-tertiary-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:rgba(219,224,227,.15);box-shadow:none}.ant-btn-tertiary-white.disabled.active>a:only-child,.ant-btn-tertiary-white.disabled:active>a:only-child,.ant-btn-tertiary-white.disabled:focus>a:only-child,.ant-btn-tertiary-white.disabled:hover>a:only-child,.ant-btn-tertiary-white.disabled>a:only-child,.ant-btn-tertiary-white[disabled].active>a:only-child,.ant-btn-tertiary-white[disabled]:active>a:only-child,.ant-btn-tertiary-white[disabled]:focus>a:only-child,.ant-btn-tertiary-white[disabled]:hover>a:only-child,.ant-btn-tertiary-white[disabled]>a:only-child{color:currentcolor}.ant-btn-tertiary-white.disabled.active>a:only-child::after,.ant-btn-tertiary-white.disabled:active>a:only-child::after,.ant-btn-tertiary-white.disabled:focus>a:only-child::after,.ant-btn-tertiary-white.disabled:hover>a:only-child::after,.ant-btn-tertiary-white.disabled>a:only-child::after,.ant-btn-tertiary-white[disabled].active>a:only-child::after,.ant-btn-tertiary-white[disabled]:active>a:only-child::after,.ant-btn-tertiary-white[disabled]:focus>a:only-child::after,.ant-btn-tertiary-white[disabled]:hover>a:only-child::after,.ant-btn-tertiary-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-tertiary-white.disabled svg,.ant-btn-tertiary-white.disabled.active svg,.ant-btn-tertiary-white.disabled:active svg,.ant-btn-tertiary-white.disabled:focus svg,.ant-btn-tertiary-white.disabled:hover svg,.ant-btn-tertiary-white[disabled] svg,.ant-btn-tertiary-white[disabled].active svg,.ant-btn-tertiary-white[disabled]:active svg,.ant-btn-tertiary-white[disabled]:focus svg,.ant-btn-tertiary-white[disabled]:hover svg{fill:rgba(255,255,255,.4)!important;color:rgba(255,255,255,.4)}.ant-btn-success{color:#fff;border-color:#54cb0b;background:#54cb0b}.ant-btn-success>a:only-child{color:currentcolor}.ant-btn-success>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-success:hover{box-shadow:none}.ant-btn-success:hover:not(:disabled):not(:focus){color:#fff;border-color:#76dc25;background:#76dc25}.ant-btn-success:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-success:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-success:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-success:focus{color:#fff;border-color:#76dc25;background:#54cb0b}.ant-btn-success:focus>a:only-child{color:currentcolor}.ant-btn-success:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-success.active,.ant-btn-success:active{color:#fff;border-color:#399903;background:#399903}.ant-btn-success.active>a:only-child,.ant-btn-success:active>a:only-child{color:currentcolor}.ant-btn-success.active>a:only-child::after,.ant-btn-success:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success .btn-ripple{background-color:#399903}.ant-btn-success svg{fill:#fff;color:#fff}.ant-btn-success[disabled],.ant-btn-success[disabled]:active,.ant-btn-success[disabled]:focus,.ant-btn-success[disabled]:hover{color:#fff;border-color:transparent;background:rgba(84,203,11,.4);text-shadow:none;box-shadow:none}.ant-btn-success[disabled]:active>a:only-child,.ant-btn-success[disabled]:focus>a:only-child,.ant-btn-success[disabled]:hover>a:only-child,.ant-btn-success[disabled]>a:only-child{color:currentcolor}.ant-btn-success[disabled]:active>a:only-child::after,.ant-btn-success[disabled]:focus>a:only-child::after,.ant-btn-success[disabled]:hover>a:only-child::after,.ant-btn-success[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success.disabled,.ant-btn-success.disabled.active,.ant-btn-success.disabled:active,.ant-btn-success.disabled:focus,.ant-btn-success.disabled:hover,.ant-btn-success[disabled],.ant-btn-success[disabled].active,.ant-btn-success[disabled]:active,.ant-btn-success[disabled]:focus,.ant-btn-success[disabled]:hover{color:#fff;border-color:transparent;background:rgba(84,203,11,.4);box-shadow:none}.ant-btn-success.disabled.active>a:only-child,.ant-btn-success.disabled:active>a:only-child,.ant-btn-success.disabled:focus>a:only-child,.ant-btn-success.disabled:hover>a:only-child,.ant-btn-success.disabled>a:only-child,.ant-btn-success[disabled].active>a:only-child,.ant-btn-success[disabled]:active>a:only-child,.ant-btn-success[disabled]:focus>a:only-child,.ant-btn-success[disabled]:hover>a:only-child,.ant-btn-success[disabled]>a:only-child{color:currentcolor}.ant-btn-success.disabled.active>a:only-child::after,.ant-btn-success.disabled:active>a:only-child::after,.ant-btn-success.disabled:focus>a:only-child::after,.ant-btn-success.disabled:hover>a:only-child::after,.ant-btn-success.disabled>a:only-child::after,.ant-btn-success[disabled].active>a:only-child::after,.ant-btn-success[disabled]:active>a:only-child::after,.ant-btn-success[disabled]:focus>a:only-child::after,.ant-btn-success[disabled]:hover>a:only-child::after,.ant-btn-success[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-success.disabled svg,.ant-btn-success.disabled.active svg,.ant-btn-success.disabled:active svg,.ant-btn-success.disabled:focus svg,.ant-btn-success.disabled:hover svg,.ant-btn-success[disabled] svg,.ant-btn-success[disabled].active svg,.ant-btn-success[disabled]:active svg,.ant-btn-success[disabled]:focus svg,.ant-btn-success[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn-success.ant-btn-clicked:after{border-color:#54cb0b}.ant-btn-ghost{color:#6a7580;background:0 0;box-shadow:none;border-color:transparent}.ant-btn-ghost>a:only-child{color:currentcolor}.ant-btn-ghost>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost:hover{box-shadow:none}.ant-btn-ghost:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-ghost:focus{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-ghost:focus>a:only-child{color:currentcolor}.ant-btn-ghost:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost.active,.ant-btn-ghost:active{color:#6a7580;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost.active>a:only-child,.ant-btn-ghost:active>a:only-child{color:currentcolor}.ant-btn-ghost.active>a:only-child::after,.ant-btn-ghost:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost[disabled],.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled,.ant-btn-ghost.disabled.active,.ant-btn-ghost.disabled:active,.ant-btn-ghost.disabled:focus,.ant-btn-ghost.disabled:hover,.ant-btn-ghost[disabled],.ant-btn-ghost[disabled].active,.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost.disabled.active>a:only-child,.ant-btn-ghost.disabled:active>a:only-child,.ant-btn-ghost.disabled:focus>a:only-child,.ant-btn-ghost.disabled:hover>a:only-child,.ant-btn-ghost.disabled>a:only-child,.ant-btn-ghost[disabled].active>a:only-child,.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost.disabled.active>a:only-child::after,.ant-btn-ghost.disabled:active>a:only-child::after,.ant-btn-ghost.disabled:focus>a:only-child::after,.ant-btn-ghost.disabled:hover>a:only-child::after,.ant-btn-ghost.disabled>a:only-child::after,.ant-btn-ghost[disabled].active>a:only-child::after,.ant-btn-ghost[disabled]:active>a:only-child::after,.ant-btn-ghost[disabled]:focus>a:only-child::after,.ant-btn-ghost[disabled]:hover>a:only-child::after,.ant-btn-ghost[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost.disabled svg,.ant-btn-ghost.disabled.active svg,.ant-btn-ghost.disabled:active svg,.ant-btn-ghost.disabled:focus svg,.ant-btn-ghost.disabled:hover svg,.ant-btn-ghost[disabled] svg,.ant-btn-ghost[disabled].active svg,.ant-btn-ghost[disabled]:active svg,.ant-btn-ghost[disabled]:focus svg,.ant-btn-ghost[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn-ghost-white{color:#fff;border-color:transparent;background:0 0}.ant-btn-ghost-white>a:only-child{color:currentcolor}.ant-btn-ghost-white>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost-white:hover{box-shadow:none}.ant-btn-ghost-white:hover:not(:disabled):not(:focus){color:#fff;border-color:transparent;background:rgba(148,158,166,.25)}.ant-btn-ghost-white:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost-white:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-ghost-white:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-ghost-white:focus{color:#fff;border-color:transparent;background:0 0}.ant-btn-ghost-white:focus>a:only-child{color:currentcolor}.ant-btn-ghost-white:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost-white.active,.ant-btn-ghost-white:active{color:#fff;border-color:rgba(148,158,166,.1);background:rgba(148,158,166,.1)}.ant-btn-ghost-white.active>a:only-child,.ant-btn-ghost-white:active>a:only-child{color:currentcolor}.ant-btn-ghost-white.active>a:only-child::after,.ant-btn-ghost-white:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white .btn-ripple{background-color:rgba(148,158,166,.1)}.ant-btn-ghost-white[disabled],.ant-btn-ghost-white[disabled]:active,.ant-btn-ghost-white[disabled]:focus,.ant-btn-ghost-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost-white[disabled]:active>a:only-child,.ant-btn-ghost-white[disabled]:focus>a:only-child,.ant-btn-ghost-white[disabled]:hover>a:only-child,.ant-btn-ghost-white[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-white[disabled]:active>a:only-child::after,.ant-btn-ghost-white[disabled]:focus>a:only-child::after,.ant-btn-ghost-white[disabled]:hover>a:only-child::after,.ant-btn-ghost-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white.disabled,.ant-btn-ghost-white.disabled.active,.ant-btn-ghost-white.disabled:active,.ant-btn-ghost-white.disabled:focus,.ant-btn-ghost-white.disabled:hover,.ant-btn-ghost-white[disabled],.ant-btn-ghost-white[disabled].active,.ant-btn-ghost-white[disabled]:active,.ant-btn-ghost-white[disabled]:focus,.ant-btn-ghost-white[disabled]:hover{color:rgba(255,255,255,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost-white.disabled.active>a:only-child,.ant-btn-ghost-white.disabled:active>a:only-child,.ant-btn-ghost-white.disabled:focus>a:only-child,.ant-btn-ghost-white.disabled:hover>a:only-child,.ant-btn-ghost-white.disabled>a:only-child,.ant-btn-ghost-white[disabled].active>a:only-child,.ant-btn-ghost-white[disabled]:active>a:only-child,.ant-btn-ghost-white[disabled]:focus>a:only-child,.ant-btn-ghost-white[disabled]:hover>a:only-child,.ant-btn-ghost-white[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-white.disabled.active>a:only-child::after,.ant-btn-ghost-white.disabled:active>a:only-child::after,.ant-btn-ghost-white.disabled:focus>a:only-child::after,.ant-btn-ghost-white.disabled:hover>a:only-child::after,.ant-btn-ghost-white.disabled>a:only-child::after,.ant-btn-ghost-white[disabled].active>a:only-child::after,.ant-btn-ghost-white[disabled]:active>a:only-child::after,.ant-btn-ghost-white[disabled]:focus>a:only-child::after,.ant-btn-ghost-white[disabled]:hover>a:only-child::after,.ant-btn-ghost-white[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-white.disabled svg,.ant-btn-ghost-white.disabled.active svg,.ant-btn-ghost-white.disabled:active svg,.ant-btn-ghost-white.disabled:focus svg,.ant-btn-ghost-white.disabled:hover svg,.ant-btn-ghost-white[disabled] svg,.ant-btn-ghost-white[disabled].active svg,.ant-btn-ghost-white[disabled]:active svg,.ant-btn-ghost-white[disabled]:focus svg,.ant-btn-ghost-white[disabled]:hover svg{fill:rgba(255,255,255,.4)!important;color:rgba(255,255,255,.4)}.ant-btn-ghost-white svg{fill:#fff}.ant-btn-ghost-primary{color:#0b68ff;border-color:transparent;background:0 0}.ant-btn-ghost-primary>a:only-child{color:currentcolor}.ant-btn-ghost-primary>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-ghost-primary .btn-spinner svg{fill:#6a7580;color:#6a7580}.ant-btn-ghost-primary:hover{box-shadow:none}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-ghost-primary:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-ghost-primary:focus{color:#0b68ff;border-color:transparent;background:0 0}.ant-btn-ghost-primary:focus>a:only-child{color:currentcolor}.ant-btn-ghost-primary:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-ghost-primary.active,.ant-btn-ghost-primary:active{color:#0b68ff;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-ghost-primary.active>a:only-child,.ant-btn-ghost-primary:active>a:only-child{color:currentcolor}.ant-btn-ghost-primary.active>a:only-child::after,.ant-btn-ghost-primary:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-ghost-primary[disabled],.ant-btn-ghost-primary[disabled]:active,.ant-btn-ghost-primary[disabled]:focus,.ant-btn-ghost-primary[disabled]:hover{color:rgba(11,104,255,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-ghost-primary[disabled]:active>a:only-child,.ant-btn-ghost-primary[disabled]:focus>a:only-child,.ant-btn-ghost-primary[disabled]:hover>a:only-child,.ant-btn-ghost-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-primary[disabled]:active>a:only-child::after,.ant-btn-ghost-primary[disabled]:focus>a:only-child::after,.ant-btn-ghost-primary[disabled]:hover>a:only-child::after,.ant-btn-ghost-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary.disabled,.ant-btn-ghost-primary.disabled.active,.ant-btn-ghost-primary.disabled:active,.ant-btn-ghost-primary.disabled:focus,.ant-btn-ghost-primary.disabled:hover,.ant-btn-ghost-primary[disabled],.ant-btn-ghost-primary[disabled].active,.ant-btn-ghost-primary[disabled]:active,.ant-btn-ghost-primary[disabled]:focus,.ant-btn-ghost-primary[disabled]:hover{color:rgba(11,104,255,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-ghost-primary.disabled.active>a:only-child,.ant-btn-ghost-primary.disabled:active>a:only-child,.ant-btn-ghost-primary.disabled:focus>a:only-child,.ant-btn-ghost-primary.disabled:hover>a:only-child,.ant-btn-ghost-primary.disabled>a:only-child,.ant-btn-ghost-primary[disabled].active>a:only-child,.ant-btn-ghost-primary[disabled]:active>a:only-child,.ant-btn-ghost-primary[disabled]:focus>a:only-child,.ant-btn-ghost-primary[disabled]:hover>a:only-child,.ant-btn-ghost-primary[disabled]>a:only-child{color:currentcolor}.ant-btn-ghost-primary.disabled.active>a:only-child::after,.ant-btn-ghost-primary.disabled:active>a:only-child::after,.ant-btn-ghost-primary.disabled:focus>a:only-child::after,.ant-btn-ghost-primary.disabled:hover>a:only-child::after,.ant-btn-ghost-primary.disabled>a:only-child::after,.ant-btn-ghost-primary[disabled].active>a:only-child::after,.ant-btn-ghost-primary[disabled]:active>a:only-child::after,.ant-btn-ghost-primary[disabled]:focus>a:only-child::after,.ant-btn-ghost-primary[disabled]:hover>a:only-child::after,.ant-btn-ghost-primary[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-ghost-primary.disabled svg,.ant-btn-ghost-primary.disabled.active svg,.ant-btn-ghost-primary.disabled:active svg,.ant-btn-ghost-primary.disabled:focus svg,.ant-btn-ghost-primary.disabled:hover svg,.ant-btn-ghost-primary[disabled] svg,.ant-btn-ghost-primary[disabled].active svg,.ant-btn-ghost-primary[disabled]:active svg,.ant-btn-ghost-primary[disabled]:focus svg,.ant-btn-ghost-primary[disabled]:hover svg{fill:rgba(11,104,255,.4)!important;color:rgba(11,104,255,.4)}.ant-btn-ghost-primary svg{fill:#0b68ff;color:#0b68ff}.ant-btn-warning{color:#fff;border-color:#fab700;background:#fab700}.ant-btn-warning>a:only-child{color:currentcolor}.ant-btn-warning>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-warning:hover{box-shadow:none}.ant-btn-warning:hover:not(:disabled):not(:focus){color:#fff;border-color:#ffc300;background:#ffc300}.ant-btn-warning:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-warning:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning:hover:not(:disabled):not(:focus) span{color:#fff}.ant-btn-warning:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-warning:focus{color:#fff;border-color:#ffc300;background:#fab700}.ant-btn-warning:focus>a:only-child{color:currentcolor}.ant-btn-warning:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-warning.active,.ant-btn-warning:active{color:#fff;border-color:#eda600;background:#eda600}.ant-btn-warning.active>a:only-child,.ant-btn-warning:active>a:only-child{color:currentcolor}.ant-btn-warning.active>a:only-child::after,.ant-btn-warning:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning .btn-ripple{background-color:#eda600}.ant-btn-warning svg{fill:#fff;color:#fff}.ant-btn-warning[disabled],.ant-btn-warning[disabled]:active,.ant-btn-warning[disabled]:focus,.ant-btn-warning[disabled]:hover{color:#fff;border-color:transparent;background:rgba(250,183,0,.4);text-shadow:none;box-shadow:none}.ant-btn-warning[disabled]:active>a:only-child,.ant-btn-warning[disabled]:focus>a:only-child,.ant-btn-warning[disabled]:hover>a:only-child,.ant-btn-warning[disabled]>a:only-child{color:currentcolor}.ant-btn-warning[disabled]:active>a:only-child::after,.ant-btn-warning[disabled]:focus>a:only-child::after,.ant-btn-warning[disabled]:hover>a:only-child::after,.ant-btn-warning[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning.disabled,.ant-btn-warning.disabled.active,.ant-btn-warning.disabled:active,.ant-btn-warning.disabled:focus,.ant-btn-warning.disabled:hover,.ant-btn-warning[disabled],.ant-btn-warning[disabled].active,.ant-btn-warning[disabled]:active,.ant-btn-warning[disabled]:focus,.ant-btn-warning[disabled]:hover{color:#fff;border-color:transparent;background:rgba(250,183,0,.4);box-shadow:none}.ant-btn-warning.disabled.active>a:only-child,.ant-btn-warning.disabled:active>a:only-child,.ant-btn-warning.disabled:focus>a:only-child,.ant-btn-warning.disabled:hover>a:only-child,.ant-btn-warning.disabled>a:only-child,.ant-btn-warning[disabled].active>a:only-child,.ant-btn-warning[disabled]:active>a:only-child,.ant-btn-warning[disabled]:focus>a:only-child,.ant-btn-warning[disabled]:hover>a:only-child,.ant-btn-warning[disabled]>a:only-child{color:currentcolor}.ant-btn-warning.disabled.active>a:only-child::after,.ant-btn-warning.disabled:active>a:only-child::after,.ant-btn-warning.disabled:focus>a:only-child::after,.ant-btn-warning.disabled:hover>a:only-child::after,.ant-btn-warning.disabled>a:only-child::after,.ant-btn-warning[disabled].active>a:only-child::after,.ant-btn-warning[disabled]:active>a:only-child::after,.ant-btn-warning[disabled]:focus>a:only-child::after,.ant-btn-warning[disabled]:hover>a:only-child::after,.ant-btn-warning[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-warning.disabled svg,.ant-btn-warning.disabled.active svg,.ant-btn-warning.disabled:active svg,.ant-btn-warning.disabled:focus svg,.ant-btn-warning.disabled:hover svg,.ant-btn-warning[disabled] svg,.ant-btn-warning[disabled].active svg,.ant-btn-warning[disabled]:active svg,.ant-btn-warning[disabled]:focus svg,.ant-btn-warning[disabled]:hover svg{fill:#fff!important;color:#fff}.ant-btn:not(.ant-btn-circle){border-radius:3px}.ant-btn-gray{color:#fff;border-color:#949ea6;background:#949ea6}.ant-btn-gray>a:only-child{color:currentcolor}.ant-btn-gray>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray:focus,.ant-btn-gray:hover{color:#fff;border-color:#b5bdc3;background:#b5bdc3;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-btn-gray:focus>a:only-child,.ant-btn-gray:hover>a:only-child{color:currentcolor}.ant-btn-gray:focus>a:only-child::after,.ant-btn-gray:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.active,.ant-btn-gray:active{color:#fff;border-color:#949ea6;background:#949ea6}.ant-btn-gray.active>a:only-child,.ant-btn-gray:active>a:only-child{color:currentcolor}.ant-btn-gray.active>a:only-child::after,.ant-btn-gray:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray .btn-ripple{background-color:#949ea6}.ant-btn-gray[disabled],.ant-btn-gray[disabled]:active,.ant-btn-gray[disabled]:focus,.ant-btn-gray[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f9fafb;text-shadow:none;box-shadow:none}.ant-btn-gray[disabled]:active>a:only-child,.ant-btn-gray[disabled]:focus>a:only-child,.ant-btn-gray[disabled]:hover>a:only-child,.ant-btn-gray[disabled]>a:only-child{color:currentcolor}.ant-btn-gray[disabled]:active>a:only-child::after,.ant-btn-gray[disabled]:focus>a:only-child::after,.ant-btn-gray[disabled]:hover>a:only-child::after,.ant-btn-gray[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.disabled,.ant-btn-gray.disabled.active,.ant-btn-gray.disabled:active,.ant-btn-gray.disabled:focus,.ant-btn-gray.disabled:hover,.ant-btn-gray[disabled],.ant-btn-gray[disabled].active,.ant-btn-gray[disabled]:active,.ant-btn-gray[disabled]:focus,.ant-btn-gray[disabled]:hover{color:#b5bdc3;border-color:#dbe0e3;background:#f9fafb;box-shadow:none}.ant-btn-gray.disabled.active>a:only-child,.ant-btn-gray.disabled:active>a:only-child,.ant-btn-gray.disabled:focus>a:only-child,.ant-btn-gray.disabled:hover>a:only-child,.ant-btn-gray.disabled>a:only-child,.ant-btn-gray[disabled].active>a:only-child,.ant-btn-gray[disabled]:active>a:only-child,.ant-btn-gray[disabled]:focus>a:only-child,.ant-btn-gray[disabled]:hover>a:only-child,.ant-btn-gray[disabled]>a:only-child{color:currentcolor}.ant-btn-gray.disabled.active>a:only-child::after,.ant-btn-gray.disabled:active>a:only-child::after,.ant-btn-gray.disabled:focus>a:only-child::after,.ant-btn-gray.disabled:hover>a:only-child::after,.ant-btn-gray.disabled>a:only-child::after,.ant-btn-gray[disabled].active>a:only-child::after,.ant-btn-gray[disabled]:active>a:only-child::after,.ant-btn-gray[disabled]:focus>a:only-child::after,.ant-btn-gray[disabled]:hover>a:only-child::after,.ant-btn-gray[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-gray.disabled svg,.ant-btn-gray.disabled.active svg,.ant-btn-gray.disabled:active svg,.ant-btn-gray.disabled:focus svg,.ant-btn-gray.disabled:hover svg,.ant-btn-gray[disabled] svg,.ant-btn-gray[disabled].active svg,.ant-btn-gray[disabled]:active svg,.ant-btn-gray[disabled]:focus svg,.ant-btn-gray[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-flat{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-flat>a:only-child{color:currentcolor}.ant-btn-flat>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-flat:hover{box-shadow:none}.ant-btn-flat:hover:not(:disabled):not(:focus){color:#232936;border-color:transparent;background:0 0}.ant-btn-flat:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-flat:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat:hover:not(:disabled):not(:focus) span{color:#232936}.ant-btn-flat:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-flat:hover:not([disabled]){text-decoration:underline}.ant-btn-flat:focus{color:#232936;border-color:transparent;background:0 0}.ant-btn-flat:focus>a:only-child{color:currentcolor}.ant-btn-flat:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat:focus .btn-focus{box-shadow:inset 0 0 0 2px #0044d9}.ant-btn-flat.active,.ant-btn-flat:active{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-flat.active>a:only-child,.ant-btn-flat:active>a:only-child{color:currentcolor}.ant-btn-flat.active>a:only-child::after,.ant-btn-flat:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat .btn-ripple{background-color:transparent}.ant-btn-flat[disabled],.ant-btn-flat[disabled]:active,.ant-btn-flat[disabled]:focus,.ant-btn-flat[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-flat[disabled]:active>a:only-child,.ant-btn-flat[disabled]:focus>a:only-child,.ant-btn-flat[disabled]:hover>a:only-child,.ant-btn-flat[disabled]>a:only-child{color:currentcolor}.ant-btn-flat[disabled]:active>a:only-child::after,.ant-btn-flat[disabled]:focus>a:only-child::after,.ant-btn-flat[disabled]:hover>a:only-child::after,.ant-btn-flat[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat.disabled,.ant-btn-flat.disabled.active,.ant-btn-flat.disabled:active,.ant-btn-flat.disabled:focus,.ant-btn-flat.disabled:hover,.ant-btn-flat[disabled],.ant-btn-flat[disabled].active,.ant-btn-flat[disabled]:active,.ant-btn-flat[disabled]:focus,.ant-btn-flat[disabled]:hover{color:#b5bdc3;border-color:transparent;background:0 0;box-shadow:none}.ant-btn-flat.disabled.active>a:only-child,.ant-btn-flat.disabled:active>a:only-child,.ant-btn-flat.disabled:focus>a:only-child,.ant-btn-flat.disabled:hover>a:only-child,.ant-btn-flat.disabled>a:only-child,.ant-btn-flat[disabled].active>a:only-child,.ant-btn-flat[disabled]:active>a:only-child,.ant-btn-flat[disabled]:focus>a:only-child,.ant-btn-flat[disabled]:hover>a:only-child,.ant-btn-flat[disabled]>a:only-child{color:currentcolor}.ant-btn-flat.disabled.active>a:only-child::after,.ant-btn-flat.disabled:active>a:only-child::after,.ant-btn-flat.disabled:focus>a:only-child::after,.ant-btn-flat.disabled:hover>a:only-child::after,.ant-btn-flat.disabled>a:only-child::after,.ant-btn-flat[disabled].active>a:only-child::after,.ant-btn-flat[disabled]:active>a:only-child::after,.ant-btn-flat[disabled]:focus>a:only-child::after,.ant-btn-flat[disabled]:hover>a:only-child::after,.ant-btn-flat[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-flat.disabled svg,.ant-btn-flat.disabled.active svg,.ant-btn-flat.disabled:active svg,.ant-btn-flat.disabled:focus svg,.ant-btn-flat.disabled:hover svg,.ant-btn-flat[disabled] svg,.ant-btn-flat[disabled].active svg,.ant-btn-flat[disabled]:active svg,.ant-btn-flat[disabled]:focus svg,.ant-btn-flat[disabled]:hover svg{fill:#b5bdc3!important;color:#b5bdc3}.ant-btn-flat.ant-btn-clicked:after{border-color:#6a7580}.ant-btn-primary-on-blue{color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary-on-blue>a:only-child{color:currentcolor}.ant-btn-primary-on-blue>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue:focus,.ant-btn-primary-on-blue:hover{color:#fff;border-color:#4da7fe;background:#4da7fe;box-shadow:none}.ant-btn-primary-on-blue:focus>a:only-child,.ant-btn-primary-on-blue:hover>a:only-child{color:currentcolor}.ant-btn-primary-on-blue:focus>a:only-child::after,.ant-btn-primary-on-blue:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.active,.ant-btn-primary-on-blue:active{color:#fff;border-color:#238afe;background:#238afe}.ant-btn-primary-on-blue.active>a:only-child,.ant-btn-primary-on-blue:active>a:only-child{color:currentcolor}.ant-btn-primary-on-blue.active>a:only-child::after,.ant-btn-primary-on-blue:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue .btn-ripple{background-color:#238afe}.ant-btn-primary-on-blue[disabled],.ant-btn-primary-on-blue[disabled]:active,.ant-btn-primary-on-blue[disabled]:focus,.ant-btn-primary-on-blue[disabled]:hover{color:#8bcaff;border-color:#238afe;background:#238afe;text-shadow:none;box-shadow:none}.ant-btn-primary-on-blue[disabled]:active>a:only-child,.ant-btn-primary-on-blue[disabled]:focus>a:only-child,.ant-btn-primary-on-blue[disabled]:hover>a:only-child,.ant-btn-primary-on-blue[disabled]>a:only-child{color:currentcolor}.ant-btn-primary-on-blue[disabled]:active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:focus>a:only-child::after,.ant-btn-primary-on-blue[disabled]:hover>a:only-child::after,.ant-btn-primary-on-blue[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.disabled,.ant-btn-primary-on-blue.disabled.active,.ant-btn-primary-on-blue.disabled:active,.ant-btn-primary-on-blue.disabled:focus,.ant-btn-primary-on-blue.disabled:hover,.ant-btn-primary-on-blue[disabled],.ant-btn-primary-on-blue[disabled].active,.ant-btn-primary-on-blue[disabled]:active,.ant-btn-primary-on-blue[disabled]:focus,.ant-btn-primary-on-blue[disabled]:hover{color:#8bcaff;border-color:#238afe;background:#238afe;box-shadow:none}.ant-btn-primary-on-blue.disabled.active>a:only-child,.ant-btn-primary-on-blue.disabled:active>a:only-child,.ant-btn-primary-on-blue.disabled:focus>a:only-child,.ant-btn-primary-on-blue.disabled:hover>a:only-child,.ant-btn-primary-on-blue.disabled>a:only-child,.ant-btn-primary-on-blue[disabled].active>a:only-child,.ant-btn-primary-on-blue[disabled]:active>a:only-child,.ant-btn-primary-on-blue[disabled]:focus>a:only-child,.ant-btn-primary-on-blue[disabled]:hover>a:only-child,.ant-btn-primary-on-blue[disabled]>a:only-child{color:currentcolor}.ant-btn-primary-on-blue.disabled.active>a:only-child::after,.ant-btn-primary-on-blue.disabled:active>a:only-child::after,.ant-btn-primary-on-blue.disabled:focus>a:only-child::after,.ant-btn-primary-on-blue.disabled:hover>a:only-child::after,.ant-btn-primary-on-blue.disabled>a:only-child::after,.ant-btn-primary-on-blue[disabled].active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:active>a:only-child::after,.ant-btn-primary-on-blue[disabled]:focus>a:only-child::after,.ant-btn-primary-on-blue[disabled]:hover>a:only-child::after,.ant-btn-primary-on-blue[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-primary-on-blue.disabled svg,.ant-btn-primary-on-blue.disabled.active svg,.ant-btn-primary-on-blue.disabled:active svg,.ant-btn-primary-on-blue.disabled:focus svg,.ant-btn-primary-on-blue.disabled:hover svg,.ant-btn-primary-on-blue[disabled] svg,.ant-btn-primary-on-blue[disabled].active svg,.ant-btn-primary-on-blue[disabled]:active svg,.ant-btn-primary-on-blue[disabled]:focus svg,.ant-btn-primary-on-blue[disabled]:hover svg{fill:#8bcaff!important;color:#8bcaff}.ant-btn-primary-on-blue.ant-btn-clicked:after{border-color:#fff}.ant-btn-dark{color:#b5bdc3;border-color:#57616d;background:#57616d}.ant-btn-dark>a:only-child{color:currentcolor}.ant-btn-dark>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark:focus,.ant-btn-dark:hover{color:#b5bdc3;border-color:#6a7580;background:#6a7580;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-btn-dark:focus>a:only-child,.ant-btn-dark:hover>a:only-child{color:currentcolor}.ant-btn-dark:focus>a:only-child::after,.ant-btn-dark:hover>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.active,.ant-btn-dark:active{color:#b5bdc3;border-color:#57616d;background:#57616d}.ant-btn-dark.active>a:only-child,.ant-btn-dark:active>a:only-child{color:currentcolor}.ant-btn-dark.active>a:only-child::after,.ant-btn-dark:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark .btn-ripple{background-color:#57616d}.ant-btn-dark[disabled],.ant-btn-dark[disabled]:active,.ant-btn-dark[disabled]:focus,.ant-btn-dark[disabled]:hover{color:#949ea6;border-color:#232936;background:#232936;text-shadow:none;box-shadow:none}.ant-btn-dark[disabled]:active>a:only-child,.ant-btn-dark[disabled]:focus>a:only-child,.ant-btn-dark[disabled]:hover>a:only-child,.ant-btn-dark[disabled]>a:only-child{color:currentcolor}.ant-btn-dark[disabled]:active>a:only-child::after,.ant-btn-dark[disabled]:focus>a:only-child::after,.ant-btn-dark[disabled]:hover>a:only-child::after,.ant-btn-dark[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.disabled,.ant-btn-dark.disabled.active,.ant-btn-dark.disabled:active,.ant-btn-dark.disabled:focus,.ant-btn-dark.disabled:hover,.ant-btn-dark[disabled],.ant-btn-dark[disabled].active,.ant-btn-dark[disabled]:active,.ant-btn-dark[disabled]:focus,.ant-btn-dark[disabled]:hover{color:#949ea6;border-color:#232936;background:#232936;box-shadow:none}.ant-btn-dark.disabled.active>a:only-child,.ant-btn-dark.disabled:active>a:only-child,.ant-btn-dark.disabled:focus>a:only-child,.ant-btn-dark.disabled:hover>a:only-child,.ant-btn-dark.disabled>a:only-child,.ant-btn-dark[disabled].active>a:only-child,.ant-btn-dark[disabled]:active>a:only-child,.ant-btn-dark[disabled]:focus>a:only-child,.ant-btn-dark[disabled]:hover>a:only-child,.ant-btn-dark[disabled]>a:only-child{color:currentcolor}.ant-btn-dark.disabled.active>a:only-child::after,.ant-btn-dark.disabled:active>a:only-child::after,.ant-btn-dark.disabled:focus>a:only-child::after,.ant-btn-dark.disabled:hover>a:only-child::after,.ant-btn-dark.disabled>a:only-child::after,.ant-btn-dark[disabled].active>a:only-child::after,.ant-btn-dark[disabled]:active>a:only-child::after,.ant-btn-dark[disabled]:focus>a:only-child::after,.ant-btn-dark[disabled]:hover>a:only-child::after,.ant-btn-dark[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-dark.disabled svg,.ant-btn-dark.disabled.active svg,.ant-btn-dark.disabled:active svg,.ant-btn-dark.disabled:focus svg,.ant-btn-dark.disabled:hover svg,.ant-btn-dark[disabled] svg,.ant-btn-dark[disabled].active svg,.ant-btn-dark[disabled]:active svg,.ant-btn-dark[disabled]:focus svg,.ant-btn-dark[disabled]:hover svg{fill:#949ea6!important;color:#949ea6}.ant-btn-dark.ant-btn-clicked:after{border-color:#b5bdc3}.ant-btn-group{display:flex}@media (max-width:480px){.ant-btn-group{flex-flow:column}}.ant-btn-group>.ant-btn{border-radius:0;width:100%}.ant-btn-group>.ant-btn:hover:not(.ant-btn-primary):not(.ant-btn-secondary):not(.ant-btn-custom-color):not(.ant-btn-tertiary-white):not(.ant-btn-ghost-white):not(.ant-btn-ghost-primary):not(.ant-btn-disabled):not(.ant-btn-success):not(.ant-btn-warning){border-color:#dbe0e3;color:#384350}.ant-btn-group>.ant-btn[disabled]{border-color:#dbe0e3!important}.ant-btn-lg{font-size:14px}.ant-btn-group-lg>.ant-btn{font-size:14px}.ant-btn-sm{padding:0 12px;font-size:13px}.ant-btn-background-ghost:after{animation:none;animation-fill-mode:none}.ant-btn-background-ghost.ant-btn-danger{color:#6a7580;background:0 0;box-shadow:none;border-color:transparent;background-color:#fff6f4!important}.ant-btn-background-ghost.ant-btn-danger>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger .btn-focus{box-shadow:inset 0 0 0 0 transparent}.ant-btn-background-ghost.ant-btn-danger:hover{box-shadow:none}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus){color:#0b68ff;border-color:transparent;background:rgba(181,189,195,.25)}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus)>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus) span{color:#0b68ff}.ant-btn-background-ghost.ant-btn-danger:hover:not(:disabled):not(:focus) svg{fill:currentColor}.ant-btn-background-ghost.ant-btn-danger:focus{color:#6a7580;border-color:transparent;background:0 0}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger:focus .btn-focus{box-shadow:inset 0 0 0 2px #0b68ff}.ant-btn-background-ghost.ant-btn-danger.active,.ant-btn-background-ghost.ant-btn-danger:active{color:#6a7580;border-color:rgba(181,189,195,.35);background:rgba(181,189,195,.35)}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger .btn-ripple{background-color:rgba(181,189,195,.35)}.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger.disabled,.ant-btn-background-ghost.ant-btn-danger.disabled.active,.ant-btn-background-ghost.ant-btn-danger.disabled:active,.ant-btn-background-ghost.ant-btn-danger.disabled:focus,.ant-btn-background-ghost.ant-btn-danger.disabled:hover,.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled].active,.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:rgba(87,97,109,.4);border-color:transparent;background:0 0;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentcolor}.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child::after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child::after{position:absolute;top:0;right:0;bottom:0;left:0;background:0 0;content:''}.ant-btn-background-ghost.ant-btn-danger.disabled svg,.ant-btn-background-ghost.ant-btn-danger.disabled.active svg,.ant-btn-background-ghost.ant-btn-danger.disabled:active svg,.ant-btn-background-ghost.ant-btn-danger.disabled:focus svg,.ant-btn-background-ghost.ant-btn-danger.disabled:hover svg,.ant-btn-background-ghost.ant-btn-danger[disabled] svg,.ant-btn-background-ghost.ant-btn-danger[disabled].active svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:active svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus svg,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover svg{fill:rgba(87,97,109,.4)!important;color:rgba(87,97,109,.4)}.ant-btn.ant-btn{text-shadow:none;box-shadow:none;border:0}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-button",
3
- "version": "1.1.5",
3
+ "version": "1.2.0",
4
4
  "description": "Button UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -34,9 +34,9 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-icon": "^1.4.1",
38
- "@synerise/ds-tag": "^1.1.5",
39
- "@synerise/ds-utils": "^1.0.1",
37
+ "@synerise/ds-icon": "^1.4.2",
38
+ "@synerise/ds-tag": "^1.1.6",
39
+ "@synerise/ds-utils": "^1.1.0",
40
40
  "classnames": "2.3.2",
41
41
  "csstype": "^2.6.9"
42
42
  },
@@ -46,5 +46,5 @@
46
46
  "react": ">=16.9.0 <= 18.3.1",
47
47
  "styled-components": "^5.3.3"
48
48
  },
49
- "gitHead": "fc601270d3c84a5a52b62473a01f1b3c1c7014a7"
49
+ "gitHead": "90af7549cf0f556340bdd0deec4bb59bacf3e95e"
50
50
  }