@synerise/ds-popconfirm 1.0.31 → 1.1.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 +6 -0
- package/dist/Popconfirm.const.d.ts +2 -0
- package/dist/Popconfirm.const.js +3 -0
- package/dist/Popconfirm.d.ts +0 -2
- package/dist/Popconfirm.js +96 -60
- package/dist/Popconfirm.styles.d.ts +3 -0
- package/dist/Popconfirm.styles.js +33 -15
- package/dist/Popconfirm.types.d.ts +23 -6
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/utils/getTransitionConfig.d.ts +4 -0
- package/dist/utils/getTransitionConfig.js +15 -0
- package/package.json +7 -2
- package/dist/style/index.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.1.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@1.0.31...@synerise/ds-popconfirm@1.1.0) (2025-12-19)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **popconfirm:** migrate to popover ([f14f74e](https://github.com/Synerise/synerise-design/commit/f14f74e1f9879ddd8264dc2614723a298b656d2f))
|
|
11
|
+
|
|
6
12
|
## [1.0.31](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popconfirm@1.0.30...@synerise/ds-popconfirm@1.0.31) (2025-12-15)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @synerise/ds-popconfirm
|
package/dist/Popconfirm.d.ts
CHANGED
package/dist/Popconfirm.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
var _excluded = ["icon", "title", "description", "images", "imagesAutoplay", "imagesAutoplaySpeed", "withLink", "closeIcon", "titlePadding", "onCancel", "cancelButtonProps", "onConfirm", "okButtonProps", "okType", "hideButtons", "cancelText", "okText", "buttonsAlign", "disabled", "staticVisible"];
|
|
1
|
+
var _excluded = ["icon", "title", "description", "images", "imagesAutoplay", "imagesAutoplaySpeed", "withLink", "closeIcon", "titlePadding", "onCancel", "cancelButtonProps", "onConfirm", "okButtonProps", "okType", "hideButtons", "cancelText", "okText", "buttonsAlign", "disabled", "staticVisible", "children", "open", "onOpenChange", "trigger", "asChild", "placement", "overlayClassName", "overlayStyle", "zIndex"];
|
|
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 { Carousel } from 'antd';
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import '@synerise/ds-
|
|
8
|
-
import { useOnClickOutside } from '@synerise/ds-utils';
|
|
5
|
+
import React, { useEffect, useMemo, useState } from 'react';
|
|
6
|
+
import { useTheme } from '@synerise/ds-core';
|
|
7
|
+
import { Popover, PopoverArrow, PopoverContent, PopoverTrigger, getPlacement } from '@synerise/ds-popover';
|
|
9
8
|
import ConfirmMessage from './ConfirmMessage/ConfirmMessage';
|
|
9
|
+
import { POPOVER_OFFSET_CONFIG } from './Popconfirm.const';
|
|
10
10
|
import * as S from './Popconfirm.styles';
|
|
11
|
-
import
|
|
11
|
+
import { getTransitionConfig } from './utils/getTransitionConfig';
|
|
12
12
|
var Popconfirm = function Popconfirm(_ref) {
|
|
13
13
|
var icon = _ref.icon,
|
|
14
14
|
title = _ref.title,
|
|
@@ -32,7 +32,20 @@ var Popconfirm = function Popconfirm(_ref) {
|
|
|
32
32
|
buttonsAlign = _ref.buttonsAlign,
|
|
33
33
|
disabled = _ref.disabled,
|
|
34
34
|
staticVisible = _ref.staticVisible,
|
|
35
|
-
|
|
35
|
+
children = _ref.children,
|
|
36
|
+
open = _ref.open,
|
|
37
|
+
onOpenChange = _ref.onOpenChange,
|
|
38
|
+
_ref$trigger = _ref.trigger,
|
|
39
|
+
trigger = _ref$trigger === void 0 ? 'click' : _ref$trigger,
|
|
40
|
+
_ref$asChild = _ref.asChild,
|
|
41
|
+
asChild = _ref$asChild === void 0 ? true : _ref$asChild,
|
|
42
|
+
_ref$placement = _ref.placement,
|
|
43
|
+
placement = _ref$placement === void 0 ? 'top' : _ref$placement,
|
|
44
|
+
overlayClassName = _ref.overlayClassName,
|
|
45
|
+
overlayStyle = _ref.overlayStyle,
|
|
46
|
+
zIndex = _ref.zIndex,
|
|
47
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
48
|
+
var theme = useTheme();
|
|
36
49
|
var renderImageCarousel = useMemo(function () {
|
|
37
50
|
return (images == null ? void 0 : images.length) && /*#__PURE__*/React.createElement(Carousel, {
|
|
38
51
|
autoplay: imagesAutoplay,
|
|
@@ -45,63 +58,86 @@ var Popconfirm = function Popconfirm(_ref) {
|
|
|
45
58
|
});
|
|
46
59
|
}));
|
|
47
60
|
}, [images, imagesAutoplay, imagesAutoplaySpeed]);
|
|
48
|
-
var popupRef = useRef(null);
|
|
49
61
|
var _useState = useState(undefined),
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
if (staticVisible && visible === undefined) {
|
|
54
|
-
return setVisible(true);
|
|
55
|
-
}
|
|
56
|
-
if (staticVisible && visible === true) {
|
|
57
|
-
return setVisible(true);
|
|
58
|
-
}
|
|
59
|
-
return setVisible(false);
|
|
60
|
-
});
|
|
62
|
+
isOpen = _useState[0],
|
|
63
|
+
setIsOpen = _useState[1];
|
|
64
|
+
var floatingPlacement = getPlacement(placement);
|
|
61
65
|
useEffect(function () {
|
|
62
|
-
if (!
|
|
63
|
-
|
|
66
|
+
if (!isOpen && open) {
|
|
67
|
+
setIsOpen(open);
|
|
64
68
|
}
|
|
65
|
-
}, [
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
}, [isOpen, open]);
|
|
70
|
+
var isTriggeredByClick = Array.isArray(trigger) ? trigger.includes('click') : trigger === 'click';
|
|
71
|
+
var handleOpenChange = function handleOpenChange(newState) {
|
|
72
|
+
setIsOpen(newState);
|
|
73
|
+
onOpenChange == null || onOpenChange(newState);
|
|
74
|
+
};
|
|
75
|
+
var handleTriggerClick = function handleTriggerClick() {
|
|
76
|
+
isTriggeredByClick && setIsOpen(!isOpen);
|
|
77
|
+
};
|
|
78
|
+
return disabled ? /*#__PURE__*/React.createElement(React.Fragment, null, children) : /*#__PURE__*/React.createElement(Popover, _extends({
|
|
79
|
+
placement: floatingPlacement,
|
|
80
|
+
trigger: trigger,
|
|
81
|
+
modal: false,
|
|
82
|
+
open: isOpen,
|
|
83
|
+
onOpenChange: handleOpenChange,
|
|
84
|
+
autoUpdate: true,
|
|
85
|
+
dismissConfig: {
|
|
86
|
+
enabled: !staticVisible
|
|
87
|
+
},
|
|
88
|
+
arrowConfig: {
|
|
89
|
+
padding: 20
|
|
76
90
|
},
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
}
|
|
104
|
-
}))
|
|
91
|
+
zIndex: zIndex != null ? zIndex : parseInt(theme.variables['zindex-popconfirm']),
|
|
92
|
+
offsetConfig: POPOVER_OFFSET_CONFIG,
|
|
93
|
+
getTransitionConfig: getTransitionConfig,
|
|
94
|
+
testId: "popconfirm"
|
|
95
|
+
}, rest), /*#__PURE__*/React.createElement(PopoverTrigger, {
|
|
96
|
+
asChild: asChild,
|
|
97
|
+
onClick: handleTriggerClick
|
|
98
|
+
}, children), /*#__PURE__*/React.createElement(PopoverContent, null, /*#__PURE__*/React.createElement(S.PopconfirmContainer, {
|
|
99
|
+
className: overlayClassName,
|
|
100
|
+
style: overlayStyle
|
|
101
|
+
}, /*#__PURE__*/React.createElement(S.PopconfirmContent, {
|
|
102
|
+
buttonsAlign: buttonsAlign
|
|
103
|
+
}, /*#__PURE__*/React.createElement(S.PopconfirmWrapper, null, /*#__PURE__*/React.createElement(S.PopconfirmContentWrapper, null, /*#__PURE__*/React.createElement(S.PopconfirmHeaderWrapper, null, icon && /*#__PURE__*/React.createElement(S.PopconfirmIcon, null, icon), /*#__PURE__*/React.createElement(S.PopconfirmTitle, null, /*#__PURE__*/React.createElement(React.Fragment, null, title))), /*#__PURE__*/React.createElement(S.PopconfirmTextWrapper, null, description && /*#__PURE__*/React.createElement(S.PopconfirmDescription, {
|
|
104
|
+
titlePadding: !titlePadding
|
|
105
|
+
}, description), withLink && /*#__PURE__*/React.createElement(S.LinkWrapper, null, withLink))), closeIcon && /*#__PURE__*/React.createElement(S.PopconfirmCloseIcon, {
|
|
106
|
+
onClick: function onClick() {
|
|
107
|
+
return setIsOpen(false);
|
|
108
|
+
},
|
|
109
|
+
titlePadding: titlePadding
|
|
110
|
+
}, closeIcon)), renderImageCarousel, !hideButtons && /*#__PURE__*/React.createElement(S.PopconfirmButtonWrapper, null, /*#__PURE__*/React.createElement(S.PopconfirmButton, _extends({
|
|
111
|
+
type: "secondary"
|
|
112
|
+
}, cancelButtonProps, {
|
|
113
|
+
onClick: function onClick(event) {
|
|
114
|
+
onCancel && onCancel(event);
|
|
115
|
+
setIsOpen(false);
|
|
116
|
+
(cancelButtonProps == null ? void 0 : cancelButtonProps.onClick) && cancelButtonProps.onClick(event);
|
|
117
|
+
}
|
|
118
|
+
}), cancelText), /*#__PURE__*/React.createElement(S.PopconfirmButton, _extends({
|
|
119
|
+
type: okType
|
|
120
|
+
}, okButtonProps, {
|
|
121
|
+
onClick: function onClick(event) {
|
|
122
|
+
onConfirm && onConfirm(event);
|
|
123
|
+
setIsOpen(false);
|
|
124
|
+
(okButtonProps == null ? void 0 : okButtonProps.onClick) && okButtonProps.onClick(event);
|
|
125
|
+
}
|
|
126
|
+
}), okText)))), /*#__PURE__*/React.createElement(PopoverArrow, null, /*#__PURE__*/React.createElement(S.PopconfirmArrowWrapper, null, /*#__PURE__*/React.createElement(S.PopconfirmArrow, {
|
|
127
|
+
width: "15",
|
|
128
|
+
height: "7",
|
|
129
|
+
viewBox: "0 0 15 7",
|
|
130
|
+
fill: "none",
|
|
131
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
132
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
133
|
+
d: "M7.49919 7L2.15928e-05 5.96025e-07L15 1.90737e-06L7.49919 7Z",
|
|
134
|
+
fill: "currentColor"
|
|
135
|
+
}))))));
|
|
105
136
|
};
|
|
137
|
+
/**
|
|
138
|
+
* @deprecated - use named import instead
|
|
139
|
+
*
|
|
140
|
+
* import { ConfirmMessage } from @synerise/ds-popconfirm
|
|
141
|
+
*/
|
|
106
142
|
Popconfirm.ConfirmMessage = ConfirmMessage;
|
|
107
143
|
export default Popconfirm;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type StyledComponent } from 'styled-components';
|
|
2
2
|
import { type ButtonProps } from '@synerise/ds-button';
|
|
3
|
+
export declare const PopconfirmContainer: StyledComponent<"div", any, {}, never>;
|
|
3
4
|
export declare const PopconfirmContent: StyledComponent<"div", any, {
|
|
4
5
|
buttonsAlign?: "left" | "right";
|
|
5
6
|
}, never>;
|
|
@@ -15,6 +16,8 @@ export declare const PopconfirmCloseIcon: StyledComponent<"div", any, {
|
|
|
15
16
|
titlePadding?: boolean;
|
|
16
17
|
}, never>;
|
|
17
18
|
export declare const PopconfirmWrapper: StyledComponent<"div", any, {}, never>;
|
|
19
|
+
export declare const PopconfirmArrow: StyledComponent<"svg", any, {}, never>;
|
|
20
|
+
export declare const PopconfirmArrowWrapper: StyledComponent<"div", any, {}, never>;
|
|
18
21
|
export declare const PopconfirmContentWrapper: StyledComponent<"div", any, {}, never>;
|
|
19
22
|
export declare const PopconfirmHeaderWrapper: StyledComponent<"div", any, {
|
|
20
23
|
titlePadding?: boolean;
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import styled from 'styled-components';
|
|
2
2
|
import Button from '@synerise/ds-button';
|
|
3
|
+
export var PopconfirmContainer = styled.div.withConfig({
|
|
4
|
+
displayName: "Popconfirmstyles__PopconfirmContainer",
|
|
5
|
+
componentId: "sc-19dzptq-0"
|
|
6
|
+
})(["box-shadow:", ";max-width:288px;padding:16px;position:relative;z-index:1;border-radius:3px;background-color:", ";"], function (props) {
|
|
7
|
+
return props.theme.variables['box-shadow-2'];
|
|
8
|
+
}, function (props) {
|
|
9
|
+
return props.theme.palette.white;
|
|
10
|
+
});
|
|
3
11
|
export var PopconfirmContent = styled.div.withConfig({
|
|
4
12
|
displayName: "Popconfirmstyles__PopconfirmContent",
|
|
5
|
-
componentId: "sc-19dzptq-
|
|
13
|
+
componentId: "sc-19dzptq-1"
|
|
6
14
|
})(["display:flex;flex-direction:column;align-items:", ";justify-content:flex-start;margin:0px;.ant-carousel{position:relative;width:100%;margin-top:24px;.slick-track{width:100%;}.slick-dots-bottom{position:relative;bottom:0;display:flex;flex-direction:row;align-items:center;justify-content:center;padding:24px 0 0;margin:0;li{width:8px;height:8px;border-radius:50%;margin:0 8px 0 0;display:flex;align-items:center;justify-content:center;button{box-sizing:content-box;background-color:", ";border:2px solid ", ";height:4px;width:4px;border-radius:50%;opacity:1;}}li.slick-active{button{border:2px solid ", ";background-color:", ";}}}}"], function (_ref) {
|
|
7
15
|
var buttonsAlign = _ref.buttonsAlign;
|
|
8
16
|
return buttonsAlign === 'left' ? 'flex-start' : 'flex-end';
|
|
@@ -17,25 +25,25 @@ export var PopconfirmContent = styled.div.withConfig({
|
|
|
17
25
|
});
|
|
18
26
|
export var PopconfirmTitle = styled.div.withConfig({
|
|
19
27
|
displayName: "Popconfirmstyles__PopconfirmTitle",
|
|
20
|
-
componentId: "sc-19dzptq-
|
|
28
|
+
componentId: "sc-19dzptq-2"
|
|
21
29
|
})(["font-size:14px;line-height:1.43;color:", ";font-weight:500;padding-top:2px;text-overflow:ellipsis;overflow:hidden;"], function (props) {
|
|
22
30
|
return props.theme.palette['grey-800'];
|
|
23
31
|
});
|
|
24
32
|
export var PopconfirmButton = styled(Button).withConfig({
|
|
25
33
|
displayName: "Popconfirmstyles__PopconfirmButton",
|
|
26
|
-
componentId: "sc-19dzptq-
|
|
34
|
+
componentId: "sc-19dzptq-3"
|
|
27
35
|
})(["&&{height:32px;}"]);
|
|
28
36
|
export var PopconfirmButtonWrapper = styled.div.withConfig({
|
|
29
37
|
displayName: "Popconfirmstyles__PopconfirmButtonWrapper",
|
|
30
|
-
componentId: "sc-19dzptq-
|
|
38
|
+
componentId: "sc-19dzptq-4"
|
|
31
39
|
})(["display:flex;padding-top:16px;align-items:center;justify-content:flex-start;", ":not(:first-of-type){margin-left:8px;}"], PopconfirmButton);
|
|
32
40
|
export var ButtonWrapper = styled.div.withConfig({
|
|
33
41
|
displayName: "Popconfirmstyles__ButtonWrapper",
|
|
34
|
-
componentId: "sc-19dzptq-
|
|
42
|
+
componentId: "sc-19dzptq-5"
|
|
35
43
|
})(["margin-left:8px;"]);
|
|
36
44
|
export var PopconfirmDescription = styled.div.withConfig({
|
|
37
45
|
displayName: "Popconfirmstyles__PopconfirmDescription",
|
|
38
|
-
componentId: "sc-19dzptq-
|
|
46
|
+
componentId: "sc-19dzptq-6"
|
|
39
47
|
})(["font-size:13px;line-height:1.38;font-weight:400;margin-top:", ";color:", ";"], function (props) {
|
|
40
48
|
return props.titlePadding ? '6px' : 'none';
|
|
41
49
|
}, function (props) {
|
|
@@ -43,39 +51,49 @@ export var PopconfirmDescription = styled.div.withConfig({
|
|
|
43
51
|
});
|
|
44
52
|
export var PopconfirmIcon = styled.div.withConfig({
|
|
45
53
|
displayName: "Popconfirmstyles__PopconfirmIcon",
|
|
46
|
-
componentId: "sc-19dzptq-
|
|
54
|
+
componentId: "sc-19dzptq-7"
|
|
47
55
|
})(["margin-right:8px;"]);
|
|
48
56
|
export var PopconfirmCloseIcon = styled.div.withConfig({
|
|
49
57
|
displayName: "Popconfirmstyles__PopconfirmCloseIcon",
|
|
50
|
-
componentId: "sc-19dzptq-
|
|
51
|
-
})(["margin-left:", ";
|
|
58
|
+
componentId: "sc-19dzptq-8"
|
|
59
|
+
})(["margin-left:", ";color:", ";cursor:pointer;border-radius:3px;"], function (props) {
|
|
52
60
|
return props.titlePadding ? '8px' : '6px';
|
|
53
61
|
}, function (props) {
|
|
54
62
|
return props.theme.palette['grey-600'];
|
|
55
63
|
});
|
|
56
64
|
export var PopconfirmWrapper = styled.div.withConfig({
|
|
57
65
|
displayName: "Popconfirmstyles__PopconfirmWrapper",
|
|
58
|
-
componentId: "sc-19dzptq-
|
|
66
|
+
componentId: "sc-19dzptq-9"
|
|
59
67
|
})(["display:flex;flex-direction:row;width:100%;justify-content:space-between;"]);
|
|
68
|
+
export var PopconfirmArrow = styled.svg.withConfig({
|
|
69
|
+
displayName: "Popconfirmstyles__PopconfirmArrow",
|
|
70
|
+
componentId: "sc-19dzptq-10"
|
|
71
|
+
})(["position:absolute;transform:translate(-50%,0);"]);
|
|
72
|
+
export var PopconfirmArrowWrapper = styled.div.withConfig({
|
|
73
|
+
displayName: "Popconfirmstyles__PopconfirmArrowWrapper",
|
|
74
|
+
componentId: "sc-19dzptq-11"
|
|
75
|
+
})(["width:0;height:0;position:absolute;z-index:2;color:", ";&.ds-popover-arrow-bottom,&.ds-popover-arrow-bottom-end,&.ds-popover-arrow-bottom-start{top:0;transform:rotate(180deg);}&.ds-popover-arrow-top,&.ds-popover-arrow-top-end,&.ds-popover-arrow-top-start{bottom:0;}&.ds-popover-arrow-left,&.ds-popover-arrow-left-end,&.ds-popover-arrow-left-start{right:0;transform:rotate(-90deg);}&.ds-popover-arrow-right,&.ds-popover-arrow-right-end,&.ds-popover-arrow-right-start{left:0;transform:rotate(90deg);}"], function (props) {
|
|
76
|
+
return props.theme.palette['white'];
|
|
77
|
+
});
|
|
60
78
|
export var PopconfirmContentWrapper = styled.div.withConfig({
|
|
61
79
|
displayName: "Popconfirmstyles__PopconfirmContentWrapper",
|
|
62
|
-
componentId: "sc-19dzptq-
|
|
80
|
+
componentId: "sc-19dzptq-12"
|
|
63
81
|
})(["display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;"]);
|
|
64
82
|
export var PopconfirmHeaderWrapper = styled.div.withConfig({
|
|
65
83
|
displayName: "Popconfirmstyles__PopconfirmHeaderWrapper",
|
|
66
|
-
componentId: "sc-19dzptq-
|
|
84
|
+
componentId: "sc-19dzptq-13"
|
|
67
85
|
})(["display:flex;flex-direction:row;justify-content:flex-start;"]);
|
|
68
86
|
export var PopconfirmTextWrapper = styled.div.withConfig({
|
|
69
87
|
displayName: "Popconfirmstyles__PopconfirmTextWrapper",
|
|
70
|
-
componentId: "sc-19dzptq-
|
|
88
|
+
componentId: "sc-19dzptq-14"
|
|
71
89
|
})(["display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;"]);
|
|
72
90
|
export var PopconfirmImage = styled.img.withConfig({
|
|
73
91
|
displayName: "Popconfirmstyles__PopconfirmImage",
|
|
74
|
-
componentId: "sc-19dzptq-
|
|
92
|
+
componentId: "sc-19dzptq-15"
|
|
75
93
|
})(["display:flex;width:100%;height:auto;border-radius:8px;& > *{max-width:100%;}"]);
|
|
76
94
|
export var LinkWrapper = styled.span.withConfig({
|
|
77
95
|
displayName: "Popconfirmstyles__LinkWrapper",
|
|
78
|
-
componentId: "sc-19dzptq-
|
|
96
|
+
componentId: "sc-19dzptq-16"
|
|
79
97
|
})(["font-size:13px;line-height:1.5;font-weight:400;color:", ";text-decoration:underline;cursor:pointer;max-width:200px;text-overflow:ellipsis;overflow:hidden;"], function (props) {
|
|
80
98
|
return props.theme.palette['grey-700'];
|
|
81
99
|
});
|
|
@@ -1,22 +1,39 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { type
|
|
1
|
+
import { type CSSProperties, type MouseEvent, type ReactNode } from 'react';
|
|
2
|
+
import { type ButtonProps } from '@synerise/ds-button';
|
|
3
|
+
import { type LegacyPopconfirmPlacement, type PopoverOptions } from '@synerise/ds-popover';
|
|
3
4
|
import { type ConfirmMessageProps } from './ConfirmMessage/ConfirmMessage.types';
|
|
4
5
|
export type PopconfirmTexts = Pick<PopconfirmProps, 'okText' | 'description' | 'title' | 'cancelText'>;
|
|
5
|
-
export type PopconfirmProps =
|
|
6
|
+
export type PopconfirmProps = {
|
|
6
7
|
description?: ReactNode;
|
|
8
|
+
title?: ReactNode;
|
|
9
|
+
overlayStyle?: CSSProperties;
|
|
10
|
+
overlayClassName?: string;
|
|
11
|
+
onConfirm?: (event?: MouseEvent<HTMLElement>) => void;
|
|
12
|
+
onCancel?: (event?: MouseEvent<HTMLElement>) => void;
|
|
13
|
+
cancelButtonProps?: ButtonProps;
|
|
14
|
+
cancelText?: ReactNode;
|
|
15
|
+
okButtonProps?: ButtonProps;
|
|
16
|
+
okText?: ReactNode;
|
|
17
|
+
okType?: ButtonProps['type'];
|
|
7
18
|
images?: string[];
|
|
8
19
|
imagesAutoplay?: boolean;
|
|
9
20
|
imagesAutoplaySpeed?: number;
|
|
10
|
-
onClick?: (event: ReactMouseEvent<HTMLElement, MouseEvent>) => void;
|
|
11
21
|
withLink?: ReactNode;
|
|
12
22
|
closeIcon?: ReactNode;
|
|
13
23
|
titlePadding?: boolean;
|
|
14
24
|
hideButtons?: ReactNode;
|
|
15
25
|
buttonsAlign?: 'left' | 'right';
|
|
16
|
-
|
|
26
|
+
disabled?: boolean;
|
|
17
27
|
children?: ReactNode;
|
|
18
28
|
staticVisible?: boolean;
|
|
19
|
-
|
|
29
|
+
asChild?: boolean;
|
|
30
|
+
placement?: LegacyPopconfirmPlacement;
|
|
31
|
+
/**
|
|
32
|
+
* defaults to theme.variables['zindex-popconfirm'],
|
|
33
|
+
*/
|
|
34
|
+
zIndex?: number;
|
|
35
|
+
icon?: ReactNode;
|
|
36
|
+
} & Partial<Pick<PopoverOptions, 'open' | 'onOpenChange' | 'trigger' | 'getPopupContainer' | 'offsetConfig' | 'flipConfig' | 'shiftConfig'>>;
|
|
20
37
|
export type PopconfirmType = {
|
|
21
38
|
(props: PopconfirmProps): JSX.Element;
|
|
22
39
|
ConfirmMessage: (props: ConfirmMessageProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { default } from './Popconfirm';
|
|
2
|
+
export { default as ConfirmMessage } from './ConfirmMessage/ConfirmMessage';
|
|
2
3
|
export type { PopconfirmProps, PopconfirmTexts } from './Popconfirm.types';
|
|
3
4
|
export type { ConfirmMessageProps } from './ConfirmMessage/ConfirmMessage.types';
|
package/dist/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { default } from './Popconfirm';
|
|
1
|
+
export { default } from './Popconfirm';
|
|
2
|
+
export { default as ConfirmMessage } from './ConfirmMessage/ConfirmMessage';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export var getTransitionConfig = function getTransitionConfig(_ref) {
|
|
2
|
+
var placement = _ref.placement;
|
|
3
|
+
var isTop = placement.indexOf('top');
|
|
4
|
+
return {
|
|
5
|
+
open: {
|
|
6
|
+
transform: 'scaleY(1)'
|
|
7
|
+
},
|
|
8
|
+
initial: {
|
|
9
|
+
transform: 'scaleY(0)'
|
|
10
|
+
},
|
|
11
|
+
common: {
|
|
12
|
+
transformOrigin: isTop ? 'top' : 'bottom'
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-popconfirm",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Popconfirm UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -37,13 +37,18 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@synerise/ds-button": "^1.5.2",
|
|
39
39
|
"@synerise/ds-icon": "^1.9.1",
|
|
40
|
+
"@synerise/ds-popover": "^1.2.0",
|
|
40
41
|
"@synerise/ds-utils": "^1.5.1"
|
|
41
42
|
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@floating-ui/react": "^0.27.16",
|
|
45
|
+
"@testing-library/user-event": "^14"
|
|
46
|
+
},
|
|
42
47
|
"peerDependencies": {
|
|
43
48
|
"@synerise/ds-core": "*",
|
|
44
49
|
"antd": "4.24.16",
|
|
45
50
|
"react": ">=16.9.0 <= 18.3.1",
|
|
46
51
|
"styled-components": "^5.3.3"
|
|
47
52
|
},
|
|
48
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "c638fc7e1af8aea55d466a643329fe499b2b3383"
|
|
49
54
|
}
|
package/dist/style/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.ant-popover{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:absolute;top:0;left:0;z-index:991030;max-width:100vw;font-weight:400;white-space:normal;text-align:left;cursor:auto;user-select:text}.ant-popover-content{position:relative}.ant-popover::after{position:absolute;background:rgba(255,255,255,.01);content:''}.ant-popover-hidden{display:none}.ant-popover-placement-top,.ant-popover-placement-topLeft,.ant-popover-placement-topRight{padding-bottom:9px}.ant-popover-placement-right,.ant-popover-placement-rightBottom,.ant-popover-placement-rightTop{padding-left:9px}.ant-popover-placement-bottom,.ant-popover-placement-bottomLeft,.ant-popover-placement-bottomRight{padding-top:9px}.ant-popover-placement-left,.ant-popover-placement-leftBottom,.ant-popover-placement-leftTop{padding-right:9px}.ant-popover-inner{background-color:#fff;background-clip:padding-box;border-radius:3px;box-shadow:0 2px 6px rgba(171,178,183,.12)}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.ant-popover-inner{box-shadow:0 2px 6px rgba(171,178,183,.12)}}.ant-popover-title{min-width:177px;min-height:32px;margin:0;padding:5px 16px 4px;color:#384350;font-weight:500;border-bottom:1px solid #e9edee}.ant-popover-inner-content{width:max-content;max-width:100%;padding:12px 16px;color:#6a7580}.ant-popover-message{display:flex;padding:4px 0 12px;color:#6a7580;font-size:13px}.ant-popover-message-icon{display:inline-block;margin-right:8px;color:#fab700;font-size:13px}.ant-popover-buttons{margin-bottom:4px;text-align:right}.ant-popover-buttons button:not(:first-child){margin-left:8px}.ant-popover-arrow{position:absolute;display:block;width:13.07106781px;height:13.07106781px;overflow:hidden;background:0 0;pointer-events:none}.ant-popover-arrow-content{--antd-arrow-background-color:#fff;position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:5px;height:5px;margin:auto;content:'';pointer-events:auto;border-radius:0 0 2px;pointer-events:none}.ant-popover-arrow-content::before{position:absolute;top:-5px;left:-5px;width:15px;height:15px;background:var(--antd-arrow-background-color);background-repeat:no-repeat;background-position:-4px -4px;content:'';clip-path:inset(33% 33%);clip-path:path('M 3.5355339059327373 11.464466094067262 A 5 5 0 0 1 7.071067811865475 10 L 8 10 A 2 2 0 0 0 10 8 L 10 7.071067811865475 A 5 5 0 0 1 11.464466094067262 3.5355339059327373 L 10.464466094067262 3.5355339059327373 L 3.5355339059327373 10.464466094067262 Z')}.ant-popover-arrow-content::before{position:absolute;top:-5px;left:-5px;width:15px;height:15px;background:var(--antd-arrow-background-color);background-repeat:no-repeat;background-position:-4px -4px;content:'';clip-path:inset(33% 33%);clip-path:path('M 3.5355339059327373 11.464466094067262 A 5 5 0 0 1 7.071067811865475 10 L 8 10 A 2 2 0 0 0 10 8 L 10 7.071067811865475 A 5 5 0 0 1 11.464466094067262 3.5355339059327373 L 10.464466094067262 3.5355339059327373 L 3.5355339059327373 10.464466094067262 Z')}.ant-popover-placement-top .ant-popover-arrow,.ant-popover-placement-topLeft .ant-popover-arrow,.ant-popover-placement-topRight .ant-popover-arrow{bottom:0;transform:translateY(100%)}.ant-popover-placement-top .ant-popover-arrow-content,.ant-popover-placement-topLeft .ant-popover-arrow-content,.ant-popover-placement-topRight .ant-popover-arrow-content{box-shadow:3px 3px 7px rgba(0,0,0,.07);transform:translateY(-6.53553391px) rotate(45deg)}.ant-popover-placement-top .ant-popover-arrow{left:50%;transform:translateY(100%) translateX(-50%)}.ant-popover-placement-topLeft .ant-popover-arrow{left:16px}.ant-popover-placement-topRight .ant-popover-arrow{right:16px}.ant-popover-placement-right .ant-popover-arrow,.ant-popover-placement-rightBottom .ant-popover-arrow,.ant-popover-placement-rightTop .ant-popover-arrow{left:0;transform:translateX(-100%)}.ant-popover-placement-right .ant-popover-arrow-content,.ant-popover-placement-rightBottom .ant-popover-arrow-content,.ant-popover-placement-rightTop .ant-popover-arrow-content{box-shadow:3px 3px 7px rgba(0,0,0,.07);transform:translateX(6.53553391px) rotate(135deg)}.ant-popover-placement-right .ant-popover-arrow{top:50%;transform:translateX(-100%) translateY(-50%)}.ant-popover-placement-rightTop .ant-popover-arrow{top:12px}.ant-popover-placement-rightBottom .ant-popover-arrow{bottom:12px}.ant-popover-placement-bottom .ant-popover-arrow,.ant-popover-placement-bottomLeft .ant-popover-arrow,.ant-popover-placement-bottomRight .ant-popover-arrow{top:0;transform:translateY(-100%)}.ant-popover-placement-bottom .ant-popover-arrow-content,.ant-popover-placement-bottomLeft .ant-popover-arrow-content,.ant-popover-placement-bottomRight .ant-popover-arrow-content{box-shadow:2px 2px 5px rgba(0,0,0,.06);transform:translateY(6.53553391px) rotate(-135deg)}.ant-popover-placement-bottom .ant-popover-arrow{left:50%;transform:translateY(-100%) translateX(-50%)}.ant-popover-placement-bottomLeft .ant-popover-arrow{left:16px}.ant-popover-placement-bottomRight .ant-popover-arrow{right:16px}.ant-popover-placement-left .ant-popover-arrow,.ant-popover-placement-leftBottom .ant-popover-arrow,.ant-popover-placement-leftTop .ant-popover-arrow{right:0;transform:translateX(100%)}.ant-popover-placement-left .ant-popover-arrow-content,.ant-popover-placement-leftBottom .ant-popover-arrow-content,.ant-popover-placement-leftTop .ant-popover-arrow-content{box-shadow:3px 3px 7px rgba(0,0,0,.07);transform:translateX(-6.53553391px) rotate(-45deg)}.ant-popover-placement-left .ant-popover-arrow{top:50%;transform:translateX(100%) translateY(-50%)}.ant-popover-placement-leftTop .ant-popover-arrow{top:12px}.ant-popover-placement-leftBottom .ant-popover-arrow{bottom:12px}.ant-popover-pink .ant-popover-inner{background-color:#eb2f96}.ant-popover-pink .ant-popover-arrow-content{background-color:#eb2f96}.ant-popover-magenta .ant-popover-inner{background-color:#eb2f96}.ant-popover-magenta .ant-popover-arrow-content{background-color:#eb2f96}.ant-popover-red .ant-popover-inner{background-color:#f5222d}.ant-popover-red .ant-popover-arrow-content{background-color:#f5222d}.ant-popover-volcano .ant-popover-inner{background-color:#fa541c}.ant-popover-volcano .ant-popover-arrow-content{background-color:#fa541c}.ant-popover-orange .ant-popover-inner{background-color:#fa8c16}.ant-popover-orange .ant-popover-arrow-content{background-color:#fa8c16}.ant-popover-yellow .ant-popover-inner{background-color:#fadb14}.ant-popover-yellow .ant-popover-arrow-content{background-color:#fadb14}.ant-popover-gold .ant-popover-inner{background-color:#faad14}.ant-popover-gold .ant-popover-arrow-content{background-color:#faad14}.ant-popover-cyan .ant-popover-inner{background-color:#13c2c2}.ant-popover-cyan .ant-popover-arrow-content{background-color:#13c2c2}.ant-popover-lime .ant-popover-inner{background-color:#a0d911}.ant-popover-lime .ant-popover-arrow-content{background-color:#a0d911}.ant-popover-green .ant-popover-inner{background-color:#52c41a}.ant-popover-green .ant-popover-arrow-content{background-color:#52c41a}.ant-popover-blue .ant-popover-inner{background-color:#1890ff}.ant-popover-blue .ant-popover-arrow-content{background-color:#1890ff}.ant-popover-geekblue .ant-popover-inner{background-color:#2f54eb}.ant-popover-geekblue .ant-popover-arrow-content{background-color:#2f54eb}.ant-popover-purple .ant-popover-inner{background-color:#722ed1}.ant-popover-purple .ant-popover-arrow-content{background-color:#722ed1}.ant-popover-rtl{direction:rtl;text-align:right}.ant-popover-rtl .ant-popover-message-icon{margin-right:0;margin-left:8px}.ant-popover-rtl .ant-popover-message-title{padding-left:16px}.ant-popover-rtl .ant-popover-buttons{text-align:left}.ant-popover-rtl .ant-popover-buttons button{margin-right:8px;margin-left:0}.ant-popconfirm{z-index:991055}.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,0.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,0.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-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-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-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-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-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-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: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: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-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: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,0.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,0.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,0.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,0.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,0.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,0.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[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,0.4)!important;color:rgba(87,97,109,.4)}.ant-btn.ant-btn{text-shadow:none;box-shadow:none;border:0}.ant-popover.ant-popconfirm{z-index:991055}.ant-popover.ant-popover{max-width:288px;font-weight:500;transform:none!important}.ant-popover .ant-popover-inner{border-radius:3px;box-shadow:0 16px 32px 0 rgba(35,41,54,.1)}.ant-popover .ant-popover-content{margin:0!important}.ant-popover .ant-popover-inner-content{padding:16px}.ant-popover .ant-popover-inner-content .ant-popover-message{display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-start;padding:0}.ant-popover .ant-popover-inner-content .ant-popover-message .ant-popover-message-icon,.ant-popover .ant-popover-inner-content .ant-popover-message .anticon{display:none}.ant-popover .ant-popover-inner-content .ant-popover-message-title{padding-left:0;font-size:14px;line-height:1.43;color:#384350;max-width:100%}.ant-popover .ant-popover-inner-content .ant-popover-buttons{display:none}.ant-popover-arrow.ant-popover-arrow.ant-popover-arrow{display:flex!important}
|