diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..7aded3e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,27 @@ +--- +name: Bug report +about: 报告问题,帮助我们做的更好 +title: '' +labels: need confirm +assignees: '' + +--- + +#### 描述问题: +请用一段清晰简洁的文字描述问题是什么... + +#### 截图或视频: +可以的话,尽可能提供截图或视频来补充描述你的问题... + +#### 如何复现(请务必完整填写下面内容): + +1. 你是如何使用 amis 的? +`sdk`、`npm` 或`其他`... + +2. 粘贴有问题的完整 `amis schema` 代码: +``` +code here... +``` + +3. 操作步骤 +请简单描述一下复现的操作步骤... diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..de5c02ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: 为我们提出一个新的想法 +title: '' +labels: enhancement +assignees: '' + +--- + +#### 是否关联于某个问题吗: +请用一段简单清晰的文字描述你的想法是关联于某个问题,例如:因为我没办法实现xxx... + +#### 预期的解决方案: +请简单描述你想达到的效果... + +#### 其他可接受方案: +请简单描述其他你可以接受的效果... + +#### 任何附加信息: +请添加任何可以补充说明上述问题的材料,例如图片或视频等... diff --git a/.github/ISSUE_TEMPLATE/usage-question.md b/.github/ISSUE_TEMPLATE/usage-question.md new file mode 100644 index 00000000..a02925f1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/usage-question.md @@ -0,0 +1,21 @@ +--- +name: Usage question +about: amis 使用方法问题 +title: '' +labels: document +assignees: '' + +--- + +#### 实现场景: +请简单描述你想要实现的原始场景,例如:我想要实现xxx的功能... + +#### 存在的问题: +请简单描述你现在遇到的不符合预期的问题... + +#### 当前方案: +请粘贴你当前方案的完整 amis schema 代码... + +``` +code here... +``` diff --git a/docs/components/form/editor.md b/docs/components/form/editor.md index 4084ef90..84fd968e 100755 --- a/docs/components/form/editor.md +++ b/docs/components/form/editor.md @@ -1,12 +1,13 @@ --- title: Editor 编辑器 -description: +description: type: 0 group: null menuName: Editor -icon: +icon: order: 19 --- + ## 基本用法 ```schema:height="400" scope="body" @@ -64,11 +65,8 @@ order: 19 除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置 -| 属性名 | 类型 | 默认值 | 说明 | -| -------- | -------- | ------------ | ---------------- | -| language | `string` | `javascript` | 编辑器高亮的语言 | - - - - - +| 属性名 | 类型 | 默认值 | 说明 | +| -------- | -------- | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | +| language | `string` | `javascript` | 编辑器高亮的语言 | +| size | `string` | `md` | 编辑器高度,取值可以是 `md`、`lg`、`xl`、`xxl` | +| options | `object` | | monaco 编辑器的其它配置,比如是否显示行号等,请参考[这里](https://microsoft.github.io/monaco-editor/api/enums/monaco.editor.editoroption.html)。 | diff --git a/docs/components/form/options.md b/docs/components/form/options.md index af3465eb..8ac9536e 100755 --- a/docs/components/form/options.md +++ b/docs/components/form/options.md @@ -1274,12 +1274,12 @@ order: 2 除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置 -| 属性名 | 类型 | 默认值 | 说明 | -|--------------|-----------------------------------|-----------|---------------------------------------------------------------------| -| options | `Array`或`Array` | | 选项组,供用户选择 | -| source | `string`或 [API](../../types/api) | | 选项组源,可通过数据映射获取当前数据域变量、或者配置 API 对象 | -| multiple | `boolean` | `false` | 是否支持多选 | -| labelField | `boolean` | `"label"` | 标识选项中哪个字段是`label`值 | -| valueField | `boolean` | `"value"` | 标识选项中哪个字段是`value`值 | -| joinValues | `boolean` | `true` | 是否拼接`value`值 | -| extractValue | `boolean` | `false` | 是否将`value`值抽取出来组成新的数组,只有在`joinValues`是`false`是生效 | +| 属性名 | 类型 | 默认值 | 说明 | +| ------------ | ----------------------------------------------------------------- | --------- | ---------------------------------------------------------------------- | +| options | `Array`或`Array` | | 选项组,供用户选择 | +| source | [API](../../types/api) 或 [数据映射](../../concepts/data-mapping) | | 选项组源,可通过数据映射获取当前数据域变量、或者配置 API 对象 | +| multiple | `boolean` | `false` | 是否支持多选 | +| labelField | `boolean` | `"label"` | 标识选项中哪个字段是`label`值 | +| valueField | `boolean` | `"value"` | 标识选项中哪个字段是`value`值 | +| joinValues | `boolean` | `true` | 是否拼接`value`值 | +| extractValue | `boolean` | `false` | 是否将`value`值抽取出来组成新的数组,只有在`joinValues`是`false`是生效 | diff --git a/docs/components/form/select.md b/docs/components/form/select.md index b5490a85..3ba583be 100755 --- a/docs/components/form/select.md +++ b/docs/components/form/select.md @@ -48,28 +48,28 @@ order: 48 除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置 -| 属性名 | 类型 | 默认值 | 说明 | -|-----------------|-----------------------------------|--------------|-------------------------------------------------------------------------------------------------------------------| -| options | `Array`或`Array` | | [选项组](./options#%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options) | -| source | `string`或 [API](../../types/api) | | [动态选项组](./options#%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source) | -| autoComplete | [API](../../types/api) | | [自动提示补全](./options#%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete) | -| delimeter | `string` | `false` | [拼接符](./options#%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter) | -| labelField | `string` | `"label"` | [选项标签字段](./options#%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield) | -| valueField | `string` | `"value"` | [选项值字段](./options#%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield) | -| joinValues | `boolean` | `true` | [拼接值](./options#%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues) | -| extractValue | `boolean` | `false` | [提取值](./options#%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue) | -| checkAll | `boolean` | `false` | 是否支持全选 | -| checkAllLabel | `string` | `全选` | 全选的文字 | -| defaultCheckAll | `boolean` | `false` | 默认是否全选 | -| creatable | `boolean` | `false` | [新增选项](./options#%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable) | -| multiple | `boolean` | `false` | [多选](./options#多选-multiple) | -| searchable | `boolean` | `false` | [检索](./options#检索-searchable) | -| createBtnLabel | `string` | `"新增选项"` | [新增选项](./options#%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9) | -| addControls | Array<[表单项](./formitem)> | | [自定义新增表单项](./options#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols) | -| addApi | [API](../types/api) | | [配置新增选项接口](./options#%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi) | -| editable | `boolean` | `false` | [编辑选项](./options#%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable) | -| editControls | Array<[表单项](./formitem)> | | [自定义编辑表单项](./options#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols) | -| editApi | [API](../types/api) | | [配置编辑选项接口](./options#%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi) | -| removable | `boolean` | `false` | [删除选项](./options#%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9) | -| deleteApi | [API](../types/api) | | [配置删除选项接口](./options#%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi) | -| autoFill | `object` | | [自动填充](./options#%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill) | +| 属性名 | 类型 | 默认值 | 说明 | +| --------------- | ----------------------------------------------------------------- | ------------ | ------------------------------------------------------------------------------------------------------------------- | +| options | `Array`或`Array` | | [选项组](./options#%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options) | +| source | [API](../../types/api) 或 [数据映射](../../concepts/data-mapping) | | [动态选项组](./options#%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source) | +| autoComplete | [API](../../types/api) | | [自动提示补全](./options#%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete) | +| delimeter | `string` | `false` | [拼接符](./options#%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter) | +| labelField | `string` | `"label"` | [选项标签字段](./options#%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield) | +| valueField | `string` | `"value"` | [选项值字段](./options#%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield) | +| joinValues | `boolean` | `true` | [拼接值](./options#%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues) | +| extractValue | `boolean` | `false` | [提取值](./options#%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue) | +| checkAll | `boolean` | `false` | 是否支持全选 | +| checkAllLabel | `string` | `全选` | 全选的文字 | +| defaultCheckAll | `boolean` | `false` | 默认是否全选 | +| creatable | `boolean` | `false` | [新增选项](./options#%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable) | +| multiple | `boolean` | `false` | [多选](./options#多选-multiple) | +| searchable | `boolean` | `false` | [检索](./options#检索-searchable) | +| createBtnLabel | `string` | `"新增选项"` | [新增选项](./options#%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9) | +| addControls | Array<[表单项](./formitem)> | | [自定义新增表单项](./options#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols) | +| addApi | [API](../types/api) | | [配置新增选项接口](./options#%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi) | +| editable | `boolean` | `false` | [编辑选项](./options#%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable) | +| editControls | Array<[表单项](./formitem)> | | [自定义编辑表单项](./options#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols) | +| editApi | [API](../types/api) | | [配置编辑选项接口](./options#%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi) | +| removable | `boolean` | `false` | [删除选项](./options#%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9) | +| deleteApi | [API](../types/api) | | [配置删除选项接口](./options#%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi) | +| autoFill | `object` | | [自动填充](./options#%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill) | diff --git a/docs/concepts/linkage.md b/docs/concepts/linkage.md index f5ceb69d..7bdd846a 100755 --- a/docs/concepts/linkage.md +++ b/docs/concepts/linkage.md @@ -342,6 +342,91 @@ order: 14 > 当然,`crud`组件内置已经支持此功能,你只需要配置`crud`中的`filter`属性,就可以实现上面的效果,更多内容查看 [crud -> filter](../components/crud) 文档。 -我们再来一个例子,这次我们实现两个`form`之间的联动: +我们再来一个例子,这次我们实现 [两个 form 之间的联动](../components/form/index#%E5%B0%86%E6%95%B0%E6%8D%AE%E5%9F%9F%E5%8F%91%E9%80%81%E7%BB%99%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6) + +### 发送指定数据 + +`target`属性支持通过配置参数来发送指定数据,例如:`"target" :"xxx?a=${a}&b=${b}"`,这样就会把当前数据域中的`a`变量和`b`变量发送给目标组件 + +```schema:height="800" scope="body" +[ + { + "type": "form", + "title": "form1", + "mode": "horizontal", + "api": "/api/mock2/form/saveForm", + "controls": [ + { + "label": "Name", + "type": "text", + "name": "name" + }, + + { + "label": "Email", + "type": "text", + "name": "email" + }, + + { + "label": "Company", + "type": "text", + "name": "company" + } + ], + "actions": [ + { + "type": "action", + "actionType": "reload", + "label": "发送到 form2", + "target": "form2?name=${name}&email=${email}" + } + ] + }, + { + "type": "form", + "title": "form2", + "name": "form2", + "mode": "horizontal", + "api": "/api/mock2/form/saveForm", + "controls": [ + { + "label": "MyName", + "type": "text", + "name": "name" + }, + + { + "label": "MyEmail", + "type": "text", + "name": "email" + }, + + { + "label": "Company", + "type": "text", + "name": "company" + } + ] + } +] +``` + +上例中我们给按钮上配置了`"target": "form2?name=${name}&email=${email}"`,可以把当前数据链中的`name`变量和`email`变量发送给`form2` + +### 配置多个目标 + +`target`支持配置多个目标组件 name,用逗号隔开,例如: + +```json +{ + "type": "action", + "actionType": "reload", + "label": "刷新目标组件", + "target": "target1,target2" +} +``` + +上例中点击按钮会刷新`target1`和`target2`组件。 事实上,**组件间联动也可以实现上述任意的 [基本联动效果](./linkage#%E5%9F%BA%E6%9C%AC%E8%81%94%E5%8A%A8)(显隐联动、接口联动等其他联动)。** diff --git a/docs/index.md b/docs/index.md index 98e799d1..6b537d4e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -82,6 +82,13 @@ amis 是一个低代码前端框架,它使用 JSON 配置来生成页面,可 "headerToolbar": [ "filter-toggler", "bulkActions", + { + "type": "action", + "label": "重置测试数据", + "actionType": "ajax", + "size": "sm", + "api": "https://houtai.baidu.com/api/sample/reset" + }, { "type": "tpl", "tpl": "一共有 ${count} 行数据。", diff --git a/docs/start/getting-started.md b/docs/start/getting-started.md index 7ab57047..6599be63 100644 --- a/docs/start/getting-started.md +++ b/docs/start/getting-started.md @@ -61,13 +61,28 @@ renderAmis( ); ``` -### 使用 +### 使用指南 可以在 React Component 这么使用(TypeScript)。 +1. 安装部分示例需要的插件库 + +``` +npm i axios copy-to-clipboard +``` + +> 为了方便示例,上面选用了我们常用几个插件库,你完全可以选择自己喜欢的插件并重新实现 + +2. 代码实现 + ```tsx import * as React from 'react'; +import axios from 'axios'; +import copy from 'copy-to-clipboard'; + import {render as renderAmis} from 'amis'; +import {alert, confirm} from 'amis/lib/components/Alert'; +import {toast} from 'amis/lib/components/Toast'; class MyComponent extends React.Component { render() { @@ -76,55 +91,87 @@ class MyComponent extends React.Component {

通过 amis 渲染页面

{renderAmis( { - // schema // 这里是 amis 的 Json 配置。 type: 'page', title: '简单页面', body: '内容' }, { - // props + // props... }, { // env // 这些是 amis 需要的一些接口实现 // 可以参考后面的参数介绍。 + jumpTo: (location: string /*目标地址*/) => { + // 用来实现页面跳转, actionType:link、url 都会进来。 + // 因为不清楚所在环境中是否使用了 spa 模式,所以自己实现这个方法吧。 + }, + updateLocation: ( location: string /*目标地址*/, replace: boolean /*是replace,还是push?*/ ) => { - // 用来更新地址栏 - }, - - jumpTo: (location: string /*目标地址*/) => { - // 页面跳转, actionType: link、url 都会进来。 + // 地址替换,跟 jumpTo 类似 }, fetcher: ({ - url, - method, - data, - config - }: { - url: string /*目标地址*/; - method: 'get' | 'post' | 'put' | 'delete' /*发送方式*/; - data: object | void /*数据*/; - config: object /*其他配置*/; - }) => { - // 用来发送 Ajax 请求,建议使用 axios + url, // 接口地址 + method, // 请求方法 get、post、put、delete + data, // 请求数据 + responseType, + config, // 其他配置 + headers // 请求头 + }: any) => { + config = config || {}; + config.withCredentials = true; + responseType && (config.responseType = responseType); + + if (config.cancelExecutor) { + config.cancelToken = new (axios as any).CancelToken( + config.cancelExecutor + ); + } + + config.headers = headers || {}; + + if (method !== 'post' && method !== 'put' && method !== 'patch') { + if (data) { + config.params = data; + } + + return (axios as any)[method](url, config); + } else if (data && data instanceof FormData) { + config.headers = config.headers || {}; + config.headers['Content-Type'] = 'multipart/form-data'; + } else if ( + data && + typeof data !== 'string' && + !(data instanceof Blob) && + !(data instanceof ArrayBuffer) + ) { + data = JSON.stringify(data); + config.headers = config.headers || {}; + config.headers['Content-Type'] = 'application/json'; + } + + return (axios as any)[method](url, data, config); }, + isCancel: (value: any) => (axios as any).isCancel(value), notify: ( type: 'error' | 'success' /**/, msg: string /*提示内容*/ ) => { - // 用来提示用户 + toast[type] + ? toast[type](msg, type === 'error' ? '系统错误' : '系统消息') + : console.warn('[Notify]', type, msg); }, - alert: (content: string /*提示信息*/) => { - // 另外一种提示,可以直接用系统框 - }, - confirm: (content: string /*提示信息*/) => { - // 确认框。 + alert, + confirm, + copy: content => { + copy(content); + toast.success('内容已复制到粘贴板'); } } )} @@ -134,109 +181,158 @@ class MyComponent extends React.Component { } ``` -`(schema:Schema, props?:any, env?: any) => JSX.Element` +### render 函数介绍 -参数说明: +```js +(schema, props, env) => JSX.Element; +``` -- `schema` 即页面配置,请前往 [配置与组件](../concepts/schema) 了解. -- `props` 一般都用不上,如果你想传递一些数据给渲染器内部使用,可以传递 data 数据进去。如: +#### schema - ```jsx - () => - renderAmis(schema, { - data: { +即页面配置,请前往 [配置与组件](../concepts/schema) 了解 + +#### props + +一般都用不上,如果你想传递一些数据给渲染器内部使用,可以传递 data 数据进去。如: + +```jsx +() => + renderAmis(schema, { + data: { + username: 'amis' + } + }); +``` + +这样,内部所有组件都能拿到 `username` 这个变量的值。当然,这里的 key 并不一定必须是 data , 你也可以是其它 key,但必须配合 schema 中的 `detectField` 属性一起使用。 如: + +```jsx +() => + renderAmis( + { + //其它配置 + detectField: 'somekey' + }, + { + somekey: { username: 'amis' } - }); - ``` - - 这样,内部所有组件都能拿到 `username` 这个变量的值。当然,这里的 key 并不一定必须是 data , 你也可以是其它 key,但必须配合 schema 中的 `detectField` 属性一起使用。 如: - - ```jsx - () => - renderAmis( - { - //其它配置 - detectField: 'somekey' - }, - { - somekey: { - username: 'amis' - } - } - ); - ``` - -- `env` 环境变量,可以理解为这个渲染器工具的配置项,需要调用者实现部分接口。 - - - `session: string` 默认为 'global',决定 store 是否为全局共用的,如果想单占一个 store,请设置不同的值。 - - `fetcher: (config: fetcherConfig) => Promise` 用来实现 ajax 发送。 - - 示例 - - ```js - fetcher: ({ - url, - method, - data, - responseType, - config, - headers - }: any) => { - config = config || {}; - config.withCredentials = true; - responseType && (config.responseType = responseType); - - if (config.cancelExecutor) { - config.cancelToken = new (axios as any).CancelToken(config.cancelExecutor); - } - - config.headers = headers || {}; - - if (method !== 'post' && method !== 'put' && method !== 'patch') { - if (data) { - config.params = data; - } - - return (axios as any)[method](url, config); - } else if (data && data instanceof FormData) { - // config.headers = config.headers || {}; - // config.headers['Content-Type'] = 'multipart/form-data'; - } else if (data - && typeof data !== 'string' - && !(data instanceof Blob) - && !(data instanceof ArrayBuffer) - ) { - data = JSON.stringify(data); - // config.headers = config.headers || {}; - config.headers['Content-Type'] = 'application/json'; - } - - return (axios as any)[method](url, data, config); } - ``` + ); +``` - - `isCancel: (e:error) => boolean` 判断 ajax 异常是否为一个 cancel 请求。 +#### env - 示例 +环境变量,可以理解为这个渲染器工具的配置项,需要使用 amis 用户实现部分接口。他有下面若干参数: - ```js - isCancel: (value: any) => (axios as any).isCancel(value) - ``` +##### fetcher(必须实现) - - `notify: (type:string, msg: string) => void` 用来实现消息提示。 - - `alert: (msg:string) => void` 用来实现警告提示。 - - `confirm: (msg:string) => boolean | Promise` 用来实现确认框。 - - `jumpTo: (to:string, action?: Action, ctx?: object) => void` 用来实现页面跳转,因为不清楚所在环境中是否使用了 spa 模式,所以用户自己实现吧。 - - `updateLocation: (location:any, replace?:boolean) => void` 地址替换,跟 jumpTo 类似。 - - `isCurrentUrl: (link:string) => boolean` 判断目标地址是否为当前页面。 - - `theme: 'default' | 'cxd'` 目前支持两种主题。 - - `copy: (contents:string, options?: {shutup: boolean}) => void` 用来实现,内容复制。 - - `getModalContainer: () => HTMLElement` 用来决定弹框容器。 - - `loadRenderer: (chema:any, path:string) => Promise` 可以通过它懒加载自定义组件,比如: https://github.com/baidu/amis/blob/master/__tests__/factory.test.tsx#L64-L91。 - - `affixOffsetTop: number` 固顶间距,当你的有其他固顶元素时,需要设置一定的偏移量,否则会重叠。 - - `affixOffsetBottom: number` 固底间距,当你的有其他固底元素时,需要设置一定的偏移量,否则会重叠。 - - `richTextToken: string` 内置 rich-text 为 frolaEditor,想要使用,请自行购买,或者自己实现 rich-text 渲染器。 +接口请求器,实现该函数才可以实现 ajax 发送,函数签名如下: + +```ts +(config: { + url; // 接口地址 + method; // 请求方法 get、post、put、delete + data; // 请求数据 + responseType; + config; // 其他配置 + headers; // 请求头 +}) => Promise; +``` + +> 你可以使用任何你喜欢的 ajax 请求库来实现这个接口 + +##### notify + +```ts +(type: string, msg: string) => void +``` + +用来实现消息提示。 + +##### alert + +```ts +(msg: string) => void +``` + +用来实现警告提示。 + +##### confirm + +```ts +(msg: string) => boolean | Promise +``` + +用来实现确认框。返回 boolean 值 + +##### jumpTo + +```ts +(to: string, action?: Action, ctx?: object) => void +``` + +用来实现页面跳转,因为不清楚所在环境中是否使用了 spa 模式,所以用户自己实现吧。 + +##### updateLocation + +```ts +(location: any, replace?: boolean) => void +``` + +地址替换,跟 jumpTo 类似。 + +##### theme: string + +目前支持是三种主题:`default`、`cxd` 和 `dark` + +##### isCurrentUrl + +```ts +(link: string) => boolean; +``` + +判断目标地址是否为当前页面。 + +##### copy + +```ts +(contents: string, options?: {shutup: boolean}) +``` + +用来实现内容复制。 + +##### session + +默认为 'global',决定 store 是否为全局共用的,如果想单占一个 store,请设置不同的值。 + +##### getModalContainer + +```ts +() => HTMLElement; +``` + +用来决定弹框容器。 + +##### loadRenderer + +```ts +(schema: any, path: string) => Promise +``` + +可以通过它懒加载自定义组件,比如: https://github.com/baidu/amis/blob/master/__tests__/factory.test.tsx#L64-L91。 + +##### affixOffsetTop: number + +固顶间距,当你的有其他固顶元素时,需要设置一定的偏移量,否则会重叠。 + +##### affixOffsetBottom: number + +固底间距,当你的有其他固底元素时,需要设置一定的偏移量,否则会重叠。 + +##### richTextToken: string + +内置 rich-text 为 frolaEditor,想要使用,请自行购买,或者自己实现 rich-text 渲染器。 ## SDK @@ -277,8 +373,8 @@ JSSDK 的代码从以下地址获取: - - + + diff --git a/gh-pages/docs/components/alert.html b/gh-pages/docs/components/alert.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/alert.html +++ b/gh-pages/docs/components/alert.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/audio.html b/gh-pages/docs/components/audio.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/audio.html +++ b/gh-pages/docs/components/audio.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/button-group.html b/gh-pages/docs/components/button-group.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/button-group.html +++ b/gh-pages/docs/components/button-group.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/button.html b/gh-pages/docs/components/button.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/button.html +++ b/gh-pages/docs/components/button.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/card.html b/gh-pages/docs/components/card.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/card.html +++ b/gh-pages/docs/components/card.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/cards.html b/gh-pages/docs/components/cards.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/cards.html +++ b/gh-pages/docs/components/cards.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/carousel.html b/gh-pages/docs/components/carousel.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/carousel.html +++ b/gh-pages/docs/components/carousel.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/chart.html b/gh-pages/docs/components/chart.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/chart.html +++ b/gh-pages/docs/components/chart.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/collapse.html b/gh-pages/docs/components/collapse.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/collapse.html +++ b/gh-pages/docs/components/collapse.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/color.html b/gh-pages/docs/components/color.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/color.html +++ b/gh-pages/docs/components/color.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/component.html b/gh-pages/docs/components/component.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/component.html +++ b/gh-pages/docs/components/component.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/container.html b/gh-pages/docs/components/container.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/container.html +++ b/gh-pages/docs/components/container.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/crud.html b/gh-pages/docs/components/crud.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/crud.html +++ b/gh-pages/docs/components/crud.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/crud_339d30b.js b/gh-pages/docs/components/crud_339d30b.js new file mode 100644 index 00000000..bbfa425c --- /dev/null +++ b/gh-pages/docs/components/crud_339d30b.js @@ -0,0 +1,197 @@ +amis.define('docs/components/crud.md', function(require, exports, module, define) { + + module.exports = { + "title": "CRUD 增删改查", + "description": null, + "type": 0, + "group": "⚙ 组件", + "menuName": "CRUD 增删改查", + "icon": null, + "order": 25, + "html": "

CRUD,即增删改查组件,主要用来展现数据列表,并支持各类【增】【删】【改】【查】等操作。

\n

基本用法

最基本的用法是配置 数据源接口(api) 以及 展示列(columns)

\n
\n

数据源接口数据结构要求

    \n
  • itemsrows:用于返回数据源数据,格式是数组
  • \n
  • total: 用于返回数据库中一共有多少条数据,用于生成分页
  • \n
\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每一行的数据\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"total\": 200 // 注意!!!这里不是当前请求返回的 items 的长度,而是数据库中一共有多少条数据,用于生成分页组件\n    // 如果你不想要分页,把这个不返回就可以了。\n  }\n}\n
\n

如果无法知道数据总数,只能知道是否有下一页,请返回如下格式,AMIS 会简单生成一个简单版本的分页控件。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每个成员的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"hasNext\": true // 是否有下一页。\n  }\n}\n
\n

如果不需要分页,或者配置了 loadDataOnce 则可以忽略掉 totalhasNext 参数。

\n

展示模式

CRUD 支持下面 3 种展示模式,默认为 Table 表格模式。

\n

Table 表格模式

Table 模式支持 Table 中的所有功能。

\n
\n

List 列表模式

List 模式支持 List 中的所有功能。

\n
\n

Cards 卡片模式

Cards 模式支持 Cards 中的所有功能。

\n
\n

查询条件表单

大部分表格展示有对数据进行检索的需求,CRUD 自身支持通过配置filter,实现查询条件过滤表单

\n

filter 配置实际上同 Form 组件,因此支持绝大部分form的功能。

\n
\n

请注意:在默认没有自定义配置 api 数据映射时,提交查询条件表单,会自动将表单中的表单项值,发送给crud所配置的接口,然后通过后端接口,实现对数据的过滤操作,前端默认是不会进行任何的数据过滤操作

\n

如果想前端实现过滤功能,请看前端一次性加载部分。

\n

配置默认请求参数

可以配置defaultParams,来指定拉取接口时的默认参数:

\n
\n

例如上例中,配置{ perPage: 50 },指定分页的默认每页数据条数为 50 条。

\n

数据源接口轮训

可以配置interval来实现数据接口轮训功能,默认最低为3000毫秒,

\n
\n

配置stopAutoRefreshWhen表达式,来实现满足条件,停止轮训

\n

列配置

除了支持 Table 中的列配置 以外,crud 还支持下面这些配置,帮助更好的操作数据

\n

排序检索

可以在列上配置"sortable": true,该列表头右侧会渲染一个可点击的排序图标,可以切换正序倒序

\n
\n

amis 只负责生成排序组件,并将排序参数传递给接口,而不会在前端对数据进行排序处理。参数格式如下:

\n
{\n  \"orderBy\": \"engine\", // 这里为所配置列的 name\n  \"orderDir\": \"asc\" // asc 为升序,desc 为降序\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速搜索

可以在列上配置"sortable": true,该列表头右侧会渲染一个可点击的搜索图标,点击可以输入关键字进行该列的搜索:

\n
\n

amis 只负责生成搜索组件,并将搜索参数传递给接口,而不会在前端对数据进行搜索处理。参数格式如下:

\n
{\n  \"engine\": \"xxx\" // 这里的key是列的 name,value是输入的关键字\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速过滤

可以在列上配置filterable属性,该列表头右侧会渲染一个可点击的过滤图标,点击显示下拉框,选中进行过滤:

\n
\n

amis 只负责生成下拉选择器组件,并将搜索参数传递给接口,而不会在前端对数据进行搜索处理。参数格式如下:

\n
{\n  \"grade\": \"xxx\" // 这里的key是列的 name,value是选中项的value值\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速编辑

可以通过给列配置:"quickEdit":truequickSaveApi 可以实现表格内快速编辑并批量保存的功能。

\n

如下Rendering engine列的每一行中,会生成可编辑图标,点击后会显示弹框,用于编辑该列的值,

\n
\n

指定编辑表单项类型

quickEdit也可以配置对象形式,可以指定编辑表单项的类型,例如"type": "select"

\n
\n

内联模式

配置quickEditmodeinline。可以直接将编辑表单项渲染至表格内,可以直接操作编辑。

\n
\n

即时保存

如果想编辑完表单项之后,不想点击顶部确认按钮来进行保存,而是即时保存当前标记的数据,则需要配置quickEdit"saveImmediately": true,然后配置接口quickSaveItemApi。可以直接将编辑表单项渲染至表格内,可以直接操作编辑。

\n
\n

你也可以在saveImmediately中配置 api,实现即时保存

\n
\n

顶部和底部工具栏

crud 组件支持通过配置headerToolbarfooterToolbar属性,实现在表格顶部和底部渲染组件,

\n
\n

上例中我们在顶部渲染了一段模板,通过${count}取到数据域中,CRUD 返回的count变量值;然后我们在底部渲染了一个按钮。

\n

从上面一些例子中你可能已经发现,当我们不配置该属性时,crud 默认会在顶部和底部渲染一些组件,实际上,headerToolbarfooterToolbar默认会有下面这些配置:

\n
{\n  \"headerToolbar\": [\"bulkActions\", \"pagination\"],\n  \"footerToolbar\": [\"statistics\", \"pagination\"]\n}\n
\n
    \n
  • 在顶部工具栏中:渲染批量操作按钮(如果在 crud 中,配置了 bulkActions 的话)和 分页组件
  • \n
  • 在底部工具栏中:渲染数据统计组件 和 分页组件
  • \n
\n
\n

如果你不希望在顶部或者底部渲染默认组件,你可以设置headerToolbarfooterToolbar为空数组[]

\n
\n

除了可以配置SchemaNode 类型以外,headerToolbarfooterToolbar还支持一些针对列表场景而内置的一些常用组件,下面分别介绍:

\n

分页

headerToolbar或者footerToolbar数组中添加pagination字符串,并且在数据源接口中返回了数据总数count,即可以渲染分页组件;添加switch-per-page字符串,可以渲染切换每页条数组件

\n
\n

crud默认不会处理数据分页,只是会把分页参数传给后端,由后端实现分页,并返回需要展示的数据 和 总数据数total变量:

\n

默认传给后端的分页参数格式为:

\n
{\n  \"page\": 1,\n  \"perPage\": 10\n}\n
\n

你可以通过配置pageFieldperPageField来修改传给后端的分页数据格式,如:

\n
{\n  \"pageField\": \"pageNo\",\n  \"perPageField\": \"pageSize\"\n}\n
\n

这样传给后端的参数格式将为:

\n
{\n  \"pageNo\": 1,\n  \"pageSize\": 10\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n
{\n    \"type\": \"crud\",\n    \"api\": {\n        \"method\": \"get\",\n        \"url\": \"xxxxxx\",\n        \"data\": {\n            \"pageNo\": \"${page}\",\n            \"pageSize\": \"${perPage}\",\n            ... // 一些其他参数\n        }\n    }\n}\n
\n

分页有两种模式:

\n
1. 知道数据总数

如果后端可以知道数据总数时,接口返回格式如下:

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每一行的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"total\": 200 // 注意这里不是当前请求返回的 items 的长度,而是数据库一共有多少条数据,用于生成分页,\n  }\n}\n
\n

该模式下,会自动计算总页码数,渲染出有页码的分页组件

\n
2. 不知道数据总数

如果后端无法知道数据总数,那么可以返回hasNext字段,来标识是否有下一页。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每个成员的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"hasNext\": true // 标识是否有下一页。\n  }\n}\n
\n

这样 amis 会在配置分页组件的地方,渲染出一个简单的页面跳转控件。

\n

批量操作

headerToolbar或者footerToolbar数组中添加bulkActions字符串,并且在 crud 上配置bulkActions行为按钮数组,可以实现选中表格项并批量操作的功能。

\n
\n

批量操作会默认将下面数据添加到数据域中以供按钮行为使用

\n
    \n
  • items Array<object> 选中的行数据。
  • \n
  • rows items 的别名,推荐用 items。
  • \n
  • unselectedItems Array<object> 没选中的行数据也可获取。
  • \n
  • ids Array<number|string> 前提是行数据中有 id 字段,或者有指定的 primaryField 字段。
  • \n
  • 第一行所有行数据 还有第一行的所有行数据也会包含进去。
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

数据统计

headerToolbar或者footerToolbar数组中添加statistics字符串,可以实现简单的数据统计功能

\n
\n

加载更多

headerToolbar或者footerToolbar数组中添加load-more字符串,可以实现点击加载更多功能。

\n
\n

显隐显示查询条件表单

headerToolbar或者footerToolbar数组中添加filter-toggler字符串,并且在 crud 中配置"filterTogglable": true后,可以渲染一个可以切换显示查询表单的功能按钮

\n
\n

拖拽排序

通过配置"draggable": true和保存排序接口saveOrderApi,可以实现拖拽排序功能,

\n
\n

同样的,前端是不会处理排序结果,需要后端调用接口saveOrderApi来保存新的顺序

\n

发送方式默认为POST,会包含以下信息。

\n
    \n
  • ids 字符串如: 2,3,1,4,5,6 用 id 来记录新的顺序。 前提是你的列表接口返回了 id 字段。另外如果你的 primaryField 不是 id,则需要配置如: primaryField: "order_id"。注意:无论你配置成什么 primayField,这个字段名始终是 ids。
  • \n
  • rows Array<Item> 数组格式,新的顺序,数组里面包含所有原始信息。
  • \n
  • insertAfter 或者 insertBefore 这是 amis 生成的 diff 信息,对象格式,key 为目标成员的 primaryField 值,即 id,value 为数组,数组中存放成员 primaryField 值。如:

    \n
    {\n  \"insertAfter\": {\n    \"2\": [\"1\", \"3\"],\n    \"6\": [\"4\", \"5\"]\n  }\n}\n
    \n

    表示:成员 1 和成员 3 插入到了成员 2 的后面。成员 4 和 成员 5 插入到了 成员 6 的后面。

    \n
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

如下:

\n
{\n  \"saveOrderApi\": {\n    \"url\": \"/api/xxxx\",\n    \"data\": {\n      \"ids\": \"${ids}\"\n    }\n  }\n}\n
\n

这样就只会发送 ids 了。

\n

单条操作

当操作对象是单条数据时这类操作叫单条操作,比如:编辑、删除、通过、拒绝等等。CRUD 的 table 模式可以在 column 通过放置按钮来完成(其他模式参考 table 模式)。比如编辑就是添加个按钮行为是弹框类型的按钮或者添加一个页面跳转类型的按钮把当前行数据的 id 放在 query 中传过去、删除操作就是配置一个按钮行为是 AJAX 类型的按钮,将数据通过 api 发送给后端完成。

\n

CRUD 中不限制有多少个单条操作、添加一个操作对应的添加一个按钮就行了。CRUD 在处理按钮行为的时候会把当前行的完整数据传递过去,如果你的按钮行为是弹出时,还会包含一下信息:

\n
    \n
  • hasNext boolean 当按钮行为是弹框时,还会携带这个数据可以用来判断当前页中是否有下一条数据。
  • \n
  • hasPrev boolean 当按钮行为是弹框时,还会携带这个数据可以判断用来当前页中是否有上一条数据。
  • \n
  • index number 当按钮行为是弹框时,还会携带这个数据可以用来获取当前行数据在这一页中的位置。
  • \n
  • prevIndex number
  • \n
  • nextIndex number
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

如果你的按钮类型是 ajax,你也可以限定只发送部分数据比如。

\n
{\n  \"type\": \"button\",\n  \"label\": \"删除\",\n  \"actionType\": \"ajax\",\n  \"api\": \"delete:/api/xxxx/$id\",\n  \"confirmText\": \"确定要删除?\"\n}\n
\n

上面这个例子就会发送 id 字段了,如果想要全部发送过去同时还想添加点别的字段就这样:

\n
{\n  \"type\": \"button\",\n  \"label\": \"删除\",\n  \"actionType\": \"ajax\",\n  \"api\": {\n    \"method\": \"post\",\n    \"url\": \"/api/xxxx/$id\",\n    \"data\": {\n      \"&\": \"$$\",\n      \"op\": \"delete\"\n    }\n  },\n  \"confirmText\": \"确定要删除?\"\n}\n
\n

过滤条件参数同步地址栏

默认 CRUD 会将过滤条件参数同步至浏览器地址栏中,

\n

不过,如果你了解 数据链 的话,在开启同步地址栏时,地址栏中的参数数据会合并到顶层的数据链中,可能会造成一些预期中的问题,例如:会自动给某些同名的表单项设置默认值等。可以手动设置syncLocation: false来关闭此特性

\n

前端一次性加载

如果你的数据并不是很大,而且后端不方便做分页和条件过滤操作,那么通过配置loadDataOnce实现前端一次性加载并支持分页和条件过滤操作

\n
\n

配置一次性加载后,基本的分页、快速排序操作将会在前端进行完成。如果想实现前端检索,需要用到数据映射功能:

\n
\n

上例使用了数据映射中的filter过滤器,在前端实现了engine列的搜索功能。

\n
\n

注意:如果你的数据量较大,请务必使用服务端分页的方案,过多的前端数据展示,会显著影响前端页面的性能

\n
\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
typestringtype 指定为 CRUD 渲染器
modestring"table""table" 、 "cards" 或者 "list"
titlestring""可设置成空,当设置成空时,没有标题栏
classNamestring表格外层 Dom 的类名
apiAPICRUD 用来获取列表数据的 api。
loadDataOnceboolean是否一次性加载所有数据(前端分页)
loadDataOnceFetchOnFilterbooleantrue在开启 loadDataOnce 时,filter 时是否去重新请求 api
sourcestring数据映射接口返回某字段的值,不设置会默认把接口返回的items或者rows填充进mode区域
filterForm设置过滤器,当该表单提交后,会把数据带给当前 mode 刷新列表。
filterTogglablebooleanfalse是否可显隐过滤器
filterDefaultVisiblebooleantrue设置过滤器默认是否可见。
initFetchbooleantrue是否初始化的时候拉取数据, 只针对有 filter 的情况, 没有 filter 初始都会拉取数据
intervalnumber3000刷新时间(最低 3000)
silentPollingbooleanfalse配置刷新时是否隐藏加载动画
stopAutoRefreshWhenstring""通过表达式来配置停止刷新的条件
stopAutoRefreshWhenModalIsOpenbooleanfalse当有弹框时关闭自动刷新,关闭弹框又恢复
syncLocationbooleantrue是否将过滤条件的参数同步到地址栏
draggablebooleanfalse是否可通过拖拽排序
itemDraggableOnboolean表达式来配置是否可拖拽排序
saveOrderApiAPI保存排序的 api。
quickSaveApiAPI快速编辑后用来批量保存的 API。
quickSaveItemApiAPI快速编辑配置成及时保存时使用的 API。
bulkActionsArray<Action>批量操作列表,配置后,表格可进行选中操作。
defaultCheckedbooleanfalse当可批量操作时,默认是否全部勾选。
messagesObject覆盖消息提示,如果不指定,将采用 api 返回的 message
messages.fetchFailedstring获取失败时提示
messages.saveOrderFailedstring保存顺序失败提示
messages.saveOrderSuccessstring保存顺序成功提示
messages.quickSaveFailedstring快速保存失败提示
messages.quickSaveSuccessstring快速保存成功提示
primaryFieldstring"id"设置 ID 字段名。
defaultParamsObject设置默认 filter 默认参数,会在查询的时候一起发给后端
pageFieldstring"page"设置分页页码字段名。
perPageFieldstring"perPage"设置分页一页显示的多少条数据的字段名。注意:最好与 defaultParams 一起使用,请看下面例子。
perPageAvailableArray<number>[5, 10, 20, 50, 100]设置一页显示多少条数据下拉框可选条数。
orderFieldstring设置用来确定位置的字段名,设置后新的顺序将被赋值到该字段中。
hideQuickSaveBtnbooleanfalse隐藏顶部快速保存提示
autoJumpToTopOnPagerChangebooleanfalse当切分页的时候,是否自动跳顶部。
syncResponse2Querybooleantrue将返回数据同步到过滤器上。
keepItemSelectionOnPageChangebooleantrue保留条目选择,默认分页、搜素后,用户选择条目会被清空,开启此选项后会保留用户选择,可以实现跨页面批量操作。
labelTplstring单条描述模板,keepItemSelectionOnPageChange设置为true后会把所有已选择条目列出来,此选项可以用来定制条目展示文案。
headerToolbarArray['bulkActions', 'pagination']顶部工具栏配置
footerToolbarArray['statistics', 'pagination']底部工具栏配置
\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "基本用法", + "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "level": 2 + }, + { + "label": "数据源接口数据结构要求", + "fragment": "%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E8%A6%81%E6%B1%82", + "fullPath": "#%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E8%A6%81%E6%B1%82", + "level": 2 + }, + { + "label": "展示模式", + "fragment": "%E5%B1%95%E7%A4%BA%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E5%B1%95%E7%A4%BA%E6%A8%A1%E5%BC%8F", + "level": 2, + "children": [ + { + "label": "Table 表格模式", + "fragment": "table-%E8%A1%A8%E6%A0%BC%E6%A8%A1%E5%BC%8F", + "fullPath": "#table-%E8%A1%A8%E6%A0%BC%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "List 列表模式", + "fragment": "list-%E5%88%97%E8%A1%A8%E6%A8%A1%E5%BC%8F", + "fullPath": "#list-%E5%88%97%E8%A1%A8%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "Cards 卡片模式", + "fragment": "cards-%E5%8D%A1%E7%89%87%E6%A8%A1%E5%BC%8F", + "fullPath": "#cards-%E5%8D%A1%E7%89%87%E6%A8%A1%E5%BC%8F", + "level": 3 + } + ] + }, + { + "label": "查询条件表单", + "fragment": "%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", + "fullPath": "#%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", + "level": 2 + }, + { + "label": "配置默认请求参数", + "fragment": "%E9%85%8D%E7%BD%AE%E9%BB%98%E8%AE%A4%E8%AF%B7%E6%B1%82%E5%8F%82%E6%95%B0", + "fullPath": "#%E9%85%8D%E7%BD%AE%E9%BB%98%E8%AE%A4%E8%AF%B7%E6%B1%82%E5%8F%82%E6%95%B0", + "level": 2 + }, + { + "label": "数据源接口轮训", + "fragment": "%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E8%BD%AE%E8%AE%AD", + "fullPath": "#%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E8%BD%AE%E8%AE%AD", + "level": 2 + }, + { + "label": "列配置", + "fragment": "%E5%88%97%E9%85%8D%E7%BD%AE", + "fullPath": "#%E5%88%97%E9%85%8D%E7%BD%AE", + "level": 2, + "children": [ + { + "label": "排序检索", + "fragment": "%E6%8E%92%E5%BA%8F%E6%A3%80%E7%B4%A2", + "fullPath": "#%E6%8E%92%E5%BA%8F%E6%A3%80%E7%B4%A2", + "level": 3 + }, + { + "label": "快速搜索", + "fragment": "%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2", + "fullPath": "#%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2", + "level": 3 + }, + { + "label": "快速过滤", + "fragment": "%E5%BF%AB%E9%80%9F%E8%BF%87%E6%BB%A4", + "fullPath": "#%E5%BF%AB%E9%80%9F%E8%BF%87%E6%BB%A4", + "level": 3 + }, + { + "label": "快速编辑", + "fragment": "%E5%BF%AB%E9%80%9F%E7%BC%96%E8%BE%91", + "fullPath": "#%E5%BF%AB%E9%80%9F%E7%BC%96%E8%BE%91", + "level": 3, + "children": [ + { + "label": "指定编辑表单项类型", + "fragment": "%E6%8C%87%E5%AE%9A%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9%E7%B1%BB%E5%9E%8B", + "fullPath": "#%E6%8C%87%E5%AE%9A%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9%E7%B1%BB%E5%9E%8B", + "level": 4 + }, + { + "label": "内联模式", + "fragment": "%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", + "level": 4 + }, + { + "label": "即时保存", + "fragment": "%E5%8D%B3%E6%97%B6%E4%BF%9D%E5%AD%98", + "fullPath": "#%E5%8D%B3%E6%97%B6%E4%BF%9D%E5%AD%98", + "level": 4 + } + ] + } + ] + }, + { + "label": "顶部和底部工具栏", + "fragment": "%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8%E5%B7%A5%E5%85%B7%E6%A0%8F", + "fullPath": "#%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8%E5%B7%A5%E5%85%B7%E6%A0%8F", + "level": 2, + "children": [ + { + "label": "分页", + "fragment": "%E5%88%86%E9%A1%B5", + "fullPath": "#%E5%88%86%E9%A1%B5", + "level": 3 + }, + { + "label": "批量操作", + "fragment": "%E6%89%B9%E9%87%8F%E6%93%8D%E4%BD%9C", + "fullPath": "#%E6%89%B9%E9%87%8F%E6%93%8D%E4%BD%9C", + "level": 3 + }, + { + "label": "数据统计", + "fragment": "%E6%95%B0%E6%8D%AE%E7%BB%9F%E8%AE%A1", + "fullPath": "#%E6%95%B0%E6%8D%AE%E7%BB%9F%E8%AE%A1", + "level": 3 + }, + { + "label": "加载更多", + "fragment": "%E5%8A%A0%E8%BD%BD%E6%9B%B4%E5%A4%9A", + "fullPath": "#%E5%8A%A0%E8%BD%BD%E6%9B%B4%E5%A4%9A", + "level": 3 + }, + { + "label": "显隐显示查询条件表单", + "fragment": "%E6%98%BE%E9%9A%90%E6%98%BE%E7%A4%BA%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", + "fullPath": "#%E6%98%BE%E9%9A%90%E6%98%BE%E7%A4%BA%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", + "level": 3 + } + ] + }, + { + "label": "拖拽排序", + "fragment": "%E6%8B%96%E6%8B%BD%E6%8E%92%E5%BA%8F", + "fullPath": "#%E6%8B%96%E6%8B%BD%E6%8E%92%E5%BA%8F", + "level": 2 + }, + { + "label": "单条操作", + "fragment": "%E5%8D%95%E6%9D%A1%E6%93%8D%E4%BD%9C", + "fullPath": "#%E5%8D%95%E6%9D%A1%E6%93%8D%E4%BD%9C", + "level": 2 + }, + { + "label": "过滤条件参数同步地址栏", + "fragment": "%E8%BF%87%E6%BB%A4%E6%9D%A1%E4%BB%B6%E5%8F%82%E6%95%B0%E5%90%8C%E6%AD%A5%E5%9C%B0%E5%9D%80%E6%A0%8F", + "fullPath": "#%E8%BF%87%E6%BB%A4%E6%9D%A1%E4%BB%B6%E5%8F%82%E6%95%B0%E5%90%8C%E6%AD%A5%E5%9C%B0%E5%9D%80%E6%A0%8F", + "level": 2 + }, + { + "label": "前端一次性加载", + "fragment": "%E5%89%8D%E7%AB%AF%E4%B8%80%E6%AC%A1%E6%80%A7%E5%8A%A0%E8%BD%BD", + "fullPath": "#%E5%89%8D%E7%AB%AF%E4%B8%80%E6%AC%A1%E6%80%A7%E5%8A%A0%E8%BD%BD", + "level": 2 + }, + { + "label": "属性表", + "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", + "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", + "level": 2 + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/components/crud_3c02c38.js b/gh-pages/docs/components/crud_3c02c38.js deleted file mode 100644 index 4fa875c7..00000000 --- a/gh-pages/docs/components/crud_3c02c38.js +++ /dev/null @@ -1,191 +0,0 @@ -amis.define('docs/components/crud.md', function(require, exports, module, define) { - - module.exports = { - "title": "CRUD 增删改查", - "description": null, - "type": 0, - "group": "⚙ 组件", - "menuName": "CRUD 增删改查", - "icon": null, - "order": 25, - "html": "

CRUD,即增删改查组件,主要用来展现数据列表,并支持各类【增】【删】【改】【查】等操作。

\n

基本用法

最基本的用法是配置 数据源接口(api) 以及 展示列(columns)

\n
\n

数据源接口数据结构要求

    \n
  • itemsrows:用于返回数据源数据,格式是数组
  • \n
  • total: 用于返回数据库中一共有多少条数据,用于生成分页
  • \n
\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每一行的数据\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"total\": 200 // 注意!!!这里不是当前请求返回的 items 的长度,而是数据库中一共有多少条数据,用于生成分页组件\n    // 如果你不想要分页,把这个不返回就可以了。\n  }\n}\n
\n

如果无法知道数据总数,只能知道是否有下一页,请返回如下格式,AMIS 会简单生成一个简单版本的分页控件。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每个成员的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"hasNext\": true // 是否有下一页。\n  }\n}\n
\n

如果不需要分页,或者配置了 loadDataOnce 则可以忽略掉 totalhasNext 参数。

\n

展示模式

CRUD 支持下面 3 种展示模式,默认为 Table 表格模式。

\n

Table 表格模式

Table 模式支持 Table 中的所有功能。

\n
\n

List 列表模式

List 模式支持 List 中的所有功能。

\n
\n

Cards 卡片模式

Cards 模式支持 Cards 中的所有功能。

\n
\n

查询条件表单

大部分表格展示有对数据进行检索的需求,CRUD 自身支持通过配置filter,实现查询条件过滤表单

\n

filter 配置实际上同 Form 组件,因此支持绝大部分form的功能。

\n
\n

请注意:在默认没有自定义配置 api 数据映射时,提交查询条件表单,会自动将表单中的表单项值,发送给crud所配置的接口,然后通过后端接口,实现对数据的过滤操作,前端默认是不会进行任何的数据过滤操作

\n

如果想前端实现过滤功能,请看前端一次性加载部分。

\n

数据源接口轮训

可以配置interval来实现数据接口轮训功能,默认最低为3000毫秒,

\n
\n

配置stopAutoRefreshWhen表达式,来实现满足条件,停止轮训

\n

列配置

除了支持 Table 中的列配置 以外,crud 还支持下面这些配置,帮助更好的操作数据

\n

排序检索

可以在列上配置"sortable": true,该列表头右侧会渲染一个可点击的排序图标,可以切换正序倒序

\n
\n

amis 只负责生成排序组件,并将排序参数传递给接口,而不会在前端对数据进行排序处理。参数格式如下:

\n
{\n  \"orderBy\": \"engine\", // 这里为所配置列的 name\n  \"orderDir\": \"asc\" // asc 为升序,desc 为降序\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速搜索

可以在列上配置"sortable": true,该列表头右侧会渲染一个可点击的搜索图标,点击可以输入关键字进行该列的搜索:

\n
\n

amis 只负责生成搜索组件,并将搜索参数传递给接口,而不会在前端对数据进行搜索处理。参数格式如下:

\n
{\n  \"engine\": \"xxx\" // 这里的key是列的 name,value是输入的关键字\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速过滤

可以在列上配置filterable属性,该列表头右侧会渲染一个可点击的过滤图标,点击显示下拉框,选中进行过滤:

\n
\n

amis 只负责生成下拉选择器组件,并将搜索参数传递给接口,而不会在前端对数据进行搜索处理。参数格式如下:

\n
{\n  \"grade\": \"xxx\" // 这里的key是列的 name,value是选中项的value值\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n

快速编辑

可以通过给列配置:"quickEdit":truequickSaveApi 可以实现表格内快速编辑并批量保存的功能。

\n

如下Rendering engine列的每一行中,会生成可编辑图标,点击后会显示弹框,用于编辑该列的值,

\n
\n

指定编辑表单项类型

quickEdit也可以配置对象形式,可以指定编辑表单项的类型,例如"type": "select"

\n
\n

内联模式

配置quickEditmodeinline。可以直接将编辑表单项渲染至表格内,可以直接操作编辑。

\n
\n

即时保存

如果想编辑完表单项之后,不想点击顶部确认按钮来进行保存,而是即时保存当前标记的数据,则需要配置quickEdit"saveImmediately": true,然后配置接口quickSaveItemApi。可以直接将编辑表单项渲染至表格内,可以直接操作编辑。

\n
\n

你也可以在saveImmediately中配置 api,实现即时保存

\n
\n

顶部和底部工具栏

crud 组件支持通过配置headerToolbarfooterToolbar属性,实现在表格顶部和底部渲染组件,

\n
\n

上例中我们在顶部渲染了一段模板,通过${count}取到数据域中,CRUD 返回的count变量值;然后我们在底部渲染了一个按钮。

\n

从上面一些例子中你可能已经发现,当我们不配置该属性时,crud 默认会在顶部和底部渲染一些组件,实际上,headerToolbarfooterToolbar默认会有下面这些配置:

\n
{\n  \"headerToolbar\": [\"bulkActions\", \"pagination\"],\n  \"footerToolbar\": [\"statistics\", \"pagination\"]\n}\n
\n
    \n
  • 在顶部工具栏中:渲染批量操作按钮(如果在 crud 中,配置了 bulkActions 的话)和 分页组件
  • \n
  • 在底部工具栏中:渲染数据统计组件 和 分页组件
  • \n
\n
\n

如果你不希望在顶部或者底部渲染默认组件,你可以设置headerToolbarfooterToolbar为空数组[]

\n
\n

除了可以配置SchemaNode 类型以外,headerToolbarfooterToolbar还支持一些针对列表场景而内置的一些常用组件,下面分别介绍:

\n

分页

headerToolbar或者footerToolbar数组中添加pagination字符串,并且在数据源接口中返回了数据总数count,即可以渲染分页组件;添加switch-per-page字符串,可以渲染切换每页条数组件

\n
\n

crud默认不会处理数据分页,只是会把分页参数传给后端,由后端实现分页,并返回需要展示的数据 和 总数据数total变量:

\n

默认传给后端的分页参数格式为:

\n
{\n  \"page\": 1,\n  \"perPage\": 10\n}\n
\n

你可以通过配置pageFieldperPageField来修改传给后端的分页数据格式,如:

\n
{\n  \"pageField\": \"pageNo\",\n  \"perPageField\": \"pageSize\"\n}\n
\n

这样传给后端的参数格式将为:

\n
{\n  \"pageNo\": 1,\n  \"pageSize\": 10\n}\n
\n

你可以通过数据映射,在api中获取这些参数。

\n
{\n    \"type\": \"crud\",\n    \"api\": {\n        \"method\": \"get\",\n        \"url\": \"xxxxxx\",\n        \"data\": {\n            \"pageNo\": \"${page}\",\n            \"pageSize\": \"${perPage}\",\n            ... // 一些其他参数\n        }\n    }\n}\n
\n

分页有两种模式:

\n
1. 知道数据总数

如果后端可以知道数据总数时,接口返回格式如下:

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每一行的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"total\": 200 // 注意这里不是当前请求返回的 items 的长度,而是数据库一共有多少条数据,用于生成分页,\n  }\n}\n
\n

该模式下,会自动计算总页码数,渲染出有页码的分页组件

\n
2. 不知道数据总数

如果后端无法知道数据总数,那么可以返回hasNext字段,来标识是否有下一页。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"items\": [\n      {\n        // 每个成员的数据。\n        \"id\": 1,\n        \"xxx\": \"xxxx\"\n      }\n    ],\n\n    \"hasNext\": true // 标识是否有下一页。\n  }\n}\n
\n

这样 amis 会在配置分页组件的地方,渲染出一个简单的页面跳转控件。

\n

批量操作

headerToolbar或者footerToolbar数组中添加bulkActions字符串,并且在 crud 上配置bulkActions行为按钮数组,可以实现选中表格项并批量操作的功能。

\n
\n

批量操作会默认将下面数据添加到数据域中以供按钮行为使用

\n
    \n
  • items Array<object> 选中的行数据。
  • \n
  • rows items 的别名,推荐用 items。
  • \n
  • unselectedItems Array<object> 没选中的行数据也可获取。
  • \n
  • ids Array<number|string> 前提是行数据中有 id 字段,或者有指定的 primaryField 字段。
  • \n
  • 第一行所有行数据 还有第一行的所有行数据也会包含进去。
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

数据统计

headerToolbar或者footerToolbar数组中添加statistics字符串,可以实现简单的数据统计功能

\n
\n

加载更多

headerToolbar或者footerToolbar数组中添加load-more字符串,可以实现点击加载更多功能。

\n
\n

显隐显示查询条件表单

headerToolbar或者footerToolbar数组中添加filter-toggler字符串,并且在 crud 中配置"filterTogglable": true后,可以渲染一个可以切换显示查询表单的功能按钮

\n
\n

拖拽排序

通过配置"draggable": true和保存排序接口saveOrderApi,可以实现拖拽排序功能,

\n
\n

同样的,前端是不会处理排序结果,需要后端调用接口saveOrderApi来保存新的顺序

\n

发送方式默认为POST,会包含以下信息。

\n
    \n
  • ids 字符串如: 2,3,1,4,5,6 用 id 来记录新的顺序。 前提是你的列表接口返回了 id 字段。另外如果你的 primaryField 不是 id,则需要配置如: primaryField: "order_id"。注意:无论你配置成什么 primayField,这个字段名始终是 ids。
  • \n
  • rows Array<Item> 数组格式,新的顺序,数组里面包含所有原始信息。
  • \n
  • insertAfter 或者 insertBefore 这是 amis 生成的 diff 信息,对象格式,key 为目标成员的 primaryField 值,即 id,value 为数组,数组中存放成员 primaryField 值。如:

    \n
    {\n  \"insertAfter\": {\n    \"2\": [\"1\", \"3\"],\n    \"6\": [\"4\", \"5\"]\n  }\n}\n
    \n

    表示:成员 1 和成员 3 插入到了成员 2 的后面。成员 4 和 成员 5 插入到了 成员 6 的后面。

    \n
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

如下:

\n
{\n  \"saveOrderApi\": {\n    \"url\": \"/api/xxxx\",\n    \"data\": {\n      \"ids\": \"${ids}\"\n    }\n  }\n}\n
\n

这样就只会发送 ids 了。

\n

单条操作

当操作对象是单条数据时这类操作叫单条操作,比如:编辑、删除、通过、拒绝等等。CRUD 的 table 模式可以在 column 通过放置按钮来完成(其他模式参考 table 模式)。比如编辑就是添加个按钮行为是弹框类型的按钮或者添加一个页面跳转类型的按钮把当前行数据的 id 放在 query 中传过去、删除操作就是配置一个按钮行为是 AJAX 类型的按钮,将数据通过 api 发送给后端完成。

\n

CRUD 中不限制有多少个单条操作、添加一个操作对应的添加一个按钮就行了。CRUD 在处理按钮行为的时候会把当前行的完整数据传递过去,如果你的按钮行为是弹出时,还会包含一下信息:

\n
    \n
  • hasNext boolean 当按钮行为是弹框时,还会携带这个数据可以用来判断当前页中是否有下一条数据。
  • \n
  • hasPrev boolean 当按钮行为是弹框时,还会携带这个数据可以判断用来当前页中是否有上一条数据。
  • \n
  • index number 当按钮行为是弹框时,还会携带这个数据可以用来获取当前行数据在这一页中的位置。
  • \n
  • prevIndex number
  • \n
  • nextIndex number
  • \n
\n

你可以通过数据映射,在api中获取这些参数。

\n

如果你的按钮类型是 ajax,你也可以限定只发送部分数据比如。

\n
{\n  \"type\": \"button\",\n  \"label\": \"删除\",\n  \"actionType\": \"ajax\",\n  \"api\": \"delete:/api/xxxx/$id\",\n  \"confirmText\": \"确定要删除?\"\n}\n
\n

上面这个例子就会发送 id 字段了,如果想要全部发送过去同时还想添加点别的字段就这样:

\n
{\n  \"type\": \"button\",\n  \"label\": \"删除\",\n  \"actionType\": \"ajax\",\n  \"api\": {\n    \"method\": \"post\",\n    \"url\": \"/api/xxxx/$id\",\n    \"data\": {\n      \"&\": \"$$\",\n      \"op\": \"delete\"\n    }\n  },\n  \"confirmText\": \"确定要删除?\"\n}\n
\n

过滤条件参数同步地址栏

默认 CRUD 会将过滤条件参数同步至浏览器地址栏中,

\n

不过,如果你了解 数据链 的话,在开启同步地址栏时,地址栏中的参数数据会合并到顶层的数据链中,可能会造成一些预期中的问题,例如:会自动给某些同名的表单项设置默认值等。可以手动设置syncLocation: false来关闭此特性

\n

前端一次性加载

如果你的数据并不是很大,而且后端不方便做分页和条件过滤操作,那么通过配置loadDataOnce实现前端一次性加载并支持分页和条件过滤操作

\n
\n

配置一次性加载后,基本的分页、快速排序操作将会在前端进行完成。如果想实现前端检索,需要用到数据映射功能:

\n
\n

上例使用了数据映射中的filter过滤器,在前端实现了engine列的搜索功能。

\n
\n

注意:如果你的数据量较大,请务必使用服务端分页的方案,过多的前端数据展示,会显著影响前端页面的性能

\n
\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
typestringtype 指定为 CRUD 渲染器
modestring"table""table" 、 "cards" 或者 "list"
titlestring""可设置成空,当设置成空时,没有标题栏
classNamestring表格外层 Dom 的类名
apiAPICRUD 用来获取列表数据的 api。
loadDataOnceboolean是否一次性加载所有数据(前端分页)
loadDataOnceFetchOnFilterbooleantrue在开启 loadDataOnce 时,filter 时是否去重新请求 api
sourcestring数据映射接口返回某字段的值,不设置会默认把接口返回的items或者rows填充进mode区域
filterForm设置过滤器,当该表单提交后,会把数据带给当前 mode 刷新列表。
filterTogglablebooleanfalse是否可显隐过滤器
filterDefaultVisiblebooleantrue设置过滤器默认是否可见。
initFetchbooleantrue是否初始化的时候拉取数据, 只针对有 filter 的情况, 没有 filter 初始都会拉取数据
intervalnumber3000刷新时间(最低 3000)
silentPollingbooleanfalse配置刷新时是否隐藏加载动画
stopAutoRefreshWhenstring""通过表达式来配置停止刷新的条件
stopAutoRefreshWhenModalIsOpenbooleanfalse当有弹框时关闭自动刷新,关闭弹框又恢复
syncLocationbooleantrue是否将过滤条件的参数同步到地址栏
draggablebooleanfalse是否可通过拖拽排序
itemDraggableOnboolean表达式来配置是否可拖拽排序
saveOrderApiAPI保存排序的 api。
quickSaveApiAPI快速编辑后用来批量保存的 API。
quickSaveItemApiAPI快速编辑配置成及时保存时使用的 API。
bulkActionsArray<Action>批量操作列表,配置后,表格可进行选中操作。
defaultCheckedbooleanfalse当可批量操作时,默认是否全部勾选。
messagesObject覆盖消息提示,如果不指定,将采用 api 返回的 message
messages.fetchFailedstring获取失败时提示
messages.saveOrderFailedstring保存顺序失败提示
messages.saveOrderSuccessstring保存顺序成功提示
messages.quickSaveFailedstring快速保存失败提示
messages.quickSaveSuccessstring快速保存成功提示
primaryFieldstring"id"设置 ID 字段名。
defaultParamsObject设置默认 filter 默认参数,会在查询的时候一起发给后端
pageFieldstring"page"设置分页页码字段名。
perPageFieldstring"perPage"设置分页一页显示的多少条数据的字段名。注意:最好与 defaultParams 一起使用,请看下面例子。
perPageAvailableArray<number>[5, 10, 20, 50, 100]设置一页显示多少条数据下拉框可选条数。
orderFieldstring设置用来确定位置的字段名,设置后新的顺序将被赋值到该字段中。
hideQuickSaveBtnbooleanfalse隐藏顶部快速保存提示
autoJumpToTopOnPagerChangebooleanfalse当切分页的时候,是否自动跳顶部。
syncResponse2Querybooleantrue将返回数据同步到过滤器上。
keepItemSelectionOnPageChangebooleantrue保留条目选择,默认分页、搜素后,用户选择条目会被清空,开启此选项后会保留用户选择,可以实现跨页面批量操作。
labelTplstring单条描述模板,keepItemSelectionOnPageChange设置为true后会把所有已选择条目列出来,此选项可以用来定制条目展示文案。
headerToolbarArray['bulkActions', 'pagination']顶部工具栏配置
footerToolbarArray['statistics', 'pagination']底部工具栏配置
\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "基本用法", - "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "level": 2 - }, - { - "label": "数据源接口数据结构要求", - "fragment": "%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E8%A6%81%E6%B1%82", - "fullPath": "#%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E8%A6%81%E6%B1%82", - "level": 2 - }, - { - "label": "展示模式", - "fragment": "%E5%B1%95%E7%A4%BA%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E5%B1%95%E7%A4%BA%E6%A8%A1%E5%BC%8F", - "level": 2, - "children": [ - { - "label": "Table 表格模式", - "fragment": "table-%E8%A1%A8%E6%A0%BC%E6%A8%A1%E5%BC%8F", - "fullPath": "#table-%E8%A1%A8%E6%A0%BC%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "List 列表模式", - "fragment": "list-%E5%88%97%E8%A1%A8%E6%A8%A1%E5%BC%8F", - "fullPath": "#list-%E5%88%97%E8%A1%A8%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "Cards 卡片模式", - "fragment": "cards-%E5%8D%A1%E7%89%87%E6%A8%A1%E5%BC%8F", - "fullPath": "#cards-%E5%8D%A1%E7%89%87%E6%A8%A1%E5%BC%8F", - "level": 3 - } - ] - }, - { - "label": "查询条件表单", - "fragment": "%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", - "fullPath": "#%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", - "level": 2 - }, - { - "label": "数据源接口轮训", - "fragment": "%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E8%BD%AE%E8%AE%AD", - "fullPath": "#%E6%95%B0%E6%8D%AE%E6%BA%90%E6%8E%A5%E5%8F%A3%E8%BD%AE%E8%AE%AD", - "level": 2 - }, - { - "label": "列配置", - "fragment": "%E5%88%97%E9%85%8D%E7%BD%AE", - "fullPath": "#%E5%88%97%E9%85%8D%E7%BD%AE", - "level": 2, - "children": [ - { - "label": "排序检索", - "fragment": "%E6%8E%92%E5%BA%8F%E6%A3%80%E7%B4%A2", - "fullPath": "#%E6%8E%92%E5%BA%8F%E6%A3%80%E7%B4%A2", - "level": 3 - }, - { - "label": "快速搜索", - "fragment": "%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2", - "fullPath": "#%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2", - "level": 3 - }, - { - "label": "快速过滤", - "fragment": "%E5%BF%AB%E9%80%9F%E8%BF%87%E6%BB%A4", - "fullPath": "#%E5%BF%AB%E9%80%9F%E8%BF%87%E6%BB%A4", - "level": 3 - }, - { - "label": "快速编辑", - "fragment": "%E5%BF%AB%E9%80%9F%E7%BC%96%E8%BE%91", - "fullPath": "#%E5%BF%AB%E9%80%9F%E7%BC%96%E8%BE%91", - "level": 3, - "children": [ - { - "label": "指定编辑表单项类型", - "fragment": "%E6%8C%87%E5%AE%9A%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9%E7%B1%BB%E5%9E%8B", - "fullPath": "#%E6%8C%87%E5%AE%9A%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9%E7%B1%BB%E5%9E%8B", - "level": 4 - }, - { - "label": "内联模式", - "fragment": "%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", - "level": 4 - }, - { - "label": "即时保存", - "fragment": "%E5%8D%B3%E6%97%B6%E4%BF%9D%E5%AD%98", - "fullPath": "#%E5%8D%B3%E6%97%B6%E4%BF%9D%E5%AD%98", - "level": 4 - } - ] - } - ] - }, - { - "label": "顶部和底部工具栏", - "fragment": "%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8%E5%B7%A5%E5%85%B7%E6%A0%8F", - "fullPath": "#%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8%E5%B7%A5%E5%85%B7%E6%A0%8F", - "level": 2, - "children": [ - { - "label": "分页", - "fragment": "%E5%88%86%E9%A1%B5", - "fullPath": "#%E5%88%86%E9%A1%B5", - "level": 3 - }, - { - "label": "批量操作", - "fragment": "%E6%89%B9%E9%87%8F%E6%93%8D%E4%BD%9C", - "fullPath": "#%E6%89%B9%E9%87%8F%E6%93%8D%E4%BD%9C", - "level": 3 - }, - { - "label": "数据统计", - "fragment": "%E6%95%B0%E6%8D%AE%E7%BB%9F%E8%AE%A1", - "fullPath": "#%E6%95%B0%E6%8D%AE%E7%BB%9F%E8%AE%A1", - "level": 3 - }, - { - "label": "加载更多", - "fragment": "%E5%8A%A0%E8%BD%BD%E6%9B%B4%E5%A4%9A", - "fullPath": "#%E5%8A%A0%E8%BD%BD%E6%9B%B4%E5%A4%9A", - "level": 3 - }, - { - "label": "显隐显示查询条件表单", - "fragment": "%E6%98%BE%E9%9A%90%E6%98%BE%E7%A4%BA%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", - "fullPath": "#%E6%98%BE%E9%9A%90%E6%98%BE%E7%A4%BA%E6%9F%A5%E8%AF%A2%E6%9D%A1%E4%BB%B6%E8%A1%A8%E5%8D%95", - "level": 3 - } - ] - }, - { - "label": "拖拽排序", - "fragment": "%E6%8B%96%E6%8B%BD%E6%8E%92%E5%BA%8F", - "fullPath": "#%E6%8B%96%E6%8B%BD%E6%8E%92%E5%BA%8F", - "level": 2 - }, - { - "label": "单条操作", - "fragment": "%E5%8D%95%E6%9D%A1%E6%93%8D%E4%BD%9C", - "fullPath": "#%E5%8D%95%E6%9D%A1%E6%93%8D%E4%BD%9C", - "level": 2 - }, - { - "label": "过滤条件参数同步地址栏", - "fragment": "%E8%BF%87%E6%BB%A4%E6%9D%A1%E4%BB%B6%E5%8F%82%E6%95%B0%E5%90%8C%E6%AD%A5%E5%9C%B0%E5%9D%80%E6%A0%8F", - "fullPath": "#%E8%BF%87%E6%BB%A4%E6%9D%A1%E4%BB%B6%E5%8F%82%E6%95%B0%E5%90%8C%E6%AD%A5%E5%9C%B0%E5%9D%80%E6%A0%8F", - "level": 2 - }, - { - "label": "前端一次性加载", - "fragment": "%E5%89%8D%E7%AB%AF%E4%B8%80%E6%AC%A1%E6%80%A7%E5%8A%A0%E8%BD%BD", - "fullPath": "#%E5%89%8D%E7%AB%AF%E4%B8%80%E6%AC%A1%E6%80%A7%E5%8A%A0%E8%BD%BD", - "level": 2 - }, - { - "label": "属性表", - "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", - "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/components/date.html b/gh-pages/docs/components/date.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/date.html +++ b/gh-pages/docs/components/date.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/dialog.html b/gh-pages/docs/components/dialog.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/dialog.html +++ b/gh-pages/docs/components/dialog.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/divider.html b/gh-pages/docs/components/divider.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/divider.html +++ b/gh-pages/docs/components/divider.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/drawer.html b/gh-pages/docs/components/drawer.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/drawer.html +++ b/gh-pages/docs/components/drawer.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/dropdown-button.html b/gh-pages/docs/components/dropdown-button.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/dropdown-button.html +++ b/gh-pages/docs/components/dropdown-button.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/each.html b/gh-pages/docs/components/each.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/each.html +++ b/gh-pages/docs/components/each.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/array.html b/gh-pages/docs/components/form/array.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/array.html +++ b/gh-pages/docs/components/form/array.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/button-group.html b/gh-pages/docs/components/form/button-group.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/button-group.html +++ b/gh-pages/docs/components/form/button-group.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/button-toolbar.html b/gh-pages/docs/components/form/button-toolbar.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/button-toolbar.html +++ b/gh-pages/docs/components/form/button-toolbar.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/button.html b/gh-pages/docs/components/form/button.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/button.html +++ b/gh-pages/docs/components/form/button.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/chain-select.html b/gh-pages/docs/components/form/chain-select.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/chain-select.html +++ b/gh-pages/docs/components/form/chain-select.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/checkbox.html b/gh-pages/docs/components/form/checkbox.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/checkbox.html +++ b/gh-pages/docs/components/form/checkbox.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/checkboxes.html b/gh-pages/docs/components/form/checkboxes.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/checkboxes.html +++ b/gh-pages/docs/components/form/checkboxes.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/city.html b/gh-pages/docs/components/form/city.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/city.html +++ b/gh-pages/docs/components/form/city.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/color.html b/gh-pages/docs/components/form/color.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/color.html +++ b/gh-pages/docs/components/form/color.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/combo.html b/gh-pages/docs/components/form/combo.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/combo.html +++ b/gh-pages/docs/components/form/combo.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/date-range.html b/gh-pages/docs/components/form/date-range.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/date-range.html +++ b/gh-pages/docs/components/form/date-range.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/date.html b/gh-pages/docs/components/form/date.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/date.html +++ b/gh-pages/docs/components/form/date.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/datetime-range.html b/gh-pages/docs/components/form/datetime-range.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/datetime-range.html +++ b/gh-pages/docs/components/form/datetime-range.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/datetime.html b/gh-pages/docs/components/form/datetime.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/datetime.html +++ b/gh-pages/docs/components/form/datetime.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/diff-editor.html b/gh-pages/docs/components/form/diff-editor.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/diff-editor.html +++ b/gh-pages/docs/components/form/diff-editor.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/editor.html b/gh-pages/docs/components/form/editor.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/editor.html +++ b/gh-pages/docs/components/form/editor.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/editor_66729c0.js b/gh-pages/docs/components/form/editor_0342b1c.js similarity index 91% rename from gh-pages/docs/components/form/editor_66729c0.js rename to gh-pages/docs/components/form/editor_0342b1c.js index 6c983a77..8359ed5d 100644 --- a/gh-pages/docs/components/form/editor_66729c0.js +++ b/gh-pages/docs/components/form/editor_0342b1c.js @@ -8,7 +8,7 @@ amis.define('docs/components/form/editor.md', function(require, exports, module, "menuName": "Editor", "icon": null, "order": 19, - "html": "

基本用法

\n

支持的语言

可以设置language配置高亮的语言,支持的语言有:

\n

batccoffeescriptcppcsharpcssdockerfilefsharpgohandlebarshtmlinijavajavascriptjsonlessluamarkdownmsdaxobjective-cphpplaintextpostiatspowershellpugpythonrrazorrubysbscsssolsqlswifttypescriptvbxmlyaml

\n
\n

当然你也可以使用xxx-editor这种形式,例如"type": "json-editor"

\n
\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
languagestringjavascript编辑器高亮的语言
\n", + "html": "

基本用法

\n

支持的语言

可以设置language配置高亮的语言,支持的语言有:

\n

batccoffeescriptcppcsharpcssdockerfilefsharpgohandlebarshtmlinijavajavascriptjsonlessluamarkdownmsdaxobjective-cphpplaintextpostiatspowershellpugpythonrrazorrubysbscsssolsqlswifttypescriptvbxmlyaml

\n
\n

当然你也可以使用xxx-editor这种形式,例如"type": "json-editor"

\n
\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
languagestringjavascript编辑器高亮的语言
sizestringmd编辑器高度,取值可以是 mdlgxlxxl
optionsobjectmonaco 编辑器的其它配置,比如是否显示行号等,请参考这里
\n", "toc": { "label": "目录", "type": "toc", diff --git a/gh-pages/docs/components/form/fieldset.html b/gh-pages/docs/components/form/fieldset.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/fieldset.html +++ b/gh-pages/docs/components/form/fieldset.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/file.html b/gh-pages/docs/components/form/file.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/file.html +++ b/gh-pages/docs/components/form/file.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/formitem.html b/gh-pages/docs/components/form/formitem.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/formitem.html +++ b/gh-pages/docs/components/form/formitem.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/formula.html b/gh-pages/docs/components/form/formula.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/formula.html +++ b/gh-pages/docs/components/form/formula.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/grid.html b/gh-pages/docs/components/form/grid.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/grid.html +++ b/gh-pages/docs/components/form/grid.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/group.html b/gh-pages/docs/components/form/group.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/group.html +++ b/gh-pages/docs/components/form/group.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/hbox.html b/gh-pages/docs/components/form/hbox.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/hbox.html +++ b/gh-pages/docs/components/form/hbox.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/hidden.html b/gh-pages/docs/components/form/hidden.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/hidden.html +++ b/gh-pages/docs/components/form/hidden.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/image.html b/gh-pages/docs/components/form/image.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/image.html +++ b/gh-pages/docs/components/form/image.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/index.html b/gh-pages/docs/components/form/index.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/index.html +++ b/gh-pages/docs/components/form/index.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/index_6a74e10.js b/gh-pages/docs/components/form/index_6a74e10.js new file mode 100644 index 00000000..200097c1 --- /dev/null +++ b/gh-pages/docs/components/form/index_6a74e10.js @@ -0,0 +1,193 @@ +amis.define('docs/components/form/index.md', function(require, exports, module, define) { + + module.exports = { + "title": "Form 表单", + "description": null, + "type": 0, + "group": "⚙ 组件", + "menuName": "Form 表单", + "icon": null, + "order": 24, + "html": "

表单是 amis 中核心组件之一,主要作用是提交或者展示表单数据。

\n

基本用法

最基本的用法是配置 表单项 和 提交接口api

\n

如下我们配置姓名和邮箱表单项,并可以填写数据并提交给接口/api/mock2/form/saveForm

\n
\n

表单展示

默认模式

默认展示模式为文字表单项分行显示

\n
\n

水平模式

水平模式,左右摆放,左右比率分配。

\n
\n

可以配置horizontal属性,调整偏移量,格式如下:

\n
"horizontal": {\n    "left": 2,\n    "right": 10,\n    "offset": 2\n}\n
\n

内联模式

使用内联模式展现表单项

\n
\n

实现一行展示多个表单项

使用 group 实现一行显示多个表单项

\n
\n

底部按钮栏

隐藏默认提交按钮

Form 默认会在底部渲染一个提交按钮,用于执行表单的提交行为。你可以通过两种方式去掉这个默认的提交按钮:

\n
    \n
  1. 配置:"submitText": ""
  2. \n
  3. 配置:"actions": []
  4. \n
\n
\n

配置若干自定义按钮

同样,你可以通过 actions 属性,配置任意你想要的行为按钮。

\n
\n

请记住,如果想触发表单提交行为,请配置"actionType": "submit""type": "submit"按钮

\n

去掉表单边框

通过配置"wrapWithPanel": false,可以去掉默认表单边框(包括标题,按钮栏以及边距样式等)。

\n
\n

注意!配置该属性后,titleactions属性将失效并无法渲染,请在表单内自行配置。

\n

固定底部栏

如果表单项较多导致表单过长,而不方便操作底部的按钮栏,可以配置"affixFooter": true属性,将底部按钮栏固定在浏览器底部

\n

表单项数据初始化

表单可以通过配置initApi,实现表单初始化时请求接口,用于展示数据或初始化表单项。

\n
\n

轮训初始化请求

Form 支持轮训初始化接口,步骤如下:

\n
    \n
  1. 配置initApi
  2. \n
  3. 配置 interval:单位为ms,最低值3000,低于该值按3000处理
  4. \n
\n
\n

如果希望在满足某个条件的情况下停止轮训,配置stopAutoRefreshWhen表达式。

\n
\n

静态初始化数据域

我们也可以手动设置 form 的数据域来初始化多个表单项值

\n
\n

数据格式一致性问题

当表单来初始化表单项值时,需要保持数据格式的一致性。

\n

如果表单初始化的值与表单项配置的数据格式不符合,而且用户没有再次操作该表单项,而直接提交表单,那么会将当前默认值原封不动的提交给后端,也许会导致不一致性的问题,我们看一个例子:

\n
\n

上例中, select 我们配置了"multiple": true,预期中,我们希望选中 AC 项时,表单项的数据格式为:"a,c",但是我们表单数据域中,select默认值为"value": ["a", "c"],并不符合我们当前表单项的数据格式配置,这样会导致两个问题:

\n
    \n
  1. 有可能不会默认选中 AC 选项;
  2. \n
  3. 当不操作该表单项,直接提交时,预期是:"a,c",但提交给后端的数据为:["a", "c"],导致了不一致性的问题。
  4. \n
\n
\n

通过 initApi 配置默认值同理,不再赘述

\n
\n

因此一定确保默认值与选择器表单项数据格式配置相匹配。

\n

表单提交

配置api属性,当表单执行提交行为时,会默认将当前表单数据域中的数据使用post方式发送给所配置api

\n
\n

点击提交按钮,会看到发送表单请求,请求数据体为:

\n
{\n  \"name\": \"xxx\",\n  \"email\": \"xxx@xx.com\"\n}\n
\n

当你需要配置特定的请求方式,请求体,header时,使用对象类型 api 配置,并使用 数据映射 进行数据配置。下面示例我们更改了请求方法为PUT,并在原提交数据的基础上添加一个字段"_from"。更多用法查看 API 文档数据映射文档

\n
\n

触发表单提交行为有下面几种方式:

\n
    \n
  1. 默认的提交按钮
  2. \n
  3. 为行为按钮配置"actionType": "submit"
  4. \n
  5. 配置"type": "submit"的按钮
  6. \n
\n

轮训提交请求

通过设置asyncApi,当表单提交发送保存接口后,还会继续轮训请求该接口,默认间隔为3秒,直到返回 finished 属性为 true 才 结束。

\n
\n

如果决定结束轮训的标识字段名不是 finished,请设置finishedField属性,比如:"finishedField": "is_success"

\n

重置表单

配置"type": "reset"或者"actionType": "reset"的按钮,可以实现点击重置表单项值。

\n
\n
\n

请注意:这里的重置是将表单数据域重置到初始状态而不是清空,如果你配置了初始化接口,那么重置操作是会将表单项重置至初始化表单项值

\n
\n

表单数据域调试

配置debug:true可以查看当前表单的数据域数据详情,方便数据映射、表达式等功能调试,如下,你可以修改表单项查看数据域变化

\n
\n
\n

该配置不会展示完整的数据链,只会展示当前表单的数据域

\n
\n

禁用数据链

默认表单是可以获取到完整数据链中的数据的,但是该默认行为不适用于所有场景,例如:

\n

在 CRUD 的列表项中配置弹框,弹框中有一个表单,则该表单项中所有的同name表单项都会根据上层crud的行数据进行初始化,如果你是实现编辑的功能那并没有是什么问题,但是如果你是新建功能,那么这将不符合你的预期,你可以手动设置"canAccessSuperData": false来关闭该行为

\n

提交后行为

表单提交成功后,可以执行一些行为。

\n

重置表单

如果想提交表单成功后,重置当前表单至初始状态,可以配置"resetAfterSubmit": true

\n
\n

编辑表单项,点击提交,成功后会发现表单项的值会重置到初始状态,即空

\n
\n

注意,如果表单项有默认值,则会将该表单项的值重置至该默认值。

\n
\n

跳转页面

配置redirect属性,可以指定表单提交成功后要跳转至的页面

\n
\n

刷新目标组件

配置reload属性为其他组件name值,可以在表单提交成功之后,刷新指定组件。

\n
\n

上例中form提交成功后,会触发namemy_serviceService组件重新请求初始化接口

\n

上面示例是一种组件间联动

\n

将数据域发送给目标组件

配置target属性为目标组件name值,可以在触发提交行为后,将当前表单的数据域发送给目标组件。

\n
\n

第一个表单在提交时,会将它的表单数据域数据发送给detailForm表单,触发detailForm的初始化接口联动,重新请求接口更新数据域,并更新关键字表单项。

\n

上面示例组合使用了 组件间联动接口联动

\n

持久化保存表单项数据

表单默认在重置之后(切换页面、弹框中表单关闭表单),会自动清空掉表单中的所有数据,如果你想持久化保留当前表单项的数据而不清空它,那么配置persistData:true

\n

如果想提交成功后,清空该缓存,则配置"clearPersistDataAfterSubmit": true

\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
typestring"form" 指定为 Form 渲染器
namestring设置一个名字后,方便其他组件与其通信
modestringnormal表单展示方式,可以是:normalhorizontal 或者 inline
horizontalObject{"left":"col-sm-2", "right":"col-sm-10", "offset":"col-sm-offset-2"}当 mode 为 horizontal 时有用,用来控制 label
titlestring"表单"Form 的标题
submitTextString"提交"默认的提交按钮名称,如果设置成空,则可以把默认按钮去掉。
classNamestring外层 Dom 的类名
controlsArray<表单项>Form 表单项集合
actionsArray<表单项>Form 提交按钮,成员为 Action
messagesObject消息提示覆写,默认消息读取的是 API 返回的消息,但是在此可以覆写它。
messages.fetchSuccessstring获取成功时提示
messages.fetchFailedstring获取失败时提示
messages.saveSuccessstring保存成功时提示
messages.saveFailedstring保存失败时提示
wrapWithPanelbooleantrue是否让 Form 用 panel 包起来,设置为 false 后,actions 将无效。
panelClassNamebooleantrue是否让 Form 用 panel 包起来,设置为 false 后,actions 将无效。
apiAPIForm 用来保存数据的 api。
initApiAPIForm 用来获取初始数据的 api。
intervalnumber3000刷新时间(最低 3000)
silentPollingbooleanfalse配置刷新时是否显示加载动画
stopAutoRefreshWhenstring""通过表达式 来配置停止刷新的条件
initAsyncApiAPIForm 用来获取初始数据的 api,与 initApi 不同的是,会一直轮训请求该接口,直到返回 finished 属性为 true 才 结束。
initFetchbooleantrue设置了 initApi 或者 initAsyncApi 后,默认会开始就发请求,设置为 false 后就不会起始就请求接口
initFetchOnstring用表达式来配置
initFinishedFieldstringfinished设置了 initAsyncApi 后,默认会从返回数据的 data.finished 来判断是否完成,也可以设置成其他的 xxx,就会从 data.xxx 中获取
initCheckIntervalnumber3000设置了 initAsyncApi 以后,默认拉取的时间间隔
asyncApiAPI设置此属性后,表单提交发送保存接口后,还会继续轮训请求该接口,直到返回 finished 属性为 true 才 结束。
checkIntervalnumber3000轮训请求的时间间隔,默认为 3 秒。设置 asyncApi 才有效
finishedFieldstring"finished"如果决定结束的字段名不是 finished 请设置此属性,比如 is_success
submitOnChangebooleanfalse表单修改即提交
submitOnInitbooleanfalse初始就提交一次
resetAfterSubmitbooleanfalse提交后是否重置表单
primaryFieldstring"id"设置主键 id, 当设置后,检测表单是否完成时(asyncApi),只会携带此数据。
targetstring默认表单提交自己会通过发送 api 保存数据,但是也可以设定另外一个 form 的 name 值,或者另外一个 CRUD 模型的 name 值。 如果 target 目标是一个 Form ,则目标 Form 会重新触发 initApi,api 可以拿到当前 form 数据。如果目标是一个 CRUD 模型,则目标模型会重新触发搜索,参数为当前 Form 数据。当目标是 window 时,会把当前表单的数据附带到页面地址上。
redirectstring设置此属性后,Form 保存成功后,自动跳转到指定页面。支持相对地址,和绝对地址(相对于组内的)。
reloadstring操作完后刷新目标对象。请填写目标组件设置的 name 值,如果填写为 window 则让当前页面整体刷新。
autoFocusbooleanfalse是否自动聚焦。
canAccessSuperDatabooleantrue指定是否可以自动获取上层的数据并映射到表单项上
persistDatabooleantrue指定表单是否开启本地缓存
clearPersistDataAfterSubmitbooleantrue指定表单提交成功后是否清除本地缓存
trimValuesbooleanfalsetrim 当前表单项的每一个值
\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "基本用法", + "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "level": 2 + }, + { + "label": "表单展示", + "fragment": "%E8%A1%A8%E5%8D%95%E5%B1%95%E7%A4%BA", + "fullPath": "#%E8%A1%A8%E5%8D%95%E5%B1%95%E7%A4%BA", + "level": 2, + "children": [ + { + "label": "默认模式", + "fragment": "%E9%BB%98%E8%AE%A4%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E9%BB%98%E8%AE%A4%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "水平模式", + "fragment": "%E6%B0%B4%E5%B9%B3%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E6%B0%B4%E5%B9%B3%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "内联模式", + "fragment": "%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "实现一行展示多个表单项", + "fragment": "%E5%AE%9E%E7%8E%B0%E4%B8%80%E8%A1%8C%E5%B1%95%E7%A4%BA%E5%A4%9A%E4%B8%AA%E8%A1%A8%E5%8D%95%E9%A1%B9", + "fullPath": "#%E5%AE%9E%E7%8E%B0%E4%B8%80%E8%A1%8C%E5%B1%95%E7%A4%BA%E5%A4%9A%E4%B8%AA%E8%A1%A8%E5%8D%95%E9%A1%B9", + "level": 3 + }, + { + "label": "底部按钮栏", + "fragment": "%E5%BA%95%E9%83%A8%E6%8C%89%E9%92%AE%E6%A0%8F", + "fullPath": "#%E5%BA%95%E9%83%A8%E6%8C%89%E9%92%AE%E6%A0%8F", + "level": 3, + "children": [ + { + "label": "隐藏默认提交按钮", + "fragment": "%E9%9A%90%E8%97%8F%E9%BB%98%E8%AE%A4%E6%8F%90%E4%BA%A4%E6%8C%89%E9%92%AE", + "fullPath": "#%E9%9A%90%E8%97%8F%E9%BB%98%E8%AE%A4%E6%8F%90%E4%BA%A4%E6%8C%89%E9%92%AE", + "level": 4 + }, + { + "label": "配置若干自定义按钮", + "fragment": "%E9%85%8D%E7%BD%AE%E8%8B%A5%E5%B9%B2%E8%87%AA%E5%AE%9A%E4%B9%89%E6%8C%89%E9%92%AE", + "fullPath": "#%E9%85%8D%E7%BD%AE%E8%8B%A5%E5%B9%B2%E8%87%AA%E5%AE%9A%E4%B9%89%E6%8C%89%E9%92%AE", + "level": 4 + } + ] + }, + { + "label": "去掉表单边框", + "fragment": "%E5%8E%BB%E6%8E%89%E8%A1%A8%E5%8D%95%E8%BE%B9%E6%A1%86", + "fullPath": "#%E5%8E%BB%E6%8E%89%E8%A1%A8%E5%8D%95%E8%BE%B9%E6%A1%86", + "level": 3 + }, + { + "label": "固定底部栏", + "fragment": "%E5%9B%BA%E5%AE%9A%E5%BA%95%E9%83%A8%E6%A0%8F", + "fullPath": "#%E5%9B%BA%E5%AE%9A%E5%BA%95%E9%83%A8%E6%A0%8F", + "level": 3 + } + ] + }, + { + "label": "表单项数据初始化", + "fragment": "%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE%E5%88%9D%E5%A7%8B%E5%8C%96", + "fullPath": "#%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE%E5%88%9D%E5%A7%8B%E5%8C%96", + "level": 2, + "children": [ + { + "label": "轮训初始化请求", + "fragment": "%E8%BD%AE%E8%AE%AD%E5%88%9D%E5%A7%8B%E5%8C%96%E8%AF%B7%E6%B1%82", + "fullPath": "#%E8%BD%AE%E8%AE%AD%E5%88%9D%E5%A7%8B%E5%8C%96%E8%AF%B7%E6%B1%82", + "level": 3 + }, + { + "label": "静态初始化数据域", + "fragment": "%E9%9D%99%E6%80%81%E5%88%9D%E5%A7%8B%E5%8C%96%E6%95%B0%E6%8D%AE%E5%9F%9F", + "fullPath": "#%E9%9D%99%E6%80%81%E5%88%9D%E5%A7%8B%E5%8C%96%E6%95%B0%E6%8D%AE%E5%9F%9F", + "level": 3 + }, + { + "label": "数据格式一致性问题", + "fragment": "%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F%E4%B8%80%E8%87%B4%E6%80%A7%E9%97%AE%E9%A2%98", + "fullPath": "#%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F%E4%B8%80%E8%87%B4%E6%80%A7%E9%97%AE%E9%A2%98", + "level": 3 + } + ] + }, + { + "label": "表单提交", + "fragment": "%E8%A1%A8%E5%8D%95%E6%8F%90%E4%BA%A4", + "fullPath": "#%E8%A1%A8%E5%8D%95%E6%8F%90%E4%BA%A4", + "level": 2, + "children": [ + { + "label": "轮训提交请求", + "fragment": "%E8%BD%AE%E8%AE%AD%E6%8F%90%E4%BA%A4%E8%AF%B7%E6%B1%82", + "fullPath": "#%E8%BD%AE%E8%AE%AD%E6%8F%90%E4%BA%A4%E8%AF%B7%E6%B1%82", + "level": 3 + } + ] + }, + { + "label": "重置表单", + "fragment": "%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", + "fullPath": "#%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", + "level": 2 + }, + { + "label": "表单数据域调试", + "fragment": "%E8%A1%A8%E5%8D%95%E6%95%B0%E6%8D%AE%E5%9F%9F%E8%B0%83%E8%AF%95", + "fullPath": "#%E8%A1%A8%E5%8D%95%E6%95%B0%E6%8D%AE%E5%9F%9F%E8%B0%83%E8%AF%95", + "level": 2 + }, + { + "label": "禁用数据链", + "fragment": "%E7%A6%81%E7%94%A8%E6%95%B0%E6%8D%AE%E9%93%BE", + "fullPath": "#%E7%A6%81%E7%94%A8%E6%95%B0%E6%8D%AE%E9%93%BE", + "level": 2 + }, + { + "label": "提交后行为", + "fragment": "%E6%8F%90%E4%BA%A4%E5%90%8E%E8%A1%8C%E4%B8%BA", + "fullPath": "#%E6%8F%90%E4%BA%A4%E5%90%8E%E8%A1%8C%E4%B8%BA", + "level": 2, + "children": [ + { + "label": "重置表单", + "fragment": "%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", + "fullPath": "#%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", + "level": 3 + }, + { + "label": "跳转页面", + "fragment": "%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2", + "fullPath": "#%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2", + "level": 3 + }, + { + "label": "刷新目标组件", + "fragment": "%E5%88%B7%E6%96%B0%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", + "fullPath": "#%E5%88%B7%E6%96%B0%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", + "level": 3 + }, + { + "label": "将数据域发送给目标组件", + "fragment": "%E5%B0%86%E6%95%B0%E6%8D%AE%E5%9F%9F%E5%8F%91%E9%80%81%E7%BB%99%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", + "fullPath": "#%E5%B0%86%E6%95%B0%E6%8D%AE%E5%9F%9F%E5%8F%91%E9%80%81%E7%BB%99%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", + "level": 3 + } + ] + }, + { + "label": "持久化保存表单项数据", + "fragment": "%E6%8C%81%E4%B9%85%E5%8C%96%E4%BF%9D%E5%AD%98%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE", + "fullPath": "#%E6%8C%81%E4%B9%85%E5%8C%96%E4%BF%9D%E5%AD%98%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE", + "level": 2 + }, + { + "label": "属性表", + "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", + "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", + "level": 2 + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/components/form/index_bd485a5.js b/gh-pages/docs/components/form/index_bd485a5.js deleted file mode 100644 index c0bb4e26..00000000 --- a/gh-pages/docs/components/form/index_bd485a5.js +++ /dev/null @@ -1,181 +0,0 @@ -amis.define('docs/components/form/index.md', function(require, exports, module, define) { - - module.exports = { - "title": "Form 表单", - "description": null, - "type": 0, - "group": "⚙ 组件", - "menuName": "Form 表单", - "icon": null, - "order": 24, - "html": "

表单是 amis 中核心组件之一,主要作用是提交或者展示表单数据。

\n

基本用法

最基本的用法是配置 表单项 和 提交接口api

\n

如下我们配置姓名和邮箱表单项,并可以填写数据并提交给接口/api/mock2/form/saveForm

\n
\n

表单展示

默认模式

默认展示模式为文字表单项分行显示

\n
\n

水平模式

水平模式,左右摆放,左右比率分配。

\n
\n

可以配置horizontal属性,调整偏移量,格式如下:

\n
"horizontal": {\n    "left": 2,\n    "right": 10,\n    "offset": 2\n}\n
\n

内联模式

使用内联模式展现表单项

\n
\n

实现一行展示多个表单项

使用 group 实现一行显示多个表单项

\n
\n

底部按钮栏

隐藏默认提交按钮

Form 默认会在底部渲染一个提交按钮,用于执行表单的提交行为。你可以通过两种方式去掉这个默认的提交按钮:

\n
    \n
  1. 配置:"submitText": ""
  2. \n
  3. 配置:"actions": []
  4. \n
\n
\n

配置若干自定义按钮

同样,你可以通过 actions 属性,配置任意你想要的行为按钮。

\n
\n

请记住,如果想触发表单提交行为,请配置"actionType": "submit""type": "submit"按钮

\n

去掉表单边框

通过配置"wrapWithPanel": false,可以去掉默认表单边框(包括标题,按钮栏以及边距样式等)。

\n
\n

注意!配置该属性后,titleactions属性将失效并无法渲染,请在表单内自行配置。

\n

固定底部栏

如果表单项较多导致表单过长,而不方便操作底部的按钮栏,可以配置"affixFooter": true属性,将底部按钮栏固定在浏览器底部

\n

表单项数据初始化

表单可以通过配置initApi,实现表单初始化时请求接口,用于展示数据或初始化表单项。

\n
\n

轮训初始化请求

Form 支持轮训初始化接口,步骤如下:

\n
    \n
  1. 配置initApi
  2. \n
  3. 配置 interval:单位为ms,最低值3000,低于该值按3000处理
  4. \n
\n
\n

如果希望在满足某个条件的情况下停止轮训,配置stopAutoRefreshWhen表达式。

\n
\n

表单提交

配置api属性,当表单执行提交行为时,会默认将当前表单数据域中的数据使用post方式发送给所配置api

\n
\n

点击提交按钮,会看到发送表单请求,请求数据体为:

\n
{\n  \"name\": \"xxx\",\n  \"email\": \"xxx@xx.com\"\n}\n
\n

当你需要配置特定的请求方式,请求体,header时,使用对象类型 api 配置,并使用 数据映射 进行数据配置。下面示例我们更改了请求方法为PUT,并在原提交数据的基础上添加一个字段"_from"。更多用法查看 API 文档数据映射文档

\n
\n

触发表单提交行为有下面几种方式:

\n
    \n
  1. 默认的提交按钮
  2. \n
  3. 为行为按钮配置"actionType": "submit"
  4. \n
  5. 配置"type": "submit"的按钮
  6. \n
\n

轮训提交请求

通过设置asyncApi,当表单提交发送保存接口后,还会继续轮训请求该接口,默认间隔为3秒,直到返回 finished 属性为 true 才 结束。

\n
\n

如果决定结束轮训的标识字段名不是 finished,请设置finishedField属性,比如:"finishedField": "is_success"

\n

重置表单

配置"type": "reset"或者"actionType": "reset"的按钮,可以实现点击重置表单项值。

\n
\n
\n

请注意:这里的重置是将表单数据域重置到初始状态而不是清空,如果你配置了初始化接口,那么重置操作是会将表单项重置至初始化表单项值

\n
\n

表单数据域调试

配置debug:true可以查看当前表单的数据域数据详情,方便数据映射、表达式等功能调试,如下,你可以修改表单项查看数据域变化

\n
\n
\n

该配置不会展示完整的数据链,只会展示当前表单的数据域

\n
\n

禁用数据链

默认表单是可以获取到完整数据链中的数据的,但是该默认行为不适用于所有场景,例如:

\n

在 CRUD 的列表项中配置弹框,弹框中有一个表单,则该表单项中所有的同name表单项都会根据上层crud的行数据进行初始化,如果你是实现编辑的功能那并没有是什么问题,但是如果你是新建功能,那么这将不符合你的预期,你可以手动设置"canAccessSuperData": false来关闭该行为

\n

提交后行为

表单提交成功后,可以执行一些行为。

\n

重置表单

如果想提交表单成功后,重置当前表单至初始状态,可以配置"resetAfterSubmit": true

\n
\n

编辑表单项,点击提交,成功后会发现表单项的值会重置到初始状态,即空

\n
\n

注意,如果表单项有默认值,则会将该表单项的值重置至该默认值。

\n
\n

跳转页面

配置redirect属性,可以指定表单提交成功后要跳转至的页面

\n
\n

刷新目标组件

配置reload属性为其他组件name值,可以在表单提交成功之后,刷新指定组件。

\n
\n

上例中form提交成功后,会触发namemy_serviceService组件重新请求初始化接口

\n

上面示例是一种组件间联动

\n

将数据域发送给目标组件

配置target属性为目标组件name值,可以在触发提交行为后,将当前表单的数据域发送给目标组件。

\n
\n

第一个表单在提交时,会将它的表单数据域数据发送给detailForm表单,触发detailForm的初始化接口联动,重新请求接口更新数据域,并更新关键字表单项。

\n

上面示例组合使用了 组件间联动接口联动

\n

持久化保存表单项数据

表单默认在重置之后(切换页面、弹框中表单关闭表单),会自动清空掉表单中的所有数据,如果你想持久化保留当前表单项的数据而不清空它,那么配置persistData:true

\n

如果想提交成功后,清空该缓存,则配置"clearPersistDataAfterSubmit": true

\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
typestring"form" 指定为 Form 渲染器
namestring设置一个名字后,方便其他组件与其通信
modestringnormal表单展示方式,可以是:normalhorizontal 或者 inline
horizontalObject{"left":"col-sm-2", "right":"col-sm-10", "offset":"col-sm-offset-2"}当 mode 为 horizontal 时有用,用来控制 label
titlestring"表单"Form 的标题
submitTextString"提交"默认的提交按钮名称,如果设置成空,则可以把默认按钮去掉。
classNamestring外层 Dom 的类名
controlsArray<表单项>Form 表单项集合
actionsArray<表单项>Form 提交按钮,成员为 Action
messagesObject消息提示覆写,默认消息读取的是 API 返回的消息,但是在此可以覆写它。
messages.fetchSuccessstring获取成功时提示
messages.fetchFailedstring获取失败时提示
messages.saveSuccessstring保存成功时提示
messages.saveFailedstring保存失败时提示
wrapWithPanelbooleantrue是否让 Form 用 panel 包起来,设置为 false 后,actions 将无效。
panelClassNamebooleantrue是否让 Form 用 panel 包起来,设置为 false 后,actions 将无效。
apiAPIForm 用来保存数据的 api。
initApiAPIForm 用来获取初始数据的 api。
intervalnumber3000刷新时间(最低 3000)
silentPollingbooleanfalse配置刷新时是否显示加载动画
stopAutoRefreshWhenstring""通过表达式 来配置停止刷新的条件
initAsyncApiAPIForm 用来获取初始数据的 api,与 initApi 不同的是,会一直轮训请求该接口,直到返回 finished 属性为 true 才 结束。
initFetchbooleantrue设置了 initApi 或者 initAsyncApi 后,默认会开始就发请求,设置为 false 后就不会起始就请求接口
initFetchOnstring用表达式来配置
initFinishedFieldstringfinished设置了 initAsyncApi 后,默认会从返回数据的 data.finished 来判断是否完成,也可以设置成其他的 xxx,就会从 data.xxx 中获取
initCheckIntervalnumber3000设置了 initAsyncApi 以后,默认拉取的时间间隔
asyncApiAPI设置此属性后,表单提交发送保存接口后,还会继续轮训请求该接口,直到返回 finished 属性为 true 才 结束。
checkIntervalnumber3000轮训请求的时间间隔,默认为 3 秒。设置 asyncApi 才有效
finishedFieldstring"finished"如果决定结束的字段名不是 finished 请设置此属性,比如 is_success
submitOnChangebooleanfalse表单修改即提交
submitOnInitbooleanfalse初始就提交一次
resetAfterSubmitbooleanfalse提交后是否重置表单
primaryFieldstring"id"设置主键 id, 当设置后,检测表单是否完成时(asyncApi),只会携带此数据。
targetstring默认表单提交自己会通过发送 api 保存数据,但是也可以设定另外一个 form 的 name 值,或者另外一个 CRUD 模型的 name 值。 如果 target 目标是一个 Form ,则目标 Form 会重新触发 initApi,api 可以拿到当前 form 数据。如果目标是一个 CRUD 模型,则目标模型会重新触发搜索,参数为当前 Form 数据。当目标是 window 时,会把当前表单的数据附带到页面地址上。
redirectstring设置此属性后,Form 保存成功后,自动跳转到指定页面。支持相对地址,和绝对地址(相对于组内的)。
reloadstring操作完后刷新目标对象。请填写目标组件设置的 name 值,如果填写为 window 则让当前页面整体刷新。
autoFocusbooleanfalse是否自动聚焦。
canAccessSuperDatabooleantrue指定是否可以自动获取上层的数据并映射到表单项上
persistDatabooleantrue指定表单是否开启本地缓存
clearPersistDataAfterSubmitbooleantrue指定表单提交成功后是否清除本地缓存
trimValuesbooleanfalsetrim 当前表单项的每一个值
\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "基本用法", - "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "level": 2 - }, - { - "label": "表单展示", - "fragment": "%E8%A1%A8%E5%8D%95%E5%B1%95%E7%A4%BA", - "fullPath": "#%E8%A1%A8%E5%8D%95%E5%B1%95%E7%A4%BA", - "level": 2, - "children": [ - { - "label": "默认模式", - "fragment": "%E9%BB%98%E8%AE%A4%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E9%BB%98%E8%AE%A4%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "水平模式", - "fragment": "%E6%B0%B4%E5%B9%B3%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E6%B0%B4%E5%B9%B3%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "内联模式", - "fragment": "%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E5%86%85%E8%81%94%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "实现一行展示多个表单项", - "fragment": "%E5%AE%9E%E7%8E%B0%E4%B8%80%E8%A1%8C%E5%B1%95%E7%A4%BA%E5%A4%9A%E4%B8%AA%E8%A1%A8%E5%8D%95%E9%A1%B9", - "fullPath": "#%E5%AE%9E%E7%8E%B0%E4%B8%80%E8%A1%8C%E5%B1%95%E7%A4%BA%E5%A4%9A%E4%B8%AA%E8%A1%A8%E5%8D%95%E9%A1%B9", - "level": 3 - }, - { - "label": "底部按钮栏", - "fragment": "%E5%BA%95%E9%83%A8%E6%8C%89%E9%92%AE%E6%A0%8F", - "fullPath": "#%E5%BA%95%E9%83%A8%E6%8C%89%E9%92%AE%E6%A0%8F", - "level": 3, - "children": [ - { - "label": "隐藏默认提交按钮", - "fragment": "%E9%9A%90%E8%97%8F%E9%BB%98%E8%AE%A4%E6%8F%90%E4%BA%A4%E6%8C%89%E9%92%AE", - "fullPath": "#%E9%9A%90%E8%97%8F%E9%BB%98%E8%AE%A4%E6%8F%90%E4%BA%A4%E6%8C%89%E9%92%AE", - "level": 4 - }, - { - "label": "配置若干自定义按钮", - "fragment": "%E9%85%8D%E7%BD%AE%E8%8B%A5%E5%B9%B2%E8%87%AA%E5%AE%9A%E4%B9%89%E6%8C%89%E9%92%AE", - "fullPath": "#%E9%85%8D%E7%BD%AE%E8%8B%A5%E5%B9%B2%E8%87%AA%E5%AE%9A%E4%B9%89%E6%8C%89%E9%92%AE", - "level": 4 - } - ] - }, - { - "label": "去掉表单边框", - "fragment": "%E5%8E%BB%E6%8E%89%E8%A1%A8%E5%8D%95%E8%BE%B9%E6%A1%86", - "fullPath": "#%E5%8E%BB%E6%8E%89%E8%A1%A8%E5%8D%95%E8%BE%B9%E6%A1%86", - "level": 3 - }, - { - "label": "固定底部栏", - "fragment": "%E5%9B%BA%E5%AE%9A%E5%BA%95%E9%83%A8%E6%A0%8F", - "fullPath": "#%E5%9B%BA%E5%AE%9A%E5%BA%95%E9%83%A8%E6%A0%8F", - "level": 3 - } - ] - }, - { - "label": "表单项数据初始化", - "fragment": "%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE%E5%88%9D%E5%A7%8B%E5%8C%96", - "fullPath": "#%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE%E5%88%9D%E5%A7%8B%E5%8C%96", - "level": 2, - "children": [ - { - "label": "轮训初始化请求", - "fragment": "%E8%BD%AE%E8%AE%AD%E5%88%9D%E5%A7%8B%E5%8C%96%E8%AF%B7%E6%B1%82", - "fullPath": "#%E8%BD%AE%E8%AE%AD%E5%88%9D%E5%A7%8B%E5%8C%96%E8%AF%B7%E6%B1%82", - "level": 3 - } - ] - }, - { - "label": "表单提交", - "fragment": "%E8%A1%A8%E5%8D%95%E6%8F%90%E4%BA%A4", - "fullPath": "#%E8%A1%A8%E5%8D%95%E6%8F%90%E4%BA%A4", - "level": 2, - "children": [ - { - "label": "轮训提交请求", - "fragment": "%E8%BD%AE%E8%AE%AD%E6%8F%90%E4%BA%A4%E8%AF%B7%E6%B1%82", - "fullPath": "#%E8%BD%AE%E8%AE%AD%E6%8F%90%E4%BA%A4%E8%AF%B7%E6%B1%82", - "level": 3 - } - ] - }, - { - "label": "重置表单", - "fragment": "%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", - "fullPath": "#%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", - "level": 2 - }, - { - "label": "表单数据域调试", - "fragment": "%E8%A1%A8%E5%8D%95%E6%95%B0%E6%8D%AE%E5%9F%9F%E8%B0%83%E8%AF%95", - "fullPath": "#%E8%A1%A8%E5%8D%95%E6%95%B0%E6%8D%AE%E5%9F%9F%E8%B0%83%E8%AF%95", - "level": 2 - }, - { - "label": "禁用数据链", - "fragment": "%E7%A6%81%E7%94%A8%E6%95%B0%E6%8D%AE%E9%93%BE", - "fullPath": "#%E7%A6%81%E7%94%A8%E6%95%B0%E6%8D%AE%E9%93%BE", - "level": 2 - }, - { - "label": "提交后行为", - "fragment": "%E6%8F%90%E4%BA%A4%E5%90%8E%E8%A1%8C%E4%B8%BA", - "fullPath": "#%E6%8F%90%E4%BA%A4%E5%90%8E%E8%A1%8C%E4%B8%BA", - "level": 2, - "children": [ - { - "label": "重置表单", - "fragment": "%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", - "fullPath": "#%E9%87%8D%E7%BD%AE%E8%A1%A8%E5%8D%95", - "level": 3 - }, - { - "label": "跳转页面", - "fragment": "%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2", - "fullPath": "#%E8%B7%B3%E8%BD%AC%E9%A1%B5%E9%9D%A2", - "level": 3 - }, - { - "label": "刷新目标组件", - "fragment": "%E5%88%B7%E6%96%B0%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", - "fullPath": "#%E5%88%B7%E6%96%B0%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", - "level": 3 - }, - { - "label": "将数据域发送给目标组件", - "fragment": "%E5%B0%86%E6%95%B0%E6%8D%AE%E5%9F%9F%E5%8F%91%E9%80%81%E7%BB%99%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", - "fullPath": "#%E5%B0%86%E6%95%B0%E6%8D%AE%E5%9F%9F%E5%8F%91%E9%80%81%E7%BB%99%E7%9B%AE%E6%A0%87%E7%BB%84%E4%BB%B6", - "level": 3 - } - ] - }, - { - "label": "持久化保存表单项数据", - "fragment": "%E6%8C%81%E4%B9%85%E5%8C%96%E4%BF%9D%E5%AD%98%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE", - "fullPath": "#%E6%8C%81%E4%B9%85%E5%8C%96%E4%BF%9D%E5%AD%98%E8%A1%A8%E5%8D%95%E9%A1%B9%E6%95%B0%E6%8D%AE", - "level": 2 - }, - { - "label": "属性表", - "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", - "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/components/form/input-group.html b/gh-pages/docs/components/form/input-group.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/input-group.html +++ b/gh-pages/docs/components/form/input-group.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/list.html b/gh-pages/docs/components/form/list.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/list.html +++ b/gh-pages/docs/components/form/list.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/matrix.html b/gh-pages/docs/components/form/matrix.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/matrix.html +++ b/gh-pages/docs/components/form/matrix.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/nestedselect.html b/gh-pages/docs/components/form/nestedselect.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/nestedselect.html +++ b/gh-pages/docs/components/form/nestedselect.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/number.html b/gh-pages/docs/components/form/number.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/number.html +++ b/gh-pages/docs/components/form/number.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/options.html b/gh-pages/docs/components/form/options.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/options.html +++ b/gh-pages/docs/components/form/options.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/options_d036671.js b/gh-pages/docs/components/form/options_d036671.js new file mode 100644 index 00000000..8a70dfa2 --- /dev/null +++ b/gh-pages/docs/components/form/options_d036671.js @@ -0,0 +1,247 @@ +amis.define('docs/components/form/options.md', function(require, exports, module, define) { + + module.exports = { + "title": "Options 选择器表单项", + "description": null, + "type": 0, + "group": null, + "menuName": "Options 选择器表单项", + "icon": null, + "order": 2, + "html": "

选择器表单项 是指那些(例如下拉选择框)具有选择器特性的表单项

\n

它派生自 表单项,拥有表单项所有的特性。

\n

选项组格式

选择器表单项可以通过配置一组选项(options),可以供给用户选择,如下:

\n
\n

options属性配置的对象数组就是select选择器组件的选项组。

\n

标准格式

{\n    \"options\": [\n        {\n            \"label\": \"xxx1\",\n            \"value\": \"value1\",\n            \"chlidren\": []\n            ... // 其他变量值\n        },\n        {\n            \"label\": \"xxx2\",\n            \"value\": \"value2\",\n            \"chlidren\": []\n            ... // 其他变量值\n        }\n    ]\n}\n
\n

标准的选项格式为对象数组,数组中的每个对象需要两个必备字段:

\n
    \n
  • label:标识当前选项的显示文本,帮助用户选择
  • \n
  • value:标识当前选项的值,用作数据保存和映射
  • \n
  • chlidren:嵌套子选项,只有在 Tree 或 Nested-Select 等支持嵌套功能的组件中才有用
  • \n
\n

查看下面例子,修改选项你会发现数据域会发发生变化,改数据域中该表单项的值为选中选项的value值。

\n
\n

简单格式

也可以配置简单的字符串或数字数组,此时默认labelvalue保持一致

\n
\n

静态选项组 options

可以使用静态方式,配置一组选项组:

\n
\n

动态选项组 source

通过数据域中变量配置

你也可以配置source属性,利用 数据映射,获取当前数据链中的变量

\n
\n

上例中,我们给 select 组件,配置"source": "${items}",获取了当前数据域中的items变量作为选项组。

\n

远程拉取

除了可以通过数据映射获取当前数据域中的变量以外,source还支持配置接口,格式为 API,用于动态返回选项组。

\n
\n

远程拉取接口时,返回的数据结构除了需要满足 amis 接口要求的基本数据结构 以外,必须用"options"作为选项组的key值,如下

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    // 必须用 options 作为选项组的 key 值\n    \"options\": [\n      {\n        \"label\": \"A\",\n        \"value\": \"a\"\n      },\n      {\n        \"label\": \"B\",\n        \"value\": \"b\"\n      },\n      {\n        \"label\": \"C\",\n        \"value\": \"c\"\n      }\n    ]\n  }\n}\n
\n

默认值/自动选中 value

我们知道表单项可以通过配置value属性来设置默认值

\n

而选择器表单项如果设置value属性,为某一个选项中的value值,那么该选择器将自动选中该选项。

\n

静态配置

静态配置同表单项默认值配置方式,直接在组件上配置value属性。

\n
\n

上例我们设置默认值为b,则会自动匹配到选项B并选中。

\n

动态配置

有时候我们想默认选中一个选项,但是options又是远程拉取的,无法确定默认值是啥,这时候,需要在source接口中返回value,来动态设置默认值接口返回数据结构如下:

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"value\": \"b\", // 这样就会自动选中b选项\n    \"options\": [\n      {\n        \"label\": \"A\",\n        \"value\": \"a\"\n      },\n      {\n        \"label\": \"B\",\n        \"value\": \"b\"\n      },\n      {\n        \"label\": \"C\",\n        \"value\": \"c\"\n      }\n    ]\n  }\n}\n
\n

数据格式一致性问题

当使用 sourcevalue 配置默认值的时候,需要保持数据格式的一致性。

\n

如果使用 sourcevalue 配置的默认值与当前表单项配置的数据格式不符合,而且用户没有再次操作该表单项,而直接提交表单,那么会将当前默认值原封不动的提交给后端,可能会导致不一致性的问题,我们看一个例子:

\n
\n

上例中, select 我们配置了"multiple": true,预期中,我们希望选中 AC 项时,表单项的数据格式为:"a,c",但是我们设置了"value": ["a", "c"],并不符合我们当前表单项的数据格式配置,这样会导致两个问题:

\n
    \n
  1. 有可能不会默认选中 AC 选项;
  2. \n
  3. 当不操作该表单项,直接提交时,预期是:"a,c",但提交给后端的数据为:["a", "c"],导致了不一致性的问题。
  4. \n
\n
\n

通过 source 配置默认值同理,不再赘述

\n
\n

因此一定确保默认值与选择器表单项数据格式配置相匹配。

\n

多选 multiple

大部分选择器组件默认是单选的,可以配置"multiple": true支持多选。

\n
\n

检索 searchable

可以配置 "searchable": true 显示前端过滤,适合用于有大量内容的列表。

\n
\n

拼接符 delimiter

多选模式下,默认表单项值为选中的选项的value值,用默认拼接符,拼接,如下

\n
\n

默认的拼接符是逗号,,但是当你的某个选项中的value值内包含,这个字符,这样会造成一些预期中的问题

\n

你可以设置delimiter属性,自定义拼接符,保证不与你选项中的value值冲突

\n
\n

上例我们value中有逗号,与默认拼接符冲突,这时设置"delimiter": "|",可以看到选择多个选项时,每个选项的value属性会用|拼接起来,作为表单项的值

\n

拼接值 joinValues

当选择器表单项选中某一选项后,当前表单项的值格式默认:

\n
    \n
  • 单选:选中选项的value
  • \n
  • 多选:选中所有选项的value,用拼接符进行拼接,默认拼接符为,
  • \n
\n

选中下面两个选择器,观察数据域值变化。

\n
\n

但是你可以通过配置"joinValues": false,来获取完整的选项对象

\n

单选模式

单选模式下,配置"joinValues": false,该表单项值为选中选项的完整对象值,选中下例中的任意选项,观察数据域变化。

\n
\n

多选模式

多选模式下,配置"joinValues": false,该表单项值为所有选中项的对象数组

\n
\n

自动选中问题

当你通过joinValues调整选择器表单项的数据结构后,设置默认值时,格式也要和设置的数据结构保持一致

\n

例如下面这个例子,当你给select设置了"joinValues": false时,选中 B 选项,则该表单项值为{"label":"B","value":"b"},如果你想要默认选中某一项,则也需要设置value为完整的对象:{"label":"B","value":"b"}

\n
\n

提取多选值 extractValue

"joinValues": false时,默认会将选中的所有选项组成的对象数组,作为表单项的值,如果你想只抽取选项中的 value 值,拼成新的数组,那么可以配置"extractValue": true

\n
\n

选中所有选型,你会看到表单项的值为:["a", "b", "c"]

\n

自动选中问题

当你通过joinValuesextractValue调整选择器表单项的数据结构后,设置默认值时,格式也要和设置的数据结构保持一致

\n

例如下面这个例子,当你给select设置了"joinValues": false"extractValue": true时,选中 A、B 选项,则该表单项值为["a", "b"],如果你想要默认选中某一项,则也需要设置value为同样格式:["a", "b"]

\n
\n

自动补全 autoComplete

\n

可以在autoComplete配置中,用数据映射,获取变量term,为当前输入的关键字。

\n

支持该配置项的组件有:Text、Select、Chained-Select、TreeSelect。

\n

选项标签字段 labelField

默认渲染选项组,会获取每一项中的label变量作为展示文本,如果你的选中项中没有label字段,可能会有显示问题

\n

例如下例中,options 中只有textvalue字段而没有 value 字段,这时点开下拉框,你会发现选项无法正常显示。

\n
\n

这种情况下如果你想自定义该字段,则可以设置labelField

\n
\n
\n

不推荐使用该方式,建议格式化好选项组数据结构

\n
\n

选项值字段 valueField

默认渲染选项组,会获取每一项中的value变量作为表单项值,如果你的选中项中没有value字段,将会无法选中

\n

例如下例中,options 中只有labelval字段而没有value字段,这时点开下拉框,你会发现选项无法正常选中。

\n
\n

这种情况下如果你想自定义该字段,则可以设置valueField

\n
\n
\n

不推荐使用该方式,建议格式化好选项组数据结构

\n
\n

新增选项

部分选择器组件支持在前端进行新增选项的操作。

\n

支持该功能的组件有:CheckBoxes、Select、Tree

\n

前端新增 creatable

,可以配置"creatable": true,支持在前端临时新增选项。

\n
\n

点开下拉框,会看到选项列表底部有新增选项按钮,点击后会显示一个包含简单表单的弹框,点击提交可以新增选项,不同组件交互会有不同。

\n

新增选项表单弹框的默认配置如下:

\n
{\n  \"type\": \"dialog\",\n  \"title\": \"新增选项\",\n  \"body\": {\n    \"type\": \"form\",\n    \"controls\": [\n      {\n        \"type\": \"text\",\n        \"name\": \"label\",\n        \"label\": false,\n        \"placeholder\": \"请输入名称\"\n      }\n    ]\n  }\n}\n
\n
    \n
  • 你可以配置createBtnLabel来自定义这个弹框的标题;
  • \n
  • 你也可以配置optionLabel,来替换"选项"这个字符,如我们配置"optionLabel": "员工",标题会显示:新增员工
  • \n
  • 默认表单项的name属性为labelField所配置的值,默认为label
  • \n
\n

自定义新增表单项 addControls

默认只有一个文本框,也就是意味着,默认添加选项后,该选项labelvalue是一样的,如果你想自定义该表单中的表单项,你可以通过配置addControls属性

\n
\n

上例中你可以选项标题输入D,选项值输入d。实现自定义添加选项格式

\n

不过在没配置保存接口时,addControls中务必需要有labelFieldvalueField所配置的name表单项才可以正确保存

\n
\n

addControls属性格式为表单项数组,更多细节参考 FormItem 表单项

\n
\n

配置新增接口 addApi

默认新增只会暂时把新增的值保存在前端,如果你想前端新增选项后,同时把该选项保存到后端,则可以配置保存接口addApi

\n
\n
\n

配置addApi实际上将该配置值设置给该表单的api属性。

\n

如果同时配置了sourceaddApi,添加选项成功后会重新获取请求source接口

\n
\n

编辑选项

部分选择器组件支持在前端编辑选项

\n

支持该功能的组件有:CheckBoxes、Select、Tree、Table-formitem

\n

前端编辑 editable

配置"editable": true,支持在前端编辑选项。

\n
\n

点开下拉框,会看到每个选项右侧有一个编辑图标,点击后会显示一个编辑选项的弹框,修改后点击提交可以编辑选项标签。不同组件交互会有不同

\n

编辑选项弹框的默认配置如下:

\n
{\n  \"type\": \"dialog\",\n  \"title\": \"新增选项\",\n  \"body\": {\n    \"type\": \"form\",\n    \"controls\": [\n      {\n        \"type\": \"text\",\n        \"name\": \"label\",\n        \"label\": false,\n        \"placeholder\": \"请输入名称\"\n      }\n    ]\n  }\n}\n
\n
    \n
  • 你也可以配置optionLabel,来替换"选项"这个字符,如我们配置"optionLabel": "员工",标题会显示:新增员工
  • \n
  • 默认表单项的name属性为labelField所配置的值,默认为label
  • \n
\n

自定义编辑表单项 editControls

默认只能修改当前选项的label属性,如果你想要修改其他属性,可以配置editControls,自定义编辑表单项

\n
\n

修改后重新选中该表单项,观察数据域中数据变化。

\n

配置编辑接口 editApi

默认编辑只会作用在前端,如果你想前端编辑选项后,同时把该选项保存到后端,则可以配置保存接口editApi

\n
\n
\n

配置editApi实际上将该配置值设置给编辑表单的api属性。

\n

如果同时配置了sourceeditApi,添加选项成功后会重新获取请求source接口

\n
\n

删除选项

部分选择器组件,支持在前端进行编辑选项操作

\n

支持该功能的组件有:CheckBoxes、Select、Tree、Table-formitem

\n

配置删除接口 deleteApi

删除选项不支持在前端级别删除,我们认为是没有意义的,必须要配置deleteApi使用接口进行删除

\n

配置"removable": truedeleteApi,支持在前端删除选项。

\n
\n

点开下拉框,鼠标悬浮在选项上,可以看到右侧会有删除图标,点击可请求删除接口进行删除

\n

自动填充 autoFill

一些选择器组件,支持配置autoFill,将当前已选中的选项的某个字段的值,自动填充到表单中某个表单项中,只在单选时有效,支持数据映射

\n
\n

上例中我们配置了"autoFill": {"option": "${label}"},表示将选中项中的label的值,自动填充到当前表单项中nameoption的文本框中。

\n

支持该配置项的有:ButtonGroup、List、NestedSelect、Picker、Radios、Select。

\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
optionsArray<object>Array<string>选项组,供用户选择
sourceAPI数据映射选项组源,可通过数据映射获取当前数据域变量、或者配置 API 对象
multiplebooleanfalse是否支持多选
labelFieldboolean"label"标识选项中哪个字段是label
valueFieldboolean"value"标识选项中哪个字段是value
joinValuesbooleantrue是否拼接value
extractValuebooleanfalse是否将value值抽取出来组成新的数组,只有在joinValuesfalse是生效
\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "选项组格式", + "fragment": "%E9%80%89%E9%A1%B9%E7%BB%84%E6%A0%BC%E5%BC%8F", + "fullPath": "#%E9%80%89%E9%A1%B9%E7%BB%84%E6%A0%BC%E5%BC%8F", + "level": 2, + "children": [ + { + "label": "标准格式", + "fragment": "%E6%A0%87%E5%87%86%E6%A0%BC%E5%BC%8F", + "fullPath": "#%E6%A0%87%E5%87%86%E6%A0%BC%E5%BC%8F", + "level": 3 + }, + { + "label": "简单格式", + "fragment": "%E7%AE%80%E5%8D%95%E6%A0%BC%E5%BC%8F", + "fullPath": "#%E7%AE%80%E5%8D%95%E6%A0%BC%E5%BC%8F", + "level": 3 + } + ] + }, + { + "label": "静态选项组 options", + "fragment": "%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options", + "fullPath": "#%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options", + "level": 2 + }, + { + "label": "动态选项组 source", + "fragment": "%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source", + "fullPath": "#%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source", + "level": 2, + "children": [ + { + "label": "通过数据域中变量配置", + "fragment": "%E9%80%9A%E8%BF%87%E6%95%B0%E6%8D%AE%E5%9F%9F%E4%B8%AD%E5%8F%98%E9%87%8F%E9%85%8D%E7%BD%AE", + "fullPath": "#%E9%80%9A%E8%BF%87%E6%95%B0%E6%8D%AE%E5%9F%9F%E4%B8%AD%E5%8F%98%E9%87%8F%E9%85%8D%E7%BD%AE", + "level": 3 + }, + { + "label": "远程拉取", + "fragment": "%E8%BF%9C%E7%A8%8B%E6%8B%89%E5%8F%96", + "fullPath": "#%E8%BF%9C%E7%A8%8B%E6%8B%89%E5%8F%96", + "level": 3 + } + ] + }, + { + "label": "默认值/自动选中 value", + "fragment": "%E9%BB%98%E8%AE%A4%E5%80%BC-%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD-value", + "fullPath": "#%E9%BB%98%E8%AE%A4%E5%80%BC-%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD-value", + "level": 2, + "children": [ + { + "label": "静态配置", + "fragment": "%E9%9D%99%E6%80%81%E9%85%8D%E7%BD%AE", + "fullPath": "#%E9%9D%99%E6%80%81%E9%85%8D%E7%BD%AE", + "level": 3 + }, + { + "label": "动态配置", + "fragment": "%E5%8A%A8%E6%80%81%E9%85%8D%E7%BD%AE", + "fullPath": "#%E5%8A%A8%E6%80%81%E9%85%8D%E7%BD%AE", + "level": 3 + }, + { + "label": "数据格式一致性问题", + "fragment": "%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F%E4%B8%80%E8%87%B4%E6%80%A7%E9%97%AE%E9%A2%98", + "fullPath": "#%E6%95%B0%E6%8D%AE%E6%A0%BC%E5%BC%8F%E4%B8%80%E8%87%B4%E6%80%A7%E9%97%AE%E9%A2%98", + "level": 3 + } + ] + }, + { + "label": "多选 multiple", + "fragment": "%E5%A4%9A%E9%80%89-multiple", + "fullPath": "#%E5%A4%9A%E9%80%89-multiple", + "level": 2 + }, + { + "label": "检索 searchable", + "fragment": "%E6%A3%80%E7%B4%A2-searchable", + "fullPath": "#%E6%A3%80%E7%B4%A2-searchable", + "level": 2 + }, + { + "label": "拼接符 delimiter", + "fragment": "%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter", + "fullPath": "#%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter", + "level": 2 + }, + { + "label": "拼接值 joinValues", + "fragment": "%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues", + "fullPath": "#%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues", + "level": 2, + "children": [ + { + "label": "单选模式", + "fragment": "%E5%8D%95%E9%80%89%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E5%8D%95%E9%80%89%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "多选模式", + "fragment": "%E5%A4%9A%E9%80%89%E6%A8%A1%E5%BC%8F", + "fullPath": "#%E5%A4%9A%E9%80%89%E6%A8%A1%E5%BC%8F", + "level": 3 + }, + { + "label": "自动选中问题", + "fragment": "%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", + "fullPath": "#%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", + "level": 3 + } + ] + }, + { + "label": "提取多选值 extractValue", + "fragment": "%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue", + "fullPath": "#%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue", + "level": 2, + "children": [ + { + "label": "自动选中问题", + "fragment": "%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", + "fullPath": "#%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", + "level": 3 + } + ] + }, + { + "label": "自动补全 autoComplete", + "fragment": "%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete", + "fullPath": "#%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete", + "level": 2 + }, + { + "label": "选项标签字段 labelField", + "fragment": "%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield", + "fullPath": "#%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield", + "level": 2 + }, + { + "label": "选项值字段 valueField", + "fragment": "%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield", + "fullPath": "#%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield", + "level": 2 + }, + { + "label": "新增选项", + "fragment": "%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9", + "fullPath": "#%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9", + "level": 2, + "children": [ + { + "label": "前端新增 creatable", + "fragment": "%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable", + "fullPath": "#%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable", + "level": 3 + }, + { + "label": "自定义新增表单项 addControls", + "fragment": "%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols", + "fullPath": "#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols", + "level": 3 + }, + { + "label": "配置新增接口 addApi", + "fragment": "%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi", + "fullPath": "#%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi", + "level": 3 + } + ] + }, + { + "label": "编辑选项", + "fragment": "%E7%BC%96%E8%BE%91%E9%80%89%E9%A1%B9", + "fullPath": "#%E7%BC%96%E8%BE%91%E9%80%89%E9%A1%B9", + "level": 2, + "children": [ + { + "label": "前端编辑 editable", + "fragment": "%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable", + "fullPath": "#%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable", + "level": 3 + }, + { + "label": "自定义编辑表单项 editControls", + "fragment": "%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols", + "fullPath": "#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols", + "level": 3 + }, + { + "label": "配置编辑接口 editApi", + "fragment": "%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi", + "fullPath": "#%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi", + "level": 3 + } + ] + }, + { + "label": "删除选项", + "fragment": "%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9", + "fullPath": "#%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9", + "level": 2, + "children": [ + { + "label": "配置删除接口 deleteApi", + "fragment": "%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi", + "fullPath": "#%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi", + "level": 3 + } + ] + }, + { + "label": "自动填充 autoFill", + "fragment": "%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill", + "fullPath": "#%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill", + "level": 2 + }, + { + "label": "属性表", + "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", + "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", + "level": 2 + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/components/form/options_f85c3d3.js b/gh-pages/docs/components/form/options_f85c3d3.js deleted file mode 100644 index 13482c1b..00000000 --- a/gh-pages/docs/components/form/options_f85c3d3.js +++ /dev/null @@ -1,223 +0,0 @@ -amis.define('docs/components/form/options.md', function(require, exports, module, define) { - - module.exports = { - "title": "Options 选择器表单项", - "description": null, - "type": 0, - "group": null, - "menuName": "Options 选择器表单项", - "icon": null, - "order": 2, - "html": "

选择器表单项 是指那些(例如下拉选择框)具有选择器特性的表单项

\n

它派生自 表单项,拥有表单项所有的特性。

\n

静态选项组 options

选择器表单项可以通过配置一组选项(options),可以供给用户选择,如下:

\n
\n

options属性配置的对象数组就是select选择器组件的选项组。

\n

选项组格式

标准格式
{\n    \"options\": [\n        {\n            \"label\": \"xxx1\",\n            \"value\": \"value1\",\n            \"chlidren\": []\n            ... // 其他变量值\n        },\n        {\n            \"label\": \"xxx2\",\n            \"value\": \"value2\",\n            \"chlidren\": []\n            ... // 其他变量值\n        }\n    ]\n}\n
\n

标准的选项格式为对象数组,数组中的每个对象需要两个必备字段:

\n
    \n
  • label:标识当前选项的显示文本,帮助用户选择
  • \n
  • value:标识当前选项的值,用作数据保存和映射
  • \n
  • chlidren:嵌套子选项,只有在 Tree 或 Nested-Select 等支持嵌套功能的组件中才有用
  • \n
\n

查看下面例子,修改选项你会发现数据域会发发生变化,改数据域中该表单项的值为选中选项的value值。

\n
\n
简单格式

也可以配置简单的字符串或数字数组,此时默认labelvalue保持一致

\n
\n

动态选项组 source

通过数据域中变量配置

你也可以配置source属性,利用 数据映射,获取当前数据链中的变量

\n
\n

上例中,我们给 select 组件,配置"source": "${items}",获取了当前数据域中的items变量作为选项组。

\n

远程拉取

除了可以通过数据映射获取当前数据域中的变量以外,source还支持配置接口,格式为 API,用于动态返回选项组。

\n
\n

远程拉取接口时,返回的数据结构除了需要满足 amis 接口要求的基本数据结构 以外,必须用"options"作为选项组的key值,如下

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    // 必须用 options 作为选项组的 key 值\n    \"options\": [\n      {\n        \"label\": \"A\",\n        \"value\": \"a\"\n      },\n      {\n        \"label\": \"B\",\n        \"value\": \"b\"\n      },\n      {\n        \"label\": \"C\",\n        \"value\": \"c\"\n      }\n    ]\n  }\n}\n
\n

自动选中

我们知道表单项可以通过配置value属性来设置默认值

\n

而选择器表单项如果设置value属性,为某一个选项中的value值,那么该选择器将自动选中该选项。

\n

静态配置

静态配置同表单项默认值配置方式,直接在组件上配置value属性。

\n
\n

上例我们设置默认值为b,则会自动匹配到选项B并选中。

\n

动态配置

有时候我们想默认选中一个选项,但是options又是远程拉取的,无法确定默认值是啥,这时候,需要在source接口中返回value,来动态设置默认值接口返回数据结构如下:

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    \"value\": \"b\", // 这样就会自动选中b选项\n    \"options\": [\n      {\n        \"label\": \"A\",\n        \"value\": \"a\"\n      },\n      {\n        \"label\": \"B\",\n        \"value\": \"b\"\n      },\n      {\n        \"label\": \"C\",\n        \"value\": \"c\"\n      }\n    ]\n  }\n}\n
\n

多选 multiple

大部分选择器组件默认是单选的,可以配置"multiple": true支持多选。

\n
\n

拼接符 delimiter

多选模式下,默认表单项值为选中的选项的value值,用默认拼接符,拼接,如下

\n
\n

默认的拼接符是逗号,,但是当你的某个选项中的value值内包含,这个字符,这样会造成一些预期中的问题

\n

你可以设置delimiter属性,自定义拼接符,保证不与你选项中的value值冲突

\n
\n

上例我们value中有逗号,与默认拼接符冲突,这时设置"delimiter": "|",可以看到选择多个选项时,每个选项的value属性会用|拼接起来,作为表单项的值

\n

拼接值 joinValues

当选择器表单项选中某一选项后,当前表单项的值格式默认:

\n
    \n
  • 单选:选中选项的value
  • \n
  • 多选:选中所有选项的value,用拼接符进行拼接,默认拼接符为,
  • \n
\n

选中下面两个选择器,观察数据域值变化。

\n
\n

但是你可以通过配置"joinValues": false,来获取完整的选项对象

\n

单选模式

单选模式下,配置"joinValues": false,该表单项值为选中选项的完整对象值,选中下例中的任意选项,观察数据域变化。

\n
\n

多选模式

多选模式下,配置"joinValues": false,该表单项值为所有选中项的对象数组

\n
\n

自动选中问题

当你通过joinValues调整选择器表单项的数据结构后,设置默认值时,格式也要和设置的数据结构保持一致

\n

例如下面这个例子,当你给select设置了"joinValues": false时,选中 B 选项,则该表单项值为{"label":"B","value":"b"},如果你想要默认选中某一项,则也需要设置value为完整的对象:{"label":"B","value":"b"}

\n
\n

提取多选值 extractValue

"joinValues": false时,默认会将选中的所有选项组成的对象数组,作为表单项的值,如果你想只抽取选项中的 value 值,拼成新的数组,那么可以配置"extractValue": true

\n
\n

选中所有选型,你会看到表单项的值为:["a", "b", "c"]

\n

自动选中问题

当你通过joinValuesextractValue调整选择器表单项的数据结构后,设置默认值时,格式也要和设置的数据结构保持一致

\n

例如下面这个例子,当你给select设置了"joinValues": false"extractValue": true时,选中 A、B 选项,则该表单项值为["a", "b"],如果你想要默认选中某一项,则也需要设置value为同样格式:["a", "b"]

\n
\n

自动补全 autoComplete

\n

可以在autoComplete配置中,用数据映射,获取变量term,为当前输入的关键字。

\n

支持该配置项的组件有:Text、Select、Chained-Select、TreeSelect。

\n

选项标签字段 labelField

默认渲染选项组,会获取每一项中的label变量作为展示文本,如果你的选中项中没有label字段,可能会有显示问题

\n

例如下例中,options 中只有textvalue字段而没有 value 字段,这时点开下拉框,你会发现选项无法正常显示。

\n
\n

这种情况下如果你想自定义该字段,则可以设置labelField

\n
\n
\n

不推荐使用该方式,建议格式化好选项组数据结构

\n
\n

选项值字段 valueField

默认渲染选项组,会获取每一项中的value变量作为表单项值,如果你的选中项中没有value字段,将会无法选中

\n

例如下例中,options 中只有labelval字段而没有value字段,这时点开下拉框,你会发现选项无法正常选中。

\n
\n

这种情况下如果你想自定义该字段,则可以设置valueField

\n
\n
\n

不推荐使用该方式,建议格式化好选项组数据结构

\n
\n

新增选项

部分选择器组件支持在前端进行新增选项的操作。

\n

支持该功能的组件有:CheckBoxes、Select、Tree

\n

前端新增 creatable

,可以配置"creatable": true,支持在前端临时新增选项。

\n
\n

点开下拉框,会看到选项列表底部有新增选项按钮,点击后会显示一个包含简单表单的弹框,点击提交可以新增选项,不同组件交互会有不同。

\n

新增选项表单弹框的默认配置如下:

\n
{\n  \"type\": \"dialog\",\n  \"title\": \"新增选项\",\n  \"body\": {\n    \"type\": \"form\",\n    \"controls\": [\n      {\n        \"type\": \"text\",\n        \"name\": \"label\",\n        \"label\": false,\n        \"placeholder\": \"请输入名称\"\n      }\n    ]\n  }\n}\n
\n
    \n
  • 你可以配置createBtnLabel来自定义这个弹框的标题;
  • \n
  • 你也可以配置optionLabel,来替换"选项"这个字符,如我们配置"optionLabel": "员工",标题会显示:新增员工
  • \n
  • 默认表单项的name属性为labelField所配置的值,默认为label
  • \n
\n

自定义新增表单项 addControls

默认只有一个文本框,也就是意味着,默认添加选项后,该选项labelvalue是一样的,如果你想自定义该表单中的表单项,你可以通过配置addControls属性

\n
\n

上例中你可以选项标题输入D,选项值输入d。实现自定义添加选项格式

\n

不过在没配置保存接口时,addControls中务必需要有labelFieldvalueField所配置的name表单项才可以正确保存

\n
\n

addControls属性格式为表单项数组,更多细节参考 FormItem 表单项

\n
\n

配置新增接口 addApi

默认新增只会暂时把新增的值保存在前端,如果你想前端新增选项后,同时把该选项保存到后端,则可以配置保存接口addApi

\n
\n
\n

配置addApi实际上将该配置值设置给该表单的api属性。

\n

如果同时配置了sourceaddApi,添加选项成功后会重新获取请求source接口

\n
\n

编辑选项

部分选择器组件支持在前端编辑选项

\n

支持该功能的组件有:CheckBoxes、Select、Tree、Table-formitem

\n

前端编辑 editable

配置"editable": true,支持在前端编辑选项。

\n
\n

点开下拉框,会看到每个选项右侧有一个编辑图标,点击后会显示一个编辑选项的弹框,修改后点击提交可以编辑选项标签。不同组件交互会有不同

\n

编辑选项弹框的默认配置如下:

\n
{\n  \"type\": \"dialog\",\n  \"title\": \"新增选项\",\n  \"body\": {\n    \"type\": \"form\",\n    \"controls\": [\n      {\n        \"type\": \"text\",\n        \"name\": \"label\",\n        \"label\": false,\n        \"placeholder\": \"请输入名称\"\n      }\n    ]\n  }\n}\n
\n
    \n
  • 你也可以配置optionLabel,来替换"选项"这个字符,如我们配置"optionLabel": "员工",标题会显示:新增员工
  • \n
  • 默认表单项的name属性为labelField所配置的值,默认为label
  • \n
\n

自定义编辑表单项 editControls

默认只能修改当前选项的label属性,如果你想要修改其他属性,可以配置editControls,自定义编辑表单项

\n
\n

修改后重新选中该表单项,观察数据域中数据变化。

\n

配置编辑接口 editApi

默认编辑只会作用在前端,如果你想前端编辑选项后,同时把该选项保存到后端,则可以配置保存接口editApi

\n
\n
\n

配置editApi实际上将该配置值设置给编辑表单的api属性。

\n

如果同时配置了sourceeditApi,添加选项成功后会重新获取请求source接口

\n
\n

删除选项

部分选择器组件,支持在前端进行编辑选项操作

\n

支持该功能的组件有:CheckBoxes、Select、Tree、Table-formitem

\n

配置删除接口 deleteApi

删除选项不支持在前端级别删除,我们认为是没有意义的,必须要配置deleteApi使用接口进行删除

\n

配置"removable": truedeleteApi,支持在前端删除选项。

\n
\n

点开下拉框,鼠标悬浮在选项上,可以看到右侧会有删除图标,点击可请求删除接口进行删除

\n

自动填充 autoFill

一些选择器组件,支持配置autoFill,将当前已选中的选项的某个字段的值,自动填充到表单中某个表单项中,只在单选时有效,支持数据映射

\n
\n

上例中我们配置了"autoFill": {"option": "${label}"},表示将选中项中的label的值,自动填充到当前表单项中nameoption的文本框中。

\n

支持该配置项的有:ButtonGroup、List、NestedSelect、Picker、Radios、Select。

\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
optionsArray<object>Array<string>选项组,供用户选择
sourcestringAPI选项组源,可通过数据映射获取当前数据域变量、或者配置 API 对象
multiplebooleanfalse是否多选
labelFieldboolean"label"标识选项中哪个字段是label
valueFieldboolean"value"标识选项中哪个字段是value
joinValuesbooleantrue是否拼接value
extractValuebooleanfalse是否将value值抽取出来组成新的数组,只有在joinValuesfalse是生效
\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "静态选项组 options", - "fragment": "%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options", - "fullPath": "#%E9%9D%99%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-options", - "level": 2, - "children": [ - { - "label": "选项组格式", - "fragment": "%E9%80%89%E9%A1%B9%E7%BB%84%E6%A0%BC%E5%BC%8F", - "fullPath": "#%E9%80%89%E9%A1%B9%E7%BB%84%E6%A0%BC%E5%BC%8F", - "level": 3 - } - ] - }, - { - "label": "动态选项组 source", - "fragment": "%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source", - "fullPath": "#%E5%8A%A8%E6%80%81%E9%80%89%E9%A1%B9%E7%BB%84-source", - "level": 2, - "children": [ - { - "label": "通过数据域中变量配置", - "fragment": "%E9%80%9A%E8%BF%87%E6%95%B0%E6%8D%AE%E5%9F%9F%E4%B8%AD%E5%8F%98%E9%87%8F%E9%85%8D%E7%BD%AE", - "fullPath": "#%E9%80%9A%E8%BF%87%E6%95%B0%E6%8D%AE%E5%9F%9F%E4%B8%AD%E5%8F%98%E9%87%8F%E9%85%8D%E7%BD%AE", - "level": 3 - }, - { - "label": "远程拉取", - "fragment": "%E8%BF%9C%E7%A8%8B%E6%8B%89%E5%8F%96", - "fullPath": "#%E8%BF%9C%E7%A8%8B%E6%8B%89%E5%8F%96", - "level": 3 - } - ] - }, - { - "label": "自动选中", - "fragment": "%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD", - "fullPath": "#%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD", - "level": 2, - "children": [ - { - "label": "静态配置", - "fragment": "%E9%9D%99%E6%80%81%E9%85%8D%E7%BD%AE", - "fullPath": "#%E9%9D%99%E6%80%81%E9%85%8D%E7%BD%AE", - "level": 3 - }, - { - "label": "动态配置", - "fragment": "%E5%8A%A8%E6%80%81%E9%85%8D%E7%BD%AE", - "fullPath": "#%E5%8A%A8%E6%80%81%E9%85%8D%E7%BD%AE", - "level": 3 - } - ] - }, - { - "label": "多选 multiple", - "fragment": "%E5%A4%9A%E9%80%89-multiple", - "fullPath": "#%E5%A4%9A%E9%80%89-multiple", - "level": 2 - }, - { - "label": "拼接符 delimiter", - "fragment": "%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter", - "fullPath": "#%E6%8B%BC%E6%8E%A5%E7%AC%A6-delimiter", - "level": 2 - }, - { - "label": "拼接值 joinValues", - "fragment": "%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues", - "fullPath": "#%E6%8B%BC%E6%8E%A5%E5%80%BC-joinvalues", - "level": 2, - "children": [ - { - "label": "单选模式", - "fragment": "%E5%8D%95%E9%80%89%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E5%8D%95%E9%80%89%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "多选模式", - "fragment": "%E5%A4%9A%E9%80%89%E6%A8%A1%E5%BC%8F", - "fullPath": "#%E5%A4%9A%E9%80%89%E6%A8%A1%E5%BC%8F", - "level": 3 - }, - { - "label": "自动选中问题", - "fragment": "%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", - "fullPath": "#%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", - "level": 3 - } - ] - }, - { - "label": "提取多选值 extractValue", - "fragment": "%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue", - "fullPath": "#%E6%8F%90%E5%8F%96%E5%A4%9A%E9%80%89%E5%80%BC-extractvalue", - "level": 2, - "children": [ - { - "label": "自动选中问题", - "fragment": "%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", - "fullPath": "#%E8%87%AA%E5%8A%A8%E9%80%89%E4%B8%AD%E9%97%AE%E9%A2%98", - "level": 3 - } - ] - }, - { - "label": "自动补全 autoComplete", - "fragment": "%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete", - "fullPath": "#%E8%87%AA%E5%8A%A8%E8%A1%A5%E5%85%A8-autocomplete", - "level": 2 - }, - { - "label": "选项标签字段 labelField", - "fragment": "%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield", - "fullPath": "#%E9%80%89%E9%A1%B9%E6%A0%87%E7%AD%BE%E5%AD%97%E6%AE%B5-labelfield", - "level": 2 - }, - { - "label": "选项值字段 valueField", - "fragment": "%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield", - "fullPath": "#%E9%80%89%E9%A1%B9%E5%80%BC%E5%AD%97%E6%AE%B5-valuefield", - "level": 2 - }, - { - "label": "新增选项", - "fragment": "%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9", - "fullPath": "#%E6%96%B0%E5%A2%9E%E9%80%89%E9%A1%B9", - "level": 2, - "children": [ - { - "label": "前端新增 creatable", - "fragment": "%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable", - "fullPath": "#%E5%89%8D%E7%AB%AF%E6%96%B0%E5%A2%9E-creatable", - "level": 3 - }, - { - "label": "自定义新增表单项 addControls", - "fragment": "%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols", - "fullPath": "#%E8%87%AA%E5%AE%9A%E4%B9%89%E6%96%B0%E5%A2%9E%E8%A1%A8%E5%8D%95%E9%A1%B9-addcontrols", - "level": 3 - }, - { - "label": "配置新增接口 addApi", - "fragment": "%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi", - "fullPath": "#%E9%85%8D%E7%BD%AE%E6%96%B0%E5%A2%9E%E6%8E%A5%E5%8F%A3-addapi", - "level": 3 - } - ] - }, - { - "label": "编辑选项", - "fragment": "%E7%BC%96%E8%BE%91%E9%80%89%E9%A1%B9", - "fullPath": "#%E7%BC%96%E8%BE%91%E9%80%89%E9%A1%B9", - "level": 2, - "children": [ - { - "label": "前端编辑 editable", - "fragment": "%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable", - "fullPath": "#%E5%89%8D%E7%AB%AF%E7%BC%96%E8%BE%91-editable", - "level": 3 - }, - { - "label": "自定义编辑表单项 editControls", - "fragment": "%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols", - "fullPath": "#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BC%96%E8%BE%91%E8%A1%A8%E5%8D%95%E9%A1%B9-editcontrols", - "level": 3 - }, - { - "label": "配置编辑接口 editApi", - "fragment": "%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi", - "fullPath": "#%E9%85%8D%E7%BD%AE%E7%BC%96%E8%BE%91%E6%8E%A5%E5%8F%A3-editapi", - "level": 3 - } - ] - }, - { - "label": "删除选项", - "fragment": "%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9", - "fullPath": "#%E5%88%A0%E9%99%A4%E9%80%89%E9%A1%B9", - "level": 2, - "children": [ - { - "label": "配置删除接口 deleteApi", - "fragment": "%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi", - "fullPath": "#%E9%85%8D%E7%BD%AE%E5%88%A0%E9%99%A4%E6%8E%A5%E5%8F%A3-deleteapi", - "level": 3 - } - ] - }, - { - "label": "自动填充 autoFill", - "fragment": "%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill", - "fullPath": "#%E8%87%AA%E5%8A%A8%E5%A1%AB%E5%85%85-autofill", - "level": 2 - }, - { - "label": "属性表", - "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", - "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/components/form/panel.html b/gh-pages/docs/components/form/panel.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/panel.html +++ b/gh-pages/docs/components/form/panel.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/picker.html b/gh-pages/docs/components/form/picker.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/picker.html +++ b/gh-pages/docs/components/form/picker.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/radios.html b/gh-pages/docs/components/form/radios.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/radios.html +++ b/gh-pages/docs/components/form/radios.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/range.html b/gh-pages/docs/components/form/range.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/range.html +++ b/gh-pages/docs/components/form/range.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/rating.html b/gh-pages/docs/components/form/rating.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/rating.html +++ b/gh-pages/docs/components/form/rating.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/repeat.html b/gh-pages/docs/components/form/repeat.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/repeat.html +++ b/gh-pages/docs/components/form/repeat.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/rich-text.html b/gh-pages/docs/components/form/rich-text.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/rich-text.html +++ b/gh-pages/docs/components/form/rich-text.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/select.html b/gh-pages/docs/components/form/select.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/select.html +++ b/gh-pages/docs/components/form/select.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/select_54b9a53.js b/gh-pages/docs/components/form/select_54b9a53.js deleted file mode 100644 index 6d8b83e1..00000000 --- a/gh-pages/docs/components/form/select_54b9a53.js +++ /dev/null @@ -1,33 +0,0 @@ -amis.define('docs/components/form/select.md', function(require, exports, module, define) { - - module.exports = { - "title": "Select 选择器", - "description": null, - "type": 0, - "group": null, - "menuName": "Select 选择器", - "icon": null, - "order": 48, - "html": "

基本用法

\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
optionsArray<object>Array<string>选项组
sourcestringAPI动态选项组
autoCompleteAPI自动提示补全
delimeterstringfalse拼接符
labelFieldstring"label"选项标签字段
valueFieldstring"value"选项值字段
joinValuesbooleantrue拼接值
extractValuebooleanfalse提取值
checkAllbooleanfalse是否支持全选
checkAllLabelstring全选全选的文字
defaultCheckAllbooleanfalse默认是否全选
creatablebooleanfalse新增选项
createBtnLabelstring"新增选项"新增选项
addControlsArray<表单项>自定义新增表单项
addApiAPI配置新增选项接口
editablebooleanfalse编辑选项
editControlsArray<表单项>自定义编辑表单项
editApiAPI配置编辑选项接口
removablebooleanfalse删除选项
deleteApiAPI配置删除选项接口
autoFillobject自动填充
\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "基本用法", - "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", - "level": 2 - }, - { - "label": "属性表", - "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", - "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/components/form/select_6b64a9c.js b/gh-pages/docs/components/form/select_6b64a9c.js new file mode 100644 index 00000000..06b07722 --- /dev/null +++ b/gh-pages/docs/components/form/select_6b64a9c.js @@ -0,0 +1,33 @@ +amis.define('docs/components/form/select.md', function(require, exports, module, define) { + + module.exports = { + "title": "Select 选择器", + "description": null, + "type": 0, + "group": null, + "menuName": "Select 选择器", + "icon": null, + "order": 48, + "html": "

基本用法

\n

更多设置项请参考 Options

\n

属性表

除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
属性名类型默认值说明
optionsArray<object>Array<string>选项组
sourceAPI数据映射动态选项组
autoCompleteAPI自动提示补全
delimeterstringfalse拼接符
labelFieldstring"label"选项标签字段
valueFieldstring"value"选项值字段
joinValuesbooleantrue拼接值
extractValuebooleanfalse提取值
checkAllbooleanfalse是否支持全选
checkAllLabelstring全选全选的文字
defaultCheckAllbooleanfalse默认是否全选
creatablebooleanfalse新增选项
multiplebooleanfalse多选
searchablebooleanfalse检索
createBtnLabelstring"新增选项"新增选项
addControlsArray<表单项>自定义新增表单项
addApiAPI配置新增选项接口
editablebooleanfalse编辑选项
editControlsArray<表单项>自定义编辑表单项
editApiAPI配置编辑选项接口
removablebooleanfalse删除选项
deleteApiAPI配置删除选项接口
autoFillobject自动填充
\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "基本用法", + "fragment": "%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "fullPath": "#%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95", + "level": 2 + }, + { + "label": "属性表", + "fragment": "%E5%B1%9E%E6%80%A7%E8%A1%A8", + "fullPath": "#%E5%B1%9E%E6%80%A7%E8%A1%A8", + "level": 2 + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/components/form/service.html b/gh-pages/docs/components/form/service.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/service.html +++ b/gh-pages/docs/components/form/service.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/static.html b/gh-pages/docs/components/form/static.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/static.html +++ b/gh-pages/docs/components/form/static.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/subform.html b/gh-pages/docs/components/form/subform.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/subform.html +++ b/gh-pages/docs/components/form/subform.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/switch.html b/gh-pages/docs/components/form/switch.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/switch.html +++ b/gh-pages/docs/components/form/switch.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/table.html b/gh-pages/docs/components/form/table.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/table.html +++ b/gh-pages/docs/components/form/table.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/tabs-transfer.html b/gh-pages/docs/components/form/tabs-transfer.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/tabs-transfer.html +++ b/gh-pages/docs/components/form/tabs-transfer.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/tabs.html b/gh-pages/docs/components/form/tabs.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/tabs.html +++ b/gh-pages/docs/components/form/tabs.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/tag.html b/gh-pages/docs/components/form/tag.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/tag.html +++ b/gh-pages/docs/components/form/tag.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/text.html b/gh-pages/docs/components/form/text.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/text.html +++ b/gh-pages/docs/components/form/text.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/textarea.html b/gh-pages/docs/components/form/textarea.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/textarea.html +++ b/gh-pages/docs/components/form/textarea.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/time.html b/gh-pages/docs/components/form/time.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/time.html +++ b/gh-pages/docs/components/form/time.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/transfer.html b/gh-pages/docs/components/form/transfer.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/transfer.html +++ b/gh-pages/docs/components/form/transfer.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/tree.html b/gh-pages/docs/components/form/tree.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/tree.html +++ b/gh-pages/docs/components/form/tree.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/form/treeselect.html b/gh-pages/docs/components/form/treeselect.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/form/treeselect.html +++ b/gh-pages/docs/components/form/treeselect.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/grid.html b/gh-pages/docs/components/grid.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/grid.html +++ b/gh-pages/docs/components/grid.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/hbox.html b/gh-pages/docs/components/hbox.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/hbox.html +++ b/gh-pages/docs/components/hbox.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/html.html b/gh-pages/docs/components/html.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/html.html +++ b/gh-pages/docs/components/html.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/icon.html b/gh-pages/docs/components/icon.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/icon.html +++ b/gh-pages/docs/components/icon.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/iframe.html b/gh-pages/docs/components/iframe.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/iframe.html +++ b/gh-pages/docs/components/iframe.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/image.html b/gh-pages/docs/components/image.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/image.html +++ b/gh-pages/docs/components/image.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/images.html b/gh-pages/docs/components/images.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/images.html +++ b/gh-pages/docs/components/images.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/json.html b/gh-pages/docs/components/json.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/json.html +++ b/gh-pages/docs/components/json.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/link.html b/gh-pages/docs/components/link.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/link.html +++ b/gh-pages/docs/components/link.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/list.html b/gh-pages/docs/components/list.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/list.html +++ b/gh-pages/docs/components/list.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/mapping.html b/gh-pages/docs/components/mapping.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/mapping.html +++ b/gh-pages/docs/components/mapping.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/nav.html b/gh-pages/docs/components/nav.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/nav.html +++ b/gh-pages/docs/components/nav.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/page.html b/gh-pages/docs/components/page.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/page.html +++ b/gh-pages/docs/components/page.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/panel.html b/gh-pages/docs/components/panel.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/panel.html +++ b/gh-pages/docs/components/panel.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/progress.html b/gh-pages/docs/components/progress.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/progress.html +++ b/gh-pages/docs/components/progress.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/qrcode.html b/gh-pages/docs/components/qrcode.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/qrcode.html +++ b/gh-pages/docs/components/qrcode.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/remark.html b/gh-pages/docs/components/remark.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/remark.html +++ b/gh-pages/docs/components/remark.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/service.html b/gh-pages/docs/components/service.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/service.html +++ b/gh-pages/docs/components/service.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/spinner.html b/gh-pages/docs/components/spinner.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/spinner.html +++ b/gh-pages/docs/components/spinner.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/status.html b/gh-pages/docs/components/status.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/status.html +++ b/gh-pages/docs/components/status.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/switch.html b/gh-pages/docs/components/switch.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/switch.html +++ b/gh-pages/docs/components/switch.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/table.html b/gh-pages/docs/components/table.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/table.html +++ b/gh-pages/docs/components/table.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/tabs.html b/gh-pages/docs/components/tabs.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/tabs.html +++ b/gh-pages/docs/components/tabs.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/tasks.html b/gh-pages/docs/components/tasks.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/tasks.html +++ b/gh-pages/docs/components/tasks.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/tpl.html b/gh-pages/docs/components/tpl.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/tpl.html +++ b/gh-pages/docs/components/tpl.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/video.html b/gh-pages/docs/components/video.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/video.html +++ b/gh-pages/docs/components/video.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/wizard.html b/gh-pages/docs/components/wizard.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/wizard.html +++ b/gh-pages/docs/components/wizard.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/components/wrapper.html b/gh-pages/docs/components/wrapper.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/components/wrapper.html +++ b/gh-pages/docs/components/wrapper.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/action.html b/gh-pages/docs/concepts/action.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/action.html +++ b/gh-pages/docs/concepts/action.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/data-mapping.html b/gh-pages/docs/concepts/data-mapping.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/data-mapping.html +++ b/gh-pages/docs/concepts/data-mapping.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/datascope-and-datachain.html b/gh-pages/docs/concepts/datascope-and-datachain.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/datascope-and-datachain.html +++ b/gh-pages/docs/concepts/datascope-and-datachain.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/expression.html b/gh-pages/docs/concepts/expression.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/expression.html +++ b/gh-pages/docs/concepts/expression.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/linkage.html b/gh-pages/docs/concepts/linkage.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/linkage.html +++ b/gh-pages/docs/concepts/linkage.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/linkage_cf54698.js b/gh-pages/docs/concepts/linkage_862b62d.js similarity index 78% rename from gh-pages/docs/concepts/linkage_cf54698.js rename to gh-pages/docs/concepts/linkage_862b62d.js index 32c61197..423767d0 100644 --- a/gh-pages/docs/concepts/linkage_cf54698.js +++ b/gh-pages/docs/concepts/linkage_862b62d.js @@ -8,7 +8,7 @@ amis.define('docs/concepts/linkage.md', function(require, exports, module, defin "menuName": "联动", "icon": null, "order": 14, - "html": "

上一节我们介绍了表达式的概念,而表达式应用最多的场景,是实现页面的联动效果。

\n

基本联动

元素的联动是页面开发中很常见的功能之一,类似于:

\n
    \n
  • 某个条件下显示或隐藏某个组件
  • \n
  • 某个条件下请求接口
  • \n
  • 某个条件下轮训接口停止轮训
  • \n
  • 等等...
  • \n
\n
\n

联动配置项一般都是 表达式

\n
\n

组件配置联动

控制组件的显隐,表单项的禁用状态等,看下面这个例子:

\n
\n

上面实例主要为一个表单,表单内有三个组件:一个radio, 两个text,通过配置联动配置项,实现下面联动效果:

\n
    \n
  1. 只要当radio选中类型1时,才会显示text1
  2. \n
  3. radio选中类型2时,text2将会变为禁用状态
  4. \n
\n
\n

注意:

\n

在表单项联动中,为了方便数据的读取,赋值后或者修改过的表单项,通过隐藏后,并不会在当前数据域中删除掉该字段值,因此默认提交的时候可能仍然会带上已隐藏表单项的值

\n

如果想要在提交时去掉某个隐藏的字段,可以通过 数据映射 配置自定义数据体

\n
\n

接口联动

基本使用

接口联动是另外一种很常见的场景,查看下面这个例子:

\n
\n

上面例子我们实现了这个逻辑:每次选择选项1的时候,会触发选项2source配置的接口重新请求,并返回不同的下拉选项。

\n

是如何做到的?

\n

实际上,所有初始化接口链接上使用数据映射获取参数的形式时,例如下面的query=${query},在当前数据域中,所引用的变量值(即 query)发生变化时,自动重新请求该接口。

\n
{\n  \"initApi\": \"/api/initData?query=${query}\"\n}\n
\n
\n

tip:

\n

触发所引用变量值发生变化的方式有以下几种:

\n
    \n
  1. 通过对表单项的修改,可以更改表单项name属性值所配置变量的值;
  2. \n
  3. 通过组件间联动,将其他组件的值发送到目标组件,进行数据域的更新,从而触发联动效果
  4. \n
\n

接口联动一般只适用于初始化接口,例如:

\n
    \n
  • form组件中的initApi
  • \n
  • select组件中的source选项源接口;
  • \n
  • service组件中的apischemaApi
  • \n
  • crud组件中的api
  • \n
  • 等等...
  • \n
\n
\n

配置请求条件

默认在变量变化时,总是会去请求联动的接口,你也可以配置请求条件,当只有当前数据域中某个值符合特定条件才去请求该接口。

\n
\n

更多用法,见:Api-配置请求条件

\n

主动触发

上面示例有个问题,就是数据一旦变化就会出发重新拉取,而输入框的频繁变化值会导致频繁的拉取?没关系,也可以配置主动拉取如:

\n
\n
    \n
  1. 通过api对象形式,将获取变量值配置到data请求体中。
  2. \n
  3. 配置搜索按钮,并配置该行为是刷新目标组件,并配置目标组件target
  4. \n
  5. 这样我们只有在点击搜索按钮的时候,才会将keyword值发送给select组件,重新拉取选项
  6. \n
\n

其他联动

还有一些组件特有的联动效果,例如 form 的 disabledOn,crud 中的 itemDraggableOn 等等,可以参考相应的组件文档。

\n

组件间联动

联动很可能会出现跨组件的形式,思考下面这种场景:

\n

有一个表单form组件,还有一个列表组件crud,我们想要把form提交的数据,可以用作crud的查询条件,并请求crud的接口,由于formcrud位于同一层级,因此没法使用数据链的方式进行取值。

\n
\n

现在更改配置如下:

\n
\n

我们进行两个调整:

\n
    \n
  1. crud组件设置了name属性为my_crud
  2. \n
  3. form组件配置了target属性为crudnamemy_crud
  4. \n
\n

更改配置后,提交表单时,如果有配置提交接口,会先请求提交,之后 amis 会寻找target所配置的目标组件,把form中所提交的数据,发送给该目标组件中,并将该数据合并到目标组件的数据域中,并触发目标组件的刷新操作,对于 CRUD 组件来说,刷新即重新拉取数据接口。

\n
\n

当然,crud组件内置已经支持此功能,你只需要配置crud中的filter属性,就可以实现上面的效果,更多内容查看 crud -> filter 文档。

\n
\n

我们再来一个例子,这次我们实现两个form之间的联动:

\n

事实上,组件间联动也可以实现上述任意的 基本联动效果(显隐联动、接口联动等其他联动)。

\n", + "html": "

上一节我们介绍了表达式的概念,而表达式应用最多的场景,是实现页面的联动效果。

\n

基本联动

元素的联动是页面开发中很常见的功能之一,类似于:

\n
    \n
  • 某个条件下显示或隐藏某个组件
  • \n
  • 某个条件下请求接口
  • \n
  • 某个条件下轮训接口停止轮训
  • \n
  • 等等...
  • \n
\n
\n

联动配置项一般都是 表达式

\n
\n

组件配置联动

控制组件的显隐,表单项的禁用状态等,看下面这个例子:

\n
\n

上面实例主要为一个表单,表单内有三个组件:一个radio, 两个text,通过配置联动配置项,实现下面联动效果:

\n
    \n
  1. 只要当radio选中类型1时,才会显示text1
  2. \n
  3. radio选中类型2时,text2将会变为禁用状态
  4. \n
\n
\n

注意:

\n

在表单项联动中,为了方便数据的读取,赋值后或者修改过的表单项,通过隐藏后,并不会在当前数据域中删除掉该字段值,因此默认提交的时候可能仍然会带上已隐藏表单项的值

\n

如果想要在提交时去掉某个隐藏的字段,可以通过 数据映射 配置自定义数据体

\n
\n

接口联动

基本使用

接口联动是另外一种很常见的场景,查看下面这个例子:

\n
\n

上面例子我们实现了这个逻辑:每次选择选项1的时候,会触发选项2source配置的接口重新请求,并返回不同的下拉选项。

\n

是如何做到的?

\n

实际上,所有初始化接口链接上使用数据映射获取参数的形式时,例如下面的query=${query},在当前数据域中,所引用的变量值(即 query)发生变化时,自动重新请求该接口。

\n
{\n  \"initApi\": \"/api/initData?query=${query}\"\n}\n
\n
\n

tip:

\n

触发所引用变量值发生变化的方式有以下几种:

\n
    \n
  1. 通过对表单项的修改,可以更改表单项name属性值所配置变量的值;
  2. \n
  3. 通过组件间联动,将其他组件的值发送到目标组件,进行数据域的更新,从而触发联动效果
  4. \n
\n

接口联动一般只适用于初始化接口,例如:

\n
    \n
  • form组件中的initApi
  • \n
  • select组件中的source选项源接口;
  • \n
  • service组件中的apischemaApi
  • \n
  • crud组件中的api
  • \n
  • 等等...
  • \n
\n
\n

配置请求条件

默认在变量变化时,总是会去请求联动的接口,你也可以配置请求条件,当只有当前数据域中某个值符合特定条件才去请求该接口。

\n
\n

更多用法,见:Api-配置请求条件

\n

主动触发

上面示例有个问题,就是数据一旦变化就会出发重新拉取,而输入框的频繁变化值会导致频繁的拉取?没关系,也可以配置主动拉取如:

\n
\n
    \n
  1. 通过api对象形式,将获取变量值配置到data请求体中。
  2. \n
  3. 配置搜索按钮,并配置该行为是刷新目标组件,并配置目标组件target
  4. \n
  5. 这样我们只有在点击搜索按钮的时候,才会将keyword值发送给select组件,重新拉取选项
  6. \n
\n

其他联动

还有一些组件特有的联动效果,例如 form 的 disabledOn,crud 中的 itemDraggableOn 等等,可以参考相应的组件文档。

\n

组件间联动

联动很可能会出现跨组件的形式,思考下面这种场景:

\n

有一个表单form组件,还有一个列表组件crud,我们想要把form提交的数据,可以用作crud的查询条件,并请求crud的接口,由于formcrud位于同一层级,因此没法使用数据链的方式进行取值。

\n
\n

现在更改配置如下:

\n
\n

我们进行两个调整:

\n
    \n
  1. crud组件设置了name属性为my_crud
  2. \n
  3. form组件配置了target属性为crudnamemy_crud
  4. \n
\n

更改配置后,提交表单时,如果有配置提交接口,会先请求提交,之后 amis 会寻找target所配置的目标组件,把form中所提交的数据,发送给该目标组件中,并将该数据合并到目标组件的数据域中,并触发目标组件的刷新操作,对于 CRUD 组件来说,刷新即重新拉取数据接口。

\n
\n

当然,crud组件内置已经支持此功能,你只需要配置crud中的filter属性,就可以实现上面的效果,更多内容查看 crud -> filter 文档。

\n
\n

我们再来一个例子,这次我们实现 两个 form 之间的联动

\n

发送指定数据

target属性支持通过配置参数来发送指定数据,例如:"target" :"xxx?a=${a}&b=${b}",这样就会把当前数据域中的a变量和b变量发送给目标组件

\n
\n

上例中我们给按钮上配置了"target": "form2?name=${name}&email=${email}",可以把当前数据链中的name变量和email变量发送给form2

\n

配置多个目标

target支持配置多个目标组件 name,用逗号隔开,例如:

\n
{\n  \"type\": \"action\",\n  \"actionType\": \"reload\",\n  \"label\": \"刷新目标组件\",\n  \"target\": \"target1,target2\"\n}\n
\n

上例中点击按钮会刷新target1target2组件。

\n

事实上,组件间联动也可以实现上述任意的 基本联动效果(显隐联动、接口联动等其他联动)。

\n", "toc": { "label": "目录", "type": "toc", @@ -63,7 +63,21 @@ amis.define('docs/concepts/linkage.md', function(require, exports, module, defin "label": "组件间联动", "fragment": "%E7%BB%84%E4%BB%B6%E9%97%B4%E8%81%94%E5%8A%A8", "fullPath": "#%E7%BB%84%E4%BB%B6%E9%97%B4%E8%81%94%E5%8A%A8", - "level": 2 + "level": 2, + "children": [ + { + "label": "发送指定数据", + "fragment": "%E5%8F%91%E9%80%81%E6%8C%87%E5%AE%9A%E6%95%B0%E6%8D%AE", + "fullPath": "#%E5%8F%91%E9%80%81%E6%8C%87%E5%AE%9A%E6%95%B0%E6%8D%AE", + "level": 3 + }, + { + "label": "配置多个目标", + "fragment": "%E9%85%8D%E7%BD%AE%E5%A4%9A%E4%B8%AA%E7%9B%AE%E6%A0%87", + "fullPath": "#%E9%85%8D%E7%BD%AE%E5%A4%9A%E4%B8%AA%E7%9B%AE%E6%A0%87", + "level": 3 + } + ] } ], "level": 0 diff --git a/gh-pages/docs/concepts/schema.html b/gh-pages/docs/concepts/schema.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/schema.html +++ b/gh-pages/docs/concepts/schema.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/style.html b/gh-pages/docs/concepts/style.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/style.html +++ b/gh-pages/docs/concepts/style.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/concepts/template.html b/gh-pages/docs/concepts/template.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/concepts/template.html +++ b/gh-pages/docs/concepts/template.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/index.html b/gh-pages/docs/index.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/index.html +++ b/gh-pages/docs/index.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/index_64ff072.js b/gh-pages/docs/index_64ff072.js deleted file mode 100644 index 71f2498a..00000000 --- a/gh-pages/docs/index_64ff072.js +++ /dev/null @@ -1,63 +0,0 @@ -amis.define('docs/index.md', function(require, exports, module, define) { - - module.exports = { - "title": "介绍", - "description": "介绍", - "type": 0, - "group": "💡 概念", - "menuName": "介绍", - "icon": null, - "order": 8, - "html": "

什么是 amis

amis 是一个低代码前端框架,它使用 JSON 配置来生成页面,可以节省页面开发工作量,极大提升开发前端页面的效率。

\n

为什么要做 amis?🤔

在经历了十几年的发展后,前端开发变得越来越复杂,门槛也越来越高,要使用当下流行的 UI 组件库,你必须懂 npm、webpack、react/vue,必须熟悉 ES 6 语法,最好还了解状态管理(比如 Redux),如果没接触过函数式编程,一开始入门就很困难,而它还有巨大的 生态,相关的库有 2347 个。

\n

然而前端技术的发展不会停滞,等学完这些后可能会发现大家都用 Hooks 了、某个打包工具取代 Webpack 了。。。

\n

而有时候你只是为了做个普通的增删改查界面,用于系统管理,类似下面这种:

\n
\n

这个界面虽然用 Bootstrap 也能快速搭起来,但要想体验好就需要加很多细节功能,比如:

\n
    \n
  • 数据动态加载
  • \n
  • 编辑单行数据
  • \n
  • 批量删除和修改
  • \n
  • 查询某列
  • \n
  • 按某列排序
  • \n
  • 隐藏某列
  • \n
  • 开启整页内容拖拽排序
  • \n
  • 表格有分页(页数还会同步到地址栏,刷新页面试试)
  • \n
  • 如果往下拖动还有首行冻结来方便查看表头等\n全部实现这些需要大量的代码。
  • \n
\n

然而上面也看到了,在 amis 里只需要 150 行 JSON 配置(嘿,其中 40 多行只有一个括号),你不需要了解 React/Vue、Webpack,甚至不需要了解 JavaScript,即便没学过 amis 也能猜到大部分配置的作用,只需要简单配置就能完成所有页面开发

\n

这正是建立 amis 的初衷,我们认为:对于大部分常用页面,应该使用最简单的方法来实现,而不是越来越复杂。

\n

用 JSON 写页面有什么好处 ❓

为了实现用最简单方式来生成大部分页面,amis 的解决方案是基于 JSON 来配置,它的独特好处是:

\n
    \n
  • 不需要懂前端:在百度内部,大部分 amis 用户之前从来没写过前端页面,也不会 JavaScript,就能做出专业且复杂的后台界面,这是所有其他前端 UI 库都无法做到的;
  • \n
  • 不受前端技术更新的影响:百度内部最老的 amis 页面是 4 年多前创建的,至今还在使用,而当年的 Angular/Vue/React 版本现在都废弃了,当年流行的 Gulp 也被 Webpack 取代了,如果这些页面不是用 amis,现在的维护成本会很高,同时还能享受 amis 升级带来的界面改进;
  • \n
  • 可以 完全 使用 可视化页面编辑器 来制作页面:一般前端可视化编辑器只能用来做静态原型,而 amis 可视化编辑器做出的页面是可以直接上线的。
  • \n
\n
\n

JSON 是一种轻量级的数据交换格式,简洁和清晰的层次结构使得它成为理想的数据交换语言。它易于人阅读和编写,同时也易于机器解析和生成,能够有效地提升网络传输效率。

\n

更多关于 JSON 的知识,可以阅读百度百科

\n
\n

amis 的其它亮点 ✨

    \n
  • 提供完整的界面解决方案:其它 UI 框架必须使用 JavaScript 来组装业务逻辑,而 amis 只需 JSON 配置就能完成完整功能开发,包括数据获取、表单提交及验证等功能;
  • \n
  • 内置 100+ 种 UI 组件:包括其它 UI 框架都会不提供的富文本编辑器、代码编辑器等,能满足各种页面组件展现的需求,而且对于特殊的展现形式还可以通过 自定义组件 来扩充;
  • \n
  • 容器支持无限级嵌套:可以通过组合来满足各种布局需求;
  • \n
  • 经历了长时间的实战考验:amis 在百度内部得到了广泛使用,在 4 年多的时间里创建了 3w 多页面,从内容审核到机器管理,从数据分析到模型训练,amis 满足了各种各样的页面需求。
  • \n
\n

amis 不适合做什么?😶

使用 JSON 有优点但也有明显缺点,在以下场合并不适合 amis:

\n
    \n
  • 大量定制 UI,尤其是面向普通客户(toC)的产品页面
      \n
    • JSON 配置使得 amis 更适合做有大量常见 UI 组件的页面,但对于面向普通客户的页面,往往追求个性化的视觉效果,这种情况下用 amis 就不合适,实际上绝大部分前端 UI 组件库也都不适合,只能定制开发。
    • \n
    \n
  • \n
  • 有极为复杂的交互,或者对交互有很特殊的要求
      \n
    • 有些复杂的前端功能,比如可视化编辑器,其中有大量定制的拖拽操作,这种需要依赖原生 DOM 实现的功能无法使用 amis。
    • \n
    • 但对于某些交互固定的领域,比如图连线,amis 后续会有专门的组件来实现。
    • \n
    \n
  • \n
\n

阅读建议 👆

    \n
  • 如果你是第一次接触 amis 的新同学,那么请 务必认真阅读完概念部分,它会让你对 amis 有个整体的认识
  • \n
  • 如果你已经掌握 amis 基本概念,且有一定的开发经验,需要参考 amis 组件相关文档的同学,那么请移步 组件文档
  • \n
\n

让我们马上开始吧!

点击页面底部的下一篇,继续后续部分的阅读。

\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "什么是 amis", - "fragment": "%E4%BB%80%E4%B9%88%E6%98%AF-amis", - "fullPath": "#%E4%BB%80%E4%B9%88%E6%98%AF-amis", - "level": 2 - }, - { - "label": "为什么要做 amis?🤔", - "fragment": "%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E5%81%9A-amis-", - "fullPath": "#%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E5%81%9A-amis-", - "level": 2 - }, - { - "label": "用 JSON 写页面有什么好处 ❓", - "fragment": "%E7%94%A8-json-%E5%86%99%E9%A1%B5%E9%9D%A2%E6%9C%89%E4%BB%80%E4%B9%88%E5%A5%BD%E5%A4%84-", - "fullPath": "#%E7%94%A8-json-%E5%86%99%E9%A1%B5%E9%9D%A2%E6%9C%89%E4%BB%80%E4%B9%88%E5%A5%BD%E5%A4%84-", - "level": 2 - }, - { - "label": "amis 的其它亮点 ✨", - "fragment": "amis-%E7%9A%84%E5%85%B6%E5%AE%83%E4%BA%AE%E7%82%B9-", - "fullPath": "#amis-%E7%9A%84%E5%85%B6%E5%AE%83%E4%BA%AE%E7%82%B9-", - "level": 2 - }, - { - "label": "amis 不适合做什么?😶", - "fragment": "amis-%E4%B8%8D%E9%80%82%E5%90%88%E5%81%9A%E4%BB%80%E4%B9%88-", - "fullPath": "#amis-%E4%B8%8D%E9%80%82%E5%90%88%E5%81%9A%E4%BB%80%E4%B9%88-", - "level": 2 - }, - { - "label": "阅读建议 👆", - "fragment": "%E9%98%85%E8%AF%BB%E5%BB%BA%E8%AE%AE-", - "fullPath": "#%E9%98%85%E8%AF%BB%E5%BB%BA%E8%AE%AE-", - "level": 2 - }, - { - "label": "让我们马上开始吧!", - "fragment": "%E8%AE%A9%E6%88%91%E4%BB%AC%E9%A9%AC%E4%B8%8A%E5%BC%80%E5%A7%8B%E5%90%A7-", - "fullPath": "#%E8%AE%A9%E6%88%91%E4%BB%AC%E9%A9%AC%E4%B8%8A%E5%BC%80%E5%A7%8B%E5%90%A7-", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/index_9751456.js b/gh-pages/docs/index_9751456.js new file mode 100644 index 00000000..a95075da --- /dev/null +++ b/gh-pages/docs/index_9751456.js @@ -0,0 +1,63 @@ +amis.define('docs/index.md', function(require, exports, module, define) { + + module.exports = { + "title": "介绍", + "description": "介绍", + "type": 0, + "group": "💡 概念", + "menuName": "介绍", + "icon": null, + "order": 8, + "html": "

什么是 amis

amis 是一个低代码前端框架,它使用 JSON 配置来生成页面,可以节省页面开发工作量,极大提升开发前端页面的效率。

\n

为什么要做 amis?🤔

在经历了十几年的发展后,前端开发变得越来越复杂,门槛也越来越高,要使用当下流行的 UI 组件库,你必须懂 npm、webpack、react/vue,必须熟悉 ES 6 语法,最好还了解状态管理(比如 Redux),如果没接触过函数式编程,一开始入门就很困难,而它还有巨大的 生态,相关的库有 2347 个。

\n

然而前端技术的发展不会停滞,等学完这些后可能会发现大家都用 Hooks 了、某个打包工具取代 Webpack 了。。。

\n

而有时候你只是为了做个普通的增删改查界面,用于系统管理,类似下面这种:

\n
\n

这个界面虽然用 Bootstrap 也能快速搭起来,但要想体验好就需要加很多细节功能,比如:

\n
    \n
  • 数据动态加载
  • \n
  • 编辑单行数据
  • \n
  • 批量删除和修改
  • \n
  • 查询某列
  • \n
  • 按某列排序
  • \n
  • 隐藏某列
  • \n
  • 开启整页内容拖拽排序
  • \n
  • 表格有分页(页数还会同步到地址栏,刷新页面试试)
  • \n
  • 如果往下拖动还有首行冻结来方便查看表头等\n全部实现这些需要大量的代码。
  • \n
\n

然而上面也看到了,在 amis 里只需要 150 行 JSON 配置(嘿,其中 40 多行只有一个括号),你不需要了解 React/Vue、Webpack,甚至不需要了解 JavaScript,即便没学过 amis 也能猜到大部分配置的作用,只需要简单配置就能完成所有页面开发

\n

这正是建立 amis 的初衷,我们认为:对于大部分常用页面,应该使用最简单的方法来实现,而不是越来越复杂。

\n

用 JSON 写页面有什么好处 ❓

为了实现用最简单方式来生成大部分页面,amis 的解决方案是基于 JSON 来配置,它的独特好处是:

\n
    \n
  • 不需要懂前端:在百度内部,大部分 amis 用户之前从来没写过前端页面,也不会 JavaScript,就能做出专业且复杂的后台界面,这是所有其他前端 UI 库都无法做到的;
  • \n
  • 不受前端技术更新的影响:百度内部最老的 amis 页面是 4 年多前创建的,至今还在使用,而当年的 Angular/Vue/React 版本现在都废弃了,当年流行的 Gulp 也被 Webpack 取代了,如果这些页面不是用 amis,现在的维护成本会很高,同时还能享受 amis 升级带来的界面改进;
  • \n
  • 可以 完全 使用 可视化页面编辑器 来制作页面:一般前端可视化编辑器只能用来做静态原型,而 amis 可视化编辑器做出的页面是可以直接上线的。
  • \n
\n
\n

JSON 是一种轻量级的数据交换格式,简洁和清晰的层次结构使得它成为理想的数据交换语言。它易于人阅读和编写,同时也易于机器解析和生成,能够有效地提升网络传输效率。

\n

更多关于 JSON 的知识,可以阅读百度百科

\n
\n

amis 的其它亮点 ✨

    \n
  • 提供完整的界面解决方案:其它 UI 框架必须使用 JavaScript 来组装业务逻辑,而 amis 只需 JSON 配置就能完成完整功能开发,包括数据获取、表单提交及验证等功能;
  • \n
  • 内置 100+ 种 UI 组件:包括其它 UI 框架都会不提供的富文本编辑器、代码编辑器等,能满足各种页面组件展现的需求,而且对于特殊的展现形式还可以通过 自定义组件 来扩充;
  • \n
  • 容器支持无限级嵌套:可以通过组合来满足各种布局需求;
  • \n
  • 经历了长时间的实战考验:amis 在百度内部得到了广泛使用,在 4 年多的时间里创建了 3w 多页面,从内容审核到机器管理,从数据分析到模型训练,amis 满足了各种各样的页面需求。
  • \n
\n

amis 不适合做什么?😶

使用 JSON 有优点但也有明显缺点,在以下场合并不适合 amis:

\n
    \n
  • 大量定制 UI,尤其是面向普通客户(toC)的产品页面
      \n
    • JSON 配置使得 amis 更适合做有大量常见 UI 组件的页面,但对于面向普通客户的页面,往往追求个性化的视觉效果,这种情况下用 amis 就不合适,实际上绝大部分前端 UI 组件库也都不适合,只能定制开发。
    • \n
    \n
  • \n
  • 有极为复杂的交互,或者对交互有很特殊的要求
      \n
    • 有些复杂的前端功能,比如可视化编辑器,其中有大量定制的拖拽操作,这种需要依赖原生 DOM 实现的功能无法使用 amis。
    • \n
    • 但对于某些交互固定的领域,比如图连线,amis 后续会有专门的组件来实现。
    • \n
    \n
  • \n
\n

阅读建议 👆

    \n
  • 如果你是第一次接触 amis 的新同学,那么请 务必认真阅读完概念部分,它会让你对 amis 有个整体的认识
  • \n
  • 如果你已经掌握 amis 基本概念,且有一定的开发经验,需要参考 amis 组件相关文档的同学,那么请移步 组件文档
  • \n
\n

让我们马上开始吧!

点击页面底部的下一篇,继续后续部分的阅读。

\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "什么是 amis", + "fragment": "%E4%BB%80%E4%B9%88%E6%98%AF-amis", + "fullPath": "#%E4%BB%80%E4%B9%88%E6%98%AF-amis", + "level": 2 + }, + { + "label": "为什么要做 amis?🤔", + "fragment": "%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E5%81%9A-amis-", + "fullPath": "#%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E5%81%9A-amis-", + "level": 2 + }, + { + "label": "用 JSON 写页面有什么好处 ❓", + "fragment": "%E7%94%A8-json-%E5%86%99%E9%A1%B5%E9%9D%A2%E6%9C%89%E4%BB%80%E4%B9%88%E5%A5%BD%E5%A4%84-", + "fullPath": "#%E7%94%A8-json-%E5%86%99%E9%A1%B5%E9%9D%A2%E6%9C%89%E4%BB%80%E4%B9%88%E5%A5%BD%E5%A4%84-", + "level": 2 + }, + { + "label": "amis 的其它亮点 ✨", + "fragment": "amis-%E7%9A%84%E5%85%B6%E5%AE%83%E4%BA%AE%E7%82%B9-", + "fullPath": "#amis-%E7%9A%84%E5%85%B6%E5%AE%83%E4%BA%AE%E7%82%B9-", + "level": 2 + }, + { + "label": "amis 不适合做什么?😶", + "fragment": "amis-%E4%B8%8D%E9%80%82%E5%90%88%E5%81%9A%E4%BB%80%E4%B9%88-", + "fullPath": "#amis-%E4%B8%8D%E9%80%82%E5%90%88%E5%81%9A%E4%BB%80%E4%B9%88-", + "level": 2 + }, + { + "label": "阅读建议 👆", + "fragment": "%E9%98%85%E8%AF%BB%E5%BB%BA%E8%AE%AE-", + "fullPath": "#%E9%98%85%E8%AF%BB%E5%BB%BA%E8%AE%AE-", + "level": 2 + }, + { + "label": "让我们马上开始吧!", + "fragment": "%E8%AE%A9%E6%88%91%E4%BB%AC%E9%A9%AC%E4%B8%8A%E5%BC%80%E5%A7%8B%E5%90%A7-", + "fullPath": "#%E8%AE%A9%E6%88%91%E4%BB%AC%E9%A9%AC%E4%B8%8A%E5%BC%80%E5%A7%8B%E5%90%A7-", + "level": 2 + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/start/custom.html b/gh-pages/docs/start/custom.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/start/custom.html +++ b/gh-pages/docs/start/custom.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/start/getting-started.html b/gh-pages/docs/start/getting-started.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/start/getting-started.html +++ b/gh-pages/docs/start/getting-started.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/start/getting-started_0f2c46d.js b/gh-pages/docs/start/getting-started_0f2c46d.js new file mode 100644 index 00000000..e0a8548b --- /dev/null +++ b/gh-pages/docs/start/getting-started_0f2c46d.js @@ -0,0 +1,82 @@ +amis.define('docs/start/getting-started.md', function(require, exports, module, define) { + + module.exports = { + "title": "快速开始", + "description": null, + "html": "

amis 有两种使用方法:

\n\n

npm 适合用在 React 项目中,可以完整使用 amis 的所有功能,方便扩展。

\n

SDK 适合对前端或 React 不了解的开发者,它不依赖 npm 及 webpack,直接引入代码就能使用,但需要注意这种方式难以支持 自定义组件,只能使用 amis 内置的组件。

\n

npm

安装

npm i amis\n

主题样式

目前支持三种主题:default(默认主题)cxd(云舍)dark(暗黑)

\n
    \n
  1. 引入样式文件:
  2. \n
\n

html 中引入:

\n
\n\n\n
<link href=\"./node_modules/amis/lib/themes/default.css\" />\n<!-- 或 <link href=\"./node_modules/amis/lib/themes/cxd.css\" /> -->\n<!-- 或 <link href=\"./node_modules/amis/lib/themes/dark.css\" /> -->\n
\n

js 中引入:

\n
import './node_modules/amis/lib/themes/default.css';\n// 或 import './node_modules/amis/lib/themes/cxd.css';\n// 或 import './node_modules/amis/lib/themes/dark.css';\n
\n
\n

上面只是示例,请根据自己的项目结构调整引用路径

\n
\n
    \n
  1. 渲染器使用配置主题
  2. \n
\n
renderAmis(\n  {\n    type: 'page',\n    title: '简单页面',\n    body: '内容'\n  },\n  {},\n  {\n    // env...\n    theme: 'default' // cxd 或 dark\n  }\n);\n
\n

使用指南

可以在 React Component 这么使用(TypeScript)。

\n
    \n
  1. 安装部分示例需要的插件库
  2. \n
\n
npm i axios copy-to-clipboard\n
\n

为了方便示例,上面选用了我们常用几个插件库,你完全可以选择自己喜欢的插件并重新实现

\n
\n
    \n
  1. 代码实现
  2. \n
\n
import * as React from 'react';\nimport axios from 'axios';\nimport copy from 'copy-to-clipboard';\n\nimport {render as renderAmis} from 'amis';\nimport {alert, confirm} from 'amis/lib/components/Alert';\nimport {toast} from 'amis/lib/components/Toast';\n\nclass MyComponent extends React.Component<any, any> {\n  render() {\n    return (\n      <div>\n        <p>通过 amis 渲染页面</p>\n        {renderAmis(\n          {\n            // 这里是 amis 的 Json 配置。\n            type: 'page',\n            title: '简单页面',\n            body: '内容'\n          },\n          {\n            // props...\n          },\n          {\n            // env\n            // 这些是 amis 需要的一些接口实现\n            // 可以参考后面的参数介绍。\n\n            jumpTo: (location: string /*目标地址*/) => {\n              // 用来实现页面跳转, actionType:link、url 都会进来。\n              // 因为不清楚所在环境中是否使用了 spa 模式,所以自己实现这个方法吧。\n            },\n\n            updateLocation: (\n              location: string /*目标地址*/,\n              replace: boolean /*是replace,还是push?*/\n            ) => {\n              // 地址替换,跟 jumpTo 类似\n            },\n\n            fetcher: ({\n              url, // 接口地址\n              method, // 请求方法 get、post、put、delete\n              data, // 请求数据\n              responseType,\n              config, // 其他配置\n              headers // 请求头\n            }: any) => {\n              config = config || {};\n              config.withCredentials = true;\n              responseType && (config.responseType = responseType);\n\n              if (config.cancelExecutor) {\n                config.cancelToken = new (axios as any).CancelToken(\n                  config.cancelExecutor\n                );\n              }\n\n              config.headers = headers || {};\n\n              if (method !== 'post' && method !== 'put' && method !== 'patch') {\n                if (data) {\n                  config.params = data;\n                }\n\n                return (axios as any)[method](url, config);\n              } else if (data && data instanceof FormData) {\n                config.headers = config.headers || {};\n                config.headers['Content-Type'] = 'multipart/form-data';\n              } else if (\n                data &&\n                typeof data !== 'string' &&\n                !(data instanceof Blob) &&\n                !(data instanceof ArrayBuffer)\n              ) {\n                data = JSON.stringify(data);\n                config.headers = config.headers || {};\n                config.headers['Content-Type'] = 'application/json';\n              }\n\n              return (axios as any)[method](url, data, config);\n            },\n            isCancel: (value: any) => (axios as any).isCancel(value),\n            notify: (\n              type: 'error' | 'success' /**/,\n              msg: string /*提示内容*/\n            ) => {\n              toast[type]\n                ? toast[type](msg, type === 'error' ? '系统错误' : '系统消息')\n                : console.warn('[Notify]', type, msg);\n            },\n            alert,\n            confirm,\n            copy: content => {\n              copy(content);\n              toast.success('内容已复制到粘贴板');\n            }\n          }\n        )}\n      </div>\n    );\n  }\n}\n
\n

render 函数介绍

(schema, props, env) => JSX.Element;\n
\n

schema

即页面配置,请前往 配置与组件 了解

\n

props

一般都用不上,如果你想传递一些数据给渲染器内部使用,可以传递 data 数据进去。如:

\n
() =>\n  renderAmis(schema, {\n    data: {\n      username: 'amis'\n    }\n  });\n
\n

这样,内部所有组件都能拿到 username 这个变量的值。当然,这里的 key 并不一定必须是 data , 你也可以是其它 key,但必须配合 schema 中的 detectField 属性一起使用。 如:

\n
() =>\n  renderAmis(\n    {\n      //其它配置\n      detectField: 'somekey'\n    },\n    {\n      somekey: {\n        username: 'amis'\n      }\n    }\n  );\n
\n

env

环境变量,可以理解为这个渲染器工具的配置项,需要使用 amis 用户实现部分接口。他有下面若干参数:

\n
fetcher(必须实现)

接口请求器,实现该函数才可以实现 ajax 发送,函数签名如下:

\n
(config: {\n  url; // 接口地址\n  method; // 请求方法 get、post、put、delete\n  data; // 请求数据\n  responseType;\n  config; // 其他配置\n  headers; // 请求头\n}) => Promise<fetcherResult>;\n
\n
\n

你可以使用任何你喜欢的 ajax 请求库来实现这个接口

\n
\n
notify
(type: string, msg: string) => void\n
\n

用来实现消息提示。

\n
alert
(msg: string) => void\n
\n

用来实现警告提示。

\n
confirm
(msg: string) => boolean | Promise<boolean>\n
\n

用来实现确认框。返回 boolean 值

\n
jumpTo
(to: string, action?: Action, ctx?: object) => void\n
\n

用来实现页面跳转,因为不清楚所在环境中是否使用了 spa 模式,所以用户自己实现吧。

\n
updateLocation
(location: any, replace?: boolean) => void\n
\n

地址替换,跟 jumpTo 类似。

\n
theme: string

目前支持是三种主题:defaultcxddark

\n
isCurrentUrl
(link: string) => boolean;\n
\n

判断目标地址是否为当前页面。

\n
copy
(contents: string, options?: {shutup: boolean})\n
\n

用来实现内容复制。

\n
session

默认为 'global',决定 store 是否为全局共用的,如果想单占一个 store,请设置不同的值。

\n
getModalContainer
() => HTMLElement;\n
\n

用来决定弹框容器。

\n
loadRenderer
(schema: any, path: string) => Promise<Function>\n
\n

可以通过它懒加载自定义组件,比如: https://github.com/baidu/amis/blob/master/__tests__/factory.test.tsx#L64-L91。

\n
affixOffsetTop: number

固顶间距,当你的有其他固顶元素时,需要设置一定的偏移量,否则会重叠。

\n
affixOffsetBottom: number

固底间距,当你的有其他固底元素时,需要设置一定的偏移量,否则会重叠。

\n
richTextToken: string

内置 rich-text 为 frolaEditor,想要使用,请自行购买,或者自己实现 rich-text 渲染器。

\n

SDK

JSSDK 的代码从以下地址获取:

\n\n

以上的 SDK 地址是一个页面跳转,会跳转到一个 CDN 地址,而且每次跳转都是最新的版本,随着 amis 的升级这个地址会一直变动,需要将这两个文件下载到本地,分别命名为 sdk.js 和 sdk.css,然后类似如下的方式使用:

\n
<!DOCTYPE html>\n<html lang=\"zh\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>AMIS Demo</title>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <meta\n      name=\"viewport\"\n      content=\"width=device-width, initial-scale=1, maximum-scale=1\"\n    />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\" />\n    <link rel=\"stylesheet\" href=\"amis/sdk.css\" />\n    <style>\n      html,\n      body,\n      .app-wrapper {\n        position: relative;\n        width: 100%;\n        height: 100%;\n        margin: 0;\n        padding: 0;\n      }\n    </style>\n  </head>\n  <body>\n    <div id=\"root\" class=\"app-wrapper\"></div>\n    <script src=\"amis/sdk.js\"></script>\n    <script type=\"text/javascript\">\n      (function () {\n        let amis = amisRequire('amis/embed');\n        let amisScoped = amis.embed('#root', {\n          type: 'page',\n          title: 'AMIS Demo',\n          body: 'hello world'\n        });\n      })();\n    </script>\n  </body>\n</html>\n
\n

控制 amis 的行为

amis.embed 函数还支持以下配置项来控制 amis 的行为,比如在 fetcher 的时候加入自己的处理逻辑,这些函数参数的说明在前面也有介绍。

\n
let amisScoped = amis.embed(\n  '#root',\n  {\n    type: 'page',\n    title: 'AMIS Demo',\n    body: 'This is a simple amis page.'\n  },\n  {\n    // props 一般不用传。\n  },\n  {\n    fetcher: (url, method, data, config) => {\n      // 可以不传,用来实现 ajax 请求\n    },\n\n    jumpTo: location => {\n      // 可以不传,用来实现页面跳转\n    },\n\n    updateLocation: (location, replace) => {\n      // 可以不传,用来实现地址栏更新\n    },\n\n    isCurrentUrl: url => {\n      // 可以不传,用来判断是否目标地址当前地址。\n    },\n\n    copy: content => {\n      // 可以不传,用来实现复制到剪切板\n    },\n\n    notify: (type, msg) => {\n      // 可以不传,用来实现通知\n    },\n\n    alert: content => {\n      // 可以不传,用来实现提示\n    },\n\n    confirm: content => {\n      // 可以不传,用来实现确认框。\n    }\n  }\n);\n
\n

同时返回的 amisScoped 对象可以获取到 amis 渲染的内部信息,它有如下方法:

\n

getComponentByName(name) 用于获取渲染出来的组件,比如下面的示例

\n
{\n  \"type\": \"page\",\n  \"name\": \"page1\",\n  \"title\": \"表单页面\",\n  \"body\": {\n    \"type\": \"form\",\n    \"name\": \"form1\",\n    \"controls\": [\n      {\n        \"label\": \"Name\",\n        \"type\": \"text\",\n        \"name\": \"name1\"\n      }\n    ]\n  }\n}\n
\n

可以通过 amisScoped.getComponentByName('page1.form1').getValues() 来获取到所有表单的值,需要注意 page 和 form 都需要有 name 属性。

\n", + "toc": { + "label": "目录", + "type": "toc", + "children": [ + { + "label": "npm", + "fragment": "npm", + "fullPath": "#npm", + "level": 2, + "children": [ + { + "label": "安装", + "fragment": "%E5%AE%89%E8%A3%85", + "fullPath": "#%E5%AE%89%E8%A3%85", + "level": 3 + }, + { + "label": "主题样式", + "fragment": "%E4%B8%BB%E9%A2%98%E6%A0%B7%E5%BC%8F", + "fullPath": "#%E4%B8%BB%E9%A2%98%E6%A0%B7%E5%BC%8F", + "level": 3 + }, + { + "label": "使用指南", + "fragment": "%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97", + "fullPath": "#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97", + "level": 3 + }, + { + "label": "render 函数介绍", + "fragment": "render-%E5%87%BD%E6%95%B0%E4%BB%8B%E7%BB%8D", + "fullPath": "#render-%E5%87%BD%E6%95%B0%E4%BB%8B%E7%BB%8D", + "level": 3, + "children": [ + { + "label": "schema", + "fragment": "schema", + "fullPath": "#schema", + "level": 4 + }, + { + "label": "props", + "fragment": "props", + "fullPath": "#props", + "level": 4 + }, + { + "label": "env", + "fragment": "env", + "fullPath": "#env", + "level": 4 + } + ] + } + ] + }, + { + "label": "SDK", + "fragment": "sdk", + "fullPath": "#sdk", + "level": 2, + "children": [ + { + "label": "控制 amis 的行为", + "fragment": "%E6%8E%A7%E5%88%B6-amis-%E7%9A%84%E8%A1%8C%E4%B8%BA", + "fullPath": "#%E6%8E%A7%E5%88%B6-amis-%E7%9A%84%E8%A1%8C%E4%B8%BA", + "level": 3 + } + ] + } + ], + "level": 0 + } + }; + +}); diff --git a/gh-pages/docs/start/getting-started_3465d9a.js b/gh-pages/docs/start/getting-started_3465d9a.js deleted file mode 100644 index abeebdf9..00000000 --- a/gh-pages/docs/start/getting-started_3465d9a.js +++ /dev/null @@ -1,48 +0,0 @@ -amis.define('docs/start/getting-started.md', function(require, exports, module, define) { - - module.exports = { - "title": "快速开始", - "description": null, - "html": "

npm

安装

npm i amis\n

主题样式

目前支持三种主题:default(默认主题)cxd(云舍)dark(暗黑)

\n
    \n
  1. 引入样式文件:
  2. \n
\n

html 中引入:

\n
\n\n\n
<link href=\"./node_modules/amis/lib/themes/default.css\" />\n<!-- 或 <link href=\"./node_modules/amis/lib/themes/cxd.css\" /> -->\n<!-- 或 <link href=\"./node_modules/amis/lib/themes/dark.css\" /> -->\n
\n

js 中引入:

\n
import './node_modules/amis/lib/themes/default.css';\n// 或 import './node_modules/amis/lib/themes/cxd.css';\n// 或 import './node_modules/amis/lib/themes/dark.css';\n
\n
\n

上面只是示例,请根据自己的项目结构调整引用路径

\n
\n
    \n
  1. 渲染器使用配置主题
  2. \n
\n
renderAmis(\n  {\n    type: 'page',\n    title: '简单页面',\n    body: '内容'\n  },\n  {},\n  {\n    // env...\n    theme: 'default' // cxd 或 dark\n  }\n);\n
\n

使用

可以在 React Component 这么使用(TypeScript)。

\n
import * as React from 'react';\nimport {render as renderAmis} from 'amis';\n\nclass MyComponent extends React.Component<any, any> {\n  render() {\n    return (\n      <div>\n        <p>通过 amis 渲染页面</p>\n        {renderAmis(\n          {\n            // schema\n            // 这里是 amis 的 Json 配置。\n            type: 'page',\n            title: '简单页面',\n            body: '内容'\n          },\n          {\n            // props\n          },\n          {\n            // env\n            // 这些是 amis 需要的一些接口实现\n            // 可以参考后面的参数介绍。\n\n            updateLocation: (\n              location: string /*目标地址*/,\n              replace: boolean /*是replace,还是push?*/\n            ) => {\n              // 用来更新地址栏\n            },\n\n            jumpTo: (location: string /*目标地址*/) => {\n              // 页面跳转, actionType:  link、url 都会进来。\n            },\n\n            fetcher: ({\n              url,\n              method,\n              data,\n              config\n            }: {\n              url: string /*目标地址*/;\n              method: 'get' | 'post' | 'put' | 'delete' /*发送方式*/;\n              data: object | void /*数据*/;\n              config: object /*其他配置*/;\n            }) => {\n              // 用来发送 Ajax 请求,建议使用 axios\n            },\n            notify: (\n              type: 'error' | 'success' /**/,\n              msg: string /*提示内容*/\n            ) => {\n              // 用来提示用户\n            },\n            alert: (content: string /*提示信息*/) => {\n              // 另外一种提示,可以直接用系统框\n            },\n            confirm: (content: string /*提示信息*/) => {\n              // 确认框。\n            }\n          }\n        )}\n      </div>\n    );\n  }\n}\n
\n

(schema:Schema, props?:any, env?: any) => JSX.Element

\n

参数说明:

\n
    \n
  • schema 即页面配置,请前往 配置与组件 了解.
  • \n
  • props 一般都用不上,如果你想传递一些数据给渲染器内部使用,可以传递 data 数据进去。如:

    \n
    () =>\n  renderAmis(schema, {\n    data: {\n      username: 'amis'\n    }\n  });\n
    \n

    这样,内部所有组件都能拿到 username 这个变量的值。

    \n
  • \n
  • env 环境变量,可以理解为这个渲染器工具的配置项,需要调用者实现部分接口。

    \n
      \n
    • session: string 默认为 'global',决定 store 是否为全局共用的,如果想单占一个 store,请设置不同的值。
    • \n
    • fetcher: (config: fetcherConfig) => Promise<fetcherResult> 用来实现 ajax 发送。

      \n

      示例

      \n
      fetcher: ({\n    url,\n    method,\n    data,\n    responseType,\n    config,\n    headers\n}: any) => {\n    config = config || {};\n    config.withCredentials = true;\n    responseType && (config.responseType = responseType);\n\n    if (config.cancelExecutor) {\n        config.cancelToken = new (axios as any).CancelToken(config.cancelExecutor);\n    }\n\n    config.headers = headers || {};\n\n    if (method !== 'post' && method !== 'put' && method !== 'patch') {\n        if (data) {\n            config.params = data;\n        }\n\n        return (axios as any)[method](url, config);\n    } else if (data && data instanceof FormData) {\n        // config.headers = config.headers || {};\n        // config.headers['Content-Type'] = 'multipart/form-data';\n    } else if (data\n        && typeof data !== 'string'\n        && !(data instanceof Blob)\n        && !(data instanceof ArrayBuffer)\n    ) {\n        data = JSON.stringify(data);\n        // config.headers = config.headers || {};\n        config.headers['Content-Type'] = 'application/json';\n    }\n\n    return (axios as any)[method](url, data, config);\n}\n
      \n
    • \n
    • isCancel: (e:error) => boolean 判断 ajax 异常是否为一个 cancel 请求。

      \n

      示例

      \n
      isCancel: (value: any) => (axios as any).isCancel(value)\n
      \n
    • \n
    • notify: (type:string, msg: string) => void 用来实现消息提示。

      \n
    • \n
    • alert: (msg:string) => void 用来实现警告提示。
    • \n
    • confirm: (msg:string) => boolean | Promise<boolean> 用来实现确认框。
    • \n
    • jumpTo: (to:string, action?: Action, ctx?: object) => void 用来实现页面跳转,因为不清楚所在环境中是否使用了 spa 模式,所以用户自己实现吧。
    • \n
    • updateLocation: (location:any, replace?:boolean) => void 地址替换,跟 jumpTo 类似。
    • \n
    • isCurrentUrl: (link:string) => boolean 判断目标地址是否为当前页面。
    • \n
    • theme: 'default' | 'cxd' 目前支持两种主题。
    • \n
    • copy: (contents:string, options?: {shutup: boolean}) => void 用来实现,内容复制。
    • \n
    • getModalContainer: () => HTMLElement 用来决定弹框容器。
    • \n
    • loadRenderer: (chema:any, path:string) => Promise<Function> 可以通过它懒加载自定义组件,比如: https://github.com/baidu/amis/blob/master/__tests__/factory.test.tsx#L64-L91。
    • \n
    • affixOffsetTop: number 固顶间距,当你的有其他固顶元素时,需要设置一定的偏移量,否则会重叠。
    • \n
    • affixOffsetBottom: number 固底间距,当你的有其他固底元素时,需要设置一定的偏移量,否则会重叠。
    • \n
    • richTextToken: string 内置 rich-text 为 frolaEditor,想要使用,请自行购买,或者自己实现 rich-text 渲染器。
    • \n
    \n
  • \n
\n

SDK

SDK 适合对前端或 React 不了解的开发者,它不依赖 npm 及 webpack,直接引入代码就能使用,但需要注意这种方式不支持 自定义组件,只能使用 amis 内置的组件。

\n

JSSDK 的代码从以下地址获取:

\n\n

然后在页面中插入下面的代码就能渲染出来了:

\n
(function () {\n  var amis = amisRequire('amis/embed');\n  amis.embed(\n    '#container',\n    {\n      type: 'page',\n      title: 'AMIS Demo',\n      body: 'This is a simple amis page.'\n    },\n    {\n      // props 一般不用传。\n    },\n    {\n      // env\n      fetcher: () => {\n        // 可以不传,用来实现 ajax 请求\n      },\n\n      jumpTo: () => {\n        // 可以不传,用来实现页面跳转\n      },\n\n      updateLocation: () => {\n        // 可以不传,用来实现地址栏更新\n      },\n\n      isCurrentUrl: () => {\n        // 可以不传,用来判断是否目标地址当前地址。\n      },\n\n      copy: () => {\n        // 可以不传,用来实现复制到剪切板\n      },\n\n      notify: () => {\n        // 可以不传,用来实现通知\n      },\n\n      alert: () => {\n        // 可以不传,用来实现提示\n      },\n\n      confirm: () => {\n        // 可以不传,用来实现确认框。\n      }\n    }\n  );\n})();\n
\n

注意:以上的 SDK 地址是一个页面跳转,会跳转到一个 CDN 地址,而且每次跳转都是最新的版本,随着 amis 的升级这个地址会一直变动,如果你的页面已经完成功能回归,请直接使用某个固定地址,这样才不会因为 amis 升级而导致你的页面不可用。

\n

另外,sdk 代码也伴随 npm 一起发布了,不使用 CDN 版本,直接替换成 npm 包里面的 amis/sdk.jsamis/sdk.css 即可。

\n

完整示例:

\n
<!DOCTYPE html>\n<html lang=\"zh\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>AMIS Demo</title>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <meta\n      name=\"viewport\"\n      content=\"width=device-width, initial-scale=1, maximum-scale=1\"\n    />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\" />\n    <link rel=\"stylesheet\" href=\"amis/sdk.css\" />\n    <style>\n      html,\n      body,\n      .app-wrapper {\n        position: relative;\n        width: 100%;\n        height: 100%;\n        margin: 0;\n        padding: 0;\n      }\n    </style>\n  </head>\n  <body>\n    <div id=\"root\" class=\"app-wrapper\"></div>\n    <script src=\"amis/sdk.js\"></script>\n    <script type=\"text/javascript\">\n      (function () {\n        var amis = amisRequire('amis/embed');\n        amis.embed('#root', {\n          type: 'page',\n          title: 'AMIS Demo',\n          body: 'hello world'\n        });\n      })();\n    </script>\n  </body>\n</html>\n
\n", - "toc": { - "label": "目录", - "type": "toc", - "children": [ - { - "label": "npm", - "fragment": "npm", - "fullPath": "#npm", - "level": 2, - "children": [ - { - "label": "安装", - "fragment": "%E5%AE%89%E8%A3%85", - "fullPath": "#%E5%AE%89%E8%A3%85", - "level": 3 - }, - { - "label": "主题样式", - "fragment": "%E4%B8%BB%E9%A2%98%E6%A0%B7%E5%BC%8F", - "fullPath": "#%E4%B8%BB%E9%A2%98%E6%A0%B7%E5%BC%8F", - "level": 3 - }, - { - "label": "使用", - "fragment": "%E4%BD%BF%E7%94%A8", - "fullPath": "#%E4%BD%BF%E7%94%A8", - "level": 3 - } - ] - }, - { - "label": "SDK", - "fragment": "sdk", - "fullPath": "#sdk", - "level": 2 - } - ], - "level": 0 - } - }; - -}); diff --git a/gh-pages/docs/types/api.html b/gh-pages/docs/types/api.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/types/api.html +++ b/gh-pages/docs/types/api.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/docs/types/api_102dfdc.js b/gh-pages/docs/types/api_1399dbe.js similarity index 61% rename from gh-pages/docs/types/api_102dfdc.js rename to gh-pages/docs/types/api_1399dbe.js index 0f54f2d0..37ba4a73 100644 --- a/gh-pages/docs/types/api_102dfdc.js +++ b/gh-pages/docs/types/api_1399dbe.js @@ -8,7 +8,7 @@ amis.define('docs/types/api.md', function(require, exports, module, define) { "menuName": "API", "icon": null, "order": 20, - "html": "

API 类型用于配置请求接口的格式,涉及请求方式、请求地址、请求数据体等等相关配置

\n

简单配置

如果你只需要配置简单的 ajax 接口,可以使用简单字符串格式,如下:

\n
[<method>:]<url>\n
    \n
  • method:get、post、put、delete,默认为 get
  • \n
  • url:接口地址,即模板字符串
  • \n
\n

示例:

\n
{\n  \"api\": \"get:/api/initData\", // get 请求\n  \"api\": \"post:/api/initData\", // post 请求\n  \"api\": \"put:/api/initData\", // put 请求\n  \"api\": \"delete:/api/initData\" // delete 请求\n}\n
\n

接口返回格式(重要)

所有配置在 amis 组件中的接口,都要符合下面的返回格式

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    ...其他字段\n  }\n}\n
\n
    \n
  • status: 返回 0,表示当前接口正确返回,否则按错误请求处理;
  • \n
  • msg: 返回接口处理信息,主要用于表单提交或请求失败时的 toast 显示;
  • \n
  • data: 必须返回一个具有 key-value 结构的对象。
  • \n
\n

statusmsgdata 字段为接口返回的必要字段;

\n

正确的格式

{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    // 正确\n    \"text\": \"World!\"\n  }\n}\n
\n

错误的格式

直接返回字符串或者数组都是不推荐的

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": \"some string\" // 错误,使用 key 包装\n}\n
\n

不推荐的格式

部分组件为了可以兼容,支持下面这种直接返回数组的用法,但并不推荐这种方式。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": [\"a\", \"b\"] // 不推荐,使用 key 包装\n}\n
\n

复杂配置

API 还支持配置对象类型

\n

基本用法

{\n    \"api\": {\n        \"method\": \"get\",\n        \"url\": \"xxxx\",\n        \"data\": {\n            xxx\n        },\n        ... // 其他配置\n    }\n}\n
\n

配置请求方式

可以配置method指定接口的请求方式,支持:getpostputdelete

\n
\n

method值留空时:

\n
    \n
  • 在初始化接口中,默认为get请求
  • \n
  • form提交接口,默认为post请求
  • \n
\n
\n

配置请求地址

可以配置url指定接口请求地址,支持模板字符串

\n

配置请求数据

可以配置data,配置自定义接口请求数据体。

\n
\n

支持数据映射

\n
\n

method配置为get时,data中的值默认会添加到请求路径中

\n
\n

配置请求数据格式

可以配置dataType,来指定请求的数据体格式,默认为json

\n
\n

下面例子中 api 没有配置data属性,因为form会默认将所有表单项的值进行提交。

\n
\n

application/json

默认是application/json,不需要额外配置

\n
\n

application/x-www-form-urlencoded

配置"dataType": "form",可配置发送体格式为application/x-www-form-urlencoded

\n
\n

multipart/form-data

配置"dataType": "form-data",可配置发送体格式为multipart/form-data

\n
\n

当表单项中文件类型数据,则自动使用multipart/form-data数据体

\n
\n
\n

asBlob配置项会指定当前 File 控件不再自己上传了,而是直接把文件数据作为表单项的值,文件内容会在 Form 表单提交的接口里面一起带上。

\n
\n

配置自定义请求头

可以配置headers对象,添加自定义请求头

\n
\n

配置请求条件

可以配置表达式sendOn来实现:当符合某个条件的情况下,接口才触发请求

\n
\n

查看 选项 2source属性,他是 API 类型值,支持配置sendOn 表达式,实现根据条件请求接口。

\n

配置接口缓存

当你在某种情况下,需要非常频繁的请求同一个接口,例如列表中,每一行中都有一个 Service 进行数据拉取操作,

\n
\n

如上,如果你打开浏览器网络面板,会发现/api/mock2/page/initData接口将重复请求多次,次数为你当前列表的数据条数。

\n

这往往并不理想,你可以设置cache来设置缓存时间,单位是毫秒,在设置的缓存时间内,同样的请求将不会重复发起,而是会获取缓存好的请求响应数据。

\n
\n

这下我们再打开网络面板,发现只有一条请求了

\n

配置请求适配器

amis 的 API 配置,如果无法配置出你想要的请求结构,那么可以配置requestAdaptor发送适配器

\n

发送适配器是指在接口请求前,对请求进行一些自定义处理,例如修改发送数据体、添加请求头、等等,基本用法是,获取暴露的api参数,并且对该参数进行一些修改,并return出去:

\n

字符串形式

如果在 JSON 文件中配置的话,requestAdaptor只支持字符串形式,如下:

\n
\n

上例中的适配器实际上是如下代码的字符串形式:

\n
return {\n  ...api,\n  data: {\n    ...api.data, // 获取暴露的 api 中的 data 变量\n    foo: 'bar' // 新添加数据\n  }\n};\n
\n

函数形式

如果你的使用环境为 js 文件,则可以直接传入函数,如下:

\n
const schema = {\n  type: 'form',\n  api: {\n    method: 'post',\n    url: 'https://houtai.baidu.com/api/mock2/form/saveForm',\n    requestAdaptor: function (api) {\n      return {\n        ...api,\n        data: {\n          ...api.data, // 获取暴露的 api 中的 data 变量\n          foo: 'bar' // 新添加数据\n        }\n      };\n    }\n  },\n  controls: [\n    {\n      type: 'text',\n      name: 'name',\n      label: '姓名:'\n    },\n    {\n      name: 'text',\n      type: 'email',\n      label: '邮箱:'\n    }\n  ]\n};\n
\n

上面例子中,我们获取暴露的api对象中的data变量,并且为其添加了一个新的字段foo,并且一起返回出去就可以了,这样我们的请求数据体中就会加上我们这个新的字段。

\n

api变量中一般会包含下面几个属性:

\n
    \n
  • url:当前接口 Api 地址
  • \n
  • method:当前请求的方式
  • \n
  • data:请求的数据体
  • \n
  • headers:请求的头部信息
  • \n
\n

你也可以使用debugger自行进行调试。

\n

配置接收适配器

同样的,如果后端返回的响应结构不符合 amis 的接口格式要求,而后端不方便调整时,可以配置adaptor实现接收适配器

\n

接受欧适配器是指在接口请求后,对响应进行一些自定义处理,例如修改响应的数据结构、修改响应的数据等等。

\n

例如:接口正确返回的格式中,会返回"code": 200,而 amis 中,接口返回格式需要"status": 0,这时候就需要接收适配器进行调整结构。

\n

字符串形式

如果在 JSON 文件中配置的话,adaptor只支持字符串形式,如下:

\n
{\n  \"type\": \"form\",\n  \"api\": {\n    \"method\": \"post\",\n    \"url\": \"https://houtai.baidu.com/api/mock2/form/saveForm\",\n    \"adaptor\": \"return {\\n    ...payload,\\n    status: payload.code === 200 ? 0 : payload.code\\n}\"\n  },\n  \"controls\": [\n    {\n      \"type\": \"text\",\n      \"name\": \"name\",\n      \"label\": \"姓名:\"\n    },\n    {\n      \"name\": \"file\",\n      \"type\": \"file\",\n      \"label\": \"附件:\",\n      \"asBlob\": true\n    }\n  ]\n}\n
\n

上例中的适配器实际上是如下代码的字符串形式:

\n
return {\n  ...payload,\n  status: payload.code === 200 ? 0 : payload.code\n};\n
\n

函数形式

如果你的使用环境为 js 文件,则可以直接传入函数,如下:

\n
const schema = {\n  type: 'form',\n  api: {\n    method: 'post',\n    url: 'https://houtai.baidu.com/api/mock2/form/saveForm',\n    adaptor: function (payload, response) {\n      return {\n        ...payload,\n        status: payload.code === 200 ? 0 : payload.code\n      };\n    }\n  },\n  controls: [\n    {\n      type: 'text',\n      name: 'name',\n      label: '姓名:'\n    },\n    {\n      name: 'email',\n      type: 'email',\n      label: '邮箱:'\n    }\n  ]\n};\n
\n

replaceData

返回的数据是否替换掉当前的数据,默认为 false(即追加),设置为true就是完全替换当前数据。

\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
字段名说明类型备注
method请求方式字符串支持:get、post、put、delete
url请求地址模板字符串-
data请求数据对象或字符串支持数据映射
dataType数据体格式字符串默认为 json 可以配置成 form 或者 form-data。当 data 中包含文件时,自动会采用 form-data(multipart/form-data) 格式。当配置为 form 时为 application/x-www-form-urlencoded 格式。
qsOptions--对象或字符串当 dataType 为 form 或者 form-data 的时候有用。具体参数请参考这里,默认设置为: { arrayFormat: 'indices', encodeValuesOnly: true }
headers请求头对象-
sendOn请求条件表达式-
cache接口缓存时间整型数字-
requestAdaptor发送适配器字符串,支持字符串串格式,或者直接就是函数如:
adaptor接收适配器字符串如果接口返回不符合要求,可以通过配置一个适配器来处理成 amis 需要的。同样支持 Function 或者 字符串函数体格式
replaceData替换当前数据布尔返回的数据是否替换掉当前的数据,默认为 false,即:追加,设置成 true 就是完全替换。
\n", + "html": "

API 类型用于配置请求接口的格式,涉及请求方式、请求地址、请求数据体等等相关配置

\n

简单配置

如果你只需要配置简单的 ajax 接口,可以使用简单字符串格式,如下:

\n
[<method>:]<url>\n
    \n
  • method:get、post、put、delete,默认为 get
  • \n
  • url:接口地址,即模板字符串
  • \n
\n

示例:

\n
{\n  \"api\": \"get:/api/initData\", // get 请求\n  \"api\": \"post:/api/initData\", // post 请求\n  \"api\": \"put:/api/initData\", // put 请求\n  \"api\": \"delete:/api/initData\" // delete 请求\n}\n
\n

接口返回格式(重要)

所有配置在 amis 组件中的接口,都要符合下面的返回格式

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    ...其他字段\n  }\n}\n
\n
    \n
  • status: 返回 0,表示当前接口正确返回,否则按错误请求处理;
  • \n
  • msg: 返回接口处理信息,主要用于表单提交或请求失败时的 toast 显示;
  • \n
  • data: 必须返回一个具有 key-value 结构的对象。
  • \n
\n

statusmsgdata 字段为接口返回的必要字段;

\n

正确的格式

{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": {\n    // 正确\n    \"text\": \"World!\"\n  }\n}\n
\n

错误的格式

直接返回字符串或者数组都是不推荐的

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": \"some string\" // 错误,使用 key 包装\n}\n
\n

不推荐的格式

部分组件为了可以兼容,支持下面这种直接返回数组的用法,但并不推荐这种方式。

\n
{\n  \"status\": 0,\n  \"msg\": \"\",\n  \"data\": [\"a\", \"b\"] // 不推荐,使用 key 包装\n}\n
\n

复杂配置

API 还支持配置对象类型

\n

基本用法

{\n    \"api\": {\n        \"method\": \"get\",\n        \"url\": \"xxxx\",\n        \"data\": {\n            xxx\n        },\n        ... // 其他配置\n    }\n}\n
\n

配置请求方式

可以配置method指定接口的请求方式,支持:getpostputdelete

\n
\n

method值留空时:

\n
    \n
  • 在初始化接口中,默认为get请求
  • \n
  • form提交接口,默认为post请求
  • \n
\n
\n

配置请求地址

可以配置url指定接口请求地址,支持模板字符串

\n

配置请求数据

可以配置data,配置自定义接口请求数据体。

\n
\n

支持数据映射

\n
\n

method配置为get时,data中的值默认会添加到请求路径中

\n
\n

配置请求数据格式

可以配置dataType,来指定请求的数据体格式,默认为json

\n
\n

下面例子中 api 没有配置data属性,因为form会默认将所有表单项的值进行提交。

\n
\n

application/json

默认是application/json,不需要额外配置

\n
\n

application/x-www-form-urlencoded

配置"dataType": "form",可配置发送体格式为application/x-www-form-urlencoded

\n
\n

multipart/form-data

配置"dataType": "form-data",可配置发送体格式为multipart/form-data

\n
\n

当表单项中文件类型数据,则自动使用multipart/form-data数据体

\n
\n
\n

asBlob配置项会指定当前 File 控件不再自己上传了,而是直接把文件数据作为表单项的值,文件内容会在 Form 表单提交的接口里面一起带上。

\n
\n

配置自定义请求头

可以配置headers对象,添加自定义请求头

\n
\n

配置请求条件

可以配置表达式sendOn来实现:当符合某个条件的情况下,接口才触发请求

\n
\n

查看 选项 2source属性,他是 API 类型值,支持配置sendOn 表达式,实现根据条件请求接口。

\n

配置接口缓存

当你在某种情况下,需要非常频繁的请求同一个接口,例如列表中,每一行中都有一个 Service 进行数据拉取操作,

\n
\n

如上,如果你打开浏览器网络面板,会发现/api/mock2/page/initData接口将重复请求多次,次数为你当前列表的数据条数。

\n

这往往并不理想,你可以设置cache来设置缓存时间,单位是毫秒,在设置的缓存时间内,同样的请求将不会重复发起,而是会获取缓存好的请求响应数据。

\n
\n

这下我们再打开网络面板,发现只有一条请求了

\n

配置请求适配器

amis 的 API 配置,如果无法配置出你想要的请求结构,那么可以配置requestAdaptor发送适配器

\n

发送适配器 是指在接口请求前,对请求进行一些自定义处理,例如修改发送数据体、添加请求头、等等,基本用法是,获取暴露的api参数,并且对该参数进行一些修改,并return出去:

\n
暴露的参数

发送适配器暴露以下参数以供用户进行操作:

\n
    \n
  • api:当前请求的 api 对象,一般包含下面几个属性:
      \n
    • url:当前接口 Api 地址
    • \n
    • method:当前请求的方式
    • \n
    • data:请求的数据体
    • \n
    • headers:请求的头部信息
    • \n
    \n
  • \n
\n
字符串形式

如果在 JSON 文件中配置的话,requestAdaptor只支持字符串形式。

\n

字符串形式实际上可以认为是外层包裹了一层函数,你需要补充内部的函数实现,并将修改好的 api 对象 return 出去:

\n
function (api) {\n  // 你的适配器代码\n}\n
\n

用法示例:

\n
\n

上例中的适配器实际上是如下代码的字符串形式:

\n
// 进行一些操作\n\n// 一定要将调整后的 api 对象 return 出去\nreturn {\n  ...api,\n  data: {\n    ...api.data, // 获取暴露的 api 中的 data 变量\n    foo: 'bar' // 新添加数据\n  }\n};\n
\n
函数形式

如果你的使用环境为 js 文件,则可以直接传入函数,如下:

\n
const schema = {\n  type: 'form',\n  api: {\n    method: 'post',\n    url: 'https://houtai.baidu.com/api/mock2/form/saveForm',\n    requestAdaptor: function (api) {\n      return {\n        ...api,\n        data: {\n          ...api.data, // 获取暴露的 api 中的 data 变量\n          foo: 'bar' // 新添加数据\n        }\n      };\n    }\n  },\n  controls: [\n    {\n      type: 'text',\n      name: 'name',\n      label: '姓名:'\n    },\n    {\n      name: 'text',\n      type: 'email',\n      label: '邮箱:'\n    }\n  ]\n};\n
\n

上面例子中,我们获取暴露的api对象中的data变量,并且为其添加了一个新的字段foo,并且一起返回出去就可以了,这样我们的请求数据体中就会加上我们这个新的字段。

\n

你也可以使用debugger自行进行调试。

\n

配置接收适配器

同样的,如果后端返回的响应结构不符合 amis 的接口格式要求,而后端不方便调整时,可以配置adaptor实现接收适配器

\n

接收适配器 是指在接口请求后,对响应进行一些自定义处理,例如修改响应的数据结构、修改响应的数据等等。

\n

例如:接口正确返回的格式中,会返回"code": 200,而 amis 中,接口返回格式需要"status": 0,这时候就需要接收适配器进行调整结构。

\n
暴露的参数

接收适配器器暴露以下参数以供用户进行操作:

\n
    \n
  • payload:当前请求的响应 payload,即 response.data
  • \n
  • response:当前请求的原始响应
  • \n
\n
字符串形式

如果在 JSON 文件中配置的话,adaptor只支持字符串形式。

\n

字符串形式实际上可以认为是外层包裹了一层函数,你需要补充内部的函数实现,并将修改好的 payload 对象 return 出去:

\n
function (payload, responsee) {\n  // 你的适配器代码\n}\n
\n

用法示例:

\n
{\n  \"type\": \"form\",\n  \"api\": {\n    \"method\": \"post\",\n    \"url\": \"https://houtai.baidu.com/api/mock2/form/saveForm\",\n    \"adaptor\": \"return {\\n    ...payload,\\n    status: payload.code === 200 ? 0 : payload.code\\n}\"\n  },\n  \"controls\": [\n    {\n      \"type\": \"text\",\n      \"name\": \"name\",\n      \"label\": \"姓名:\"\n    },\n    {\n      \"name\": \"file\",\n      \"type\": \"file\",\n      \"label\": \"附件:\",\n      \"asBlob\": true\n    }\n  ]\n}\n
\n

上例中的适配器实际上是如下代码的字符串形式:

\n
// 进行一些操作\n\n// 一定要将调整后的 payload 对象 return 出去\nreturn {\n  ...payload,\n  status: payload.code === 200 ? 0 : payload.code\n};\n
\n
函数形式

如果你的使用环境为 js 文件,则可以直接传入函数,如下:

\n
const schema = {\n  type: 'form',\n  api: {\n    method: 'post',\n    url: 'https://houtai.baidu.com/api/mock2/form/saveForm',\n    adaptor: function (payload, response) {\n      return {\n        ...payload,\n        status: payload.code === 200 ? 0 : payload.code\n      };\n    }\n  },\n  controls: [\n    {\n      type: 'text',\n      name: 'name',\n      label: '姓名:'\n    },\n    {\n      name: 'email',\n      type: 'email',\n      label: '邮箱:'\n    }\n  ]\n};\n
\n

replaceData

返回的数据是否替换掉当前的数据,默认为 false(即追加),设置为true就是完全替换当前数据。

\n

属性表

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
字段名说明类型备注
method请求方式字符串支持:get、post、put、delete
url请求地址模板字符串-
data请求数据对象或字符串支持数据映射
dataType数据体格式字符串默认为 json 可以配置成 form 或者 form-data。当 data 中包含文件时,自动会采用 form-data(multipart/form-data) 格式。当配置为 form 时为 application/x-www-form-urlencoded 格式。
qsOptions--对象或字符串当 dataType 为 form 或者 form-data 的时候有用。具体参数请参考这里,默认设置为: { arrayFormat: 'indices', encodeValuesOnly: true }
headers请求头对象-
sendOn请求条件表达式-
cache接口缓存时间整型数字-
requestAdaptor发送适配器字符串,支持字符串串格式,或者直接就是函数如:
adaptor接收适配器字符串如果接口返回不符合要求,可以通过配置一个适配器来处理成 amis 需要的。同样支持 Function 或者 字符串函数体格式
replaceData替换当前数据布尔返回的数据是否替换掉当前的数据,默认为 false,即:追加,设置成 true 就是完全替换。
\n", "toc": { "label": "目录", "type": "toc", @@ -123,41 +123,13 @@ amis.define('docs/types/api.md', function(require, exports, module, define) { "label": "配置请求适配器", "fragment": "%E9%85%8D%E7%BD%AE%E8%AF%B7%E6%B1%82%E9%80%82%E9%85%8D%E5%99%A8", "fullPath": "#%E9%85%8D%E7%BD%AE%E8%AF%B7%E6%B1%82%E9%80%82%E9%85%8D%E5%99%A8", - "level": 3, - "children": [ - { - "label": "字符串形式", - "fragment": "%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%BD%A2%E5%BC%8F", - "fullPath": "#%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%BD%A2%E5%BC%8F", - "level": 4 - }, - { - "label": "函数形式", - "fragment": "%E5%87%BD%E6%95%B0%E5%BD%A2%E5%BC%8F", - "fullPath": "#%E5%87%BD%E6%95%B0%E5%BD%A2%E5%BC%8F", - "level": 4 - } - ] + "level": 3 }, { "label": "配置接收适配器", "fragment": "%E9%85%8D%E7%BD%AE%E6%8E%A5%E6%94%B6%E9%80%82%E9%85%8D%E5%99%A8", "fullPath": "#%E9%85%8D%E7%BD%AE%E6%8E%A5%E6%94%B6%E9%80%82%E9%85%8D%E5%99%A8", - "level": 3, - "children": [ - { - "label": "字符串形式", - "fragment": "%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%BD%A2%E5%BC%8F", - "fullPath": "#%E5%AD%97%E7%AC%A6%E4%B8%B2%E5%BD%A2%E5%BC%8F", - "level": 4 - }, - { - "label": "函数形式", - "fragment": "%E5%87%BD%E6%95%B0%E5%BD%A2%E5%BC%8F", - "fullPath": "#%E5%87%BD%E6%95%B0%E5%BD%A2%E5%BC%8F", - "level": 4 - } - ] + "level": 3 }, { "label": "replaceData", diff --git a/gh-pages/docs/types/schemanode.html b/gh-pages/docs/types/schemanode.html index 37a578e8..bea39188 100644 --- a/gh-pages/docs/types/schemanode.html +++ b/gh-pages/docs/types/schemanode.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/audio.html b/gh-pages/examples/audio.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/audio.html +++ b/gh-pages/examples/audio.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/carousel.html b/gh-pages/examples/carousel.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/carousel.html +++ b/gh-pages/examples/carousel.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/chart.html b/gh-pages/examples/chart.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/chart.html +++ b/gh-pages/examples/chart.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/aside.html b/gh-pages/examples/crud/aside.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/aside.html +++ b/gh-pages/examples/crud/aside.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/columns.html b/gh-pages/examples/crud/columns.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/columns.html +++ b/gh-pages/examples/crud/columns.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/fixed.html b/gh-pages/examples/crud/fixed.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/fixed.html +++ b/gh-pages/examples/crud/fixed.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/footable.html b/gh-pages/examples/crud/footable.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/footable.html +++ b/gh-pages/examples/crud/footable.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/grid.html b/gh-pages/examples/crud/grid.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/grid.html +++ b/gh-pages/examples/crud/grid.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/header-group.html b/gh-pages/examples/crud/header-group.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/header-group.html +++ b/gh-pages/examples/crud/header-group.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/header-hide.html b/gh-pages/examples/crud/header-hide.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/header-hide.html +++ b/gh-pages/examples/crud/header-hide.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/item-actions.html b/gh-pages/examples/crud/item-actions.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/item-actions.html +++ b/gh-pages/examples/crud/item-actions.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/jump-next.html b/gh-pages/examples/crud/jump-next.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/jump-next.html +++ b/gh-pages/examples/crud/jump-next.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/keyboards.html b/gh-pages/examples/crud/keyboards.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/keyboards.html +++ b/gh-pages/examples/crud/keyboards.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/list.html b/gh-pages/examples/crud/list.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/list.html +++ b/gh-pages/examples/crud/list.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/load-more.html b/gh-pages/examples/crud/load-more.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/load-more.html +++ b/gh-pages/examples/crud/load-more.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/load-once.html b/gh-pages/examples/crud/load-once.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/load-once.html +++ b/gh-pages/examples/crud/load-once.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/merge-cell.html b/gh-pages/examples/crud/merge-cell.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/merge-cell.html +++ b/gh-pages/examples/crud/merge-cell.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/nested.html b/gh-pages/examples/crud/nested.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/nested.html +++ b/gh-pages/examples/crud/nested.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/crud/table.html b/gh-pages/examples/crud/table.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/crud/table.html +++ b/gh-pages/examples/crud/table.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/dialog/drawer.html b/gh-pages/examples/dialog/drawer.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/dialog/drawer.html +++ b/gh-pages/examples/dialog/drawer.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/dialog/simple.html b/gh-pages/examples/dialog/simple.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/dialog/simple.html +++ b/gh-pages/examples/dialog/simple.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/combo.html b/gh-pages/examples/form/combo.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/combo.html +++ b/gh-pages/examples/form/combo.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/custom.html b/gh-pages/examples/form/custom.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/custom.html +++ b/gh-pages/examples/form/custom.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/definitions.html b/gh-pages/examples/form/definitions.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/definitions.html +++ b/gh-pages/examples/form/definitions.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/fields-tabs.html b/gh-pages/examples/form/fields-tabs.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/fields-tabs.html +++ b/gh-pages/examples/form/fields-tabs.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/fieldset.html b/gh-pages/examples/form/fieldset.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/fieldset.html +++ b/gh-pages/examples/form/fieldset.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/formula.html b/gh-pages/examples/form/formula.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/formula.html +++ b/gh-pages/examples/form/formula.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/full.html b/gh-pages/examples/form/full.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/full.html +++ b/gh-pages/examples/form/full.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/hint.html b/gh-pages/examples/form/hint.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/hint.html +++ b/gh-pages/examples/form/hint.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/ide.html b/gh-pages/examples/form/ide.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/ide.html +++ b/gh-pages/examples/form/ide.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/mode.html b/gh-pages/examples/form/mode.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/mode.html +++ b/gh-pages/examples/form/mode.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/picker.html b/gh-pages/examples/form/picker.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/picker.html +++ b/gh-pages/examples/form/picker.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/reaction.html b/gh-pages/examples/form/reaction.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/reaction.html +++ b/gh-pages/examples/form/reaction.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/remote.html b/gh-pages/examples/form/remote.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/remote.html +++ b/gh-pages/examples/form/remote.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/rich-text.html b/gh-pages/examples/form/rich-text.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/rich-text.html +++ b/gh-pages/examples/form/rich-text.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/static.html b/gh-pages/examples/form/static.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/static.html +++ b/gh-pages/examples/form/static.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/sub-form.html b/gh-pages/examples/form/sub-form.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/sub-form.html +++ b/gh-pages/examples/form/sub-form.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/table.html b/gh-pages/examples/form/table.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/table.html +++ b/gh-pages/examples/form/table.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/tabs.html b/gh-pages/examples/form/tabs.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/tabs.html +++ b/gh-pages/examples/form/tabs.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/transfer.html b/gh-pages/examples/form/transfer.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/transfer.html +++ b/gh-pages/examples/form/transfer.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/form/validation.html b/gh-pages/examples/form/validation.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/form/validation.html +++ b/gh-pages/examples/form/validation.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/horizontal.html b/gh-pages/examples/horizontal.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/horizontal.html +++ b/gh-pages/examples/horizontal.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/iframe.html b/gh-pages/examples/iframe.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/iframe.html +++ b/gh-pages/examples/iframe.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/crud.html b/gh-pages/examples/linkpage/crud.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/crud.html +++ b/gh-pages/examples/linkpage/crud.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/form.html b/gh-pages/examples/linkpage/form.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/form.html +++ b/gh-pages/examples/linkpage/form.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/form2.html b/gh-pages/examples/linkpage/form2.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/form2.html +++ b/gh-pages/examples/linkpage/form2.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/options-local.html b/gh-pages/examples/linkpage/options-local.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/options-local.html +++ b/gh-pages/examples/linkpage/options-local.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/options.html b/gh-pages/examples/linkpage/options.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/options.html +++ b/gh-pages/examples/linkpage/options.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/linkpage/page.html b/gh-pages/examples/linkpage/page.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/linkpage/page.html +++ b/gh-pages/examples/linkpage/page.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/pages/error.html b/gh-pages/examples/pages/error.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/pages/error.html +++ b/gh-pages/examples/pages/error.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/pages/form.html b/gh-pages/examples/pages/form.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/pages/form.html +++ b/gh-pages/examples/pages/form.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/pages/simple.html b/gh-pages/examples/pages/simple.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/pages/simple.html +++ b/gh-pages/examples/pages/simple.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/sdk.html b/gh-pages/examples/sdk.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/sdk.html +++ b/gh-pages/examples/sdk.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/services/data.html b/gh-pages/examples/services/data.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/services/data.html +++ b/gh-pages/examples/services/data.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/services/form.html b/gh-pages/examples/services/form.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/services/form.html +++ b/gh-pages/examples/services/form.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/services/schema.html b/gh-pages/examples/services/schema.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/services/schema.html +++ b/gh-pages/examples/services/schema.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/tabs/form.html b/gh-pages/examples/tabs/form.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/tabs/form.html +++ b/gh-pages/examples/tabs/form.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/tabs/normal.html b/gh-pages/examples/tabs/normal.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/tabs/normal.html +++ b/gh-pages/examples/tabs/normal.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/tabs/tab1.html b/gh-pages/examples/tabs/tab1.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/tabs/tab1.html +++ b/gh-pages/examples/tabs/tab1.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/tabs/tab2.html b/gh-pages/examples/tabs/tab2.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/tabs/tab2.html +++ b/gh-pages/examples/tabs/tab2.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/tabs/tab3.html b/gh-pages/examples/tabs/tab3.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/tabs/tab3.html +++ b/gh-pages/examples/tabs/tab3.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/task.html b/gh-pages/examples/task.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/task.html +++ b/gh-pages/examples/task.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/video.html b/gh-pages/examples/video.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/video.html +++ b/gh-pages/examples/video.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/examples/wizard.html b/gh-pages/examples/wizard.html index 37a578e8..bea39188 100644 --- a/gh-pages/examples/wizard.html +++ b/gh-pages/examples/wizard.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/index.html b/gh-pages/index.html index 37a578e8..bea39188 100644 --- a/gh-pages/index.html +++ b/gh-pages/index.html @@ -15,7 +15,7 @@ - +
- - + + diff --git a/gh-pages/pkg/app_29bb9b5.js b/gh-pages/pkg/app_bf16a94.js similarity index 92% rename from gh-pages/pkg/app_29bb9b5.js rename to gh-pages/pkg/app_bf16a94.js index f3800e73..7e000c3d 100644 --- a/gh-pages/pkg/app_29bb9b5.js +++ b/gh-pages/pkg/app_bf16a94.js @@ -798,6 +798,12 @@ amis.define("bc87d08",function(r,e){"use strict";Object.defineProperty(e,"__esMo amis.define("57d76d7",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ServiceStore=void 0;var s=e("node_modules/tslib/tslib"),r=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),n=e("7820b08"),a=e("9a80175"),o=e("bc87d08");t.ServiceStore=n.iRendererStore.named("ServiceStore").props({msg:"",error:!1,fetching:!1,saving:!1,busying:!1,checking:!1,initializing:!1,schema:r.types.optional(r.types.frozen(),null),schemaKey:""}).views(function(e){return{get loading(){return e.fetching||e.saving||e.busying||e.initializing}}}).actions(function(e){function t(t){void 0===t&&(t=!0),e.fetching=t}function n(t){void 0===t&&(t=!0),e.saving=t}function i(t){void 0===t&&(t=!0),e.busying=t}function c(t,s){void 0===s&&(s=!1);var r=a.extendObject(e.pristine,t,!s);e.data=e.pristine=r}function u(t,s){void 0===s&&(s=!1),e.msg=t&&String(t)||"",e.error=s}function g(){u("")}var l,d,m=r.flow(function(n,a,o){var i,g,d,m,f,h;return s.__generator(this,function(v){switch(v.label){case 0:return v.trys.push([0,6,,7]),l&&(l(),l=null,e.fetching=!1),e.fetching?[2]:(o&&o.silent||t(!0),[4,r.getRoot(e).fetcher(n,a,s.__assign(s.__assign({},o),{cancelExecutor:function(e){return l=e}}))]);case 1:return i=v.sent(),l=null,i.ok?[3,2]:(u(i.msg||o&&o.errorMessage,!0),r.getRoot(e).notify("error",i.msg,void 0!==i.msgTimeout?{closeButton:!0,timeout:i.msgTimeout}:void 0),[3,5]);case 2:return e.updatedAt=Date.now(),g=!!n.replaceData,d=s.__assign(s.__assign({},g?{}:e.data),i.data),c(d,g),e.hasRemoteData=!0,o&&o.onSuccess?(m=o.onSuccess(i),m&&m.then?[4,m]:[3,4]):[3,4];case 3:v.sent(),v.label=4;case 4:u(i.msg||o&&o.successMessage),o&&o.successMessage&&r.getRoot(e).notify("success",e.msg),v.label=5;case 5:return t(!1),[2,i];case 6:return f=v.sent(),h=r.getRoot(e),r.isAlive(h)&&"RendererStore"===h.storeType?h.isCancel(f)?[2]:(t(!1),f.stack&&console.error(f.stack),h.notify("error",f.message||f),[2]):[2];case 7:return[2]}})}),f=r.flow(function(n,o,i){var c,g,d,m;return s.__generator(this,function(f){switch(f.label){case 0:return f.trys.push([0,6,,7]),l&&(l(),l=null,e.fetching=!1),e.fetching?[2]:(i&&i.silent||t(!0),[4,r.getRoot(e).fetcher(n,o,s.__assign(s.__assign({},i),{cancelExecutor:function(e){return l=e}}))]);case 1:return c=f.sent(),l=null,(!a.isEmpty(c.data)||c.ok)&&(e.updatedAt=Date.now(),c.data&&e.updateData(c.data,void 0,!!n.replaceData),e.hasRemoteData=!0),c.ok?[3,2]:(u(c.msg||i&&i.errorMessage,!0),r.getRoot(e).notify("error",e.msg,void 0!==c.msgTimeout?{closeButton:!0,timeout:c.msgTimeout}:void 0),[3,5]);case 2:return i&&i.onSuccess?(g=i.onSuccess(c),g&&g.then?[4,g]:[3,4]):[3,4];case 3:f.sent(),f.label=4;case 4:u(c.msg||i&&i.successMessage),i&&i.successMessage&&r.getRoot(e).notify("success",e.msg),f.label=5;case 5:return t(!1),[2,c];case 6:return d=f.sent(),m=r.getRoot(e),r.isAlive(m)&&"RendererStore"===m.storeType?m.isCancel(d)?[2]:(t(!1),d.stack&&console.error(d.stack),m.notify("error",d.message||d),[2]):[2];case 7:return[2]}})}),h=r.flow(function(t,i,c){var g,l,d,m;return void 0===c&&(c={}),s.__generator(this,function(f){switch(f.label){case 0:return f.trys.push([0,6,,7]),c=s.__assign({method:"post"},c),e.saving?[2]:(n(!0),[4,r.getRoot(e).fetcher(t,i,c)]);case 1:if(g=f.sent(),(!a.isEmpty(g.data)||g.ok)&&(e.updatedAt=Date.now(),g.data&&e.updateData(g.data,void 0,!!t.replaceData)),g.ok)return[3,2];throw u(g.msg||c&&c.errorMessage||e.__("保存失败"),!0),new o.ServerError(e.msg,g);case 2:return c&&c.onSuccess?(l=c.onSuccess(g),l&&l.then?[4,l]:[3,4]):[3,4];case 3:f.sent(),f.label=4;case 4:u(g.msg||c&&c.successMessage),e.msg&&r.getRoot(e).notify("success",e.msg),f.label=5;case 5:return n(!1),[2,g.data];case 6:throw d=f.sent(),e.saving=!1,"ServerError"===d.type?(m=d.response,r.getRoot(e).notify("error",d.message,void 0!==m.msgTimeout?{closeButton:!0,timeout:m.msgTimeout}:void 0)):r.getRoot(e).notify("error",d.message),d;case 7:return[2]}})}),v=r.flow(function(t,n,o){var i,c,g;return void 0===o&&(o={}),s.__generator(this,function(l){switch(l.label){case 0:return l.trys.push([0,2,,3]),o=s.__assign(s.__assign({method:"post"},o),{cancelExecutor:function(e){return d=e}}),d&&(d(),d=null,e.initializing=!1),e.initializing?[2]:(e.initializing=!0,"string"==typeof t?t+=(~t.indexOf("?")?"&":"?")+"_replace=1":t=s.__assign(s.__assign({},t),{url:t.url+(~t.url.indexOf("?")?"&":"?")+"_replace=1"}),[4,r.getRoot(e).fetcher(t,n,o)]);case 1:return i=l.sent(),d=null,i.ok?(i.data&&(e.schema=i.data,e.schemaKey=""+Date.now(),a.isObject(i.data.data)&&e.updateData(i.data.data,void 0,!!t.replaceData)),u(i.msg||o&&o.successMessage),o&&o.successMessage&&r.getRoot(e).notify("success",e.msg)):(u(i.msg||o&&o.errorMessage||e.__("获取失败,请重试"),!0),r.getRoot(e).notify("error",e.msg,void 0!==i.msgTimeout?{closeButton:!0,timeout:i.msgTimeout}:void 0)),e.initializing=!1,[3,3];case 2:return c=l.sent(),g=r.getRoot(e),r.isAlive(g)&&"RendererStore"===g.storeType?(e.initializing=!1,g.isCancel(c)?[2]:(c.stack&&console.error(c.stack),g.notify("error",c.message||c),[3,3])):[2];case 3:return[2]}})}),_=r.flow(function(t,n,a){var o;return s.__generator(this,function(s){switch(s.label){case 0:if(e.checking)return[2];s.label=1;case 1:return s.trys.push([1,,3,4]),e.checking=!0,[4,r.getRoot(e).fetcher(t,n,a)];case 2:if(o=s.sent(),o.ok&&e.updateData(o.data,void 0,!!t.replaceData),!o.ok)throw new Error(o.msg);return[2,o.data];case 3:return e.checking=!1,[7];case 4:return[2]}})});return{markFetching:t,markSaving:n,markBusying:i,fetchInitData:m,fetchData:f,reInitData:c,updateMessage:u,clearMessage:g,saveRemote:h,fetchSchema:v,checkRemote:_}})}); ;/*!src/utils/validations.ts*/ amis.define("943464a",function(u,t){"use strict";function F(u,F,n){void 0===n&&(n=""),t.validations[u]=F,t.validateMessages[u]=n}function n(u,F,n,e,i){void 0===i&&(i=function(u){return u});var s=[];return n&&Object.keys(n).forEach(function(d){if(n[d]||0===n[d]){if("function"!=typeof t.validations[d])throw new Error("Validation `"+d+"` not exists!");var o=t.validations[d];o.apply(void 0,a.__spreadArrays([F,u],Array.isArray(n[d])?n[d]:[n[d]]))||s.push(r.filter(i(e&&e[d]||t.validateMessages[d]),a.__assign({},[""].concat(n[d]))))}}),s}function e(u,t,F,e){void 0===e&&(e=function(u){return u});var i={};return Object.keys(t).forEach(function(a){var r=n(u[a],u,t[a]===!0?{isRequired:!0}:t[a],F,e);r.length&&(i[a]=r)}),i}function i(u){return"string"==typeof u?u?c(u).reduce(function(u,t){var F=t.indexOf(":"),n=t,e=[];return~F&&(n=t.substring(0,F),e=/^matchRegexp/.test(n)?[t.substring(F+1).trim()]:t.substring(F+1).split(",").map(function(u){try{return JSON.parse(u)}catch(t){return u}})),u[n]=e.length?e:!0,u},{}):{}:u||{}}Object.defineProperty(t,"__esModule",{value:!0}),t.str2rules=t.validateObject=t.validate=t.validateMessages=t.addRule=t.validations=void 0;var a=u("node_modules/tslib/tslib"),r=u("6a2dbb7"),s=function(u){return null!==u&&void 0!==u},d=function(u){return""===u},o=function(u){return u instanceof RegExp?u:/^(?:matchRegexp\:)?\/(.+)\/([gimuy]*)$/.test(u)?new RegExp(RegExp.$1,RegExp.$2||""):"string"==typeof u?new RegExp(u):/^$/};t.validations={isRequired:function(u,t){return!(void 0===t||""===t||null===t||Array.isArray(t)&&!t.length)},isExisty:function(u,t){return s(t)},matchRegexp:function(u,t,F){return!s(t)||d(t)||o(F).test(t)},isUndefined:function(u,t){return void 0===t},isEmptyString:function(u,t){return d(t)},isEmail:function(u,F){return t.validations.matchRegexp(u,F,/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i)},isUrl:function(u,F){return t.validations.matchRegexp(u,F,/^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i)},isTrue:function(u,t){return t===!0},isFalse:function(u,t){return t===!1},isNumeric:function(u,F){return"number"==typeof F?!0:t.validations.matchRegexp(u,F,/^[-+]?(?:\d*[.])?\d+$/)},isAlpha:function(u,F){return t.validations.matchRegexp(u,F,/^[A-Z]+$/i)},isAlphanumeric:function(u,F){return t.validations.matchRegexp(u,F,/^[0-9A-Z]+$/i)},isInt:function(u,F){return t.validations.matchRegexp(u,F,/^(?:[-+]?(?:0|[1-9]\d*))$/)},isFloat:function(u,F){return t.validations.matchRegexp(u,F,/^(?:[-+]?(?:\d+))?(?:\.\d*)?(?:[eE][\+\-]?(?:\d+))?$/)},isWords:function(u,F){return t.validations.matchRegexp(u,F,/^[A-Z\s]+$/i)},isSpecialWords:function(u,F){return t.validations.matchRegexp(u,F,/^[A-Z\s\u00C0-\u017F]+$/i)},isLength:function(u,t,F){return!s(t)||d(t)||t.length===F},equals:function(u,t,F){return!s(t)||d(t)||t==F},equalsField:function(u,t,F){return t==u[F]},maxLength:function(u,t,F){return!s(t)||t.length<=F},minLength:function(u,t,F){return!s(t)||d(t)||t.length>=F},isUrlPath:function(u,t){return!s(t)||d(t)||/^[a-z0-9_\\-]+$/i.test(t)},maximum:function(u,t,F){return!s(t)||d(t)||(parseFloat(t)||0)<=(parseFloat(F)||0)},lt:function(u,t,F){return!s(t)||d(t)||(parseFloat(t)||0)<(parseFloat(F)||0)},minimum:function(u,t,F){return!s(t)||d(t)||(parseFloat(t)||0)>=(parseFloat(F)||0)},gt:function(u,t,F){return!s(t)||d(t)||(parseFloat(t)||0)>(parseFloat(F)||0)},isJson:function(u,t){if(s(t)&&!d(t))try{JSON.parse(t)}catch(F){return!1}return!0},isPhoneNumber:function(u,t){return!s(t)||d(t)||/^[1]([3-9])[0-9]{9}$/.test(t)},isTelNumber:function(u,t){return!s(t)||d(t)||/^(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}$/.test(t)},isZipcode:function(u,t){return!s(t)||d(t)||/^[1-9]{1}(\d+){5}$/.test(t)},isId:function(u,t){return!s(t)||d(t)||/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}$)/.test(t)},notEmptyString:function(u,t){return!s(t)||!(String(t)&&""===String(t).trim())},matchRegexp1:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp2:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp3:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp4:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp5:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp6:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp7:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp8:function(u,F,n){return t.validations.matchRegexp(u,F,n)},matchRegexp9:function(u,F,n){return t.validations.matchRegexp(u,F,n)}},t.addRule=F,t.validateMessages={isEmail:"Email 格式不正确",isRequired:"这是必填项",isUrl:"Url 格式不正确",isInt:"请输入整型数字",isAlpha:"请输入字母",isNumeric:"请输入数字",isAlphanumeric:"请输入字母或者数字",isFloat:"请输入浮点型数值",isWords:"请输入字母",isUrlPath:"只能输入字母、数字、`-` 和 `_`.",matchRegexp:"格式不正确, 请输入符合规则为 `${1|raw}` 的内容。",minLength:"请输入更多的内容,至少输入 $1 个字符。",maxLength:"请控制内容长度, 不要输入 $1 个字符以上",maximum:"当前输入值超出最大值 $1,请检查",lt:"请输入小于 $1 的值",minimum:"当前输入值低于最小值 $1,请检查",gt:"请输入大于 $1 的值",isJson:"请检查 Json 格式。",isLength:"请输入长度为 $1 的内容",notEmptyString:"请不要全输入空白字符",equalsField:"输入的数据与 $1 值不一致",equals:"输入的数据与 $1 不一致",isPhoneNumber:"请输入合法的手机号码",isTelNumber:"请输入合法的电话号码",isZipcode:"请输入合法的邮编地址",isId:"请输入合法的身份证号"},t.validate=n,t.validateObject=e;var c=function(u){var t=0,F={};return u.replace(/matchRegexp\d*\s*\:\s*\/.*?\/[igm]*/g,function(u){return F["__"+t]=u,"__"+t++}).split(/,(?![^{\[]*[}\]])/g).map(function(u){return/^__\d+$/.test(u)?F[u]:u.trim()})};t.str2rules=i}); +;/*!src/components/virtual-list/constants.ts*/ +amis.define("7be5389",function(o,r){"use strict";var i,e,t,E,R;Object.defineProperty(r,"__esModule",{value:!0}),r.oppositeMarginProp=r.marginProp=r.positionProp=r.sizeProp=r.scrollProp=r.SCROLL_CHANGE_REASON=r.DIRECTION=r.ALIGNMENT=void 0;var T;!function(o){o.AUTO="auto",o.START="start",o.CENTER="center",o.END="end"}(T=r.ALIGNMENT||(r.ALIGNMENT={}));var O;!function(o){o.HORIZONTAL="horizontal",o.VERTICAL="vertical"}(O=r.DIRECTION||(r.DIRECTION={}));var n;!function(o){o.OBSERVED="observed",o.REQUESTED="requested"}(n=r.SCROLL_CHANGE_REASON||(r.SCROLL_CHANGE_REASON={})),r.scrollProp=(i={},i[O.VERTICAL]="scrollTop",i[O.HORIZONTAL]="scrollLeft",i),r.sizeProp=(e={},e[O.VERTICAL]="height",e[O.HORIZONTAL]="width",e),r.positionProp=(t={},t[O.VERTICAL]="top",t[O.HORIZONTAL]="left",t),r.marginProp=(E={},E[O.VERTICAL]="marginTop",E[O.HORIZONTAL]="marginLeft",E),r.oppositeMarginProp=(R={},R[O.VERTICAL]="marginBottom",R[O.HORIZONTAL]="marginRight",R)}); +;/*!src/components/virtual-list/SizeAndPositionManager.ts*/ +amis.define("24dc9aa",function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t("7be5389"),s=function(){function t(t){var e=t.itemCount,i=t.itemSizeGetter,s=t.estimatedItemSize;this.itemSizeGetter=i,this.itemCount=e,this.estimatedItemSize=s,this.itemSizeAndPositionData={},this.lastMeasuredIndex=-1}return t.prototype.updateConfig=function(t){var e=t.itemCount,i=t.itemSizeGetter,s=t.estimatedItemSize;null!=e&&(this.itemCount=e),null!=s&&(this.estimatedItemSize=s),null!=i&&(this.itemSizeGetter=i)},t.prototype.getLastMeasuredIndex=function(){return this.lastMeasuredIndex},t.prototype.getSizeAndPositionForIndex=function(t){if(0>t||t>=this.itemCount)throw Error("Requested index "+t+" is outside of range 0.."+this.itemCount);if(t>this.lastMeasuredIndex){for(var e=this.getSizeAndPositionOfLastMeasuredItem(),i=e.offset+e.size,s=this.lastMeasuredIndex+1;t>=s;s++){var n=this.itemSizeGetter(s);if(null==n||isNaN(n))throw Error("Invalid size returned for index "+s+" of value "+n);this.itemSizeAndPositionData[s]={offset:i,size:n},i+=n}this.lastMeasuredIndex=t}return this.itemSizeAndPositionData[t]},t.prototype.getSizeAndPositionOfLastMeasuredItem=function(){return this.lastMeasuredIndex>=0?this.itemSizeAndPositionData[this.lastMeasuredIndex]:{offset:0,size:0}},t.prototype.getTotalSize=function(){var t=this.getSizeAndPositionOfLastMeasuredItem();return t.offset+t.size+(this.itemCount-this.lastMeasuredIndex-1)*this.estimatedItemSize},t.prototype.getUpdatedOffsetForIndex=function(t){var e=t.align,s=void 0===e?i.ALIGNMENT.START:e,n=t.containerSize,o=t.currentOffset,r=t.targetIndex;if(0>=n)return 0;var a,f=this.getSizeAndPositionForIndex(r),d=f.offset,h=d-n+f.size;switch(s){case i.ALIGNMENT.END:a=h;break;case i.ALIGNMENT.CENTER:a=d-(n-f.size)/2;break;case i.ALIGNMENT.START:a=d;break;default:a=Math.max(h,Math.min(d,o))}var u=this.getTotalSize();return Math.max(0,Math.min(u-n,a))},t.prototype.getVisibleRange=function(t){var e=t.containerSize,i=t.offset,s=t.overscanCount,n=this.getTotalSize();if(0===n)return{};var o=i+e,r=this.findNearestItem(i);if("undefined"==typeof r)throw Error("Invalid offset "+i+" specified");var a=this.getSizeAndPositionForIndex(r);i=a.offset+a.size;for(var f=r;o>i&&f=t?this.binarySearch({high:i,low:0,offset:t}):this.exponentialSearch({index:i,offset:t})},t.prototype.binarySearch=function(t){for(var e=t.low,i=t.high,s=t.offset,n=0,o=0;i>=e;){if(n=e+Math.floor((i-e)/2),o=this.getSizeAndPositionForIndex(n).offset,o===s)return n;s>o?e=n+1:o>s&&(i=n-1)}return e>0?e-1:0},t.prototype.exponentialSearch=function(t){for(var e=t.index,i=t.offset,s=1;ei||t.state.offset===i||e.target!==t.rootNode||(t.setState({offset:i,scrollChangeReason:r.SCROLL_CHANGE_REASON.OBSERVED}),"function"==typeof o&&o(i,e))},t}return o.__extends(t,e),t.prototype.componentDidMount=function(){var e=this.props,t=e.scrollOffset,o=e.scrollToIndex;this.rootNode.addEventListener("scroll",this.handleScroll,{passive:!0}),this.updateRootWidth(),null!=t?this.scrollTo(t):null!=o&&this.scrollTo(this.getOffsetForIndex(o))},t.prototype.updateRootWidth=function(e){void 0===e&&(e=!1);var t=window.innerWidth-document.documentElement.clientWidth||15;e&&(t=0);for(var o=this.rootNode.children[0].children,i=this.rootNode.parentElement.getBoundingClientRect().width,n=0,s=0;sn&&(n=r)}this.rootNode.style.width=i>=n?i+"px":n+t+"px"},t.prototype.componentWillReceiveProps=function(e){var t=this.props,o=t.estimatedItemSize,i=t.itemCount,n=t.itemSize,s=t.scrollOffset,l=t.scrollToAlignment,d=t.scrollToIndex,a=e.scrollToIndex!==d||e.scrollToAlignment!==l,c=e.itemCount!==i||e.itemSize!==n||e.estimatedItemSize!==o;e.itemSize!==n&&this.sizeAndPositionManager.updateConfig({itemSizeGetter:this.itemSizeGetter(e.itemSize)}),(e.itemCount!==i||e.estimatedItemSize!==o)&&this.sizeAndPositionManager.updateConfig({itemCount:e.itemCount,estimatedItemSize:this.getEstimatedItemSize(e)}),c&&this.recomputeSizes(),e.scrollOffset!==s?this.setState({offset:e.scrollOffset||0,scrollChangeReason:r.SCROLL_CHANGE_REASON.REQUESTED}):"number"==typeof e.scrollToIndex&&(a||c)&&this.setState({offset:this.getOffsetForIndex(e.scrollToIndex,e.scrollToAlignment,e.itemCount),scrollChangeReason:r.SCROLL_CHANGE_REASON.REQUESTED})},t.prototype.componentDidUpdate=function(e,t){this.updateRootWidth(!0);var o=this.state,i=o.offset,n=o.scrollChangeReason;t.offset!==i&&n===r.SCROLL_CHANGE_REASON.REQUESTED&&this.scrollTo(i)},t.prototype.componentWillUnmount=function(){this.rootNode.removeEventListener("scroll",this.handleScroll)},t.prototype.scrollTo=function(e){var t=this.props.scrollDirection,o=void 0===t?r.DIRECTION.VERTICAL:t;this.rootNode[r.scrollProp[o]]=e},t.prototype.getOffsetForIndex=function(e,t,o){void 0===t&&(t=this.props.scrollToAlignment),void 0===o&&(o=this.props.itemCount);var i=this.props.scrollDirection,n=void 0===i?r.DIRECTION.VERTICAL:i;return(0>e||e>=o)&&(e=0),this.sizeAndPositionManager.getUpdatedOffsetForIndex({align:t,containerSize:this.props[r.sizeProp[n]],currentOffset:this.state&&this.state.offset||0,targetIndex:e})},t.prototype.recomputeSizes=function(e){void 0===e&&(e=0),this.styleCache={},this.sizeAndPositionManager.resetItem(e)},t.prototype.render=function(){var e,t=this,n=this.props,s=(n.estimatedItemSize,n.height),l=n.overscanCount,c=void 0===l?3:l,p=n.renderItem,f=(n.itemCount,n.itemSize,n.onItemsRendered),u=(n.onScroll,n.scrollDirection),m=void 0===u?r.DIRECTION.VERTICAL:u,h=(n.scrollOffset,n.scrollToIndex,n.scrollToAlignment,n.stickyIndices),g=n.style,I=n.width,S=o.__rest(n,["estimatedItemSize","height","overscanCount","renderItem","itemCount","itemSize","onItemsRendered","onScroll","scrollDirection","scrollOffset","scrollToIndex","scrollToAlignment","stickyIndices","style","width"]),C=this.state.offset,E=this.sizeAndPositionManager.getVisibleRange({containerSize:this.props[r.sizeProp[m]]||0,offset:C,overscanCount:c}),R=E.start,T=E.stop,y=[],O=o.__assign(o.__assign(o.__assign({},d),g),{height:s,width:I}),z=o.__assign(o.__assign({},a),(e={},e[r.sizeProp[m]]=this.sizeAndPositionManager.getTotalSize(),e));if(null!=h&&0!==h.length&&(h.forEach(function(e){return y.push(p({index:e,style:t.getStyle(e,!0)}))}),m===r.DIRECTION.HORIZONTAL&&(z.display="flex")),"undefined"!=typeof R&&"undefined"!=typeof T){for(var _=R;T>=_;_++)null!=h&&h.includes(_)||y.push(p({index:_,style:this.getStyle(_,!1)}));"function"==typeof f&&f({startIndex:R,stopIndex:T})}return i.createElement("div",o.__assign({ref:this.getRef},S,{style:O}),i.createElement("div",{style:z},y))},t.prototype.getNodeOffset=function(){var e=this.props.scrollDirection,t=void 0===e?r.DIRECTION.VERTICAL:e;return this.rootNode[r.scrollProp[t]]},t.prototype.getEstimatedItemSize=function(e){return void 0===e&&(e=this.props),e.estimatedItemSize||"number"==typeof e.itemSize&&e.itemSize||50},t.prototype.getSize=function(e,t){return"function"==typeof t?t(e):Array.isArray(t)?t[e]:t},t.prototype.getStyle=function(e,t){var i,n,s=this.styleCache[e];if(s)return s;var l=this.props.scrollDirection,d=void 0===l?r.DIRECTION.VERTICAL:l,a=this.sizeAndPositionManager.getSizeAndPositionForIndex(e),f=a.size,u=a.offset;return this.styleCache[e]=t?o.__assign(o.__assign({},p),(i={},i[r.sizeProp[d]]=f,i[r.marginProp[d]]=u,i[r.oppositeMarginProp[d]]=-(u+f),i.zIndex=1,i)):o.__assign(o.__assign({},c),(n={},n[r.sizeProp[d]]=f,n[r.positionProp[d]]=u,n))},t.defaultProps={overscanCount:3,scrollDirection:r.DIRECTION.VERTICAL,width:"100%"},t.propTypes={estimatedItemSize:n.number,height:n.oneOfType([n.number,n.string]).isRequired,itemCount:n.number.isRequired,itemSize:n.oneOfType([n.number,n.array,n.func]).isRequired,onScroll:n.func,onItemsRendered:n.func,overscanCount:n.number,renderItem:n.func.isRequired,scrollOffset:n.number,scrollToIndex:n.number,scrollToAlignment:n.oneOf([r.ALIGNMENT.AUTO,r.ALIGNMENT.START,r.ALIGNMENT.CENTER,r.ALIGNMENT.END]),scrollDirection:n.oneOf([r.DIRECTION.HORIZONTAL,r.DIRECTION.VERTICAL]),stickyIndices:n.arrayOf(n.number),style:n.object,width:n.oneOfType([n.number,n.string])},t}(i.PureComponent);t.default=f}); ;/*!src/components/PopOver.tsx*/ amis.define("2b3dcdf",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PopOver=void 0;var s=e("node_modules/tslib/tslib"),o=s.__importDefault(e("node_modules/react/index")),a=e("node_modules/react-dom/index"),n=e("256b65d"),i=e("9a80175"),f=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={xOffset:0,yOffset:0},t}return s.__extends(t,e),t.prototype.componentDidMount=function(){this.mayUpdateOffset();var e=a.findDOMNode(this);this.parent=e.parentNode,this.parent.classList.add("has-popover")},t.prototype.componentDidUpdate=function(){this.mayUpdateOffset()},t.prototype.componentWillUnmount=function(){this.parent&&this.parent.classList.remove("has-popover")},t.prototype.mayUpdateOffset=function(){var e,t=this.props.offset;if(t&&"function"==typeof t){var s=this.props,o=s.placement,n=s.positionTop,i=s.positionLeft;e=t(a.findDOMNode(this).getBoundingClientRect(),{x:i,y:n,placement:o})}else e=t;this.setState({xOffset:e&&e.x?e.x:0,yOffset:e&&e.y?e.y:0})},t.prototype.render=function(){var e=this.props,t=(e.placement,e.activePlacement),a=e.positionTop,n=e.positionLeft,f=(e.arrowOffsetLeft,e.arrowOffsetTop,e.style),r=e.children,p=(e.offset,e.overlay),l=e.onHide,c=e.classPrefix,d=e.classnames,m=e.className,u=s.__rest(e,["placement","activePlacement","positionTop","positionLeft","arrowOffsetLeft","arrowOffsetTop","style","children","offset","overlay","onHide","classPrefix","classnames","className"]),y=this.state,v=y.xOffset,O=y.yOffset,h=s.__assign(s.__assign({display:"block"},f),{top:a+O,left:n+v});return o.default.createElement("div",s.__assign({className:d(c+"PopOver",m,c+"PopOver--"+i.camel(t)),style:h},u),p?o.default.createElement("div",{className:c+"PopOver-overlay",onClick:l}):null,r)},t.defaultProps={className:"",offset:{x:0,y:0},overlay:!1,placement:"auto"},t}(o.default.PureComponent);t.PopOver=f,t.default=n.themeable(f)}); ;/*!src/utils/api.ts*/ @@ -815,11 +821,11 @@ amis.define("4ee46ff",function(e,t){"use strict";Object.defineProperty(t,"__esMo ;/*!src/components/Spinner.tsx*/ amis.define("acad559",function(e,n){"use strict";var t;Object.defineProperty(n,"__esModule",{value:!0}),n.Spinner=void 0;var r=e("node_modules/tslib/tslib"),a=r.__importDefault(e("node_modules/react/index")),i=e("256b65d"),l=r.__importStar(e("node_modules/react-transition-group/Transition")),o=e("b7bbd16"),u=(t={},t[l.ENTERING]="in",t[l.ENTERED]="in",t),s=function(e){function n(){var n=null!==e&&e.apply(this,arguments)||this;return n.div=a.default.createRef(),n.overlay=a.default.createRef(),n}return r.__extends(n,e),n.prototype.render=function(){var e=this,n=this.props,t=n.show,r=n.classnames,i=n.spinnerClassName,s=n.mode,d=n.size,c=n.overlay,f=n.icon;return a.default.createElement(l.default,{mountOnEnter:!0,unmountOnExit:!0,"in":t,timeout:350},function(n){var t;return n===l.ENTERING&&e.overlay.current&&e.overlay.current.offsetWidth,a.default.createElement(a.default.Fragment,null,c?a.default.createElement("div",{ref:e.overlay,className:r("Spinner-overlay",u[n])}):null,a.default.createElement("div",{ref:e.div,className:r("Spinner",i,u[n],(t={},t["Spinner--"+s]=s,t["Spinner--overlay"]=c,t["Spinner--"+d]=d,t["Spinner--icon"]=f,t))},f?a.default.createElement(o.Icon,{icon:f,className:"icon"}):null))})},n.defaultProps={overlay:!1,spinnerClassName:"",mode:"",size:"",show:!0},n}(a.default.Component);n.Spinner=s,n.default=i.themeable(s)}); ;/*!src/components/Select.tsx*/ -amis.define("d57879c",function(e,t){"use strict";function n(e,t){if(t.multi||t.multiple){if("string"==typeof e&&(e=e.split(t.delimiter||",")),!Array.isArray(e)){if(null===e||void 0===e)return[];e=[e]}return e.map(function(e){return a(e,t.options,t.valueField)}).filter(function(e){return e})}Array.isArray(e)&&(e=e[0]);var n=a(e,t.options,t.valueField);return n?[n]:[]}function a(e,t,n){var a;void 0===n&&(n="value");var l=typeof e;return"string"!==l&&"number"!==l&&"boolean"!==l&&"object"!==l?e:t?("object"===l&&e&&e.hasOwnProperty(n||"value")&&(e=null!==(a=e[n||"value"])&&void 0!==a?a:""),m.findTree(t,i(e,n||"value"))):null}function l(e,t,n){return void 0===n&&(n="value"),m.isObject(e)?e===t[n||"value"]:String(t[n||"value"])===String(e)}function i(e,t){return void 0===t&&(t="value"),function(n){return l(e,n,t)}}function o(e,t){return void 0===t&&(t={values:[],options:[]}),"string"==typeof e?e.split(",").map(function(e){var n=t.values.indexOf(e);if(~n)return t.options[n];var a={label:e,value:e};return t.values.push(a.value),t.options.push(a),a}):Array.isArray(e)&&"string"==typeof e[0]?e.map(function(e){var n=t.values.indexOf(e);if(~n)return t.options[n];var a={label:e,value:e};return t.values.push(a.value),t.options.push(a),a}):Array.isArray(e)?e.map(function(e){var n=e&&e.value,a=void 0!==n?t.values.indexOf(n):-1;if(~a)return t.options[a];var l=s.__assign(s.__assign({},e),{value:n});return"undefined"!=typeof l.children?l.children=o(l.children,t):void 0!==n&&(t.values.push(n),t.options.push(l)),l}):v.default(e)?Object.keys(e).map(function(n){var a=t.values.indexOf(n);if(~a)return t.options[a];var l={label:e[n],value:n};return t.values.push(l.value),t.options.push(l),l}):[]}Object.defineProperty(t,"__esModule",{value:!0}),t.Select=t.normalizeOptions=t.optionValueCompare=t.matchOptionValue=t.expandValue=t.value2array=void 0;var s=e("node_modules/tslib/tslib"),r=e("node_modules/uncontrollable/cjs/index"),u=s.__importDefault(e("node_modules/react/index")),c=s.__importDefault(e("997df41")),d=s.__importDefault(e("2b3dcdf")),p=s.__importDefault(e("node_modules/downshift/dist/downshift.cjs")),h=e("b7bbd16"),f=s.__importDefault(e("node_modules/match-sorter/dist/match-sorter.cjs")),m=e("9a80175"),v=s.__importDefault(e("node_modules/lodash/isPlainObject")),g=s.__importDefault(e("node_modules/lodash/union")),b=e("b86428a"),y=e("node_modules/react-dom/index"),C=e("256b65d"),_=s.__importDefault(e("0a43d97")),k=s.__importDefault(e("4ee46ff")),O=e("5ab4e9d"),S=s.__importDefault(e("acad559"));t.value2array=n,t.expandValue=a,t.matchOptionValue=l,t.optionValueCompare=i,t.normalizeOptions=o;var E=p.default.stateChangeTypes,x=function(e){function t(t){var a=e.call(this,t)||this;return a.menu=u.default.createRef(),a.open=a.open.bind(a),a.close=a.close.bind(a),a.toggle=a.toggle.bind(a),a.onBlur=a.onBlur.bind(a),a.onFocus=a.onFocus.bind(a),a.focus=a.focus.bind(a),a.inputRef=a.inputRef.bind(a),a.handleChange=a.handleChange.bind(a),a.handleInputChange=a.handleInputChange.bind(a),a.clearValue=a.clearValue.bind(a),a.handleStateChange=a.handleStateChange.bind(a),a.handleKeyPress=a.handleKeyPress.bind(a),a.getTarget=a.getTarget.bind(a),a.toggleCheckAll=a.toggleCheckAll.bind(a),a.handleAddClick=a.handleAddClick.bind(a),a.handleEditClick=a.handleEditClick.bind(a),a.handleDeleteClick=a.handleDeleteClick.bind(a),a.state={isOpen:t.defaultOpen||!1,isFocused:!1,inputValue:"",highlightedIndex:-1,selection:n(t.value,t)},a}return s.__extends(t,e),t.prototype.componentDidMount=function(){var e=this.props,t=e.loadOptions,n=e.options,a=e.multiple,l=e.defaultCheckAll,i=e.onChange,o=e.simpleValue,s=this.state.selection;a&&l&&n.length&&(s=g.default(n,s),this.setState({selection:s}),i(o?s.map(function(e){return e.value}):s)),t&&t("")},t.prototype.componentDidUpdate=function(e){var t=this.props,a=m.noop;if(t.value!==e.value||JSON.stringify(t.options)!==JSON.stringify(e.options)){var l;if(e.options&&e.options.length||!t.options.length)l=n(t.value,t);else{var i=this.state.selection,o=t.multiple,s=t.defaultCheckAll,r=t.options,u=t.onChange,c=t.simpleValue;o&&s&&r.length?(l=g.default(r,i),a=function(){return u(c?l.map(function(e){return e.value}):l)}):l=n(t.value,t)}this.setState({selection:l},a)}},t.prototype.open=function(){var e=this;this.props.disabled||this.setState({isOpen:!0,highlightedIndex:-1},function(){return setTimeout(e.focus,500)})},t.prototype.close=function(){this.setState({isOpen:!1})},t.prototype.toggle=function(e){var t=this;e&&this.menu.current&&this.menu.current.contains(e.target)||this.props.disabled||this.setState({isOpen:!this.state.isOpen,highlightedIndex:-1},this.state.isOpen?void 0:function(){return setTimeout(t.focus,500)})},t.prototype.onFocus=function(e){this.props.disabled||this.state.isOpen||this.setState({isFocused:!0},this.focus),this.props.onFocus&&this.props.onFocus(e)},t.prototype.onBlur=function(e){this.setState({isFocused:!1}),this.props.onBlur&&this.props.onBlur(e)},t.prototype.focus=function(){this.input?this.input.focus():this.getTarget()&&this.getTarget().focus()},t.prototype.blur=function(){this.input?this.input.blur():this.getTarget()&&this.getTarget().blur()},t.prototype.getTarget=function(){return this.target||(this.target=y.findDOMNode(this)),this.target},t.prototype.inputRef=function(e){this.input=e},t.prototype.toggleCheckAll=function(){var e=this.props,t=e.options,n=e.onChange,a=e.simpleValue,l=this.state.selection,i=t.map(function(e){return e.value}),o=l.map(function(e){return e.value}),s=i.every(function(e){return o.indexOf(e)>-1});l=s?[]:t,n(a?l.map(function(e){return e.value}):l)},t.prototype.removeItem=function(e,t){var n=this.props,a=n.onChange,l=n.simpleValue,i=n.disabled;if(!i){var o=this.state.selection;t&&t.stopPropagation(),o=Array.isArray(o)?o.concat():[o],o.splice(e,1),a(l?o.map(function(e){return e.value}):o)}},t.prototype.handleInputChange=function(e){var t=this,n=this.props.loadOptions;this.setState({inputValue:e.currentTarget.value},function(){return n&&n(t.state.inputValue)})},t.prototype.handleChange=function(e){var t=this.props,n=t.onChange,a=t.multiple,l=t.simpleValue,i=t.valueField,o=this.state.selection;if(a){var s=o.map(function(e){return e[i]});o=o.concat();var r=s.indexOf(e[i]);~r?o.splice(r,1):o.push(e),n(l?o.map(function(e){return e[i]}):o)}else n(l?e[i]:e)},t.prototype.handleStateChange=function(e){var t=this.props,n=t.multiple,a=t.checkAll,l=t.loadOptions,i=this.state.inputValue,o={},r=!1;switch(e.type){case E.keyDownEnter:case E.clickItem:o=s.__assign(s.__assign({},o),{isOpen:n?!0:!1,isFocused:n&&a?!0:!1,inputValue:n?i:""}),r=!n;break;case E.changeInput:o.highlightedIndex=0;case E.keyDownArrowDown:case E.keyDownArrowUp:case E.itemMouseEnter:o=s.__assign(s.__assign({},o),e)}Object.keys(o).length&&this.setState(o,r&&l?function(){return l("")}:void 0)},t.prototype.handleKeyPress=function(e){" "===e.key&&(this.toggle(),e.preventDefault())},t.prototype.clearValue=function(e){var t=this.props.onChange;e.preventDefault(),e.stopPropagation(),t("")},t.prototype.handleAddClick=function(){var e=this.props.onAdd;e&&e()},t.prototype.handleEditClick=function(e,t){var n=this.props.onEdit;e.preventDefault(),e.stopPropagation(),n&&n(t)},t.prototype.handleDeleteClick=function(e,t){var n=this.props.onDelete;e.preventDefault(),e.stopPropagation(),n&&n(t)},t.prototype.renderValue=function(e){var t=this,n=(e.inputValue,e.isOpen,this.props),a=n.multiple,l=n.placeholder,i=n.classPrefix,o=n.labelField,s=n.disabled,r=n.translate,c=this.state.selection;return c.length?c.map(function(e,n){return a?u.default.createElement("div",{className:i+"Select-value",key:n},u.default.createElement("span",{className:i+"Select-valueIcon "+(s||e.disabled?"is-disabled":""),onClick:t.removeItem.bind(t,n)},"×"),u.default.createElement("span",{className:i+"Select-valueLabel"},e[o||"label"])):u.default.createElement("div",{className:i+"Select-value",key:n},e[o||"label"])}):u.default.createElement("div",{key:"placeholder",className:i+"Select-placeholder"},r(l))},t.prototype.renderOuter=function(e){var t=this,n=e.selectedItem,a=e.getItemProps,l=e.highlightedIndex,i=e.inputValue,o=e.isOpen,r=(e.getToggleButtonProps,e.getInputProps),p=this.props,m=p.popOverContainer,v=p.options,g=p.valueField,y=p.labelField,C=p.noResultsText,O=p.loadOptions,S=p.creatable,E=p.multiple,x=p.classnames,A=p.checkAll,V=p.checkAllLabel,I=p.searchable,N=p.createBtnLabel,D=p.disabled,F=p.searchPromptText,P=p.editable,T=p.removable,w=p.overlayPlacement,B=p.translate,j=this.state.selection,R=!1,K=!1,L=(i&&o&&!O?f.default(v,i,{keys:[y||"label",g||"value"]}):v.concat()).filter(function(e){return!e.hidden&&e.visible!==!1}),M=j.map(function(e){return e[g]});if(E&&A){var W=v.map(function(e){return e[g]});R=W.every(function(e){return M.indexOf(e)>-1}),K=W.some(function(e){return M.indexOf(e)>-1})}var z=u.default.createElement("div",{ref:this.menu,className:x("Select-menu")},I?u.default.createElement("div",{className:x("Select-input",{"is-focused":this.state.isFocused})},u.default.createElement(h.Icon,{icon:"search",className:"icon"}),u.default.createElement(k.default,s.__assign({},r({onFocus:this.onFocus,onBlur:this.onBlur,disabled:D,placeholder:B(F),onChange:this.handleInputChange,ref:this.inputRef})))):null,E&&A&&L.length?u.default.createElement("div",{className:x("Select-option")},u.default.createElement(_.default,{checked:K,partial:K&&!R,onChange:this.toggleCheckAll},B(V))):null,L.length?L.map(function(e,o){var r=n===e||!!~M.indexOf(e[g]);return u.default.createElement("div",s.__assign({},a({key:"string"==typeof e.value?e.label+"-"+e.value:o,index:o,item:e,disabled:e.disabled}),{className:x("Select-option",{"is-disabled":e.disabled,"is-highlight":l===o,"is-active":r})}),T?u.default.createElement("a",{"data-tooltip":"移除","data-position":"left"},u.default.createElement(h.Icon,{icon:"minus",className:"icon",onClick:function(n){return t.handleDeleteClick(n,e)}})):null,P?u.default.createElement("a",{"data-tooltip":"编辑","data-position":"left"},u.default.createElement(h.Icon,{icon:"pencil",className:"icon",onClick:function(n){return t.handleEditClick(n,e)}})):null,A||E?u.default.createElement(_.default,{checked:r,trueValue:e.value,onChange:function(){t.handleChange(e)},disabled:e.disabled},e.disabled?e[y]:b.highlight(e[y],i,x("Select-option-hl")),e.tip):u.default.createElement("span",null,e.disabled?e[y]:b.highlight(e[y],i,x("Select-option-hl")),e.tip))}):u.default.createElement("div",{className:x("Select-noResult")},B(C)),S&&!D?u.default.createElement("a",{className:x("Select-addBtn"),onClick:this.handleAddClick},u.default.createElement(h.Icon,{icon:"plus",className:"icon"}),B(N)):null);return u.default.createElement(c.default,{container:m||this.getTarget,target:this.getTarget,placement:w,show:!0},u.default.createElement(d.default,{overlay:!0,className:x("Select-popover"),style:{minWidth:this.target?this.target.offsetWidth:"auto"},onHide:this.close},z))},t.prototype.render=function(){var e=this,t=this.props,n=t.classnames,a=t.multiple,l=t.searchable,i=t.inline,o=t.className,s=t.value,r=t.loading,c=t.clearable,d=t.labelField,f=t.disabled,v=t.checkAll,g=this.state.selection,b=this.state.inputValue;return u.default.createElement(p.default,{selectedItem:g,highlightedIndex:this.state.highlightedIndex,isOpen:this.state.isOpen,inputValue:b,onChange:a||v?m.noop:this.handleChange,onStateChange:this.handleStateChange,itemToString:function(e){return e?e[d]:""}},function(t){var d,p=t.isOpen;return u.default.createElement("div",{tabIndex:f?-1:0,onKeyPress:e.handleKeyPress,onClick:e.toggle,onFocus:e.onFocus,onBlur:e.onBlur,className:n("Select",(d={},d["Select--multi"]=a,d["Select--inline"]=i,d["Select--searchable"]=l,d["is-opened"]=p,d["is-focused"]=e.state.isFocused,d["is-disabled"]=f,d),o)},u.default.createElement("div",{className:n("Select-valueWrap")},e.renderValue(t)),c&&!f&&s&&s.length?u.default.createElement("a",{onClick:e.clearValue,className:n("Select-clear")},u.default.createElement(h.Icon,{icon:"close",className:"icon"})):null,r?u.default.createElement(S.default,{show:!0,icon:"reload",spinnerClassName:n("Select-spinner")}):null,u.default.createElement("span",{className:n("Select-arrow")},u.default.createElement(h.Icon,{icon:"caret",className:"icon"})),p?e.renderOuter(t):null)})},t.defaultProps={multiple:!1,clearable:!0,creatable:!1,createBtnLabel:"新增选项",searchPromptText:"输入内容进行检索",loadingPlaceholder:"加载中..",noResultsText:"未找到任何结果",clearAllText:"移除所有",clearValueText:"移除",placeholder:"请选择",valueField:"value",labelField:"label",inline:!1,disabled:!1,checkAll:!1,checkAllLabel:"全选",defaultCheckAll:!1,overlayPlacement:"auto"},t}(u.default.Component);t.Select=x,t.default=C.themeable(O.localeable(r.uncontrollable(x,{value:"onChange"})))}); +amis.define("d57879c",function(e,t){"use strict";function n(e,t){if(t.multi||t.multiple){if("string"==typeof e&&(e=e.split(t.delimiter||",")),!Array.isArray(e)){if(null===e||void 0===e)return[];e=[e]}return e.map(function(e){return a(e,t.options,t.valueField)}).filter(function(e){return e})}Array.isArray(e)&&(e=e[0]);var n=a(e,t.options,t.valueField);return n?[n]:[]}function a(e,t,n){var a;void 0===n&&(n="value");var l=typeof e;return"string"!==l&&"number"!==l&&"boolean"!==l&&"object"!==l?e:t?("object"===l&&e&&e.hasOwnProperty(n||"value")&&(e=null!==(a=e[n||"value"])&&void 0!==a?a:""),g.findTree(t,i(e,n||"value"))):null}function l(e,t,n){return void 0===n&&(n="value"),g.isObject(e)?e===t[n||"value"]:String(t[n||"value"])===String(e)}function i(e,t){return void 0===t&&(t="value"),function(n){return l(e,n,t)}}function o(e,t){return void 0===t&&(t={values:[],options:[]}),"string"==typeof e?e.split(",").map(function(e){var n=t.values.indexOf(e);if(~n)return t.options[n];var a={label:e,value:e};return t.values.push(a.value),t.options.push(a),a}):Array.isArray(e)&&"string"==typeof e[0]?e.map(function(e){var n=t.values.indexOf(e);if(~n)return t.options[n];var a={label:e,value:e};return t.values.push(a.value),t.options.push(a),a}):Array.isArray(e)?e.map(function(e){var n=e&&e.value,a=void 0!==n?t.values.indexOf(n):-1;if(~a)return t.options[a];var l=s.__assign(s.__assign({},e),{value:n});return"undefined"!=typeof l.children?l.children=o(l.children,t):void 0!==n&&(t.values.push(n),t.options.push(l)),l}):v.default(e)?Object.keys(e).map(function(n){var a=t.values.indexOf(n);if(~a)return t.options[a];var l={label:e[n],value:n};return t.values.push(l.value),t.options.push(l),l}):[]}Object.defineProperty(t,"__esModule",{value:!0}),t.Select=t.normalizeOptions=t.optionValueCompare=t.matchOptionValue=t.expandValue=t.value2array=void 0;var s=e("node_modules/tslib/tslib"),r=e("node_modules/uncontrollable/cjs/index"),u=s.__importDefault(e("node_modules/react/index")),c=s.__importDefault(e("df63c13")),d=s.__importDefault(e("997df41")),p=s.__importDefault(e("2b3dcdf")),h=s.__importDefault(e("node_modules/downshift/dist/downshift.cjs")),f=e("b7bbd16"),m=s.__importDefault(e("node_modules/match-sorter/dist/match-sorter.cjs")),g=e("9a80175"),v=s.__importDefault(e("node_modules/lodash/isPlainObject")),b=s.__importDefault(e("node_modules/lodash/union")),y=e("b86428a"),_=e("node_modules/react-dom/index"),C=e("256b65d"),k=s.__importDefault(e("0a43d97")),S=s.__importDefault(e("4ee46ff")),O=e("5ab4e9d"),E=s.__importDefault(e("acad559"));t.value2array=n,t.expandValue=a,t.matchOptionValue=l,t.optionValueCompare=i,t.normalizeOptions=o;var x=h.default.stateChangeTypes,A=function(e){function t(t){var a=e.call(this,t)||this;return a.menu=u.default.createRef(),a.open=a.open.bind(a),a.close=a.close.bind(a),a.toggle=a.toggle.bind(a),a.onBlur=a.onBlur.bind(a),a.onFocus=a.onFocus.bind(a),a.focus=a.focus.bind(a),a.inputRef=a.inputRef.bind(a),a.handleChange=a.handleChange.bind(a),a.handleInputChange=a.handleInputChange.bind(a),a.clearValue=a.clearValue.bind(a),a.handleStateChange=a.handleStateChange.bind(a),a.handleKeyPress=a.handleKeyPress.bind(a),a.getTarget=a.getTarget.bind(a),a.toggleCheckAll=a.toggleCheckAll.bind(a),a.handleAddClick=a.handleAddClick.bind(a),a.handleEditClick=a.handleEditClick.bind(a),a.handleDeleteClick=a.handleDeleteClick.bind(a),a.state={isOpen:t.defaultOpen||!1,isFocused:!1,inputValue:"",highlightedIndex:-1,selection:n(t.value,t),itemHeight:35},a}return s.__extends(t,e),t.prototype.componentDidMount=function(){var e=this.props,t=e.loadOptions,n=e.options,a=e.multiple,l=e.defaultCheckAll,i=e.onChange,o=e.simpleValue,s=this.state.selection;a&&l&&n.length&&(s=b.default(n,s),this.setState({selection:s}),i(o?s.map(function(e){return e.value}):s)),t&&t("")},t.prototype.componentDidUpdate=function(e){var t=this.props,a=g.noop;if(t.value!==e.value||JSON.stringify(t.options)!==JSON.stringify(e.options)){var l;if(e.options&&e.options.length||!t.options.length)l=n(t.value,t);else{var i=this.state.selection,o=t.multiple,s=t.defaultCheckAll,r=t.options,u=t.onChange,c=t.simpleValue;o&&s&&r.length?(l=b.default(r,i),a=function(){return u(c?l.map(function(e){return e.value}):l)}):l=n(t.value,t)}this.setState({selection:l},a)}},t.prototype.open=function(){var e=this;this.props.disabled||this.setState({isOpen:!0,highlightedIndex:-1},function(){return setTimeout(e.focus,500)})},t.prototype.close=function(){this.setState({isOpen:!1})},t.prototype.toggle=function(e){var t=this;e&&this.menu.current&&this.menu.current.contains(e.target)||this.props.disabled||this.setState({isOpen:!this.state.isOpen,highlightedIndex:-1},this.state.isOpen?void 0:function(){return setTimeout(t.focus,500)})},t.prototype.onFocus=function(e){this.props.disabled||this.state.isOpen||this.setState({isFocused:!0},this.focus),this.props.onFocus&&this.props.onFocus(e)},t.prototype.onBlur=function(e){this.setState({isFocused:!1}),this.props.onBlur&&this.props.onBlur(e)},t.prototype.focus=function(){this.input?this.input.focus():this.getTarget()&&this.getTarget().focus()},t.prototype.blur=function(){this.input?this.input.blur():this.getTarget()&&this.getTarget().blur()},t.prototype.getTarget=function(){return this.target||(this.target=_.findDOMNode(this)),this.target},t.prototype.inputRef=function(e){this.input=e},t.prototype.toggleCheckAll=function(){var e=this.props,t=e.options,n=e.onChange,a=e.simpleValue,l=this.state.selection,i=t.map(function(e){return e.value}),o=l.map(function(e){return e.value}),s=i.every(function(e){return o.indexOf(e)>-1});l=s?[]:t,n(a?l.map(function(e){return e.value}):l)},t.prototype.removeItem=function(e,t){var n=this.props,a=n.onChange,l=n.simpleValue,i=n.disabled;if(!i){var o=this.state.selection;t&&t.stopPropagation(),o=Array.isArray(o)?o.concat():[o],o.splice(e,1),a(l?o.map(function(e){return e.value}):o)}},t.prototype.handleInputChange=function(e){var t=this,n=this.props.loadOptions;this.setState({inputValue:e.currentTarget.value},function(){return n&&n(t.state.inputValue)})},t.prototype.handleChange=function(e){var t=this.props,n=t.onChange,a=t.multiple,l=t.simpleValue,i=t.valueField,o=this.state.selection;if(a){var s=o.map(function(e){return e[i]});o=o.concat();var r=s.indexOf(e[i]);~r?o.splice(r,1):o.push(e),n(l?o.map(function(e){return e[i]}):o)}else n(l?e[i]:e)},t.prototype.handleStateChange=function(e){var t=this.props,n=t.multiple,a=t.checkAll,l=t.loadOptions,i=this.state.inputValue,o={},r=!1;switch(e.type){case x.keyDownEnter:case x.clickItem:o=s.__assign(s.__assign({},o),{isOpen:n?!0:!1,isFocused:n&&a?!0:!1,inputValue:n?i:""}),r=!n;break;case x.changeInput:o.highlightedIndex=0;case x.keyDownArrowDown:case x.keyDownArrowUp:case x.itemMouseEnter:o=s.__assign(s.__assign({},o),e)}Object.keys(o).length&&this.setState(o,r&&l?function(){return l("")}:void 0)},t.prototype.handleKeyPress=function(e){" "===e.key&&(this.toggle(),e.preventDefault())},t.prototype.clearValue=function(e){var t=this.props.onChange;e.preventDefault(),e.stopPropagation(),t("")},t.prototype.handleAddClick=function(){var e=this.props.onAdd;e&&e()},t.prototype.handleEditClick=function(e,t){var n=this.props.onEdit;e.preventDefault(),e.stopPropagation(),n&&n(t)},t.prototype.handleDeleteClick=function(e,t){var n=this.props.onDelete;e.preventDefault(),e.stopPropagation(),n&&n(t)},t.prototype.menuItemRef=function(e){e&&this.setState({itemHeight:e.offsetHeight})},t.prototype.renderValue=function(e){var t=this,n=(e.inputValue,e.isOpen,this.props),a=n.multiple,l=n.placeholder,i=n.classPrefix,o=n.labelField,s=n.disabled,r=n.translate,c=this.state.selection;return c.length?c.map(function(e,n){return a?u.default.createElement("div",{className:i+"Select-value",key:n},u.default.createElement("span",{className:i+"Select-valueIcon "+(s||e.disabled?"is-disabled":""),onClick:t.removeItem.bind(t,n)},"×"),u.default.createElement("span",{className:i+"Select-valueLabel"},e[o||"label"])):u.default.createElement("div",{className:i+"Select-value",key:n},e[o||"label"])}):u.default.createElement("div",{key:"placeholder",className:i+"Select-placeholder"},r(l))},t.prototype.renderOuter=function(e){var t=this,n=e.selectedItem,a=e.getItemProps,l=e.highlightedIndex,i=e.inputValue,o=e.isOpen,r=(e.getToggleButtonProps,e.getInputProps),h=this.props,g=h.popOverContainer,v=h.options,b=h.valueField,_=h.labelField,C=h.noResultsText,O=h.loadOptions,E=h.creatable,x=h.multiple,A=h.classnames,I=h.checkAll,N=h.checkAllLabel,V=h.searchable,D=h.createBtnLabel,F=h.disabled,P=h.searchPromptText,T=h.editable,w=h.removable,B=h.overlayPlacement,j=h.translate,R=this.state.selection,H=!1,K=!1,L=(i&&o&&!O?m.default(v,i,{keys:[_||"label",b||"value"]}):v.concat()).filter(function(e){return!e.hidden&&e.visible!==!1}),M=R.map(function(e){return e[b]});if(x&&I){var z=v.map(function(e){return e[b]});H=z.every(function(e){return M.indexOf(e)>-1}),K=z.some(function(e){return M.indexOf(e)>-1})}var W=this.state.itemHeight,J=u.default.createElement("div",{ref:this.menu,className:A("Select-menu")},V?u.default.createElement("div",{className:A("Select-input",{"is-focused":this.state.isFocused})},u.default.createElement(f.Icon,{icon:"search",className:"icon"}),u.default.createElement(S.default,s.__assign({},r({onFocus:this.onFocus,onBlur:this.onBlur,disabled:F,placeholder:j(P),onChange:this.handleInputChange,ref:this.inputRef})))):null,x&&I&&L.length?u.default.createElement("div",{className:A("Select-option")},u.default.createElement(k.default,{checked:K,partial:K&&!H,onChange:this.toggleCheckAll},j(N))):null,u.default.createElement("div",{ref:this.menuItemRef,className:A("Select-option invisible")},u.default.createElement("span",null,"Placeholder")),L.length?u.default.createElement(c.default,{height:L.length>8?280:L.length*W,itemCount:L.length,itemSize:W,renderItem:function(e){var o=e.index,r=e.style,c=L[o],d=n===c||!!~M.indexOf(c[b]);return u.default.createElement("div",s.__assign({},a({key:"string"==typeof c.value?c.label+"-"+c.value:o,index:o,item:c,disabled:c.disabled}),{style:r,className:A("Select-option",{"is-disabled":c.disabled,"is-highlight":l===o,"is-active":d})}),w?u.default.createElement("a",{"data-tooltip":"移除","data-position":"left"},u.default.createElement(f.Icon,{icon:"minus",className:"icon",onClick:function(e){return t.handleDeleteClick(e,c)}})):null,T?u.default.createElement("a",{"data-tooltip":"编辑","data-position":"left"},u.default.createElement(f.Icon,{icon:"pencil",className:"icon",onClick:function(e){return t.handleEditClick(e,c)}})):null,I||x?u.default.createElement(k.default,{checked:d,trueValue:c.value,onChange:function(){t.handleChange(c)},disabled:c.disabled},c.disabled?c[_]:y.highlight(c[_],i,A("Select-option-hl")),c.tip):u.default.createElement("span",null,c.disabled?c[_]:y.highlight(c[_],i,A("Select-option-hl")),c.tip))}}):u.default.createElement("div",{className:A("Select-noResult")},j(C)),E&&!F?u.default.createElement("a",{className:A("Select-addBtn"),onClick:this.handleAddClick},u.default.createElement(f.Icon,{icon:"plus",className:"icon"}),j(D)):null);return u.default.createElement(d.default,{container:g||this.getTarget,target:this.getTarget,placement:B,show:!0},u.default.createElement(p.default,{overlay:!0,className:A("Select-popover"),style:{minWidth:this.target?this.target.offsetWidth:"auto"},onHide:this.close},J))},t.prototype.render=function(){var e=this,t=this.props,n=t.classnames,a=t.multiple,l=t.searchable,i=t.inline,o=t.className,s=t.value,r=t.loading,c=t.clearable,d=t.labelField,p=t.disabled,m=t.checkAll,v=this.state.selection,b=this.state.inputValue;return u.default.createElement(h.default,{selectedItem:v,highlightedIndex:this.state.highlightedIndex,isOpen:this.state.isOpen,inputValue:b,onChange:a||m?g.noop:this.handleChange,onStateChange:this.handleStateChange,itemToString:function(e){return e?e[d]:""}},function(t){var d,h=t.isOpen;return u.default.createElement("div",{tabIndex:p?-1:0,onKeyPress:e.handleKeyPress,onClick:e.toggle,onFocus:e.onFocus,onBlur:e.onBlur,className:n("Select",(d={},d["Select--multi"]=a,d["Select--inline"]=i,d["Select--searchable"]=l,d["is-opened"]=h,d["is-focused"]=e.state.isFocused,d["is-disabled"]=p,d),o)},u.default.createElement("div",{className:n("Select-valueWrap")},e.renderValue(t)),c&&!p&&s&&s.length?u.default.createElement("a",{onClick:e.clearValue,className:n("Select-clear")},u.default.createElement(f.Icon,{icon:"close",className:"icon"})):null,r?u.default.createElement(E.default,{show:!0,icon:"reload",spinnerClassName:n("Select-spinner")}):null,u.default.createElement("span",{className:n("Select-arrow")},u.default.createElement(f.Icon,{icon:"caret",className:"icon"})),h?e.renderOuter(t):null)})},t.defaultProps={multiple:!1,clearable:!0,creatable:!1,createBtnLabel:"新增选项",searchPromptText:"输入内容进行检索",loadingPlaceholder:"加载中..",noResultsText:"未找到任何结果",clearAllText:"移除所有",clearValueText:"移除",placeholder:"请选择",valueField:"value",labelField:"label",inline:!1,disabled:!1,checkAll:!1,checkAllLabel:"全选",defaultCheckAll:!1,overlayPlacement:"auto"},s.__decorate([g.autobind,s.__metadata("design:type",Function),s.__metadata("design:paramtypes",[Object]),s.__metadata("design:returntype",void 0)],t.prototype,"menuItemRef",null),t}(u.default.Component);t.Select=A,t.default=C.themeable(O.localeable(r.uncontrollable(A,{value:"onChange"})))}); ;/*!src/store/formItem.ts*/ -amis.define("4ad5d54",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemStore=void 0;var n=e("node_modules/tslib/tslib"),i=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),a=e("943464a"),o=e("3fbfd93"),r=e("6a2dbb7"),l=n.__importDefault(e("node_modules/lodash/findIndex")),s=e("9a80175"),u=e("9a80175"),d=e("d57879c"),f=n.__importDefault(e("node_modules/lodash/find")),p=e("398dbab"),c=i.types.model("ErrorDetail",{msg:"",tag:""});t.FormItemStore=i.types.model("FormItemStore",{identifier:i.types.identifier,isFocused:!1,type:"",unique:!1,loading:!1,required:!1,rules:i.types.optional(i.types.frozen(),{}),messages:i.types.optional(i.types.frozen(),{}),errorData:i.types.optional(i.types.array(c),[]),name:i.types.string,id:"",unsetValueOnInvisible:!1,validated:!1,validating:!1,multiple:!1,delimiter:",",valueField:"value",labelField:"label",joinValues:!0,extractValue:!1,options:i.types.optional(i.types.array(i.types.frozen()),[]),expressionsInOptions:!1,selectedOptions:i.types.optional(i.types.frozen(),[]),filteredOptions:i.types.optional(i.types.frozen(),[]),dialogSchema:i.types.frozen(),dialogOpen:!1,dialogData:i.types.frozen()}).views(function(e){function t(){return i.hasParent(e,2)?i.getParent(e,2):null}function n(){return t()?t().getValueByName(e.name):void 0}function a(){return e.selectedOptions.length?e.selectedOptions[e.selectedOptions.length-1].value:""}function o(){return e.errorData.map(function(e){return e.msg})}return{get form(){return t()},get value(){return n()},get prinstine(){return i.getParent(e,2).getPristineValueByName(e.name)},get errors(){return o()},get valid(){var e=o();return!(e&&e.length)},get lastSelectValue(){return a()},getSelectedOptions:function(t){if(void 0===t&&(t=n()),"undefined"==typeof t)return[];var i=Array.isArray(t)?t:"string"==typeof t?t.split(e.delimiter||","):[t],a=i.map(function(t){return t&&t.hasOwnProperty(e.valueField||"value")?t[e.valueField||"value"]:t}),o=[];return a.forEach(function(t,n){var a,r,l=s.findTree(e.filteredOptions,d.optionValueCompare(t,e.valueField||"value"));if(l)o.push(l);else{var u=i&&i[n]||t;!u||"string"!=typeof u&&"number"!=typeof u?u&&e.extractValue&&(r={},r[e.valueField||"value"]=t,r[e.labelField||"label"]="UnKnown",r.__unmatched=!0,u=r):(a={},a[e.valueField||"value"]=t,a[e.labelField||"label"]=t,a.__unmatched=!0,u=a),u&&o.push(u)}}),o},get __(){return i.isAlive(e)&&i.getRoot(e)&&"RendererStore"===i.getRoot(e).storeType?i.getRoot(e).__:function(e){return e}}}}).actions(function(e){function t(t){var i=t.required,o=t.unique,r=t.value,l=t.rules,u=t.messages,d=t.delimiter,f=t.multiple,p=t.valueField,c=t.labelField,v=t.joinValues,g=t.extractValue,m=t.type,y=t.id;"string"==typeof l&&(l=a.str2rules(l)),"undefined"!=typeof m&&(e.type=m),"undefined"!=typeof y&&(e.id=y),"undefined"!=typeof u&&(e.messages=u),"undefined"!=typeof i&&(e.required=!!i),"undefined"!=typeof o&&(e.unique=!!o),"undefined"!=typeof f&&(e.multiple=!!f),"undefined"!=typeof v&&(e.joinValues=!!v),"undefined"!=typeof g&&(e.extractValue=!!g),"undefined"!=typeof d&&(e.delimiter=d||","),"undefined"!=typeof p&&(e.valueField=p||"value"),"undefined"!=typeof c&&(e.labelField=c||"label"),l=l||{},l=n.__assign(n.__assign({},l),{isRequired:e.required}),s.isObjectShallowModified(l,e.rules)&&(e.rules=l,b("bultin"),e.validated=!1),void 0!==r&&void 0===e.value&&x.setValueByName(e.name,r,!0)}function c(){e.isFocused=!0}function v(){e.isFocused=!1}function g(t,n){void 0===n&&(n=!1),"undefined"==typeof t||"__undefined"===t?e.form.deleteValueByName(e.name):e.form.setValueByName(e.name,t,n)}function m(e,t){void 0===t&&(t="bultin"),b(),y(e,t)}function y(t,n){void 0===n&&(n="bultin");var i=Array.isArray(t)?t:[t];i.forEach(function(t){return e.errorData.push({msg:t,tag:n})})}function b(t){if(t){var n=e.errorData.filter(function(e){return e.tag!==t});e.errorData.replace(n)}else e.errorData.clear()}function _(t){if(Array.isArray(t)){t=t.filter(function(e){return e});var n=e.options.concat();t.length?e.options.replace(t):e.options.clear(),h(n)}}function h(t){var i;if(!e.options.length&&"undefined"==typeof e.value)return e.selectedOptions=[],void(e.filteredOptions=[]);var a=e.form,p=e.value,c=Array.isArray(p)?p.map(function(t){return t&&t.hasOwnProperty(e.valueField||"value")?t[e.valueField||"value"]:t}):"string"==typeof p?p.split(e.delimiter||","):void 0===p?[]:[p&&p.hasOwnProperty(e.valueField||"value")?p[e.valueField||"value"]:p];p&&p.hasOwnProperty(e.labelField||"label")&&(c[0]=(i={},i[e.labelField||"label"]=p[e.labelField||"label"],i[e.valueField||"value"]=p[e.valueField||"value"],i));var v=!1,g=e.options.filter(function(e){return v||!e.visibleOn&&!e.hiddenOn||(v=!0),e.visibleOn?r.evalExpression(e.visibleOn,a.data)!==!1:e.hiddenOn?r.evalExpression(e.hiddenOn,a.data)!==!0:e.visible!==!1||e.hidden!==!0}).map(function(t,i){var o=r.evalExpression(t.disabledOn,a.data),l=t.disabledOn?e.filteredOptions.length>i&&e.filteredOptions[i].disabled===o?e.filteredOptions[i]:n.__assign(n.__assign({},t),{disabled:o}):t;return l});e.expressionsInOptions=v;var m=u.flattenTree(g),y=[];c.forEach(function(n,i){var a,o,r=l.default(m,d.optionValueCompare(n,e.valueField||"value"));if(~r)y.push(m[r]);else{var s=p&&p[i]||n;if(!s||"string"!=typeof s&&"number"!=typeof s)s&&e.extractValue&&(o={},o[e.valueField||"value"]=n,o[e.labelField||"label"]="UnKnown",o.__unmatched=!0,s=o);else{a={},a[e.valueField||"value"]=n,a[e.labelField||"label"]=n,a.__unmatched=!0,s=a;var u=t&&f.default(t,d.optionValueCompare(n,e.valueField||"value"));u&&(s[e.labelField||"label"]=u[e.labelField||"label"])}s&&y.push(s)}});var b=a.parentStore;if(b&&b.storeType===o.ComboStore.name){var _=b,h=_.uniques.get(e.name),O=[];h&&h.items.forEach(function(t){e!==t&&O.push.apply(O,t.selectedOptions.map(function(e){return e&&e.value}))}),g.length&&(g=g.filter(function(e){return!~O.indexOf(e.value)}))}s.isArrayChildrenModified(e.selectedOptions,y)&&(e.selectedOptions=y),s.isArrayChildrenModified(e.filteredOptions,g)&&(e.filteredOptions=g)}function O(t){e.loading=t}function F(e){V=e}function j(){if(e.validated=!1,V&&"ComboStore"===V.storeType){var t=V;t.forms.forEach(function(e){return e.reset()})}b()}function w(t,n,i){void 0===n&&(n=x.data),e.dialogSchema=t,e.dialogData=n,e.dialogOpen=!0,i&&D.set(e.dialogData,i)}function S(t){var n=D.get(e.dialogData);e.dialogOpen=!1,n&&(D.delete(e.dialogData),setTimeout(function(){return n(t)},200))}var V,x=e.form,D=new p.SimpleMap,T=i.flow(function(t){var i,o;return n.__generator(this,function(n){switch(n.label){case 0:return e.validating?[2,e.valid]:(e.validating=!0,b(),t?[4,t()]:[3,2]);case 1:n.sent(),n.label=2;case 2:return y(a.validate(e.value,e.form.data,e.rules,e.messages,e.__)),e.validated=!0,e.unique&&e.form.parentStore&&"ComboStore"===e.form.parentStore.storeType&&(i=e.form.parentStore,o=i.uniques.get(e.name),o.items.some(function(t){return t!==e&&e.value&&t.value===e.value})&&y(e.__("`当前值不唯一`"))),e.validating=!1,[2,e.valid]}})}),E=null,A=i.flow(function(t,a,o,r){var l,s,u,d;return n.__generator(this,function(f){switch(f.label){case 0:return f.trys.push([0,2,,3]),E&&(E(),E=null,e.loading=!1),e.loading=!0,[4,i.getRoot(e).fetcher(t,a,n.__assign({autoAppend:!1,cancelExecutor:function(e){return E=e}},o))];case 1:return l=f.sent(),E=null,s=null,l.ok?s=l:(r!==!1&&m(e.__("加载选项失败,原因:{{reason}}",{reason:l.msg||o&&o.errorMessage})),i.getRoot(e).notify("error",e.errors.join(""),void 0!==l.msgTimeout?{closeButton:!0,timeout:l.msgTimeout}:void 0)),e.loading=!1,[2,s];case 2:return u=f.sent(),d=i.getRoot(e),"RendererStore"!==d.storeType?[2]:(e.loading=!1,d.isCancel(u)?[2]:(console.error(u.stack),i.getRoot(e)&&i.getRoot(e).notify("error",u.message),[2]));case 3:return[2]}})}),q=i.flow(function(t,i,a,o,r,l){var s,u,f;return n.__generator(this,function(n){switch(n.label){case 0:return[4,A(t,i,a,l)];case 1:return(s=n.sent())?(b(),e.validated=!1,u=(null===(f=s.data)||void 0===f?void 0:f.options)||s.data.items||s.data.rows||s.data||[],u=d.normalizeOptions(u),_(u),s.data&&"undefined"!=typeof s.data.value?r&&r(s.data.value,!1,!0):o&&e.selectedOptions.some(function(e){return e.__unmatched})&&r&&r("",!1,!0),[2,s]):[2]}})}),R=i.flow(function(t,i,a,o){var r,l,u,d;return n.__generator(this,function(f){switch(f.label){case 0:return(r=s.findTreeIndex(e.options,function(e){return e===t}))?(_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!0}))),[4,A(i,a,o,!1)]):[2];case 1:return(l=f.sent())?(u=(null===(d=l.data)||void 0===d?void 0:d.options)||l.data.items||l.data.rows||l.data||[],_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!1,loaded:!0,children:u}))),[2,l]):(_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!1,error:!0}))),[2])}})});return{focus:c,blur:v,config:t,changeValue:g,validate:T,setError:m,addError:y,clearError:b,setOptions:_,loadOptions:q,deferLoadOptions:R,syncOptions:h,setLoading:O,setSubStore:F,reset:j,openDialog:w,closeDialog:S}})}); +amis.define("4ad5d54",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemStore=void 0;var n=e("node_modules/tslib/tslib"),i=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),a=e("943464a"),o=e("3fbfd93"),r=e("6a2dbb7"),l=n.__importDefault(e("node_modules/lodash/findIndex")),s=e("9a80175"),u=e("9a80175"),d=e("d57879c"),f=n.__importDefault(e("node_modules/lodash/find")),p=e("398dbab"),c=i.types.model("ErrorDetail",{msg:"",tag:""});t.FormItemStore=i.types.model("FormItemStore",{identifier:i.types.identifier,isFocused:!1,type:"",unique:!1,loading:!1,required:!1,rules:i.types.optional(i.types.frozen(),{}),messages:i.types.optional(i.types.frozen(),{}),errorData:i.types.optional(i.types.array(c),[]),name:i.types.string,id:"",unsetValueOnInvisible:!1,validated:!1,validating:!1,multiple:!1,delimiter:",",valueField:"value",labelField:"label",joinValues:!0,extractValue:!1,options:i.types.optional(i.types.array(i.types.frozen()),[]),expressionsInOptions:!1,selectedOptions:i.types.optional(i.types.frozen(),[]),filteredOptions:i.types.optional(i.types.frozen(),[]),dialogSchema:i.types.frozen(),dialogOpen:!1,dialogData:i.types.frozen()}).views(function(e){function t(){return i.hasParent(e,2)?i.getParent(e,2):null}function n(){return t()?t().getValueByName(e.name):void 0}function a(){return e.selectedOptions.length?e.selectedOptions[e.selectedOptions.length-1].value:""}function o(){return e.errorData.map(function(e){return e.msg})}return{get form(){return t()},get value(){return n()},get prinstine(){return i.getParent(e,2).getPristineValueByName(e.name)},get errors(){return o()},get valid(){var e=o();return!(e&&e.length)},get lastSelectValue(){return a()},getSelectedOptions:function(t){if(void 0===t&&(t=n()),"undefined"==typeof t)return[];var i=Array.isArray(t)?t:"string"==typeof t?t.split(e.delimiter||","):[t],a=i.map(function(t){return t&&t.hasOwnProperty(e.valueField||"value")?t[e.valueField||"value"]:t}),o=[];return a.forEach(function(t,n){var a,r,l=s.findTree(e.filteredOptions,d.optionValueCompare(t,e.valueField||"value"));if(l)o.push(l);else{var u=i&&i[n]||t;!u||"string"!=typeof u&&"number"!=typeof u?u&&e.extractValue&&(r={},r[e.valueField||"value"]=t,r[e.labelField||"label"]="UnKnown",r.__unmatched=!0,u=r):(a={},a[e.valueField||"value"]=t,a[e.labelField||"label"]=t,a.__unmatched=!0,u=a),u&&o.push(u)}}),o},get __(){return i.isAlive(e)&&i.getRoot(e)&&"RendererStore"===i.getRoot(e).storeType?i.getRoot(e).__:function(e){return e}}}}).actions(function(e){function t(t){var i=t.required,o=t.unique,r=t.value,l=t.rules,u=t.messages,d=t.delimiter,f=t.multiple,p=t.valueField,c=t.labelField,v=t.joinValues,g=t.extractValue,m=t.type,y=t.id;"string"==typeof l&&(l=a.str2rules(l)),"undefined"!=typeof m&&(e.type=m),"undefined"!=typeof y&&(e.id=y),"undefined"!=typeof u&&(e.messages=u),"undefined"!=typeof i&&(e.required=!!i),"undefined"!=typeof o&&(e.unique=!!o),"undefined"!=typeof f&&(e.multiple=!!f),"undefined"!=typeof v&&(e.joinValues=!!v),"undefined"!=typeof g&&(e.extractValue=!!g),"undefined"!=typeof d&&(e.delimiter=d||","),"undefined"!=typeof p&&(e.valueField=p||"value"),"undefined"!=typeof c&&(e.labelField=c||"label"),l=l||{},l=n.__assign(n.__assign({},l),{isRequired:e.required}),s.isObjectShallowModified(l,e.rules)&&(e.rules=l,b("bultin"),e.validated=!1),void 0!==r&&void 0===e.value&&x.setValueByName(e.name,r,!0)}function c(){e.isFocused=!0}function v(){e.isFocused=!1}function g(t,n){void 0===n&&(n=!1),"undefined"==typeof t||"__undefined"===t?e.form.deleteValueByName(e.name):e.form.setValueByName(e.name,t,n)}function m(e,t){void 0===t&&(t="bultin"),b(),y(e,t)}function y(t,n){void 0===n&&(n="bultin");var i=Array.isArray(t)?t:[t];i.forEach(function(t){return e.errorData.push({msg:t,tag:n})})}function b(t){if(t){var n=e.errorData.filter(function(e){return e.tag!==t});e.errorData.replace(n)}else e.errorData.clear()}function _(t){if(Array.isArray(t)){t=t.filter(function(e){return e});var n=e.options.concat();t.length?e.options.replace(t):e.options.clear(),h(n)}}function h(t){var i;if(!e.options.length&&"undefined"==typeof e.value)return e.selectedOptions=[],void(e.filteredOptions=[]);var a=e.form,p=e.value;if(a){var c=Array.isArray(p)?p.map(function(t){return t&&t.hasOwnProperty(e.valueField||"value")?t[e.valueField||"value"]:t}):"string"==typeof p?p.split(e.delimiter||","):void 0===p?[]:[p&&p.hasOwnProperty(e.valueField||"value")?p[e.valueField||"value"]:p];p&&p.hasOwnProperty(e.labelField||"label")&&(c[0]=(i={},i[e.labelField||"label"]=p[e.labelField||"label"],i[e.valueField||"value"]=p[e.valueField||"value"],i));var v=!1,g=e.options.filter(function(e){return v||!e.visibleOn&&!e.hiddenOn||(v=!0),e.visibleOn?r.evalExpression(e.visibleOn,a.data)!==!1:e.hiddenOn?r.evalExpression(e.hiddenOn,a.data)!==!0:e.visible!==!1||e.hidden!==!0}).map(function(t,i){var o=r.evalExpression(t.disabledOn,a.data),l=t.disabledOn?e.filteredOptions.length>i&&e.filteredOptions[i].disabled===o?e.filteredOptions[i]:n.__assign(n.__assign({},t),{disabled:o}):t;return l});e.expressionsInOptions=v;var m=u.flattenTree(g),y=[];c.forEach(function(n,i){var a,o,r=l.default(m,d.optionValueCompare(n,e.valueField||"value"));if(~r)y.push(m[r]);else{var s=p&&p[i]||n;if(!s||"string"!=typeof s&&"number"!=typeof s)s&&e.extractValue&&(o={},o[e.valueField||"value"]=n,o[e.labelField||"label"]="UnKnown",o.__unmatched=!0,s=o);else{a={},a[e.valueField||"value"]=n,a[e.labelField||"label"]=n,a.__unmatched=!0,s=a;var u=t&&f.default(t,d.optionValueCompare(n,e.valueField||"value"));u&&(s[e.labelField||"label"]=u[e.labelField||"label"])}s&&y.push(s)}});var b=a.parentStore;if(b&&b.storeType===o.ComboStore.name){var _=b,h=_.uniques.get(e.name),O=[];h&&h.items.forEach(function(t){e!==t&&O.push.apply(O,t.selectedOptions.map(function(e){return e&&e.value}))}),g.length&&(g=g.filter(function(e){return!~O.indexOf(e.value)}))}s.isArrayChildrenModified(e.selectedOptions,y)&&(e.selectedOptions=y),s.isArrayChildrenModified(e.filteredOptions,g)&&(e.filteredOptions=g)}}function O(t){e.loading=t}function F(e){V=e}function j(){if(e.validated=!1,V&&"ComboStore"===V.storeType){var t=V;t.forms.forEach(function(e){return e.reset()})}b()}function w(t,n,i){void 0===n&&(n=x.data),e.dialogSchema=t,e.dialogData=n,e.dialogOpen=!0,i&&D.set(e.dialogData,i)}function S(t){var n=D.get(e.dialogData);e.dialogOpen=!1,n&&(D.delete(e.dialogData),setTimeout(function(){return n(t)},200))}var V,x=e.form,D=new p.SimpleMap,T=i.flow(function(t){var i,o;return n.__generator(this,function(n){switch(n.label){case 0:return e.validating?[2,e.valid]:(e.validating=!0,b(),t?[4,t()]:[3,2]);case 1:n.sent(),n.label=2;case 2:return y(a.validate(e.value,e.form.data,e.rules,e.messages,e.__)),e.validated=!0,e.unique&&e.form.parentStore&&"ComboStore"===e.form.parentStore.storeType&&(i=e.form.parentStore,o=i.uniques.get(e.name),o.items.some(function(t){return t!==e&&e.value&&t.value===e.value})&&y(e.__("`当前值不唯一`"))),e.validating=!1,[2,e.valid]}})}),E=null,A=i.flow(function(t,a,o,r){var l,s,u,d;return n.__generator(this,function(f){switch(f.label){case 0:return f.trys.push([0,2,,3]),E&&(E(),E=null,e.loading=!1),e.loading=!0,[4,i.getRoot(e).fetcher(t,a,n.__assign({autoAppend:!1,cancelExecutor:function(e){return E=e}},o))];case 1:return l=f.sent(),E=null,s=null,l.ok?s=l:(r!==!1&&m(e.__("加载选项失败,原因:{{reason}}",{reason:l.msg||o&&o.errorMessage})),i.getRoot(e).notify("error",e.errors.join(""),void 0!==l.msgTimeout?{closeButton:!0,timeout:l.msgTimeout}:void 0)),e.loading=!1,[2,s];case 2:return u=f.sent(),d=i.getRoot(e),"RendererStore"!==d.storeType?[2]:(e.loading=!1,d.isCancel(u)?[2]:(console.error(u.stack),i.getRoot(e)&&i.getRoot(e).notify("error",u.message),[2]));case 3:return[2]}})}),q=i.flow(function(t,i,a,o,r,l){var s,u,f;return n.__generator(this,function(n){switch(n.label){case 0:return[4,A(t,i,a,l)];case 1:return(s=n.sent())?(b(),e.validated=!1,u=(null===(f=s.data)||void 0===f?void 0:f.options)||s.data.items||s.data.rows||s.data||[],u=d.normalizeOptions(u),_(u),s.data&&"undefined"!=typeof s.data.value?r&&r(s.data.value,!1,!0):o&&e.selectedOptions.some(function(e){return e.__unmatched})&&r&&r("",!1,!0),[2,s]):[2]}})}),R=i.flow(function(t,i,a,o){var r,l,u,d;return n.__generator(this,function(f){switch(f.label){case 0:return(r=s.findTreeIndex(e.options,function(e){return e===t}))?(_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!0}))),[4,A(i,a,o,!1)]):[2];case 1:return(l=f.sent())?(u=(null===(d=l.data)||void 0===d?void 0:d.options)||l.data.items||l.data.rows||l.data||[],_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!1,loaded:!0,children:u}))),[2,l]):(_(s.spliceTree(e.options,r,1,n.__assign(n.__assign({},t),{loading:!1,error:!0}))),[2])}})});return{focus:c,blur:v,config:t,changeValue:g,validate:T,setError:m,addError:y,clearError:b,setOptions:_,loadOptions:q,deferLoadOptions:R,syncOptions:h,setLoading:O,setSubStore:F,reset:j,openDialog:w,closeDialog:S}})}); ;/*!src/store/form.ts*/ -amis.define("956950c",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.IFormItemStore=t.FormStore=void 0;var r=e("node_modules/tslib/tslib"),a=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),n=r.__importDefault(e("node_modules/lodash/debounce")),i=e("57d76d7"),s=e("4ad5d54");Object.defineProperty(t,"IFormItemStore",{enumerable:!0,get:function(){return s.IFormItemStore}});var o=e("bc87d08"),c=e("9a80175"),u=r.__importDefault(e("node_modules/lodash/isEqual"));t.FormStore=i.ServiceStore.named("FormStore").props({inited:!1,validated:!1,submited:!1,submiting:!1,validating:!1,items:a.types.optional(a.types.array(a.types.late(function(){return s.FormItemStore})),[]),canAccessSuperData:!0,persistData:!1}).views(function(e){return{get loading(){return e.saving||e.fetching},get errors(){var t={};return e.items.forEach(function(e){e.valid||(t[e.name]=Array.isArray(t[e.name])?t[e.name].concat(e.errors):e.errors.concat())}),t},getValueByName:function(t){return c.getVariable(e.data,t,e.canAccessSuperData)},getPristineValueByName:function(t){return c.getVariable(e.pristine,t)},getItemById:function(t){return e.items.find(function(e){return e.id===t})},getItemByName:function(t){return e.items.find(function(e){return e.name===t})},getItemsByName:function(t){return e.items.filter(function(e){return e.name===t})},get valid(){return e.items.every(function(e){return e.valid})},get isPristine(){return u.default(e.pristine,e.data)}}}).actions(function(e){function t(t,r,a){e.updateData(t,r,a),h()}function i(t,a,n,i){void 0===n&&(n=!1),void 0===i&&(i=!1);var s=c.getVariable(e.data,t,!1),o=e.data,u=c.cloneObject(e.data);if(a!==s)if(o.__prev){var l=c.cloneObject(o.__prev);c.setVariable(l,t,s),Object.defineProperty(u,"__prev",{value:l,enumerable:!1,configurable:!1,writable:!1})}else Object.defineProperty(u,"__prev",{value:r.__assign({},o),enumerable:!1,configurable:!1,writable:!1});else if(!i)return;if(c.setVariable(u,t,a),n){var f=c.cloneObject(e.pristine);c.setVariable(f,t,a),e.pristine=f}u.__pristine||Object.defineProperty(u,"__pristine",{value:e.pristine,enumerable:!1,configurable:!1,writable:!1}),e.data=u,e.persistData&&w(),h()}function s(t){var a=e.data,n=c.cloneObject(e.data);if(a.__prev){var i=c.cloneObject(a.__prev);c.setVariable(i,t,c.getVariable(a,t)),Object.defineProperty(n,"__prev",{value:i,enumerable:!1,configurable:!1,writable:!1})}else Object.defineProperty(n,"__prev",{value:r.__assign({},a),enumerable:!1,configurable:!1,writable:!1});c.deleteVariable(n,t),e.data=n}function u(){var t=c.mapObject(e.data,function(e){return"string"==typeof e?e.trim():e});e.updateData(t)}function l(){var t=e.items.concat();t.forEach(function(e){return e.reset()})}function f(t,r){void 0===r&&(r=!0),r&&(e.data=e.pristine),e.validated=!1,e.submited=!1,e.items.forEach(function(e){return e.reset()}),t&&t(e.data)}function d(t,r){var a;return e.items.push({identifier:c.guid(),name:t}),a=e.items[e.items.length-1],i(a.name,a.value,!1,!1),r&&a.config(r),a}function m(e){a.detach(e)}function g(){if(e.parentStore&&"ComboStore"===e.parentStore.storeType){var t=e.parentStore;e.items.forEach(function(e){e.unique&&t.unBindUniuqueItem(e)}),t.removeForm(e),t.forms.forEach(function(e){return e.items.forEach(function(e){return e.unique&&e.syncOptions()})})}e.items.forEach(function(e){return a.detach(e)})}function b(t){void 0===t&&(t=!0),e.canAccessSuperData=t}function p(t){e.inited=t}function v(){e.persistData=!0;var t=localStorage.getItem(location.pathname+e.path);t&&e.updateData(JSON.parse(t))}function _(){localStorage.removeItem(location.pathname+e.path)}var h=n.default(function(){return e.items.forEach(function(e){return e.syncOptions()})},250,{trailing:!0,leading:!1}),y=a.flow(function(n,i,s){var u,l,f,u,d,m;return void 0===s&&(s={}),r.__generator(this,function(g){switch(g.label){case 0:return g.trys.push([0,9,,10]),s=r.__assign({method:"post"},s),s&&s.beforeSend?(u=s.beforeSend(i),u&&u.then?[4,u]:[3,2]):[3,3];case 1:u=g.sent(),g.label=2;case 2:if(u===!1)return[2];g.label=3;case 3:return e.markSaving(!0),[4,a.getRoot(e).fetcher(n,i,s)];case 4:if(l=g.sent(),(!c.isEmpty(l.data)||l.ok)&&(e.updatedAt=Date.now(),t(l.data,{__saved:Date.now()},!!n.replaceData)),l.ok)return[3,5];throw 422===l.status&&l.errors?(f=l.errors,Object.keys(f).forEach(function(t){var r=e.getItemById(t);r?r.setError(f[t]):e.getItemsByName(t).forEach(function(e){return e.setError(f[t])})}),e.updateMessage(l.msg||s&&s.errorMessage||e.__("验证错误"),!0)):e.updateMessage(l.msg||s&&s.errorMessage,!0),new o.ServerError(e.msg,l);case 5:return s&&s.onSuccess?(u=s.onSuccess(l),u&&u.then?[4,u]:[3,7]):[3,7];case 6:g.sent(),g.label=7;case 7:return e.markSaving(!1),e.updateMessage(l.msg||s&&s.successMessage),e.msg&&a.getRoot(e).notify("success",e.msg),[2,l.data];case 8:return[3,10];case 9:if(d=g.sent(),"RendererStore"!==a.getRoot(e).storeType)return[2];throw e.markSaving(!1),"ServerError"===d.type?(m=d.response,a.getRoot(e).notify("error",d.message,void 0!==m.msgTimeout?{closeButton:!0,timeout:m.msgTimeout}:void 0)):a.getRoot(e).notify("error",d.message),d;case 10:return[2]}})}),S=a.flow(function(t,n,i){var s,o,u,l;return r.__generator(this,function(r){switch(r.label){case 0:e.submited=!0,e.submiting=!0,r.label=1;case 1:return r.trys.push([1,,5,6]),[4,O(n)];case 2:if(s=r.sent(),!s)throw o=null!==i&&void 0!==i?i:e.__("表单验证失败,请仔细检查"),o&&a.getRoot(e).notify("error",o),new Error(e.__("验证失败"));return t?(u=c.difference(e.data,e.pristine),[4,t(c.createObject(c.createObject(e.data.__super,{diff:u,__diff:u,pristine:e.pristine}),e.data))]):[3,4];case 3:return l=r.sent(),[2,null!==l&&void 0!==l?l:e.data];case 4:return[2,e.data];case 5:return e.submiting=!1,[7];case 6:return[2]}})}),O=a.flow(function(t,a){var n,i,s,o,i,s;return r.__generator(this,function(r){switch(r.label){case 0:e.validating=!0,e.validated=!0,n=e.items.concat(),i=0,s=n.length,r.label=1;case 1:return s>i?(o=n[i],!o.validated||o.unique||a?[4,o.validate()]:[3,3]):[3,4];case 2:r.sent(),r.label=3;case 3:return i++,[3,1];case 4:if(!t||!t.length)return[3,8];i=0,s=t.length,r.label=5;case 5:return s>i?[4,t[i]()]:[3,8];case 6:r.sent(),r.label=7;case 7:return i++,[3,5];case 8:return e.validating=!1,[2,e.valid]}})}),j=a.flow(function(t){var a,n,i,s,o,c,u;return r.__generator(this,function(r){switch(r.label){case 0:e.validating=!0,a=e.items.concat(),n=[],i=0,s=a.length,r.label=1;case 1:return s>i?(o=a[i],~t.indexOf(o.name)?(u=(c=n).push,[4,o.validate()]):[3,3]):[3,4];case 2:u.apply(c,[r.sent()]),r.label=3;case 3:return i++,[3,1];case 4:return e.validating=!1,[2,n.every(function(e){return e})]}})}),w=n.default(function(){return localStorage.setItem(location.pathname+e.path,JSON.stringify(e.data))},250,{trailing:!0,leading:!1});return{setInited:p,setValues:t,setValueByName:i,trimValues:u,submit:S,validate:O,validateFields:j,clearErrors:l,saveRemote:y,reset:f,registryItem:d,unRegistryItem:m,beforeDetach:g,syncOptions:h,setCanAccessSuperData:b,deleteValueByName:s,getPersistData:v,setPersistData:w,clearPersistData:_,beforeDestroy:function(){h.cancel(),w.cancel()}}})}); +amis.define("956950c",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.IFormItemStore=t.FormStore=void 0;var r=e("node_modules/tslib/tslib"),a=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),n=r.__importDefault(e("node_modules/lodash/debounce")),i=e("57d76d7"),s=e("4ad5d54");Object.defineProperty(t,"IFormItemStore",{enumerable:!0,get:function(){return s.IFormItemStore}});var o=e("bc87d08"),c=e("9a80175"),u=r.__importDefault(e("node_modules/lodash/isEqual"));t.FormStore=i.ServiceStore.named("FormStore").props({inited:!1,validated:!1,submited:!1,submiting:!1,validating:!1,items:a.types.optional(a.types.array(a.types.late(function(){return s.FormItemStore})),[]),canAccessSuperData:!0,persistData:!1}).views(function(e){return{get loading(){return e.saving||e.fetching},get errors(){var t={};return e.items.forEach(function(e){e.valid||(t[e.name]=Array.isArray(t[e.name])?t[e.name].concat(e.errors):e.errors.concat())}),t},getValueByName:function(t){return c.getVariable(e.data,t,e.canAccessSuperData)},getPristineValueByName:function(t){return c.getVariable(e.pristine,t)},getItemById:function(t){return e.items.find(function(e){return e.id===t})},getItemByName:function(t){return e.items.find(function(e){return e.name===t})},getItemsByName:function(t){return e.items.filter(function(e){return e.name===t})},get valid(){return e.items.every(function(e){return e.valid})},get isPristine(){return u.default(e.pristine,e.data)}}}).actions(function(e){function t(t,r,a){e.updateData(t,r,a),e.items.forEach(function(e){return e.reset()}),h()}function i(t,a,n,i){void 0===n&&(n=!1),void 0===i&&(i=!1);var s=c.getVariable(e.data,t,!1),o=e.data,u=c.cloneObject(e.data);if(a!==s)if(o.__prev){var l=c.cloneObject(o.__prev);c.setVariable(l,t,s),Object.defineProperty(u,"__prev",{value:l,enumerable:!1,configurable:!1,writable:!1})}else Object.defineProperty(u,"__prev",{value:r.__assign({},o),enumerable:!1,configurable:!1,writable:!1});else if(!i)return;if(c.setVariable(u,t,a),n){var f=c.cloneObject(e.pristine);c.setVariable(f,t,a),e.pristine=f}u.__pristine||Object.defineProperty(u,"__pristine",{value:e.pristine,enumerable:!1,configurable:!1,writable:!1}),e.data=u,e.persistData&&w(),h()}function s(t){var a=e.data,n=c.cloneObject(e.data);if(a.__prev){var i=c.cloneObject(a.__prev);c.setVariable(i,t,c.getVariable(a,t)),Object.defineProperty(n,"__prev",{value:i,enumerable:!1,configurable:!1,writable:!1})}else Object.defineProperty(n,"__prev",{value:r.__assign({},a),enumerable:!1,configurable:!1,writable:!1});c.deleteVariable(n,t),e.data=n}function u(){var t=c.mapObject(e.data,function(e){return"string"==typeof e?e.trim():e});e.updateData(t)}function l(){var t=e.items.concat();t.forEach(function(e){return e.reset()})}function f(t,r){void 0===r&&(r=!0),r&&(e.data=e.pristine),e.validated=!1,e.submited=!1,e.items.forEach(function(e){return e.reset()}),t&&t(e.data)}function d(t,r){var a;return e.items.push({identifier:c.guid(),name:t}),a=e.items[e.items.length-1],i(a.name,a.value,!1,!1),r&&a.config(r),a}function m(e){a.detach(e)}function g(){if(e.parentStore&&"ComboStore"===e.parentStore.storeType){var t=e.parentStore;e.items.forEach(function(e){e.unique&&t.unBindUniuqueItem(e)}),t.removeForm(e),t.forms.forEach(function(e){return e.items.forEach(function(e){return e.unique&&e.syncOptions()})})}e.items.forEach(function(e){return a.detach(e)})}function b(t){void 0===t&&(t=!0),e.canAccessSuperData=t}function p(t){e.inited=t}function v(){e.persistData=!0;var t=localStorage.getItem(location.pathname+e.path);t&&e.updateData(JSON.parse(t))}function _(){localStorage.removeItem(location.pathname+e.path)}var h=n.default(function(){return e.items.forEach(function(e){return e.syncOptions()})},250,{trailing:!0,leading:!1}),y=a.flow(function(n,i,s){var u,l,f,u,d,m;return void 0===s&&(s={}),r.__generator(this,function(g){switch(g.label){case 0:return g.trys.push([0,9,,10]),s=r.__assign({method:"post"},s),s&&s.beforeSend?(u=s.beforeSend(i),u&&u.then?[4,u]:[3,2]):[3,3];case 1:u=g.sent(),g.label=2;case 2:if(u===!1)return[2];g.label=3;case 3:return e.markSaving(!0),[4,a.getRoot(e).fetcher(n,i,s)];case 4:if(l=g.sent(),(!c.isEmpty(l.data)||l.ok)&&(e.updatedAt=Date.now(),t(l.data,{__saved:Date.now()},!!n.replaceData)),l.ok)return[3,5];throw 422===l.status&&l.errors?(f=l.errors,Object.keys(f).forEach(function(t){var r=e.getItemById(t);r?r.setError(f[t]):e.getItemsByName(t).forEach(function(e){return e.setError(f[t])})}),e.updateMessage(l.msg||s&&s.errorMessage||e.__("验证错误"),!0)):e.updateMessage(l.msg||s&&s.errorMessage,!0),new o.ServerError(e.msg,l);case 5:return s&&s.onSuccess?(u=s.onSuccess(l),u&&u.then?[4,u]:[3,7]):[3,7];case 6:g.sent(),g.label=7;case 7:return e.markSaving(!1),e.updateMessage(l.msg||s&&s.successMessage),e.msg&&a.getRoot(e).notify("success",e.msg),[2,l.data];case 8:return[3,10];case 9:if(d=g.sent(),"RendererStore"!==a.getRoot(e).storeType)return[2];throw e.markSaving(!1),"ServerError"===d.type?(m=d.response,a.getRoot(e).notify("error",d.message,void 0!==m.msgTimeout?{closeButton:!0,timeout:m.msgTimeout}:void 0)):a.getRoot(e).notify("error",d.message),d;case 10:return[2]}})}),S=a.flow(function(t,n,i){var s,o,u,l;return r.__generator(this,function(r){switch(r.label){case 0:e.submited=!0,e.submiting=!0,r.label=1;case 1:return r.trys.push([1,,5,6]),[4,O(n)];case 2:if(s=r.sent(),!s)throw o=null!==i&&void 0!==i?i:e.__("表单验证失败,请仔细检查"),o&&a.getRoot(e).notify("error",o),new Error(e.__("验证失败"));return t?(u=c.difference(e.data,e.pristine),[4,t(c.createObject(c.createObject(e.data.__super,{diff:u,__diff:u,pristine:e.pristine}),e.data))]):[3,4];case 3:return l=r.sent(),[2,null!==l&&void 0!==l?l:e.data];case 4:return[2,e.data];case 5:return e.submiting=!1,[7];case 6:return[2]}})}),O=a.flow(function(t,a){var n,i,s,o,i,s;return r.__generator(this,function(r){switch(r.label){case 0:e.validating=!0,e.validated=!0,n=e.items.concat(),i=0,s=n.length,r.label=1;case 1:return s>i?(o=n[i],!o.validated||o.unique||a?[4,o.validate()]:[3,3]):[3,4];case 2:r.sent(),r.label=3;case 3:return i++,[3,1];case 4:if(!t||!t.length)return[3,8];i=0,s=t.length,r.label=5;case 5:return s>i?[4,t[i]()]:[3,8];case 6:r.sent(),r.label=7;case 7:return i++,[3,5];case 8:return e.validating=!1,[2,e.valid]}})}),j=a.flow(function(t){var a,n,i,s,o,c,u;return r.__generator(this,function(r){switch(r.label){case 0:e.validating=!0,a=e.items.concat(),n=[],i=0,s=a.length,r.label=1;case 1:return s>i?(o=a[i],~t.indexOf(o.name)?(u=(c=n).push,[4,o.validate()]):[3,3]):[3,4];case 2:u.apply(c,[r.sent()]),r.label=3;case 3:return i++,[3,1];case 4:return e.validating=!1,[2,n.every(function(e){return e})]}})}),w=n.default(function(){return localStorage.setItem(location.pathname+e.path,JSON.stringify(e.data))},250,{trailing:!0,leading:!1});return{setInited:p,setValues:t,setValueByName:i,trimValues:u,submit:S,validate:O,validateFields:j,clearErrors:l,saveRemote:y,reset:f,registryItem:d,unRegistryItem:m,beforeDetach:g,syncOptions:h,setCanAccessSuperData:b,deleteValueByName:s,getPersistData:v,setPersistData:w,clearPersistData:_,beforeDestroy:function(){h.cancel(),w.cancel()}}})}); ;/*!src/store/combo.ts*/ amis.define("3fbfd93",function(e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.ComboStore=n.UniqueGroup=void 0;var t=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),i=e("7820b08"),r=e("4ad5d54"),u=e("956950c");n.UniqueGroup=t.types.model("UniqueGroup",{name:t.types.identifier,items:t.types.array(t.types.reference(t.types.late(function(){return r.FormItemStore})))}),n.ComboStore=i.iRendererStore.named("ComboStore").props({uniques:t.types.map(n.UniqueGroup),forms:t.types.array(t.types.reference(t.types.late(function(){return u.FormStore}))),minLength:0,maxLength:0,length:0,activeKey:0}).views(function(e){return{get addable(){if(e.maxLength&&e.length>=e.maxLength)return!1;if(e.uniques.size){var n=!1;if(e.uniques.forEach(function(e){if(!n&&e.items.length){var t=e.items[0].options.length,i=e.items.reduce(function(e,n){return e+n.selectedOptions.length},0);n=t&&i>=t?!0:!1}}),n)return!1}return!0},get removable(){return e.minLength&&e.minLength>=e.length?!1:!0}}}).actions(function(e){function n(n){"undefined"!=typeof n.minLength&&(e.minLength=parseInt(n.minLength,10)),"undefined"!=typeof n.maxLength&&(e.maxLength=parseInt(n.maxLength,10)),"undefined"!=typeof n.length&&(e.length=n.length)}function t(n){e.uniques.has(n.name)||e.uniques.put({name:n.name});var t=e.uniques.get(n.name);t.items.push(n)}function i(n){var t=e.uniques.get(n.name);t.items.remove(n),t.items.length||e.uniques.delete(n.name)}function r(n){e.forms.push(n)}function u(n){e.forms.includes(n)&&e.forms.remove(n)}function o(n){e.activeKey=n}return{config:n,setActiveKey:o,bindUniuqueItem:t,unBindUniuqueItem:i,addForm:r,removeForm:u}})}); ;/*!src/store/crud.ts*/ @@ -841,7 +847,7 @@ amis.define("15e4197",function(e,t){"use strict";Object.defineProperty(t,"__esMo ;/*!src/components/ImageGallery.tsx*/ amis.define("1134c30",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ImageGallery=void 0;var a=e("node_modules/tslib/tslib"),n=a.__importDefault(e("node_modules/react/index")),l=e("256b65d"),i=e("9a80175"),s=a.__importDefault(e("628f736")),d=e("b7bbd16"),r=e("5ab4e9d"),o=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={isOpened:!1,index:-1,items:[]},t}a.__extends(t,e),t.prototype.handleImageEnlarge=function(e){this.setState({isOpened:!0,items:e.list?e.list:[e],index:e.index||0})},t.prototype.close=function(){this.setState({isOpened:!1})},t.prototype.prev=function(){var e=this.state.index;this.setState({index:e-1})},t.prototype.next=function(){var e=this.state.index;this.setState({index:e+1})},t.prototype.handleItemClick=function(e){var t=parseInt(e.currentTarget.getAttribute("data-index"),10);this.setState({index:t})},t.prototype.render=function(){var e=this,t=this.props,a=t.children,l=t.classnames,i=t.modalContainer,r=this.state,o=r.index,c=r.items,m=this.props.translate;return n.default.createElement(n.default.Fragment,null,n.default.cloneElement(a,{onImageEnlarge:this.handleImageEnlarge}),n.default.createElement(s.default,{closeOnEsc:!0,size:"full",onHide:this.close,show:this.state.isOpened,contentClassName:l("ImageGallery"),container:i},n.default.createElement("a",{"data-tooltip":m("关闭"),"data-position":"left",className:l("ImageGallery-close"),onClick:this.close},n.default.createElement(d.Icon,{icon:"close",className:"icon"})),~o&&c[o]?n.default.createElement(n.default.Fragment,null,n.default.createElement("div",{className:l("ImageGallery-title")},c[o].title),n.default.createElement("div",{className:l("ImageGallery-main")},n.default.createElement("img",{src:c[o].originalSrc}),c.length>1?n.default.createElement(n.default.Fragment,null,n.default.createElement("a",{className:l("ImageGallery-prevBtn",0>=o?"is-disabled":""),onClick:this.prev},n.default.createElement(d.Icon,{icon:"prev",className:"icon"})),n.default.createElement("a",{className:l("ImageGallery-nextBtn",o>=c.length-1?"is-disabled":""),onClick:this.next},n.default.createElement(d.Icon,{icon:"next",className:"icon"}))):null)):null,c.length>1?n.default.createElement("div",{className:l("ImageGallery-footer")},n.default.createElement("a",{className:l("ImageGallery-prevList is-disabled")},n.default.createElement(d.Icon,{icon:"prev",className:"icon"})),n.default.createElement("div",{className:l("ImageGallery-itemsWrap")},n.default.createElement("div",{className:l("ImageGallery-items")},c.map(function(t,a){return n.default.createElement("div",{key:a,"data-index":a,onClick:e.handleItemClick,className:l("ImageGallery-item",a===o?"is-active":"")},n.default.createElement("img",{src:t.src}))}))),n.default.createElement("a",{className:l("ImageGallery-nextList is-disabled")},n.default.createElement(d.Icon,{icon:"next",className:"icon"}))):null))};var l;return a.__decorate([i.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"handleImageEnlarge",null),a.__decorate([i.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"close",null),a.__decorate([i.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"prev",null),a.__decorate([i.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"next",null),a.__decorate([i.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",["function"==typeof(l="undefined"!=typeof n.default&&n.default.MouseEvent)?l:Object]),a.__metadata("design:returntype",void 0)],t.prototype,"handleItemClick",null),t}(n.default.Component);t.ImageGallery=o,t.default=l.themeable(r.localeable(o))}); ;/*!src/factory.tsx*/ -amis.define("0f9ebdf",function(e,t){"use strict";function r(e){M.push(e)}function n(e,t,r){return M.reduce(function(e,n){return n(e,t,r)},e)}function a(e){return function(t){var r=s(v.__assign(v.__assign({},e),{component:t}));return r.component}}function s(e){if(!e.test)throw new TypeError("config.test is required");if(!e.component)throw new TypeError("config.component is required");if(e.weight=e.weight||0,e.Renderer=e.component,e.name=e.name||"anonymous-"+N++,~W.indexOf(e.name))throw new Error('The renderer with name "'+e.name+'" has already exists, please try another name!');e.storeType&&e.component&&(e.component=l({storeType:e.storeType,extendsData:e.storeExtendsData})(x.observer(e.component))),e.isolateScope&&(e.component=A.default(e.component));var t=S.findIndex(I,function(t){return e.weight1024)throw new Error("Path太长是不是死循环了?");var r=null;return I.some(function(n){var a=!1;return"function"==typeof n.test?a=n.test(e,t,m):n.test instanceof RegExp&&(a=n.test.test(e)),a&&(r=n),a}),null!==r&&(r.test instanceof RegExp||"function"==typeof r.test&&r.test.length<2)&&(G[e]=r),r}function _(){return I.concat()}function g(e){return P.default(I,function(t){return t.name===e})}Object.defineProperty(t,"__esModule",{value:!0}),t.getRendererByName=t.getRenderers=t.resolveRenderer=t.updateEnv=t.clearStoresCache=t.render=t.HocStoreFactory=t.ScopedRootRenderer=t.RootRenderer=t.renderChild=t.renderChildren=t.unRegisterRenderer=t.registerRenderer=t.Renderer=t.filterSchema=t.addSchemaFilter=void 0;var v=e("node_modules/tslib/tslib"),y=v.__importDefault(e("node_modules/react/index")),b=v.__importDefault(e("node_modules/qs/lib/index")),D=e("448f42f"),R=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),E=e("1caead1"),S=e("9a80175"),x=e("node_modules/mobx-react/dist/index"),C=v.__importDefault(e("01e2bb4")),O=v.__importDefault(e("node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs")),w=v.__importDefault(e("node_modules/lodash/omit")),F=v.__importDefault(e("node_modules/lodash/difference")),j=v.__importDefault(e("node_modules/lodash/isPlainObject")),A=v.__importDefault(e("919cbd9")),$=e("256b65d"),P=v.__importDefault(e("node_modules/lodash/find")),T=v.__importDefault(e("15e4197")),B=e("1953fc1"),k=v.__importDefault(e("1134c30")),q=e("5ab4e9d"),I=[],W=[],M=[],N=1;t.addSchemaFilter=r,t.filterSchema=n,t.Renderer=a,t.registerRenderer=s,t.unRegisterRenderer=o,t.renderChildren=i,t.renderChild=d;var L=y.default.createContext(void 0),U=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={error:null,errorInfo:null},t}return v.__extends(t,e),t.prototype.componentDidCatch=function(e,t){console.error(e),this.setState({error:e,errorInfo:t})},t.prototype.resolveDefinitions=function(e){var t=this.props.schema.definitions;return!e||S.isEmpty(t)?{}:t&&t[e]},t.prototype.render=function(){var e=this.state,t=e.error,r=e.errorInfo;if(r)return p(t,r);var n=this.props,a=n.schema,s=n.rootStore,o=n.env,i=n.pathPrefix,l=n.location,c=n.data,u=n.locale,f=n.translate,h=v.__rest(n,["schema","rootStore","env","pathPrefix","location","data","locale","translate"]),m=o.theme,_=l&&l.query||l&&l.search&&b.default.parse(l.search.substring(1))||window.location.search&&b.default.parse(window.location.search.substring(1)),g=_?S.createObject(v.__assign(v.__assign(v.__assign({},c&&c.__super?c.__super:null),_),{query:_}),c):c;return y.default.createElement(L.Provider,{value:s},y.default.createElement($.ThemeContext.Provider,{value:this.props.theme||"default"},y.default.createElement(q.LocaleContext.Provider,{value:this.props.locale},y.default.createElement(k.default,{modalContainer:o.getModalContainer},d(i||"",j.default(a)?v.__assign({type:"page"},a):a,v.__assign(v.__assign({},h),{resolveDefinitions:this.resolveDefinitions,location:l,data:g,env:o,classnames:m.classnames,classPrefix:m.classPrefix,locale:u,translate:f}))))))},v.__decorate([S.autobind,v.__metadata("design:type",Function),v.__metadata("design:paramtypes",[String]),v.__metadata("design:returntype",void 0)],t.prototype,"resolveDefinitions",null),t}(y.default.Component);t.RootRenderer=U,t.ScopedRootRenderer=A.default(U);var H=["type","name","$ref","className","data","children","ref","visible","visibleOn","hidden","hiddenOn","disabled","disabledOn","component","detectField","required","requiredOn","syncSuperStore"],V=function(e){function t(t){var r=e.call(this,t)||this;return r.refFn=r.refFn.bind(r),r.renderChild=r.renderChild.bind(r),r.reRender=r.reRender.bind(r),r}return v.__extends(t,e),t.prototype.componentWillMount=function(){this.resolveRenderer(this.props)},t.prototype.componentWillReceiveProps=function(e){var t=this.props;(t.schema.type!==e.schema.type||t.schema.$$id!==e.schema.$$id)&&this.resolveRenderer(e)},t.prototype.shouldComponentUpdate=function(e){var t=this.props,r=F.default(Object.keys(e),["schema","scope"]);if(F.default(Object.keys(t),["schema","scope"]).length!==r.length||S.anyChanged(r,this.props,e))return!0;var n=Object.keys(e.schema);return Object.keys(t.schema).length!==n.length||S.anyChanged(n,t.schema,e.schema)?!0:!1},t.prototype.resolveRenderer=function(e){var t=e.schema,r=e.$path,n=e.env.rendererResolver||m;return t.$ref&&(t=v.__assign(v.__assign({},e.resolveDefinitions(t.$ref)),t),delete t.$ref,r=r.replace(/(?!.*\/).*/,t.type)),this.renderer=n(r,t,e),t},t.prototype.getWrappedInstance=function(){return this.ref},t.prototype.refFn=function(e){this.ref=e},t.prototype.renderChild=function(e,t,r){void 0===r&&(r={});var n=this.props,a=(n.schema,n.$path),s=n.env,o=v.__rest(n,["schema","$path","env"]),i=H.concat();if(this.renderer){var l=this.renderer.component;l.propsList&&i.push.apply(i,l.propsList)}return d(""+a+(e?"/"+e:""),t||"",v.__assign(v.__assign(v.__assign({},w.default(o,i)),r),{data:r.data||o.data,env:s}))},t.prototype.reRender=function(){this.resolveRenderer(this.props),this.forceUpdate()},t.prototype.render=function(){var e=this,t=this.props,r=t.$path,a=t.schema,s=v.__rest(t,["$path","schema"]);a.$ref&&(a=this.resolveRenderer(this.props));var o=this.props.env.theme;if(Array.isArray(a))return i(r,a,s);if(a.children)return y.default.isValidElement(a.children)?a.children:a.children(v.__assign(v.__assign({},s),{$path:r,render:this.renderChild,forwardedRef:this.refFn}));if("function"==typeof a.component){var d=!(a.component.prototype instanceof y.default.Component);return y.default.createElement(a.component,v.__assign(v.__assign(v.__assign({},s),a),{$path:r,ref:d?void 0:this.refFn,forwardedRef:d?this.refFn:void 0,render:this.renderChild}))}if(!this.renderer)return y.default.createElement(B.LazyComponent,v.__assign({},s,{getComponent:function(){return v.__awaiter(e,void 0,void 0,function(){var e;return v.__generator(this,function(t){switch(t.label){case 0:return[4,s.env.loadRenderer(a,r,this.reRender)];case 1:return e=t.sent(),e&&"function"==typeof e?[2,e]:e&&y.default.isValidElement(e)?[2,function(){return e}]:(this.reRender(),[2,function(){return c(a,r)}])}})})},$path:r,retry:this.reRender}));var l=this.renderer;a=n(a,l,s);var p=a.data,u=v.__rest(a,["data"]),f=l.component;return y.default.createElement(f,v.__assign({},o.getRendererConfig(l.name),u,S.chainEvents(s,u),{defaultData:p,$path:r,ref:this.refFn,render:this.renderChild}))},t.displayName="Renderer",t}(y.default.Component);t.HocStoreFactory=l;var z={session:"global",affixOffsetTop:50,affixOffsetBottom:0,richTextToken:"",loadRenderer:c,fetcher:function(){return Promise.reject("fetcher is required")},isCancel:function(){return console.error("Please implements this. see https://baidu.github.io/amis/docs/getting-started#%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8"),!1},alert:function(e){alert(e)},updateLocation:function(){console.error("Please implements this. see https://baidu.github.io/amis/docs/getting-started#%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8")},confirm:function(e){return confirm(e)},notify:function(e){alert(e)},jumpTo:function(){console.error("Please implements this. see https://baidu.github.io/amis/docs/getting-started#%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8")},isCurrentUrl:function(){return!1},copy:function(e){console.error("copy contents",e)},rendererResolver:m},J={};t.render=u,t.clearStoresCache=f,t.updateEnv=h;var G={};t.resolveRenderer=m,t.getRenderers=_,t.getRendererByName=g}); +amis.define("0f9ebdf",function(e,t){"use strict";function r(e){M.push(e)}function n(e,t,r){return M.reduce(function(e,n){return n(e,t,r)},e)}function a(e){return function(t){var r=s(v.__assign(v.__assign({},e),{component:t}));return r.component}}function s(e){if(!e.test)throw new TypeError("config.test is required");if(!e.component)throw new TypeError("config.component is required");if(e.weight=e.weight||0,e.Renderer=e.component,e.name=e.name||"anonymous-"+N++,~W.indexOf(e.name))throw new Error('The renderer with name "'+e.name+'" has already exists, please try another name!');e.storeType&&e.component&&(e.component=l({storeType:e.storeType,extendsData:e.storeExtendsData})(S.observer(e.component))),e.isolateScope&&(e.component=$.default(e.component));var t=C.findIndex(I,function(t){return e.weight1024)throw new Error("Path太长是不是死循环了?");var r=null;return I.some(function(n){var a=!1;return"function"==typeof n.test?a=n.test(e,t,m):n.test instanceof RegExp&&(a=n.test.test(e)),a&&(r=n),a}),null!==r&&(r.test instanceof RegExp||"function"==typeof r.test&&r.test.length<2)&&(G[e]=r),r}function _(){return I.concat()}function g(e){return T.default(I,function(t){return t.name===e})}Object.defineProperty(t,"__esModule",{value:!0}),t.getRendererByName=t.getRenderers=t.resolveRenderer=t.updateEnv=t.clearStoresCache=t.render=t.HocStoreFactory=t.ScopedRootRenderer=t.RootRenderer=t.renderChild=t.renderChildren=t.unRegisterRenderer=t.registerRenderer=t.Renderer=t.filterSchema=t.addSchemaFilter=void 0;var v=e("node_modules/tslib/tslib"),y=v.__importDefault(e("node_modules/react/index")),b=v.__importDefault(e("node_modules/qs/lib/index")),D=e("448f42f"),R=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),E=e("1caead1"),C=e("9a80175"),S=e("node_modules/mobx-react/dist/index"),x=v.__importDefault(e("01e2bb4")),O=v.__importDefault(e("node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs")),w=v.__importDefault(e("node_modules/lodash/omit")),F=v.__importDefault(e("node_modules/lodash/difference")),j=v.__importDefault(e("node_modules/lodash/isPlainObject")),$=v.__importDefault(e("919cbd9")),P=e("256b65d"),T=v.__importDefault(e("node_modules/lodash/find")),A=v.__importDefault(e("15e4197")),k=e("1953fc1"),B=v.__importDefault(e("1134c30")),q=e("5ab4e9d"),I=[],W=[],M=[],N=1;t.addSchemaFilter=r,t.filterSchema=n,t.Renderer=a,t.registerRenderer=s,t.unRegisterRenderer=o,t.renderChildren=i,t.renderChild=d;var L=y.default.createContext(void 0),U=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={error:null,errorInfo:null},t}return v.__extends(t,e),t.prototype.componentDidCatch=function(e,t){console.error(e),this.setState({error:e,errorInfo:t})},t.prototype.resolveDefinitions=function(e){var t=this.props.schema.definitions;return!e||C.isEmpty(t)?{}:t&&t[e]},t.prototype.render=function(){var e=this.state,t=e.error,r=e.errorInfo;if(r)return p(t,r);var n=this.props,a=n.schema,s=n.rootStore,o=n.env,i=n.pathPrefix,l=n.location,c=n.data,u=n.locale,f=n.translate,h=v.__rest(n,["schema","rootStore","env","pathPrefix","location","data","locale","translate"]),m=o.theme,_=l&&l.query||l&&l.search&&b.default.parse(l.search.substring(1))||window.location.search&&b.default.parse(window.location.search.substring(1)),g=_?C.createObject(v.__assign(v.__assign(v.__assign({},c&&c.__super?c.__super:null),_),{query:_}),c):c;return y.default.createElement(L.Provider,{value:s},y.default.createElement(P.ThemeContext.Provider,{value:this.props.theme||"default"},y.default.createElement(q.LocaleContext.Provider,{value:this.props.locale},y.default.createElement(B.default,{modalContainer:o.getModalContainer},d(i||"",j.default(a)?v.__assign({type:"page"},a):a,v.__assign(v.__assign({},h),{resolveDefinitions:this.resolveDefinitions,location:l,data:g,env:o,classnames:m.classnames,classPrefix:m.classPrefix,locale:u,translate:f}))))))},v.__decorate([C.autobind,v.__metadata("design:type",Function),v.__metadata("design:paramtypes",[String]),v.__metadata("design:returntype",void 0)],t.prototype,"resolveDefinitions",null),t}(y.default.Component);t.RootRenderer=U,t.ScopedRootRenderer=$.default(U);var H=["type","name","$ref","className","data","children","ref","visible","visibleOn","hidden","hiddenOn","disabled","disabledOn","component","detectField","required","requiredOn","syncSuperStore"],V=function(e){function t(t){var r=e.call(this,t)||this;return r.refFn=r.refFn.bind(r),r.renderChild=r.renderChild.bind(r),r.reRender=r.reRender.bind(r),r}return v.__extends(t,e),t.prototype.componentWillMount=function(){this.resolveRenderer(this.props)},t.prototype.componentWillReceiveProps=function(e){var t=this.props;(t.schema.type!==e.schema.type||t.schema.$$id!==e.schema.$$id)&&this.resolveRenderer(e)},t.prototype.shouldComponentUpdate=function(e){var t=this.props,r=F.default(Object.keys(e),["schema","scope"]);if(F.default(Object.keys(t),["schema","scope"]).length!==r.length||C.anyChanged(r,this.props,e))return!0;var n=Object.keys(e.schema);return Object.keys(t.schema).length!==n.length||C.anyChanged(n,t.schema,e.schema)?!0:!1},t.prototype.resolveRenderer=function(e){var t=e.schema,r=e.$path,n=e.env.rendererResolver||m;return t.$ref&&(t=v.__assign(v.__assign({},e.resolveDefinitions(t.$ref)),t),delete t.$ref,r=r.replace(/(?!.*\/).*/,t.type)),this.renderer=n(r,t,e),t},t.prototype.getWrappedInstance=function(){return this.ref},t.prototype.refFn=function(e){this.ref=e},t.prototype.renderChild=function(e,t,r){void 0===r&&(r={});var n=this.props,a=(n.schema,n.$path),s=n.env,o=v.__rest(n,["schema","$path","env"]),i=H.concat();if(this.renderer){var l=this.renderer.component;l.propsList&&i.push.apply(i,l.propsList)}return d(""+a+(e?"/"+e:""),t||"",v.__assign(v.__assign(v.__assign({},w.default(o,i)),r),{data:r.data||o.data,env:s}))},t.prototype.reRender=function(){this.resolveRenderer(this.props),this.forceUpdate()},t.prototype.render=function(){var e=this,t=this.props,r=t.$path,a=t.schema,s=v.__rest(t,["$path","schema"]);a.$ref&&(a=this.resolveRenderer(this.props));var o=this.props.env.theme;if(Array.isArray(a))return i(r,a,s);if(a.children)return y.default.isValidElement(a.children)?a.children:a.children(v.__assign(v.__assign({},s),{$path:r,render:this.renderChild,forwardedRef:this.refFn}));if("function"==typeof a.component){var d=!(a.component.prototype instanceof y.default.Component);return y.default.createElement(a.component,v.__assign(v.__assign(v.__assign({},s),a),{$path:r,ref:d?void 0:this.refFn,forwardedRef:d?this.refFn:void 0,render:this.renderChild}))}if(!this.renderer)return y.default.createElement(k.LazyComponent,v.__assign({},s,{getComponent:function(){return v.__awaiter(e,void 0,void 0,function(){var e;return v.__generator(this,function(t){switch(t.label){case 0:return[4,s.env.loadRenderer(a,r,this.reRender)];case 1:return e=t.sent(),e&&"function"==typeof e?[2,e]:e&&y.default.isValidElement(e)?[2,function(){return e}]:(this.reRender(),[2,function(){return c(a,r)}])}})})},$path:r,retry:this.reRender}));var l=this.renderer;a=n(a,l,s);var p=a.data,u=v.__rest(a,["data"]),f=l.component;return y.default.createElement(f,v.__assign({},o.getRendererConfig(l.name),u,C.chainEvents(s,u),{defaultData:p,$path:r,ref:this.refFn,render:this.renderChild}))},t.displayName="Renderer",t}(y.default.Component);t.HocStoreFactory=l;var z={session:"global",affixOffsetTop:50,affixOffsetBottom:0,richTextToken:"",loadRenderer:c,fetcher:function(){return Promise.reject("fetcher is required")},isCancel:function(){return console.error("Please implements this. see https://baidu.gitee.io/amis/docs/start/getting-started#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97"),!1},alert:function(e){alert(e)},updateLocation:function(){console.error("Please implements this. see https://baidu.gitee.io/amis/docs/start/getting-started#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97")},confirm:function(e){return confirm(e)},notify:function(e){alert(e)},jumpTo:function(){console.error("Please implements this. see https://baidu.gitee.io/amis/docs/start/getting-started#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97")},isCurrentUrl:function(){return!1},copy:function(e){console.error("copy contents",e)},rendererResolver:m},J={};t.render=u,t.clearStoresCache=f,t.updateEnv=h;var G={};t.resolveRenderer=m,t.getRenderers=_,t.getRendererByName=g}); ;/*!src/components/Alert.tsx*/ amis.define("bfe4ee0",function(t,e){"use strict";function n(t,e,n,o,i){return void 0===e&&(e={}),m.render({name:"form",type:"form",wrapWithPanel:!1,mode:"horizontal",controls:t,messages:{validateFailed:""}},{data:e,onFinished:n,scopeRef:o,theme:i},{session:"prompt"})}Object.defineProperty(e,"__esModule",{value:!0}),e.FinnalAlert=e.prompt=e.confirm=e.alert=e.Alert=void 0;var o=t("node_modules/tslib/tslib"),i=o.__importDefault(t("node_modules/react/index")),a=t("node_modules/react-dom/index"),l=o.__importDefault(t("628f736")),r=o.__importDefault(t("a67acca")),s=t("256b65d"),c=t("5ab4e9d"),d=o.__importDefault(t("580df19")),m=t("0f9ebdf"),f=function(t){function s(e){var n=t.call(this,e)||this;return n.state={show:!1,title:"",content:"",confirm:!1},n.close=n.close.bind(n),n.handleConfirm=n.handleConfirm.bind(n),n.handleCancel=n.handleCancel.bind(n),n.modalRef=n.modalRef.bind(n),n.handleFormSubmit=n.handleFormSubmit.bind(n),n.scopeRef=n.scopeRef.bind(n),n}return o.__extends(s,t),s.getInstance=function(){if(!s.instance){console.warn("Alert 组件应该没有被渲染,所以隐性的渲染到 body 了");var t=document.body,n=document.createElement("div");t.appendChild(n),a.render(i.default.createElement(e.FinnalAlert,null),n)}return s.instance},s.prototype.componentWillMount=function(){s.instance=this},s.prototype.componentDidMount=function(){this._body&&(this._body.innerHTML=this.state.content)},s.prototype.componentDidUpdate=function(t,e){e.content!==this.state.content&&this._body&&(this._body.innerHTML=this.state.content)},s.prototype.componentWillUnmount=function(){s.instance=null},s.prototype.scopeRef=function(t){this.schemaSope=t},s.prototype.handleConfirm=function(){var t,e=null===(t=this.schemaSope)||void 0===t?void 0:t.getComponentByName("form");e?e.doAction({type:"submit"}):this.close(!0)},s.prototype.handleCancel=function(){this.close(!1)},s.prototype.close=function(t){var e=this,n=this.state.confirm||this.state.prompt;this.setState({show:!1},n?function(){return e._resolve(t)}:void 0)},s.prototype.alert=function(t,e){this.setState({title:e,content:t,show:!0,confirm:!1})},s.prototype.confirm=function(t,e,n){var o=this;return this.setState({title:e,content:t,show:!0,confirm:!0,confirmText:n}),new Promise(function(t){o._resolve=t})},s.prototype.prompt=function(t,e,n,o){var i=this;return void 0===n&&(n="请输入"),void 0===o&&(o="确认"),"string"==typeof t?(t=[{name:"text",label:t,type:"text"}],"string"==typeof e&&(e={text:e})):Array.isArray(t)||(t=[t]),this.setState({title:n,controls:t,show:!0,prompt:!0,value:e,confirmText:o}),new Promise(function(t){i._resolve=t})},s.prototype.modalRef=function(t){this._modal=t},s.prototype.handleFormSubmit=function(t){this.close(t)},s.prototype.render=function(){var t,e,o=this.props,a=o.container,s=o.cancelText,c=o.confirmText,m=o.title,f=o.confirmBtnLevel,u=o.alertBtnLevel,p=o.classnames,h=o.theme,v=this.props.translate,y=v(null!==(t=this.state.title)&&void 0!==t?t:m),b=v(null!==(e=this.state.confirmText)&&void 0!==e?e:c);return i.default.createElement(l.default,{show:this.state.show,onHide:this.handleCancel,container:a,ref:this.modalRef,closeOnEsc:!0},y?i.default.createElement("div",{className:p("Modal-header")},i.default.createElement("div",{className:p("Modal-title")},y)):null,i.default.createElement("div",{className:p("Modal-body")},this.state.prompt?n(this.state.controls,this.state.value,this.handleFormSubmit,this.scopeRef,h):i.default.createElement(d.default,{html:this.state.content})),b?i.default.createElement("div",{className:p("Modal-footer")},this.state.confirm||this.state.prompt?i.default.createElement(r.default,{onClick:this.handleCancel},v(s)):null,i.default.createElement(r.default,{level:this.state.confirm||this.state.prompt?f:u,onClick:this.handleConfirm},b)):null)},s.instance=null,s.defaultProps={confirmText:"确认",cancelText:"取消",title:"系统消息",alertBtnLevel:"primary",confirmBtnLevel:"danger"},s}(i.default.Component);e.Alert=f,e.alert=function(t,e){return f.getInstance().alert(t,e)},e.confirm=function(t,e,n){return f.getInstance().confirm(t,e,n)},e.prompt=function(t,e,n,o){return f.getInstance().prompt(t,e,n,o)},e.FinnalAlert=s.themeable(c.localeable(f)),e.default=e.FinnalAlert}); ;/*!src/components/ContextMenu.tsx*/ @@ -853,7 +859,7 @@ amis.define("0d13109",function(t,e){"use strict";var n;Object.defineProperty(e," ;/*!src/components/ColorPicker.tsx*/ amis.define("f11d26b",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorControl=void 0;var o=e("node_modules/tslib/tslib"),l=o.__importDefault(e("node_modules/react/index")),a=e("node_modules/react-dom/index"),n=e("node_modules/react-color/lib/index"),r=e("b7bbd16"),s=o.__importDefault(e("997df41")),i=e("node_modules/uncontrollable/cjs/index"),u=o.__importDefault(e("2b3dcdf")),c=e("256b65d"),d=e("9a80175"),p=e("5ab4e9d"),h=function(e){function t(t){var o=e.call(this,t)||this;return o.state={isOpened:!1,isFocused:!1,inputValue:o.props.value||""},o.open=o.open.bind(o),o.close=o.close.bind(o),o.focus=o.focus.bind(o),o.blur=o.blur.bind(o),o.handleChange=o.handleChange.bind(o),o.handleFocus=o.handleFocus.bind(o),o.handleBlur=o.handleBlur.bind(o),o.clearValue=o.clearValue.bind(o),o.handleInputChange=o.handleInputChange.bind(o),o.handleClick=o.handleClick.bind(o),o.preview=l.default.createRef(),o.input=l.default.createRef(),o}return o.__extends(t,e),t.prototype.componentWillReceiveProps=function(e){var t=this.props;t.value!==e.value&&this.setState({inputValue:e.value||""})},t.prototype.handleFocus=function(){this.setState({isFocused:!0})},t.prototype.handleBlur=function(){this.setState({isFocused:!1,inputValue:this.props.value})},t.prototype.focus=function(){this.input.current&&this.input.current.focus()},t.prototype.blur=function(){this.input.current&&this.input.current.blur()},t.prototype.open=function(e){this.props.disabled||this.setState({isOpened:!0},e)},t.prototype.close=function(){this.setState({isOpened:!1})},t.prototype.clearValue=function(){var e=this.props,t=e.onChange,o=e.resetValue;t(o||"")},t.prototype.handleClick=function(){this.state.isOpened?this.close():this.open(this.focus)},t.prototype.handleInputChange=function(e){var t=this;if(this.props.allowCustomColor){var o=this.props.onChange;this.setState({inputValue:e.currentTarget.value},function(){var e=t.validateColor(t.state.inputValue);e&&o(t.state.inputValue)})}},t.prototype.validateColor=function(e){if(""===e)return!1;if("inherit"===e)return!1;if("transparent"===e)return!1;var t=document.createElement("img");return t.style.color="rgb(0, 0, 0)",t.style.color=e,"rgb(0, 0, 0)"!==t.style.color?!0:(t.style.color="rgb(255, 255, 255)",t.style.color=e,"rgb(255, 255, 255)"!==t.style.color)},t.prototype.handleChange=function(e){var t=this.props,o=t.onChange,l=t.format;o("rgba"===l?"rgba("+e.rgb.r+", "+e.rgb.g+", "+e.rgb.b+", "+e.rgb.a+")":"rgb"===l?"rgb("+e.rgb.r+", "+e.rgb.g+", "+e.rgb.b+")":"hsl"===l?"hsl("+Math.round(e.hsl.h)+", "+Math.round(100*e.hsl.s)+"%, "+Math.round(100*e.hsl.l)+"%)":e.hex)},t.prototype.render=function(){var e=this,t=this.props,o=t.classPrefix,i=t.className,c=t.value,d=t.placeholder,p=t.disabled,h=t.popOverContainer,f=t.format,b=t.clearable,C=t.placement,m=t.classnames,g=t.presetColors,v=t.allowCustomColor,y=this.props.translate,_=this.state.isOpened,k=this.state.isFocused;return l.default.createElement("div",{className:m("ColorPicker",{"is-disabled":p,"is-focused":k},i)},l.default.createElement("input",{ref:this.input,type:"text",autoComplete:"off",size:10,className:m("ColorPicker-input"),value:this.state.inputValue||"",placeholder:y(d),disabled:p,onChange:this.handleInputChange,onFocus:this.handleFocus,onBlur:this.handleBlur,onClick:this.handleClick}),b&&!p&&c?l.default.createElement("a",{onClick:this.clearValue,className:m("ColorPicker-clear")},l.default.createElement(r.Icon,{icon:"close",className:"icon"})):null,l.default.createElement("span",{onClick:this.handleClick,className:m("ColorPicker-preview")},l.default.createElement("i",{ref:this.preview,className:o+"ColorPicker-previewIcon",style:{background:this.state.inputValue||"#ccc"}})),_?l.default.createElement(s.default,{placement:C||"auto",target:function(){return a.findDOMNode(e)},onHide:this.close,container:h||function(){return a.findDOMNode(e)},rootClose:!1,show:!0},l.default.createElement(u.default,{classPrefix:o,className:m("ColorPicker-popover"),onHide:this.close,overlay:!0},v?l.default.createElement(n.SketchPicker,{disableAlpha:!!~["rgb","hex"].indexOf(f),color:c,presetColors:g,onChangeComplete:this.handleChange}):l.default.createElement(n.GithubPicker,{color:c,colors:g,onChangeComplete:this.handleChange}))):null)},t.defaultProps={format:"hex",clearable:!0,placeholder:"请选择颜色",allowCustomColor:!0},o.__decorate([d.autobind,o.__metadata("design:type",Function),o.__metadata("design:paramtypes",[String]),o.__metadata("design:returntype",void 0)],t.prototype,"validateColor",null),t}(l.default.PureComponent);t.ColorControl=h,t.default=c.themeable(p.localeable(i.uncontrollable(h,{value:"onChange"})))}); ;/*!src/components/calendar/DaysView.tsx*/ -amis.define("a905d95",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CustomDaysView=void 0;var a=e("node_modules/tslib/tslib"),r=a.__importDefault(e("node_modules/react-datetime/src/DaysView")),n=a.__importDefault(e("node_modules/react/index")),s=e("5ab4e9d"),l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.updateSelectedDate=function(e){if(t.props.requiredConfirm){var a=t.props.viewDate.clone(),r=t.props.selectedDate||a,n=e.target,s=0;return~n.className.indexOf("rdtNew")&&(s=1),~n.className.indexOf("rdtOld")&&(s=-1),a.month(a.month()+s).date(parseInt(n.getAttribute("data-value"),10)).hours(r.hours()).minutes(r.minutes()).seconds(r.seconds()).milliseconds(r.milliseconds()),void t.props.setDateTimeState({viewDate:a,selectedDate:a.clone()})}t.props.updateSelectedDate(e,!0)},t.setTime=function(e,a){var r=(t.props.selectedDate||t.props.viewDate).clone();r[e](a),t.props.setDateTimeState({viewDate:r.clone(),selectedDate:r.clone()}),t.props.requiredConfirm||t.props.onChange(r)},t.confirm=function(){var e=t.props.viewDate.clone();t.props.setDateTimeState({selectedDate:e}),t.props.onChange(e),t.props.onClose&&t.props.onClose()},t.cancel=function(){t.props.onClose&&t.props.onClose()},t.renderDay=function(e,t){return n.default.createElement("td",a.__assign({},e),t.date())},t.renderTimes=function(){var e=t.props,a=e.timeFormat,r=e.selectedDate,s=e.viewDate,l=e.isEndDate,o=r||(l?s.endOf("day"):s),i=[];return a.split(":").forEach(function(e,a){var r=/h/i.test(e)?"hours":/m/i.test(e)?"minutes":"seconds",s=0,l="hours"===r?23:59;i.push(n.default.createElement("input",{key:a+"input",type:"text",value:o.format(e),min:s,max:l,onChange:function(e){return t.setTime(r,Math.max(s,Math.min(parseInt(e.currentTarget.value.replace(/\D/g,""),10)||0,l)))}})),i.push(n.default.createElement("span",{key:a+"divider"},":"))}),i.length&&i.pop(),n.default.createElement("div",null,i)},t.renderFooter=function(){if(!t.props.timeFormat&&!t.props.requiredConfirm)return null;var e=t.props.translate;return n.default.createElement("tfoot",{key:"tf"},n.default.createElement("tr",null,n.default.createElement("td",{colSpan:7},t.props.timeFormat?t.renderTimes():null,t.props.requiredConfirm?n.default.createElement("div",{key:"button",className:"rdtActions"},n.default.createElement("a",{className:"rdtBtn rdtBtnConfirm",onClick:t.confirm},e("确认")),n.default.createElement("a",{className:"rdtBtn rdtBtnCancel",onClick:t.cancel},e("取消"))):null)))},t}return a.__extends(t,e),t.prototype.render=function(){var e=this.renderFooter(),t=this.props.viewDate,a=t.localeData(),r=this.props.translate,s=[n.default.createElement("thead",{key:"th"},n.default.createElement("tr",null,n.default.createElement("th",{colSpan:7},n.default.createElement("div",{className:"rdtHeader"},n.default.createElement("a",{className:"rdtPrev",onClick:this.props.subtractTime(1,"years")},"«"),n.default.createElement("a",{className:"rdtPrev",onClick:this.props.subtractTime(1,"months")},"‹"),n.default.createElement("div",{className:"rdtCenter"},n.default.createElement("a",{className:"rdtSwitch",onClick:this.props.showView("years")},t.format(r("YYYY年"))),n.default.createElement("a",{className:"rdtSwitch",onClick:this.props.showView("months")},t.format(r("MMM")))),n.default.createElement("a",{className:"rdtNext",onClick:this.props.addTime(1,"months")},"›"),n.default.createElement("a",{className:"rdtNext",onClick:this.props.addTime(1,"years")},"»")))),n.default.createElement("tr",null,this.getDaysOfWeek(a).map(function(e,t){return n.default.createElement("th",{key:e+t,className:"dow"},e)}))),n.default.createElement("tbody",{key:"tb"},this.renderDays())];return e&&s.push(e),n.default.createElement("div",{className:"rdtDays"},n.default.createElement("table",null,s))},t}(r.default);t.CustomDaysView=l,t.default=s.localeable(l)}); +amis.define("a905d95",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CustomDaysView=void 0;var a=e("node_modules/tslib/tslib"),r=a.__importDefault(e("node_modules/react-datetime/src/DaysView")),n=a.__importDefault(e("node_modules/react/index")),s=e("5ab4e9d"),l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.updateSelectedDate=function(e){if(t.props.requiredConfirm){var a=t.props.viewDate.clone(),r=t.props.selectedDate||a,n=e.target,s=0;return~n.className.indexOf("rdtNew")&&(s=1),~n.className.indexOf("rdtOld")&&(s=-1),a.month(a.month()+s).date(parseInt(n.getAttribute("data-value"),10)).hours(r.hours()).minutes(r.minutes()).seconds(r.seconds()).milliseconds(r.milliseconds()),void t.props.setDateTimeState({viewDate:a,selectedDate:a.clone()})}t.props.updateSelectedDate(e,!0)},t.setTime=function(e,a){var r=(t.props.selectedDate||t.props.viewDate).clone();r[e](a),t.props.setDateTimeState({viewDate:r.clone(),selectedDate:r.clone()}),t.props.requiredConfirm||t.props.onChange(r)},t.confirm=function(){var e=(t.props.selectedDate||t.props.viewDate).clone();t.props.setDateTimeState({selectedDate:e}),t.props.onChange(e),t.props.onClose&&t.props.onClose()},t.cancel=function(){t.props.onClose&&t.props.onClose()},t.renderDay=function(e,t){return n.default.createElement("td",a.__assign({},e),t.date())},t.renderTimes=function(){var e=t.props,a=e.timeFormat,r=e.selectedDate,s=e.viewDate,l=e.isEndDate,o=r||(l?s.endOf("day"):s),i=[];return a.split(":").forEach(function(e,a){var r=/h/i.test(e)?"hours":/m/i.test(e)?"minutes":"seconds",s=0,l="hours"===r?23:59;i.push(n.default.createElement("input",{key:a+"input",type:"text",value:o.format(e),min:s,max:l,onChange:function(e){return t.setTime(r,Math.max(s,Math.min(parseInt(e.currentTarget.value.replace(/\D/g,""),10)||0,l)))}})),i.push(n.default.createElement("span",{key:a+"divider"},":"))}),i.length&&i.pop(),n.default.createElement("div",null,i)},t.renderFooter=function(){if(!t.props.timeFormat&&!t.props.requiredConfirm)return null;var e=t.props.translate;return n.default.createElement("tfoot",{key:"tf"},n.default.createElement("tr",null,n.default.createElement("td",{colSpan:7},t.props.timeFormat?t.renderTimes():null,t.props.requiredConfirm?n.default.createElement("div",{key:"button",className:"rdtActions"},n.default.createElement("a",{className:"rdtBtn rdtBtnConfirm",onClick:t.confirm},e("确认")),n.default.createElement("a",{className:"rdtBtn rdtBtnCancel",onClick:t.cancel},e("取消"))):null)))},t}return a.__extends(t,e),t.prototype.render=function(){var e=this.renderFooter(),t=this.props.viewDate,a=t.localeData(),r=this.props.translate,s=[n.default.createElement("thead",{key:"th"},n.default.createElement("tr",null,n.default.createElement("th",{colSpan:7},n.default.createElement("div",{className:"rdtHeader"},n.default.createElement("a",{className:"rdtPrev",onClick:this.props.subtractTime(1,"years")},"«"),n.default.createElement("a",{className:"rdtPrev",onClick:this.props.subtractTime(1,"months")},"‹"),n.default.createElement("div",{className:"rdtCenter"},n.default.createElement("a",{className:"rdtSwitch",onClick:this.props.showView("years")},t.format(r("YYYY年"))),n.default.createElement("a",{className:"rdtSwitch",onClick:this.props.showView("months")},t.format(r("MMM")))),n.default.createElement("a",{className:"rdtNext",onClick:this.props.addTime(1,"months")},"›"),n.default.createElement("a",{className:"rdtNext",onClick:this.props.addTime(1,"years")},"»")))),n.default.createElement("tr",null,this.getDaysOfWeek(a).map(function(e,t){return n.default.createElement("th",{key:e+t,className:"dow"},e)}))),n.default.createElement("tbody",{key:"tb"},this.renderDays())];return e&&s.push(e),n.default.createElement("div",{className:"rdtDays"},n.default.createElement("table",null,s))},t}(r.default);t.CustomDaysView=l,t.default=s.localeable(l)}); ;/*!src/components/calendar/YearsView.tsx*/ amis.define("9e2700e",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CustomYearsView=void 0;var a=e("node_modules/tslib/tslib"),r=a.__importDefault(e("node_modules/react-datetime/src/YearsView")),l=a.__importDefault(e("node_modules/react/index")),n=e("5ab4e9d"),s=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.renderYear=function(e,t){return l.default.createElement("td",a.__assign({},e),l.default.createElement("span",null,t))},t}return a.__extends(t,e),t.prototype.render=function(){var e=this.props.viewDate.year();e-=e%10;var t=this.props.translate;return l.default.createElement("div",{className:"rdtYears"},l.default.createElement("table",null,l.default.createElement("thead",null,l.default.createElement("tr",null,l.default.createElement("th",{className:"rdtPrev",onClick:this.props.subtractTime(10,"years")},"«"),l.default.createElement("th",{className:"rdtSwitch"},t("{{from}}年-{{to}}年",{from:e,to:e+9})),l.default.createElement("th",{className:"rdtNext",onClick:this.props.addTime(10,"years")},"»")))),l.default.createElement("table",null,l.default.createElement("tbody",null,this.renderYears(e))))},t}(r.default);t.CustomYearsView=s,t.default=n.localeable(s)}); ;/*!src/components/calendar/MonthsView.tsx*/ @@ -871,7 +877,7 @@ amis.define("01a937e",function(e,t){"use strict";var o;Object.defineProperty(t," ;/*!src/components/Tabs.tsx*/ amis.define("8ac7656",function(e,t){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.Tabs=t.Tab=void 0;var a=e("node_modules/tslib/tslib"),r=a.__importDefault(e("node_modules/react/index")),s=a.__importStar(e("node_modules/react-transition-group/Transition")),l=e("256b65d"),o=e("node_modules/uncontrollable/cjs/index"),i=(n={},n[s.ENTERING]="in",n[s.ENTERED]="in",n),u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.contentRef=function(e){return t.contentDom=e},t}return a.__extends(t,e),t.prototype.render=function(){var e=this,t=this.props,n=t.classnames,a=t.mountOnEnter,l=t.reload,o=t.unmountOnExit,u=t.eventKey,c=t.activeKey,d=t.children,m=t.className;return r.default.createElement(s.default,{"in":c===u,mountOnEnter:a,unmountOnExit:"boolean"==typeof l?l:o,timeout:500},function(t){return t===s.ENTERING&&e.contentDom.offsetWidth,r.default.createElement("div",{ref:e.contentRef,className:n(i[t],c===u?"is-active":"","Tabs-pane",m)},d)})},t}(r.default.PureComponent);t.Tab=l.themeable(u);var c=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(n,e),n.prototype.handleSelect=function(e){var t=this.props.onSelect;t&&t(e)},n.prototype.renderNav=function(e,t){var n=this;if(e){var a=this.props,s=a.classnames,l=a.activeKey,o=e.props,i=o.eventKey,u=o.disabled,c=o.icon,d=o.title,m=o.toolbar,f=void 0===l&&0===t?i:l;return r.default.createElement("li",{className:s("Tabs-link",f===i?"is-active":"",u?"is-disabled":""),key:t,onClick:function(){return u?"":n.handleSelect(i)}},r.default.createElement("a",null,c?r.default.createElement("i",{className:c}):null," ",d),r.default.isValidElement(m)?m:null)}},n.prototype.renderTab=function(e,t){if(e){var n=this.props,s=n.activeKey,l=n.classnames,o=e.props.eventKey,i=void 0===s&&0===t?o:s;return r.default.cloneElement(e,a.__assign(a.__assign({},e.props),{key:t,classnames:l,activeKey:i}))}},n.prototype.render=function(){var e,t=this,n=this.props,a=n.classnames,s=n.contentClassName,l=n.className,o=n.mode,i=n.tabsMode,u=n.children,c=n.additionBtns,d=n.toolbar;if(!Array.isArray(u))return null;var m=i||o;return r.default.createElement("div",{className:a("Tabs",(e={},e["Tabs--"+m]=m,e),l)},r.default.createElement("ul",{className:a("Tabs-links"),role:"tablist"},u.map(function(e,n){return t.renderNav(e,n)}),c,d),r.default.createElement("div",{className:a("Tabs-content",s)},u.map(function(e,n){return t.renderTab(e,n)})))},n.defaultProps={mode:"",contentClassName:""},n.Tab=t.Tab,n}(r.default.Component);t.Tabs=c;var d=l.themeable(o.uncontrollable(c,{activeKey:"onSelect"}));t.default=d}); ;/*!src/components/Editor.tsx*/ -amis.define("997c87d",function(t,e){"use strict";function o(t){return t}function i(t,e,o){return e.editor.create(t,s.__assign({autoIndent:!0,formatOnType:!0,formatOnPaste:!0,selectOnLineNumbers:!0,scrollBeyondLastLine:!1,folding:!0,minimap:{enabled:!1}},o))}Object.defineProperty(e,"__esModule",{value:!0}),e.Editor=e.monacoFactory=void 0;var s=t("node_modules/tslib/tslib"),n=s.__importDefault(t("node_modules/react/index")),r=s.__importDefault(t("node_modules/classnames/index")),a=t("256b65d");window.MonacoEnvironment={getWorkerUrl:function(t,e){var i="/pkg/editor.worker.js";return"json"===e?i="/pkg/json.worker.js":"css"===e?i="/pkg/css.worker.js":"html"===e?i="/pkg/html.worker.js":("typescript"===e||"javascript"===e)&&(i="/pkg/ts.worker.js"),i=o(i),/^https?/.test(i)?"data:text/javascript;charset=utf-8,"+encodeURIComponent("\n importScripts('"+i+"');")+"\n ":i}},e.monacoFactory=i;var p=function(e){function o(t){var o=e.call(this,t)||this;return o.disposes=[],o.wrapperRef=o.wrapperRef.bind(o),o.currentValue=t.value,o}return s.__extends(o,e),o.prototype.componentWillReceiveProps=function(t){this.props.options.readOnly!==t.options.readOnly&&this.editor&&this.editor.updateOptions&&this.editor.updateOptions(t.options)},o.prototype.componentDidUpdate=function(){if(this.props.value!==this.currentValue&&this.editor){var t=String(this.props.value);if("json"===this.props.language)try{t=JSON.stringify(JSON.parse(t),null,4)}catch(e){}this.preventTriggerChangeEvent=!0,this.editor.setValue&&this.editor.setValue(t),this.preventTriggerChangeEvent=!1}},o.prototype.componentWillUnmount=function(){if(this.editor){var t=this.props.context||window,e=t.monaco||window.monaco,o=this.props.editorWillUnmount;o&&o(this.editor,e)}this.disposes.forEach(function(t){var e=t.dispose;return e()}),this.disposes=[]},o.prototype.wrapperRef=function(t){if(this.container=t,t)this.loadMonaco();else try{this.disposes.forEach(function(t){var e=t.dispose;return e()}),this.disposes=[],this.editor&&(this.editor.getModel().dispose(),this.editor.dispose()),this.editor=null}catch(e){}},o.prototype.loadMonaco=function(){var e=this;t(["b961301"],function(t){e.initMonaco(t)})},o.prototype.initMonaco=function(t){var e=null!==this.props.value?this.props.value:this.props.defaultValue,o=this.props,n=o.language,r=o.editorTheme,a=o.options,p=o.editorFactory,d=this.container;if(d){if(this.editorWillMount(t),"json"===this.props.language)try{e=JSON.stringify("string"==typeof e?JSON.parse(e):e,null,4)}catch(u){}var l=p||i;this.editor=l(d,t,s.__assign(s.__assign({},a),{automaticLayout:!0,value:e,language:n,editorTheme:r,theme:r})),t.languages.json.jsonDefaults.setDiagnosticsOptions({enableSchemaRequest:!0,validate:!0,allowComments:!0}),this.editorDidMount(this.editor,t)}},o.prototype.editorWillMount=function(t){var e=this.props.editorWillMount;e&&e(t)},o.prototype.editorDidMount=function(t,e){var o=this,i=this.props,s=i.editorDidMount,n=i.onChange,r=i.onFocus,a=i.onBlur;s&&s(t,e),t.onDidChangeModelContent&&this.disposes.push(t.onDidChangeModelContent(function(e){var i=t.getValue();o.currentValue=i,!o.preventTriggerChangeEvent&&n&&n(i,e)})),r&&t.onDidFocusEditorWidget&&this.disposes.push(t.onDidFocusEditorWidget(r)),a&&t.onDidBlurEditorWidget&&this.disposes.push(t.onDidBlurEditorWidget(a))},o.prototype.render=function(){var t=this.props,e=t.className,o=t.classPrefix,i=t.width,s=t.height,a=this.props.style||{};return a.width=i,a.height=s,n.default.createElement("div",{className:r.default(o+"MonacoEditor",e),style:a,ref:this.wrapperRef})},o.defaultProps={language:"javascript",editorTheme:"vs",width:"100%",height:"100%",options:{}},o}(n.default.Component);e.Editor=p,e.default=a.themeable(p)}); +amis.define("997c87d",function(t,e){"use strict";function o(t){return t}function i(t,e,o){return e.editor.create(t,s.__assign({autoIndent:!0,formatOnType:!0,formatOnPaste:!0,selectOnLineNumbers:!0,scrollBeyondLastLine:!1,folding:!0,minimap:{enabled:!1}},o))}Object.defineProperty(e,"__esModule",{value:!0}),e.Editor=e.monacoFactory=void 0;var s=t("node_modules/tslib/tslib"),n=s.__importDefault(t("node_modules/react/index")),r=s.__importDefault(t("node_modules/classnames/index")),a=t("256b65d");window.MonacoEnvironment={getWorkerUrl:function(t,e){var i="/pkg/editor.worker.js";return"json"===e?i="/pkg/json.worker.js":"css"===e?i="/pkg/css.worker.js":"html"===e?i="/pkg/html.worker.js":("typescript"===e||"javascript"===e)&&(i="/pkg/ts.worker.js"),i=o(i),/^https?/.test(i)?"data:text/javascript;charset=utf-8,"+encodeURIComponent("\n importScripts('"+i+"');")+"\n ":i}},e.monacoFactory=i;var p=function(e){function o(t){var o=e.call(this,t)||this;return o.disposes=[],o.wrapperRef=o.wrapperRef.bind(o),o.currentValue=t.value,o}return s.__extends(o,e),o.prototype.componentWillReceiveProps=function(t){this.props.options.readOnly!==t.options.readOnly&&this.editor&&this.editor.updateOptions&&this.editor.updateOptions(t.options)},o.prototype.componentDidUpdate=function(){if(this.props.value!==this.currentValue&&this.editor){var t=String(this.props.value);if("json"===this.props.language)try{t=JSON.stringify(JSON.parse(t),null,4)}catch(e){}this.preventTriggerChangeEvent=!0,this.editor.setValue&&this.editor.setValue(t),this.preventTriggerChangeEvent=!1}},o.prototype.componentWillUnmount=function(){if(this.editor){var t=this.props.context||window,e=t.monaco||window.monaco,o=this.props.editorWillUnmount;o&&o(this.editor,e)}this.disposes.forEach(function(t){var e=t.dispose;return e()}),this.disposes=[]},o.prototype.wrapperRef=function(t){if(this.container=t,t)this.loadMonaco();else try{this.disposes.forEach(function(t){var e=t.dispose;return e()}),this.disposes=[],this.editor&&(this.editor.getModel().dispose(),this.editor.dispose()),this.editor=null}catch(e){}},o.prototype.loadMonaco=function(){var e=this;t(["b961301"],function(t){e.initMonaco(t)})},o.prototype.initMonaco=function(t){var e,o=null!==this.props.value?this.props.value:this.props.defaultValue,n=this.props,r=n.language,a=n.editorTheme,p=n.options,d=n.editorFactory,u=this.container;if(u){if(this.editorWillMount(t),"json"===this.props.language)try{o=JSON.stringify("string"==typeof o?JSON.parse(o):o,null,4)}catch(l){}var h=d||i;this.editor=h(u,t,s.__assign(s.__assign({},p),{automaticLayout:!0,value:o,language:r,editorTheme:a,theme:a})),null===(e=t.languages.json)||void 0===e?void 0:e.jsonDefaults.setDiagnosticsOptions({enableSchemaRequest:!0,validate:!0,allowComments:!0}),this.editorDidMount(this.editor,t)}},o.prototype.editorWillMount=function(t){var e=this.props.editorWillMount;e&&e(t)},o.prototype.editorDidMount=function(t,e){var o=this,i=this.props,s=i.editorDidMount,n=i.onChange,r=i.onFocus,a=i.onBlur;s&&s(t,e),t.onDidChangeModelContent&&this.disposes.push(t.onDidChangeModelContent(function(e){var i=t.getValue();o.currentValue=i,!o.preventTriggerChangeEvent&&n&&n(i,e)})),r&&t.onDidFocusEditorWidget&&this.disposes.push(t.onDidFocusEditorWidget(r)),a&&t.onDidBlurEditorWidget&&this.disposes.push(t.onDidBlurEditorWidget(a))},o.prototype.render=function(){var t=this.props,e=t.className,o=t.classPrefix,i=t.width,s=t.height,a=this.props.style||{};return a.width=i,a.height=s,n.default.createElement("div",{className:r.default(o+"MonacoEditor",e),style:a,ref:this.wrapperRef})},o.defaultProps={language:"javascript",editorTheme:"vs",width:"100%",height:"100%",options:{}},o}(n.default.Component);e.Editor=p,e.default=a.themeable(p)}); ;/*!src/components/LazyComponent.tsx*/ amis.define("4783ce8",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("node_modules/tslib/tslib"),n=i.__importDefault(e("node_modules/react/index")),l=i.__importDefault(e("node_modules/react-visibility-sensor/visibility-sensor")),a=i.__importDefault(e("acad559")),o=function(e){function t(t){var i=e.call(this,t)||this;return i.mounted=!1,i.handleVisibleChange=i.handleVisibleChange.bind(i),i.state={visible:!1,component:t.component},i}return i.__extends(t,e),t.prototype.componentWillMount=function(){this.mounted=!0},t.prototype.componentWillUnmount=function(){this.mounted=!1},t.prototype.handleVisibleChange=function(e){var t=this;this.setState({visible:e}),e&&!this.state.component&&this.props.getComponent&&this.props.getComponent().then(function(e){return t.mounted&&"function"==typeof e&&t.setState({component:e})}).catch(function(e){return t.mounted&&t.setState({component:function(){return n.default.createElement("div",{className:"alert alert-danger"},String(e))}})})},t.prototype.render=function(){var e=this.props,t=e.placeholder,a=e.unMountOnHidden,o=e.childProps,s=e.visiblilityProps,r=e.partialVisibility,d=e.children,u=i.__rest(e,["placeholder","unMountOnHidden","childProps","visiblilityProps","partialVisibility","children"]),c=this.state,p=c.visible,m=c.component;return a?n.default.createElement(l.default,i.__assign({},s,{partialVisibility:r,onChange:this.handleVisibleChange}),n.default.createElement("div",{className:"visibility-sensor"},m&&p?n.default.createElement(m,i.__assign({},u,o)):d&&p?d:t)):p?m?n.default.createElement(m,i.__assign({},u,o)):d?d:n.default.createElement("div",null,t):n.default.createElement(l.default,i.__assign({},s,{partialVisibility:r,onChange:this.handleVisibleChange}),n.default.createElement("div",{className:"visibility-sensor"},t))},t.defaultProps={placeholder:n.default.createElement(a.default,null),unMountOnHidden:!1,partialVisibility:!0},t}(n.default.Component);t.default=o}); ;/*!src/components/Radios.tsx*/ @@ -974,7 +980,7 @@ amis.define("6c4a05a",function(e,t){"use strict";Object.defineProperty(t,"__esMo ;/*!src/renderers/Form/index.tsx*/ amis.define("635e59b",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FormRenderer=void 0;var o=e("node_modules/tslib/tslib"),n=o.__importDefault(e("node_modules/react/index")),i=e("0f9ebdf"),r=e("956950c"),a=e("6a2dbb7"),s=o.__importDefault(e("node_modules/classnames/index")),l=o.__importDefault(e("01e2bb4")),d=e("9a80175"),c=o.__importDefault(e("node_modules/lodash/debounce")),p=o.__importDefault(e("node_modules/lodash/flatten")),u=o.__importDefault(e("node_modules/lodash/find")),h=e("919cbd9"),f=o.__importDefault(e("node_modules/qs/lib/index")),m=e("f2e345e"),v=e("1caead1"),g=o.__importDefault(e("acad559")),y=e("1953fc1"),b=e("node_modules/mobx-state-tree/dist/mobx-state-tree"),C=e("567b83c"),_=e("398dbab"),A=function(e){function t(t){var o=e.call(this,t)||this;return o.hooks={},o.shouldLoadInitApi=!1,o.lazyHandleChange=c.default(o.handleChange.bind(o),250,{trailing:!0,leading:!1}),o.componentCache=new _.SimpleMap,o.onInit=o.onInit.bind(o),o.handleAction=o.handleAction.bind(o),o.handleDialogConfirm=o.handleDialogConfirm.bind(o),o.handleDialogClose=o.handleDialogClose.bind(o),o.handleDrawerConfirm=o.handleDrawerConfirm.bind(o),o.handleDrawerClose=o.handleDrawerClose.bind(o),o.handleFormSubmit=o.handleFormSubmit.bind(o),o.validate=o.validate.bind(o),o.submit=o.submit.bind(o),o.addHook=o.addHook.bind(o),o.removeHook=o.removeHook.bind(o),o.handleChange=o.handleChange.bind(o),o.renderFormItems=o.renderFormItems.bind(o),o.reload=o.reload.bind(o),o.silentReload=o.silentReload.bind(o),o.initInterval=o.initInterval.bind(o),o}return o.__extends(t,e),t.prototype.componentWillMount=function(){var e=this.props,t=e.store,o=e.canAccessSuperData,n=e.persistData;if(t.setCanAccessSuperData(o!==!1),n&&t.getPersistData(),t&&t.parentStore&&"ComboStore"===t.parentStore.storeType){var i=t.parentStore;i.addForm(t),i.forms.forEach(function(e){return e.items.forEach(function(e){return e.unique&&e.syncOptions()})})}},t.prototype.componentDidMount=function(){var e=this,t=this.props,n=t.initApi,i=t.initFetch,r=t.initFetchOn,a=t.initAsyncApi,s=t.initFinishedField,l=t.initCheckInterval,c=t.store,p=t.messages,u=p.fetchSuccess,h=p.fetchFailed,f=t.onValidate;if(this.mounted=!0,f){var m=d.promisify(f);this.disposeOnValidate=this.addHook(function(){return o.__awaiter(e,void 0,void 0,function(){var e;return o.__generator(this,function(t){switch(t.label){case 0:return[4,m(c.data,c)];case 1:return e=t.sent(),e&&d.isObject(e)&&Object.keys(e).forEach(function(t){var o=e[t],n=c.getItemByName(t);n&&(o?(o=Array.isArray(o)?o:[o],n.addError(o)):n.clearError())}),[2]}})})})}v.isEffectiveApi(n,c.data,i,r)?c.fetchInitData(n,c.data,{successMessage:u,errorMessage:h,onSuccess:function(){return v.isEffectiveApi(a,c.data)&&!c.data[s||"finished"]?d.until(function(){return c.checkRemote(a,c.data)},function(e){return e&&e[s||"finished"]},function(t){return e.asyncCancel=t},l):void 0}}).then(this.initInterval).then(this.onInit):setTimeout(this.onInit.bind(this),4)},t.prototype.componentDidUpdate=function(e){var t=this.props,o=t.store;if(v.isApiOutdated(e.initApi,t.initApi,e.data,t.data)){var n=t.fetchSuccess,i=t.fetchFailed;o.fetchData(t.initApi,o.data,{successMessage:n,errorMessage:i}).then(this.initInterval)}},t.prototype.componentWillUnmount=function(){this.mounted=!1,clearTimeout(this.timer),this.lazyHandleChange.cancel(),this.asyncCancel&&this.asyncCancel(),this.disposeOnValidate&&this.disposeOnValidate(),this.componentCache.dispose();var e=this.props.store;if(e&&e.parentStore&&"ComboStore"===e.parentStore.storeType){var t=e.parentStore;b.isAlive(t)&&t.removeForm(e)}},t.prototype.onInit=function(){return o.__awaiter(this,void 0,void 0,function(){var e,t,n,i,r,a,s;return o.__generator(this,function(l){switch(l.label){case 0:return e=this.props,t=e.onInit,n=e.store,i=e.submitOnInit,b.isAlive(n)?(r=d.cloneObject(n.data),a=n.initedAt,n.setInited(!0),s=this.hooks.init||[],[4,Promise.all(s.map(function(e){return e(r)}))]):[2];case 1:return l.sent(),b.isAlive(n)?(n.initedAt!==a&&(r=o.__assign(o.__assign({},r),n.data)),t&&t(r,this.props),i&&this.handleAction(void 0,{type:"submit"},n.data),[2]):[2]}})})},t.prototype.reload=function(e,t,o,n){var i,r=this;if(t)return this.receive(t);var a=this.props,s=a.store,l=a.initApi,c=a.initAsyncApi,p=a.initFinishedField,u=a.messages,h=u.fetchSuccess,f=u.fetchFailed;v.isEffectiveApi(c,s.data)&&s.updateData((i={},i[p||"finished"]=!1,i)),v.isEffectiveApi(l,s.data)?s.fetchInitData(l,s.data,{successMessage:h,errorMessage:f,silent:n,onSuccess:function(){return v.isEffectiveApi(c,s.data)&&!s.data[p||"finished"]?d.until(function(){return s.checkRemote(c,s.data)},function(e){return e&&e[p||"finished"]},function(e){return r.asyncCancel=e}):void 0}}).then(this.initInterval).then(function(){return s.reset(void 0,!1)}):s.reset(void 0,!1)},t.prototype.receive=function(e){var t=this.props.store;t.updateData(e),this.reload()},t.prototype.silentReload=function(e,t){this.reload(e,t,void 0,!0)},t.prototype.initInterval=function(e){var t=this.props,o=t.interval,n=t.silentPolling,i=t.stopAutoRefreshWhen,r=t.data;return clearTimeout(this.timer),o&&this.mounted&&(!i||!a.evalExpression(i,r))&&(this.timer=setTimeout(n?this.silentReload:this.reload,Math.max(o,3e3))),e},t.prototype.isValidated=function(){return this.props.store.validated},t.prototype.validate=function(e){var t=this.props.store;return this.flush(),t.validate(this.hooks.validate||[],e)},t.prototype.clearErrors=function(){var e=this.props.store;return e.clearErrors()},t.prototype.getValues=function(){var e=this.props.store;return this.flush(),e.data},t.prototype.setValues=function(e){var t=this.props.store;this.flush(),t.setValues(e)},t.prototype.submit=function(e){var t=this.props,o=t.store,n=t.messages,i=t.translate;return this.flush(),o.submit(e,this.hooks.validate||[],i(n&&n.validateFailed))},t.prototype.flush=function(){var e=this.hooks.flush||[];e.forEach(function(e){return e()}),this.lazyHandleChange.flush()},t.prototype.reset=function(){var e=this.props,t=e.store,o=e.onReset;t.reset(o)},t.prototype.addHook=function(e,t){var o=this;return void 0===t&&(t="validate"),this.hooks[t]=this.hooks[t]||[],this.hooks[t].push("flush"===t?e:d.promisify(e)),function(){o.removeHook(e,t),e=d.noop}},t.prototype.removeHook=function(e,t){void 0===t&&(t="validate");var o=this.hooks[t];if(o)for(var n=0,i=o.length;i>n;n++){var r=o[n];(r===e||r.raw===e)&&(o.splice(n,1),i--,n--)}},t.prototype.handleChange=function(e,t,o){var n=this.props,i=n.onChange,r=n.store,a=n.submitOnChange;i&&i(r.data,d.difference(r.data,r.pristine),this.props),(o||a)&&this.handleAction(void 0,{type:"submit"},r.data)},t.prototype.handleFormSubmit=function(e){return e.preventDefault(),this.handleAction(e,{type:"submit"},this.props.store.data)},t.prototype.handleAction=function(e,t,n,i,r){var s=this;void 0===i&&(i=!1);var l=this.props,c=l.store,p=l.onSubmit,u=l.api,h=l.asyncApi,f=l.finishedField,m=l.checkInterval,g=l.messages,y=g.saveSuccess,b=g.saveFailed,C=l.resetAfterSubmit,_=l.onAction,A=l.onSaved,D=l.onReset,F=l.onFinished,w=l.onFailed,k=l.redirect,S=l.reload,T=l.target,x=l.env,I=l.onChange,O=l.clearPersistDataAfterSubmit,E=l.trimValues,M=l.translate;if(this.flush(),E&&c.trimValues(),n===this.props.data&&(n=c.data),Array.isArray(t.required)&&t.required.length)return c.validateFields(t.required).then(function(a){a?s.handleAction(e,o.__assign(o.__assign({},t),{required:void 0}),n,i,r):x.notify("error",M("依赖的部分字段没有通过验证,请注意填写!"))});if("submit"===t.type||"submit"===t.actionType||"confirm"===t.actionType)return c.setCurrentAction(t),this.submit(function(e){var i;if(p&&p(e,t)===!1)return Promise.resolve(!1);if(T)s.submitToTarget(T,e);else if("reload"===t.actionType)t.target&&s.reloadTarget(t.target,e);else if("dialog"===t.actionType)c.openDialog(n);else if("drawer"===t.actionType)c.openDrawer(n);else if(v.isEffectiveApi(t.api||u,e)){var r=t.asyncApi||h;return v.isEffectiveApi(r,c.data)&&c.updateData((i={},i[f||"finished"]=!1,i)),c.saveRemote(t.api||u,e,{successMessage:y,errorMessage:b,onSuccess:function(){return v.isEffectiveApi(r,c.data)&&!c.data[f||"finished"]?d.until(function(){return c.checkRemote(r,c.data)},function(e){return e&&e[f||"finished"]},function(e){return s.asyncCancel=e},m):void 0}}).then(function(n){return o.__awaiter(s,void 0,void 0,function(){var i;return o.__generator(this,function(o){switch(o.label){case 0:return A&&A(e,n),t.feedback&&d.isVisible(t.feedback,c.data)?[4,this.openFeedback(t.feedback,c.data)]:[3,2];case 1:if(i=o.sent(),t.feedback.skipRestOnCancel&&!i)throw new d.SkipOperation;o.label=2;case 2:return[2]}})})})}return Promise.resolve(null)}).then(function(e){if(e===!1)return c.data;if(F&&F(e,t)===!1)return e;if(C&&c.reset(D),O&&c.clearPersistData(),t.redirect||k){var o=a.filter(t.redirect||k,c.data);o&&x.jumpTo(o,t)}else(t.reload||S)&&s.reloadTarget(t.reload||S,c.data);return t.close&&s.closeTarget(t.close),e}).catch(function(e){if(!(e instanceof d.SkipOperation)&&(w&&w(e,c.errors),i))throw e});if("reset"===t.type)c.setCurrentAction(t),c.reset(D);else if("dialog"===t.actionType)c.setCurrentAction(t),c.openDialog(n);else if("drawer"===t.actionType)c.setCurrentAction(t),c.openDrawer(n);else{if("ajax"===t.actionType)return c.setCurrentAction(t),v.isEffectiveApi(t.api)?c.saveRemote(t.api,n,{successMessage:M(t.messages&&t.messages.success||y),errorMessage:M(t.messages&&t.messages.failed||b)}).then(function(e){return o.__awaiter(s,void 0,void 0,function(){var n;return o.__generator(this,function(o){switch(o.label){case 0:return e&&I&&I(c.data,d.difference(c.data,c.pristine),this.props),c.validated?[4,this.validate(!0)]:[3,2];case 1:o.sent(),o.label=2;case 2:return t.feedback&&d.isVisible(t.feedback,c.data)?[4,this.openFeedback(t.feedback,c.data)]:[3,4];case 3:o.sent(),o.label=4;case 4:return n=t.redirect&&a.filter(t.redirect,c.data),n&&x.jumpTo(n,t),t.reload&&this.reloadTarget(t.reload,c.data),t.close&&this.closeTarget(t.close),[2]}})})}).catch(function(e){if(w&&w(e,c.errors),i)throw e}):x.alert(M("当 actionType 为 ajax 时,请设置 api 属性"));if("reload"===t.actionType)c.setCurrentAction(t),t.target&&this.reloadTarget(t.target,n);else if(_)return _(e,t,n,i,r||this.context)}},t.prototype.handleDialogConfirm=function(e,t,o,n){var i=this.props,r=i.store,a=i.onChange;(t.mergeData||r.action.mergeData)&&1===e.length&&e[0]&&"form"===n[0].props.type&&(r.updateData(e[0]),a&&a(r.data,d.difference(r.data,r.pristine),this.props)),r.closeDialog(!0)},t.prototype.handleDialogClose=function(){var e=this.props.store;e.closeDialog(!1)},t.prototype.handleDrawerConfirm=function(e,t,o,n){var i=this.props,r=i.store,a=i.onChange;(t.mergeData||r.action.mergeData)&&1===e.length&&e[0]&&"form"===n[0].props.type&&(r.updateData(e[0]),a&&a(r.data,d.difference(r.data,r.pristine),this.props)),r.closeDrawer(!0)},t.prototype.handleDrawerClose=function(){var e=this.props.store;e.closeDrawer(!1)},t.prototype.submitToTarget=function(){},t.prototype.reloadTarget=function(){},t.prototype.closeTarget=function(){},t.prototype.openFeedback=function(e,t){var o=this;return new Promise(function(n){var i=o.props.store;i.setCurrentAction({type:"button",actionType:"dialog",dialog:e}),i.openDialog(t,void 0,function(e){n(e)})})},t.prototype.buildActions=function(){var e=this.props,t=e.actions,o=e.submitText,n=e.controls,i=e.translate;return"undefined"!=typeof t||!o||Array.isArray(n)&&n.some(function(e){return!!~["submit","button","reset","button-group"].indexOf(e.type)})?t:[{type:"submit",label:i(o),primary:!0}]},t.prototype.renderFormItems=function(e,t,o){return void 0===t&&(t=""),void 0===o&&(o={}),this.renderControls(e.controls,t,o)},t.prototype.renderControls=function(e,t,i){var r=this;if(void 0===i&&(i={}),e=e||[],Array.isArray(e)||(e=[e]),"row"===this.props.mode){var a=this.props.classPrefix;return e=p.default(e).filter(function(e){if(e.hidden||e.visible===!1)return!1;var t=l.default(e,r.props.store.data);return t.hidden||t.visible===!1?!1:!0}),e.length?n.default.createElement("div",{className:a+"Form-row"},e.map(function(e,t){return~["hidden","formula"].indexOf(e.type)||"inline"===e.mode?r.renderControl(e,t,i):n.default.createElement("div",{key:t,className:s.default(a+"Form-col",e.columnClassName)},r.renderControl(e,"",o.__assign(o.__assign({},i),{mode:"row"})))})):null}return e.map(function(e,o){return r.renderControl(e,o,i,t)})},t.prototype.renderControl=function(e,t,n,i){if(void 0===t&&(t=""),void 0===n&&(n={}),void 0===i&&(i=""),!e)return null;"string"==typeof e&&(e={type:"tpl",tpl:e});var r=o.__assign(o.__assign({},this.props),n),a=this.props.store,s=r.render,d=r.mode,c=r.horizontal,p=r.store,u=r.disabled,h=r.controlWidth,f=r.resolveDefinitions,m=r.lazyChange,v=r.formLazyChange,g={formStore:a,data:p.data,key:(e.name||"")+"-"+e.type+"-"+t,formInited:a.inited,formMode:d,formHorizontal:c,controlWidth:h,disabled:u||e.disabled||a.loading,btnDisabled:a.loading||a.validating,onAction:this.handleAction,onChange:v===!1?this.handleChange:this.lazyHandleChange,addHook:this.addHook,removeHook:this.removeHook,renderFormItems:this.renderFormItems,formPristine:a.pristine},y="control"===e.type?e:{type:"control",control:e};if(y.control){var b=y.control;if(b.$ref?(y.control=b=o.__assign(o.__assign(o.__assign({},f(b.$ref)),b),l.default(b,p.data)),delete b.$ref):y.control=b=o.__assign(o.__assign({},b),l.default(b,p.data)),b.component&&(b.formItemConfig||void 0!==b.label&&b.name)){var _=this.componentCache.get(b.component);if(_)b.component=_;else{var A=C.asFormItem(o.__assign({strictMode:!1},b.formItemConfig))(b.component);this.componentCache.set(b.component,A),b.component=A}}b.hiddenOn&&(y.hiddenOn=b.hiddenOn),b.visibleOn&&(y.visibleOn=b.visibleOn),m===!1&&(b.changeImmediately=!0)}return s(""+(i?i+"/":"")+t,y,g)},t.prototype.renderBody=function(){var e=this.props,t=e.tabs,i=e.fieldSet,r=e.controls,a=e.mode,s=e.className,l=e.classnames,d=e.debug,c=e.$path,p=e.store,u=e.render,h=this.props.wrapperComponent||(/(?:\/|^)form\//.test(c)?"div":"form");return n.default.createElement(h,{className:l("Form","Form--"+(a||"normal"),s),onSubmit:this.handleFormSubmit,noValidate:!0},d?n.default.createElement("pre",null,n.default.createElement("code",null,JSON.stringify(p.data,null,2))):null,n.default.createElement(g.default,{show:p.loading,overlay:!0}),this.renderFormItems({tabs:t,fieldSet:i,controls:r}),u("modal",o.__assign(o.__assign({},p.action&&p.action.dialog),{type:"dialog"}),{key:"dialog",data:p.dialogData,onConfirm:this.handleDialogConfirm,onClose:this.handleDialogClose,show:p.dialogOpen}),u("modal",o.__assign(o.__assign({},p.action&&p.action.drawer),{type:"drawer"}),{key:"drawer",data:p.drawerData,onConfirm:this.handleDrawerConfirm,onClose:this.handleDrawerClose,show:p.drawerOpen}))},t.prototype.render=function(){var e=this.props,t=e.wrapWithPanel,o=e.render,i=e.title,r=e.store,a=e.panelClassName,s=e.headerClassName,l=e.footerClassName,d=e.actionsClassName,c=e.bodyClassName,p=e.classnames,u=e.affixFooter,h=e.lazyLoad,f=e.translate,m=this.renderBody();return t&&(m=o("body",{type:"panel",title:f(i)},{className:p(a,"Panel--form"),children:m,actions:this.buildActions(),onAction:this.handleAction,disabled:r.loading,btnDisabled:r.loading||r.validating,headerClassName:s,footerClassName:l,actionsClassName:d,bodyClassName:c,affixFooter:u})),h&&(m=n.default.createElement(y.LazyComponent,null,m)),m},t.defaultProps={title:"表单",submitText:"提交",initFetch:!0,wrapWithPanel:!0,mode:"normal",collapsable:!1,controlWidth:"full",horizontal:{left:2,right:10,offset:2},panelClassName:"Panel--default",messages:{fetchFailed:"初始化失败",saveSuccess:"保存成功",saveFailed:"保存失败"},wrapperComponent:"",finishedField:"finished",initFinishedField:"finished"},t.propsList=["title","header","controls","tabs","fieldSet","submitText","initFetch","wrapWithPanel","mode","collapsable","horizontal","panelClassName","messages","wrapperComponent","resetAfterSubmit","submitOnInit","submitOnChange","onInit","onReset","onSubmit","onChange","onFailed","onFinished","onSaved","canAccessSuperData","lazyChange","formLazyChange","lazyLoad","formInited"],t}(n.default.Component);t.default=A;var D=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o.__extends(t,e),t.prototype.componentWillMount=function(){var t=this.context;t.registerComponent(this),e.prototype.componentWillMount.call(this)},t.prototype.componentDidMount=function(){if(e.prototype.componentDidMount.call(this),this.props.autoFocus){var t=this.context,o=t.getComponents(),n=u.default(o,function(e){return e.focus});n&&setTimeout(function(){return n.focus()},200)}},t.prototype.componentWillUnmount=function(){var t=this.context;t.unRegisterComponent(this),e.prototype.componentWillUnmount.call(this)},t.prototype.doAction=function(e,t,o){return void 0===t&&(t=this.props.store.data),void 0===o&&(o=!1),this.handleAction(void 0,e,t,o)},t.prototype.handleAction=function(t,n,i,r,a){if(void 0===r&&(r=!1),n.target&&"reload"!==n.actionType){var s=this.context;return Promise.all(n.target.split(",").map(function(e){var t=s.getComponentByName(e);return t&&t.doAction&&t.doAction(o.__assign(o.__assign({},n),{target:void 0}),i,r)}))}return e.prototype.handleAction.call(this,t,n,i,r,a)},t.prototype.handleDialogConfirm=function(t,o,n,i){e.prototype.handleDialogConfirm.call(this,t,o,n,i);var r=this.props.store,a=this.context;o.reload?a.reload(o.reload,n):r.action&&r.action.reload&&a.reload(r.action.reload,n)},t.prototype.submitToTarget=function(e,t){var o=this.context;o.send(e,t)},t.prototype.reloadTarget=function(e,t){var o=this.context;o.reload(e,t)},t.prototype.closeTarget=function(e){var t=this.context;t.close(e)},t.prototype.reload=function(t,o,n,i){if(o)return this.receive(o);var r,a=this.context,s="",l=null;t&&~(r=t.indexOf("."))&&(s=t.substring(r+1),t=t.substring(0,r));var d=t?t.indexOf("?"):-1;~d&&(l=m.dataMapping(f.default.parse(t.substring(d+1)),n),t=t.substring(0,d));var c;if(t&&(c=a.getComponentByName(t))&&c.reload)c.reload(s,l,n);else if("*"===t){e.prototype.reload.call(this,t,o,n,i);var p=a.getComponents();p.forEach(function(e){return e.reload&&e.reload("",l,n)})}else e.prototype.reload.call(this,t,o,n,i)},t.prototype.receive=function(t,o){if(o){var n=this.context,i=o.indexOf("."),r="";~i&&(r=o.substring(1+i),o=o.substring(0,i));var a=n.getComponentByName(o);return void(a&&a.receive&&a.receive(t,r))}return e.prototype.receive.call(this,t)},t.contextType=h.ScopedContext,t=o.__decorate([i.Renderer({test:function(e){return/(^|\/)form$/.test(e)&&!/(^|\/)form(?:\/.+)?\/control\/form$/.test(e)},storeType:r.FormStore.name,name:"form",isolateScope:!0})],t)}(A);t.FormRenderer=D}); ;/*!src/renderers/Form/Control.tsx*/ -amis.define("610fd77",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FormControlRenderer=void 0;var o=e("node_modules/tslib/tslib"),i=o.__importDefault(e("node_modules/react/index")),n=o.__importDefault(e("node_modules/lodash/debounce")),r=e("0f9ebdf"),a=e("3fbfd93"),l=e("9a80175"),s=e("919cbd9"),d=e("node_modules/mobx/lib/index"),h=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.lazyValidate=n.default(t.validate.bind(t),250,{trailing:!0,leading:!1}),t.lazyEmitChange=n.default(t.emitChange.bind(t),250,{trailing:!0,leading:!1}),t.state={value:t.value=t.props.control.value},t}return o.__extends(t,e),t.prototype.componentWillMount=function(){var e=this,t=this.props,o=t.formStore,i=t.control,n=i.name,r=i.id,l=i.type,s=i.required,h=i.validations,u=i.validationErrors,p=i.unique,m=i.value,c=i.multiple,v=i.delimiter,f=i.valueField,g=i.labelField,y=i.joinValues,C=i.extractValue;if(this.getValue=this.getValue.bind(this),this.setValue=this.setValue.bind(this),this.handleChange=this.handleChange.bind(this),this.handleBulkChange=this.handleBulkChange.bind(this),this.setPrinstineValue=this.setPrinstineValue.bind(this),this.controlRef=this.controlRef.bind(this),this.handleBlur=this.handleBlur.bind(this),n){var b=this.model=o.registryItem(n,{id:r,type:l,required:s,unique:p,value:m,rules:h,messages:u,multiple:c,delimiter:v,valueField:f,labelField:g,joinValues:y,extractValue:C});if(this.model.unique&&o.parentStore&&o.parentStore.storeType===a.ComboStore.name){var V=o.parentStore;V.bindUniuqueItem(this.model)}this.setState({value:this.value=b.value}),this.reaction=d.reaction(function(){return b.value},function(t){return e.setState({value:e.value=t})})}},t.prototype.componentDidMount=function(){var e=this,t=this.props,o=(t.store,t.formStore),i=t.control,n=(i.name,i.validate),r=t.addHook;this.hook3=function(){e.lazyEmitChange.flush(),e.lazyValidate.flush()},r(this.hook3,"flush");var a=this.model;if(a&&n){var s=l.promisify(n.bind(a));this.hook2=function(){return a.clearError("control:valdiate"),s(o.data,a.value,a.name).then(function(e){("string"==typeof e||Array.isArray(e))&&e&&a.addError(e,"control:valdiate")})},r(this.hook2)}},t.prototype.componentWillReceiveProps=function(e){{var t=this.props;e.formStore}this.model&&l.anyChanged(["id","validations","validationErrors","value","required","unique","multiple","delimiter","valueField","labelField","joinValues","extractValue"],t.control,e.control)&&this.model.config({required:e.control.required,id:e.control.id,unique:e.control.unique,value:e.control.value,rules:e.control.validations,multiple:e.control.multiple,delimiter:e.control.delimiter,valueField:e.control.valueField,labelField:e.control.labelField,joinValues:e.control.joinValues,extractValue:e.control.extractValue,messages:e.control.validationErrors})},t.prototype.componentWillUnmount=function(){this.hook&&this.props.removeHook(this.hook),this.hook2&&this.props.removeHook(this.hook2),this.hook3&&this.props.removeHook(this.hook3,"flush"),this.lazyValidate.cancel(),this.lazyEmitChange.cancel(),this.reaction&&this.reaction(),this.disposeModel()},t.prototype.disposeModel=function(){var e=this.props.formStore;if(this.model&&this.model.unique&&e.parentStore&&e.parentStore.storeType===a.ComboStore.name){var t=e.parentStore;t.unBindUniuqueItem(this.model)}this.model&&e.unRegistryItem(this.model)},t.prototype.controlRef=function(e){for(var t=this.props,o=t.addHook,i=t.removeHook,n=t.formStore;e&&e.getWrappedInstance;)e=e.getWrappedInstance();if(e&&e.validate&&this.model){var r=this.model,a=l.promisify(e.validate.bind(e));this.hook=function(){return r.clearError("component:valdiate"),a(n.data,r.value,r.name).then(function(e){("string"==typeof e||Array.isArray(e))&&e&&r.setError(e,"component:valdiate")})},o(this.hook)}else!e&&this.hook&&(i(this.hook),this.hook=void 0);this.control=e},t.prototype.validate=function(){var e=this,t=this.props.formStore;if(this.model)if(this.model.unique&&t.parentStore&&t.parentStore.storeType===a.ComboStore.name){var o=t.parentStore,i=o.uniques.get(this.model.name);i.items.forEach(function(e){return e.validate()})}else this.model.validate(this.hook),t.getItemsByName(this.model.name).forEach(function(t){return t!==e.model&&t.validate()})},t.prototype.handleChange=function(e,t,o){void 0===t&&(t=this.props.control.submitOnChange),void 0===o&&(o=!1);var i=this.props,n=i.formStore,r=i.onChange,a=i.control,l=a.type,s=a.pipeOut,d=a.changeImmediately,h=i.formInited;if(!this.model||~["service","group","hbox","panel","grid"].indexOf(l))return void(r&&r.apply(void 0,arguments));if(s){var u=this.model.value;e=s(e,u,n.data)}this.setState({value:this.value=e}),o||d||!h?this.emitChange(t):this.lazyEmitChange(t)},t.prototype.emitChange=function(e){void 0===e&&(e=this.props.control.submitOnChange);var t=this.props,o=t.formStore,i=t.onChange,n=t.control,r=n.validateOnChange,a=n.name,l=n.onChange;if(this.model){var s=this.value,d=this.model.value;d!==s&&(this.model.changeValue(s),r===!0||r!==!1&&(o.submited||this.model.validated)?this.lazyValidate():r!==!1||this.model.valid||this.model.reset(),l&&l(s,d,this.model,o),i&&i(s,a,e===!0))}},t.prototype.handleBlur=function(e){var t=this.props,o=t.onBlur,i=t.control.validateOnBlur;i&&this.model&&this.validate(),o&&o(e)},t.prototype.handleBulkChange=function(e,t){void 0===t&&(t=this.props.control.submitOnChange);var o=this.props,i=o.formStore,n=o.onChange,r=o.control,a=r.validateOnChange,s=r.type,d=o.onBulkChange;if(l.isObject(e)){if(!this.model||~["service","group","hbox","panel","grid"].indexOf(s))return void(d&&d(e));var h,u="";Object.keys(e).forEach(function(t){var o=e[t];u=t,h=o}),u&&(i.setValues(e),a!==!1&&(i.submited||this.model.validated)&&this.lazyValidate(),n&&n(h,u,t===!0))}},t.prototype.setPrinstineValue=function(e){if(this.model){var t=this.props,o=t.formStore,i=t.control.pipeOut;if(i){var n=this.model.value;e=i(e,n,o.data)}this.model.changeValue(e,!0)}},t.prototype.getValue=function(){var e=this.props,t=e.formStore,o=e.control,i=this.state.value;return o.pipeIn&&(i=o.pipeIn(i,t.data)),i},t.prototype.setValue=function(e,t){var o,i=this.props.control.name;t&&t!==i?this.handleBulkChange((o={},o[t]=e,o)):this.handleChange(e)},t.prototype.render=function(){var e=this.props,t=e.render,i=e.control,n=(i.pipeIn,i.pipeOut,i.onChange,o.__rest(i,["pipeIn","pipeOut","onChange"])),r=e.formMode,a=e.controlWidth,l=(e.type,e.store),s=e.data,d=e.disabled,h=e.onChange,u=o.__rest(e,["render","control","formMode","controlWidth","type","store","data","disabled","onChange"]),p=this.model,m=this.getValue();return t("",n,o.__assign(o.__assign({},u),{defaultSize:a,disabled:d||n.disabled,formItem:p,formMode:n.mode||r,ref:this.controlRef,defaultValue:n.value,data:l?l.data:s,value:m,formItemValue:m,onChange:"input-group"===n.type?h:this.handleChange,onBlur:this.handleBlur,setValue:this.setValue,getValue:this.getValue,onBulkChange:this.handleBulkChange,prinstine:p?p.prinstine:void 0,setPrinstineValue:this.setPrinstineValue}))},t.propsList=["control"],t.defaultProps={},t}(i.default.PureComponent);t.default=h;var u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o.__extends(t,e),t.prototype.controlRef=function(t){var o=this.control;e.prototype.controlRef.call(this,t);var i=this.context;this.control&&(t?i.registerComponent(this.control):i.unRegisterComponent(o))},t.displayName="Control",t.contextType=s.ScopedContext,t=o.__decorate([r.Renderer({test:function(e){return/(^|\/)form(?:\/.*)?\/control$/i.test(e)&&!/\/control\/control$/i.test(e)},name:"control"})],t)}(h);t.FormControlRenderer=u}); +amis.define("610fd77",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FormControlRenderer=void 0;var o=e("node_modules/tslib/tslib"),i=o.__importDefault(e("node_modules/react/index")),n=o.__importDefault(e("node_modules/lodash/debounce")),r=e("0f9ebdf"),a=e("3fbfd93"),l=e("9a80175"),s=e("919cbd9"),d=e("node_modules/mobx/lib/index"),h=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.lazyValidate=n.default(t.validate.bind(t),250,{trailing:!0,leading:!1}),t.lazyEmitChange=n.default(t.emitChange.bind(t),250,{trailing:!0,leading:!1}),t.state={value:t.value=t.props.control.value},t}return o.__extends(t,e),t.prototype.componentWillMount=function(){var e=this,t=this.props,o=t.formStore,i=t.control,n=i.name,r=i.id,l=i.type,s=i.required,h=i.validations,u=i.validationErrors,p=i.unique,m=i.value,c=i.multiple,v=i.delimiter,f=i.valueField,g=i.labelField,y=i.joinValues,C=i.extractValue;if(this.getValue=this.getValue.bind(this),this.setValue=this.setValue.bind(this),this.handleChange=this.handleChange.bind(this),this.handleBulkChange=this.handleBulkChange.bind(this),this.setPrinstineValue=this.setPrinstineValue.bind(this),this.controlRef=this.controlRef.bind(this),this.handleBlur=this.handleBlur.bind(this),n){var b=this.model=o.registryItem(n,{id:r,type:l,required:s,unique:p,value:m,rules:h,messages:u,multiple:c,delimiter:v,valueField:f,labelField:g,joinValues:y,extractValue:C});if(this.model.unique&&o.parentStore&&o.parentStore.storeType===a.ComboStore.name){var V=o.parentStore;V.bindUniuqueItem(this.model)}this.setState({value:this.value=b.value}),this.reaction=d.reaction(function(){return b.value},function(t){return e.setState({value:e.value=t})})}},t.prototype.componentDidMount=function(){var e=this,t=this.props,o=(t.store,t.formStore),i=t.control,n=(i.name,i.validate),r=t.addHook;this.hook3=function(){e.lazyEmitChange.flush(),e.lazyValidate.flush()},r(this.hook3,"flush");var a=this.model;if(a&&n){var s=l.promisify(n.bind(a));this.hook2=function(){return a.clearError("control:valdiate"),s(o.data,a.value,a.name).then(function(e){("string"==typeof e||Array.isArray(e))&&e&&a.addError(e,"control:valdiate")})},r(this.hook2)}},t.prototype.componentWillReceiveProps=function(e){{var t=this.props;e.formStore}this.model&&l.anyChanged(["id","validations","validationErrors","value","required","unique","multiple","delimiter","valueField","labelField","joinValues","extractValue"],t.control,e.control)&&this.model.config({required:e.control.required,id:e.control.id,unique:e.control.unique,value:e.control.value,rules:e.control.validations,multiple:e.control.multiple,delimiter:e.control.delimiter,valueField:e.control.valueField,labelField:e.control.labelField,joinValues:e.control.joinValues,extractValue:e.control.extractValue,messages:e.control.validationErrors})},t.prototype.componentWillUnmount=function(){this.hook&&this.props.removeHook(this.hook),this.hook2&&this.props.removeHook(this.hook2),this.hook3&&this.props.removeHook(this.hook3,"flush"),this.lazyValidate.cancel(),this.lazyEmitChange.cancel(),this.reaction&&this.reaction(),this.disposeModel()},t.prototype.disposeModel=function(){var e=this.props.formStore;if(this.model&&this.model.unique&&e.parentStore&&e.parentStore.storeType===a.ComboStore.name){var t=e.parentStore;t.unBindUniuqueItem(this.model)}this.model&&e.unRegistryItem(this.model)},t.prototype.controlRef=function(e){for(var t=this.props,o=t.addHook,i=t.removeHook,n=t.formStore;e&&e.getWrappedInstance;)e=e.getWrappedInstance();if(e&&e.validate&&this.model){var r=this.model,a=l.promisify(e.validate.bind(e));this.hook=function(){return r.clearError("component:valdiate"),a(n.data,r.value,r.name).then(function(e){("string"==typeof e||Array.isArray(e))&&e&&r.setError(e,"component:valdiate")})},o(this.hook)}else!e&&this.hook&&(i(this.hook),this.hook=void 0);this.control=e},t.prototype.validate=function(){var e=this,t=this.props.formStore;if(this.model)if(this.model.unique&&t.parentStore&&t.parentStore.storeType===a.ComboStore.name){var o=t.parentStore,i=o.uniques.get(this.model.name);i.items.forEach(function(e){return e.validate()})}else this.model.validate(this.hook),t.getItemsByName(this.model.name).forEach(function(t){return t!==e.model&&t.validate()})},t.prototype.handleChange=function(e,t,o){void 0===t&&(t=this.props.control.submitOnChange),void 0===o&&(o=!1);var i=this.props,n=i.formStore,r=i.onChange,a=i.control,l=a.type,s=a.pipeOut,d=a.changeImmediately,h=i.formInited;if(!this.model||~["service","group","hbox","panel","grid"].indexOf(l))return void(r&&r.apply(void 0,arguments));if(s){var u=this.model.value;e=s(e,u,n.data)}this.setState({value:this.value=e}),o||d||!h?this.emitChange(t):this.lazyEmitChange(t)},t.prototype.emitChange=function(e){void 0===e&&(e=this.props.control.submitOnChange);var t=this.props,o=t.formStore,i=t.onChange,n=t.control,r=n.validateOnChange,a=n.name,l=n.onChange;if(this.model){var s=this.value,d=this.model.value;d!==s&&(this.model.changeValue(s),r===!0||r!==!1&&(o.submited||this.model.validated)?this.lazyValidate():r===!1&&this.model.reset(),l&&l(s,d,this.model,o),i&&i(s,a,e===!0))}},t.prototype.handleBlur=function(e){var t=this.props,o=t.onBlur,i=t.control.validateOnBlur;i&&this.model&&this.validate(),o&&o(e)},t.prototype.handleBulkChange=function(e,t){void 0===t&&(t=this.props.control.submitOnChange);var o=this.props,i=o.formStore,n=o.onChange,r=o.control,a=r.validateOnChange,s=r.type,d=o.onBulkChange;if(l.isObject(e)){if(!this.model||~["service","group","hbox","panel","grid"].indexOf(s))return void(d&&d(e));var h,u="";Object.keys(e).forEach(function(t){var o=e[t];u=t,h=o}),u&&(i.setValues(e),a!==!1&&(i.submited||this.model.validated)&&this.lazyValidate(),n&&n(h,u,t===!0))}},t.prototype.setPrinstineValue=function(e){if(this.model){var t=this.props,o=t.formStore,i=t.control.pipeOut;if(i){var n=this.model.value;e=i(e,n,o.data)}this.model.changeValue(e,!0)}},t.prototype.getValue=function(){var e=this.props,t=e.formStore,o=e.control,i=this.state.value;return o.pipeIn&&(i=o.pipeIn(i,t.data)),i},t.prototype.setValue=function(e,t){var o,i=this.props.control.name;t&&t!==i?this.handleBulkChange((o={},o[t]=e,o)):this.handleChange(e)},t.prototype.render=function(){var e=this.props,t=e.render,i=e.control,n=(i.pipeIn,i.pipeOut,i.onChange,o.__rest(i,["pipeIn","pipeOut","onChange"])),r=e.formMode,a=e.controlWidth,l=(e.type,e.store),s=e.data,d=e.disabled,h=e.onChange,u=o.__rest(e,["render","control","formMode","controlWidth","type","store","data","disabled","onChange"]),p=this.model,m=this.getValue();return t("",n,o.__assign(o.__assign({},u),{defaultSize:a,disabled:d||n.disabled,formItem:p,formMode:n.mode||r,ref:this.controlRef,defaultValue:n.value,data:l?l.data:s,value:m,formItemValue:m,onChange:"input-group"===n.type?h:this.handleChange,onBlur:this.handleBlur,setValue:this.setValue,getValue:this.getValue,onBulkChange:this.handleBulkChange,prinstine:p?p.prinstine:void 0,setPrinstineValue:this.setPrinstineValue}))},t.propsList=["control"],t.defaultProps={},t}(i.default.PureComponent);t.default=h;var u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o.__extends(t,e),t.prototype.controlRef=function(t){var o=this.control;e.prototype.controlRef.call(this,t);var i=this.context;this.control&&(t?i.registerComponent(this.control):i.unRegisterComponent(o))},t.displayName="Control",t.contextType=s.ScopedContext,t=o.__decorate([r.Renderer({test:function(e){return/(^|\/)form(?:\/.*)?\/control$/i.test(e)&&!/\/control\/control$/i.test(e)},name:"control"})],t)}(h);t.FormControlRenderer=u}); ;/*!src/renderers/Form/Hidden.tsx*/ amis.define("dd5dcd2",function(e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.HiddenControlRenderer=void 0;var t=e("node_modules/tslib/tslib"),r=t.__importDefault(e("node_modules/react/index")),d=e("567b83c"),u=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t.__extends(n,e),n.prototype.render=function(){return null},n}(r.default.Component);n.default=u;var o=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t.__extends(n,e),n=t.__decorate([d.FormItem({type:"hidden",wrap:!1,sizeMutable:!1})],n)}(u);n.HiddenControlRenderer=o}); ;/*!src/renderers/Form/Text.tsx*/ @@ -1029,11 +1035,11 @@ amis.define("ee37b69",function(e,l){"use strict";Object.defineProperty(l,"__esMo ;/*!src/renderers/Form/TreeSelect.tsx*/ amis.define("90765dc",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TreeSelectControlRenderer=void 0;var n=e("node_modules/tslib/tslib"),a=n.__importDefault(e("node_modules/react/index")),i=n.__importDefault(e("997df41")),l=n.__importDefault(e("2b3dcdf")),o=e("b86428a"),r=n.__importDefault(e("d233af4")),s=n.__importDefault(e("node_modules/match-sorter/dist/match-sorter.cjs")),u=n.__importDefault(e("node_modules/lodash/debounce")),d=n.__importDefault(e("node_modules/lodash/find")),p=e("1caead1"),c=n.__importDefault(e("acad559")),h=n.__importDefault(e("d14c6a1")),f=e("9a80175"),m=e("node_modules/react-dom/index"),v=function(e){function t(t){var n=e.call(this,t)||this;return n.container=a.default.createRef(),n.input=a.default.createRef(),n.cache={},n.targetRef=function(e){return n.target=e?m.findDOMNode(e):null},n.state={inputValue:"",isOpened:!1,isFocused:!1},n.open=n.open.bind(n),n.close=n.close.bind(n),n.handleChange=n.handleChange.bind(n),n.clearValue=n.clearValue.bind(n),n.handleFocus=n.handleFocus.bind(n),n.handleBlur=n.handleBlur.bind(n),n.handleKeyPress=n.handleKeyPress.bind(n),n.handleInputChange=n.handleInputChange.bind(n),n.handleInputKeyDown=n.handleInputKeyDown.bind(n),n.loadRemote=u.default(n.loadRemote.bind(n),250,{trailing:!0,leading:!1}),n}n.__extends(t,e),t.prototype.componentDidMount=function(){this.loadRemote("")},t.prototype.open=function(e){this.props.disabled||this.setState({isOpened:!0},e)},t.prototype.close=function(){var e=this;this.setState({isOpened:!1,inputValue:this.props.multiple?this.state.inputValue:""},function(){return e.loadRemote(e.state.inputValue)})},t.prototype.handleFocus=function(){this.setState({isFocused:!0})},t.prototype.handleBlur=function(){this.setState({isFocused:!1})},t.prototype.handleKeyPress=function(e){" "===e.key&&(this.handleOutClick(e),e.preventDefault())},t.prototype.validate=function(){var e=this.props,t=e.value,n=e.minLength,a=e.maxLength,i=e.delimiter,l=e.translate,o=Array.isArray(t)?t:(t?String(t):"").split(i||",");return n&&o.lengtha?l("已选择数量超出设定的最大个数{{maxLength}},请取消选择超出的选项。",{maxLength:a}):void 0},t.prototype.removeItem=function(e,t){var n=this.props,a=n.selectedOptions,i=n.joinValues,l=n.extractValue,o=n.delimiter,r=n.valueField,s=n.onChange,u=n.disabled;if(t&&t.stopPropagation(),!u){var d=a.concat();d.splice(e,1);var p=d;i?p=d.map(function(e){return e[r||"value"]}).join(o||","):l&&(p=d.map(function(e){return e[r||"value"]})),s(p)}},t.prototype.handleChange=function(e){var t=this.props,n=t.onChange,a=t.multiple;a||this.close(),a||!this.state.inputValue?n(e):this.setState({inputValue:""},function(){return n(e)})},t.prototype.handleInputChange=function(e){var t=this,n=this.props,a=n.autoComplete,i=n.data;this.setState({inputValue:e},p.isEffectiveApi(a,i)?function(){return t.loadRemote(t.state.inputValue)}:void 0)},t.prototype.handleInputKeyDown=function(e){var t=this.state.inputValue,n=this.props,a=n.multiple,i=n.selectedOptions;"Backspace"===e.key&&!t&&i.length&&a&&this.removeItem(i.length-1)},t.prototype.clearValue=function(){var e=this.props,t=e.onChange,n=e.resetValue;t("undefined"==typeof n?"":n)},t.prototype.filterOptions=function(e,t){var a=this,i=this.props,l=i.labelField,o=i.valueField;return e.map(function(e){if(e=n.__assign({},e),e.visible=!!s.default([e],t,{keys:[l||"label",o||"value"]}).length,!e.visible&&e.children){e.children=a.filterOptions(e.children,t);var i=e.children.filter(function(e){return e.visible}).length;e.visible=!!i}return e.visible&&(e.collapsed=!1),e})},t.prototype.loadRemote=function(e){var t=this,a=this.props,i=a.autoComplete,l=a.env,o=a.data,r=a.setOptions,s=a.setLoading;if(p.isEffectiveApi(i,o)){if(!l||!l.fetcher)throw new Error("fetcher is required");if(this.cache[e]||~e.indexOf("'")){var u=this.cache[e]||[],d=this.mergeOptions(u);return r(d),Promise.resolve({options:d})}return s(!0),l.fetcher(i,n.__assign(n.__assign({},o),{term:e,value:e})).then(function(n){var a=n.data&&n.data.options||n.data||[];t.cache[e]=a;var i=t.mergeOptions(a);return r(i),Promise.resolve({options:i})}).finally(function(){return s(!1)})}},t.prototype.mergeOptions=function(e){var t=this.props.selectedOptions,a=e.concat();return Array.isArray(t)&&t.length&&t.forEach(function(e){d.default(a,function(t){return t.value==e.value})||a.push(n.__assign(n.__assign({},e),{visible:!1}))}),a},t.prototype.reload=function(){var e=this.props.reloadOptions;e&&e()},t.prototype.handleOutClick=function(e){e.defaultPrevented||this.setState({isOpened:!0})},t.prototype.handleResultChange=function(e){var t=this.props,n=t.joinValues,a=t.extractValue,i=t.delimiter,l=t.valueField,o=t.onChange,r=t.multiple,s=Array.isArray(e)?e.concat():[];return r||s.length?((n||a)&&(s=e.map(function(e){return e[l||"value"]})),n&&(s=s.join(i||",")),void o(s)):void o("")},t.prototype.renderItem=function(e){var t=this.props.labelField;return e[t||"label"]},t.prototype.renderOuter=function(){var e=this,t=this.props,n=t.value,o=t.disabled,s=t.joinValues,u=t.extractValue,d=t.delimiter,c=(t.placeholder,t.options),h=t.multiple,f=t.valueField,m=t.initiallyOpen,v=t.unfoldedLevel,g=t.withChildren,y=t.rootLabel,_=t.cascade,b=t.rootValue,C=t.showIcon,O=t.showRadio,V=t.popOverContainer,F=t.onlyChildren,R=t.classPrefix,x=t.optionsPlaceholder,I=t.searchable,P=t.autoComplete,D=t.maxLength,S=t.minLength,w=t.labelField,L=t.translate,E=!p.isEffectiveApi(P)&&I&&this.state.inputValue?this.filterOptions(c,this.state.inputValue):c;return a.default.createElement(i.default,{container:V||function(){return e.container.current},target:function(){return e.target},show:!0},a.default.createElement(l.default,{classPrefix:R,className:R+"TreeSelect-popover",style:{minWidth:this.target?this.target.offsetWidth:void 0},onHide:this.close,overlay:!0},a.default.createElement(r.default,{classPrefix:R,onlyChildren:F,labelField:w,valueField:f,disabled:o,onChange:this.handleChange,joinValues:s,extractValue:u,delimiter:d,placeholder:L(x),options:E,highlightTxt:this.state.inputValue,multiple:h,initiallyOpen:m,unfoldedLevel:v,withChildren:g,rootLabel:L(y),rootValue:b,showIcon:C,showRadio:O,cascade:_,foldedField:"collapsed",hideRoot:!0,value:n||"",maxLength:D,minLength:S})))},t.prototype.render=function(){var e=this.props,t=e.className,n=e.disabled,i=e.inline,l=e.loading,o=e.multiple,r=(e.value,e.clearable),s=(e.classPrefix,e.classnames),u=e.searchable,d=e.autoComplete,f=e.selectedOptions,m=e.placeholder,v=e.translate;return a.default.createElement("div",{ref:this.container,className:s("TreeSelectControl",t)},a.default.createElement(h.default,{disabled:n,ref:this.targetRef,placeholder:v(m||"空"),className:s("TreeSelect",{"TreeSelect--inline":i,"TreeSelect--single":!o,"TreeSelect--multi":o,"TreeSelect--searchable":u||p.isEffectiveApi(d),"is-opened":this.state.isOpened,"is-focused":this.state.isFocused,"is-disabled":n}),result:o?f:f.length?this.renderItem(f[0]):"",onResultClick:this.handleOutClick,value:this.state.inputValue,onChange:this.handleInputChange,onResultChange:this.handleResultChange,itemRender:this.renderItem,onKeyPress:this.handleKeyPress,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyDown:this.handleInputKeyDown,clearable:r,allowInput:u||p.isEffectiveApi(d),inputPlaceholder:""},l?a.default.createElement(c.default,{size:"sm"}):void 0),this.state.isOpened?this.renderOuter():null)};var v,g,y;return t.defaultProps={placeholder:"请选择",optionsPlaceholder:"暂无数据",multiple:!1,clearable:!0,rootLabel:"顶级",rootValue:"",showIcon:!0,joinValues:!0,extractValue:!1,delimiter:",",resetValue:""},n.__decorate([f.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",["function"==typeof(v="undefined"!=typeof a.default&&a.default.MouseEvent)?v:Object]),n.__metadata("design:returntype",void 0)],t.prototype,"handleOutClick",null),n.__decorate([f.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",["function"==typeof(g="undefined"!=typeof Array&&Array)?g:Object]),n.__metadata("design:returntype",void 0)],t.prototype,"handleResultChange",null),n.__decorate([f.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",["function"==typeof(y="undefined"!=typeof o.Option&&o.Option)?y:Object]),n.__metadata("design:returntype",void 0)],t.prototype,"renderItem",null),t}(a.default.Component);t.default=v;var g=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n.__extends(t,e),t=n.__decorate([o.OptionsControl({type:"tree-select"})],t)}(v);t.TreeSelectControlRenderer=g}); ;/*!src/renderers/Form/File.tsx*/ -amis.define("162bd80",function(e,t){"use strict";function a(e){return/(?:\/|^)([^\/]+?)$/.test(e)?decodeURIComponent(RegExp.$1):e}Object.defineProperty(t,"__esModule",{value:!0}),t.FileControlRenderer=t.getNameFromUrl=void 0;var n=e("node_modules/tslib/tslib"),i=n.__importDefault(e("node_modules/react/index")),l=e("567b83c"),r=n.__importDefault(e("node_modules/lodash/find")),o=n.__importDefault(e("node_modules/lodash/isPlainObject")),s=n.__importDefault(e("node_modules/async/mapLimit")),u=n.__importDefault(e("cf6ad73")),d=e("9a80175"),p=e("1caead1"),c=n.__importDefault(e("a67acca")),f=e("b7bbd16"),m=n.__importDefault(e("node_modules/react-dropzone/dist/index")),h=e("f2e345e"),g=function(e){return e.stopPropagation()};t.getNameFromUrl=a;var v=function(e){function t(a){var n=e.call(this,a)||this;n.dropzone=i.default.createRef();var l=a.value,r=(a.multiple,a.joinValues),o=a.delimiter,s=[];return l&&l instanceof Blob?s=[l]:l&&(s=(Array.isArray(l)?l:r?(l.value||l).split(o):[l.value||l]).map(function(e){return t.valueToFile(e,a)}).filter(function(e){return e})),n.state={files:s,uploading:!1},n.sendFile=n.sendFile.bind(n),n.removeFile=n.removeFile.bind(n),n.clearError=n.clearError.bind(n),n.handleDrop=n.handleDrop.bind(n),n.handleDropRejected=n.handleDropRejected.bind(n),n.startUpload=n.startUpload.bind(n),n.stopUpload=n.stopUpload.bind(n),n.retry=n.retry.bind(n),n.toggleUpload=n.toggleUpload.bind(n),n.tick=n.tick.bind(n),n.onChange=n.onChange.bind(n),n.uploadFile=n.uploadFile.bind(n),n.uploadBigFile=n.uploadBigFile.bind(n),n.handleSelect=n.handleSelect.bind(n),n}return n.__extends(t,e),t.valueToFile=function(e,t,i){var l=i&&"string"==typeof e?r.default(i,function(t){return t.value===e}):void 0;return e?e instanceof File?{state:"ready",value:e,name:e.name,url:"",id:d.guid()}:n.__assign({},"string"==typeof e?{state:l&&l.state?l.state:"init",value:e,name:l&&l.name||(/^data:/.test(e)?"base64数据":a(e)),id:d.guid(),url:"string"==typeof t.downloadUrl&&e&&!/^data:/.test(e)?""+t.downloadUrl+e:void 0}:e):void 0},t.prototype.componentWillReceiveProps=function(e){var a=this,i=this.props;if(i.value!==e.value&&this.emitValue!==e.value){var l=e.value,o=(e.multiple,e.joinValues),s=e.delimiter,u=[];l&&(u=(Array.isArray(l)?l:o&&"string"==typeof l?l.split(s):[l]).map(function(i){var l,o=t.valueToFile(i,e,a.state.files);return o&&(l=r.default(a.state.files,function(e){return e.value===o.value}))&&(o=n.__assign(n.__assign(n.__assign({},l),o),{id:o.id||l.id})),o}).filter(function(e){return e})),this.setState({files:u})}},t.prototype.handleDrop=function(e){var t=this;if(e.length){var a=this.props,n=a.maxSize,i=a.multiple,l=a.maxLength,r=a.translate,o=i&&l?l-this.state.files.length:e.length,s=[];[].slice.call(e,0,o).forEach(function(e){n&&e.size>n?(t.props.env.alert(r("您选择的文件 {{filename}} 大小为 {{actualSize}} 超出了最大为 {{maxSize}} 的限制,请重新选择。",{filename:e.name,actualSize:u.default.formatFileSize(e.size),maxSize:u.default.formatFileSize(n)})),e.state="invalid"):e.state="pending",e.id=d.guid(),s.push(e)}),s.length&&this.setState({error:null,files:i?this.state.files.concat(s):s},function(){var e=t.props.autoUpload;e&&t.startUpload()})}},t.prototype.handleDropRejected=function(e,t){if("change"===t.type||"drop"===t.type){var a=this.props,i=a.multiple,l=a.env,r=a.accept,o=a.translate,s=e.map(function(e){return n.__assign(n.__assign({},e),{state:"invalid",id:d.guid(),name:e.name})});this.setState({files:i?this.state.files.concat(s):this.state.files.length?this.state.files:s.slice(0,1)}),l.alert(o("您添加的文件{{files}}不符合类型的`{{accept}}`的设定,请仔细检查。",{files:s.map(function(e){return"「"+e.name+"」"}).join(" "),accept:r}))}},t.prototype.handleSelect=function(){this.dropzone.current&&this.dropzone.current.open()},t.prototype.startUpload=function(e){void 0===e&&(e=!1),this.state.uploading||this.setState({uploading:!0,files:this.state.files.map(function(t){return e&&"error"===t.state&&(t.state="pending",t.progress=0),t})},this.tick)},t.prototype.toggleUpload=function(e){return e.preventDefault(),this.state.uploading?this.stopUpload():this.startUpload()},t.prototype.stopUpload=function(){this.state.uploading&&this.setState({uploading:!1})},t.prototype.retry=function(){this.startUpload(!0)},t.prototype.tick=function(){var e=this;if(!this.current&&this.state.uploading){var t=this.props.translate,a=r.default(this.state.files,function(e){return"pending"===e.state});a?(this.current=a,a.state="uploading",this.setState({files:this.state.files.concat()},function(){return e.sendFile(a,function(t,a,n){var i=e.state.files.concat(),l=i.indexOf(a);if(~l){var r=a;t?(r.state="error",r.error=t):(r=n,r.name=r.name||a.name),i.splice(l,1,r),e.current=null,e.setState({error:t?t:null,files:i},e.tick)}},function(t){var n=e.state.files.concat(),i=n.indexOf(a);~i&&(a.progress=t,e.setState({files:n}))})})):this.setState({uploading:!1},function(){e.onChange(!!e.resolve),e.resolve&&(e.resolve(e.state.files.some(function(e){return"error"===e.state})?t("文件上传失败请重试"):null),e.resolve=void 0)})}},t.prototype.sendFile=function(e,t,a){var i=this.props,l=i.reciever,r=i.fileField,s=i.downloadUrl,u=i.useChunk,p=i.chunkSize,c=i.startChunkApi,f=i.chunkApi,m=i.finishChunkApi,g=i.asBase64,v=i.asBlob,_=i.data,y=i.translate,b=i.multiple,F=i.autoFill,C=i.onBulkChange;if(g){var k=new FileReader;return k.readAsDataURL(e),k.onload=function(){e.state="ready",t(null,e,{value:k.result,name:e.name,url:"",state:"ready",id:e.id})},void(k.onerror=function(e){return t(e.message)})}if(v)return e.state="ready",void setTimeout(function(){return t(null,e,{name:e.name,value:e,url:"",state:"ready",id:e.id})},4);var E="auto"===u&&p&&e.size>p||u===!0?this.uploadBigFile:this.uploadFile;E(e,l,{},{fieldName:r,chunkSize:p,startChunkApi:c,chunkApi:f,finishChunkApi:m,data:_},a).then(function(i){if(i.status||!i.data)throw new Error(i.msg||y("上传失败, 请重试"));a(1);var l=i.data.value||i.data,r=!b&&F&&!d.isEmpty(F)&&h.dataMapping(F,i.data);r&&C(r),t(null,e,n.__assign(n.__assign({},o.default(i.data)?i.data:null),{value:l,url:"string"==typeof s&&l?""+s+l:i.data?i.data.url:null,state:"uploaded",id:e.id}))}).catch(function(a){t(a.message||y("上传失败, 请重试"),e)})},t.prototype.removeFile=function(e,t){var a=this.state.files.concat();a.splice(t,1),this.setState({files:a},this.onChange)},t.prototype.clearError=function(){this.setState({error:null})},t.prototype.onChange=function(e){var t=this.props,a=t.multiple,n=t.onChange,i=t.joinValues,l=t.extractValue,r=t.valueField,o=t.delimiter,s=t.resetValue,u=t.asBlob,d=this.state.files.filter(function(e){return~["uploaded","init","ready"].indexOf(e.state)}),p=a?d:d[0];p?l||u?p=Array.isArray(p)?p.map(function(e){return e[r||"value"]}):p[r||"value"]:i&&(p=Array.isArray(p)?p.map(function(e){return e[r||"value"]}).join(o||","):p[r||"value"]):p="undefined"==typeof s?"":s,n(this.emitValue=p,void 0,e)},t.prototype.uploadFile=function(e,t,a,i,l){void 0===i&&(i={});var r=new FormData,o=p.buildApi(t,d.createObject(i.data,a),{method:"post"});return d.qsstringify(n.__assign(n.__assign({},o.data),a)).split("&").forEach(function(e){var t=e.split("=");r.append(t[0],decodeURIComponent(t[1]))}),r.append(i.fieldName||"file",e),this._send(o,r,{},l)},t.prototype.uploadBigFile=function(e,t,a,i,l){void 0===i&&(i={});var r,o=i.chunkSize||5242880,u=this,c=.2,f=.9,m=this.props.translate;return new Promise(function(t,h){function g(t){l(c);var a=b(e);if(r=a.map(function(){return 0}),!t.data)throw new Error(m("接口返回错误,请仔细检查"));F={key:t.data.key,uploadId:t.data.uploadId,loaded:0,total:a.length},s.default(a,3,y(F,i),function(e,t){e?h(e):_(t,F)})}function v(e,t){r[e-1]=t,l(c+(f-c)*(r.reduce(function(e,t){return e+t},0)/r.length))}function _(r,o){l(f);var s=p.buildApi(i.finishChunkApi,d.createObject(i.data,n.__assign(n.__assign({},a),{uploadId:o.uploadId,key:o.key,filename:e.name,partList:r})),{method:"post",autoAppend:!0});u._send(s).then(t).catch(h)}function y(t,l){return function(r,o){var s=p.buildApi(l.chunkApi,d.createObject(i.data,a),{method:"post"}),c=new FormData,f=r.file.slice(r.start,r.stop+1);return d.qsstringify(n.__assign(n.__assign({},s.data),a)).split("&").forEach(function(e){var t=e.split("=");c.append(t[0],decodeURIComponent(t[1]))}),c.append("key",t.key),c.append("uploadId",t.uploadId),c.append("partNumber",r.partNumber.toString()),c.append("partSize",r.partSize.toString()),c.append(i.fieldName||"file",f,e.name),u._send(s,c,{},function(e){return v(r.partNumber,e)}).then(function(e){t.loaded++,o(null,{partNumber:r.partNumber,eTag:e.data.eTag})}).catch(o)}}function b(e){for(var t=e.size,a=0,n=1,i=[];t>0;){var l=Math.min(t,o);i.push({file:e,partNumber:n,partSize:l,start:a,stop:a+l-1}),t-=l,a+=l,n+=1}return i}var F,C=p.buildApi(i.startChunkApi,d.createObject(i.data,n.__assign(n.__assign({},a),{filename:e.name})),{method:"post",autoAppend:!0});u._send(C).then(g).catch(h)})},t.prototype._send=function(e,t,a,i){var l=this.props.env;if(!l||!l.fetcher)throw new Error("fetcher is required");return l.fetcher(e,t,n.__assign(n.__assign({method:"post"},a),{withCredentials:!0,onUploadProgress:i?function(e){return i(e.loaded/e.total)}:void 0}))},t.prototype.validate=function(){var e=this,t=this.props.translate;return this.state.uploading||this.state.files.some(function(e){return"pending"===e.state})?new Promise(function(t){e.resolve=t,e.startUpload()}):this.state.files.some(function(e){return"error"===e.state})?t("文件上传失败请重试"):void 0},t.prototype.render=function(){var e=this,t=this.props,a=(t.btnLabel,t.accept),l=t.disabled,r=t.maxLength,o=t.multiple,s=t.autoUpload,u=t.description,d=t.hideUploadButton,p=t.className,h=t.classnames,v=t.translate,_=t.render,y=this.state,b=y.files,F=y.uploading,C=(y.error,b.some(function(e){return"pending"==e.state})),k=0,E=0;return this.state.uploading||this.state.files.forEach(function(e){"error"===e.state?E++:"uploaded"===e.state&&k++}),i.default.createElement("div",{className:h("FileControl",p)},i.default.createElement(m.default,{key:"drop-zone",ref:this.dropzone,onDrop:this.handleDrop,onDropRejected:this.handleDropRejected,accept:"*"===a?"":a,multiple:o},function(t){var a=t.getRootProps,s=t.getInputProps,d=t.isDragActive;return i.default.createElement("div",n.__assign({},a({onClick:g}),{className:h("FileControl-dropzone",{disabled:l,"is-empty":!b.length,"is-active":d})}),i.default.createElement("input",n.__assign({},s())),d?i.default.createElement("div",{className:h("FileControl-acceptTip")},v("把文件拖到这,然后松完成添加!")):i.default.createElement(i.default.Fragment,null,o&&(!r||b.lengthn?(t.props.env.alert(r("您选择的文件 {{filename}} 大小为 {{actualSize}} 超出了最大为 {{maxSize}} 的限制,请重新选择。",{filename:e.name,actualSize:u.default.formatFileSize(e.size),maxSize:u.default.formatFileSize(n)})),e.state="invalid"):e.state="pending",e.id=d.guid(),s.push(e)}),s.length&&this.setState({error:null,files:i?this.state.files.concat(s):s},function(){var e=t.props.autoUpload;e&&t.startUpload()})}},t.prototype.handleDropRejected=function(e,t){if("change"===t.type||"drop"===t.type){var a=this.props,i=a.multiple,l=a.env,r=a.accept,o=a.translate,s=e.map(function(e){return n.__assign(n.__assign({},e),{state:"invalid",id:d.guid(),name:e.name})});this.setState({files:i?this.state.files.concat(s):this.state.files.length?this.state.files:s.slice(0,1)}),l.alert(o("您添加的文件{{files}}不符合类型的`{{accept}}`的设定,请仔细检查。",{files:s.map(function(e){return"「"+e.name+"」"}).join(" "),accept:r}))}},t.prototype.handleSelect=function(){this.dropzone.current&&this.dropzone.current.open()},t.prototype.startUpload=function(e){void 0===e&&(e=!1),this.state.uploading||this.setState({uploading:!0,files:this.state.files.map(function(t){return e&&"error"===t.state&&(t.state="pending",t.progress=0),t})},this.tick)},t.prototype.toggleUpload=function(e){return e.preventDefault(),this.state.uploading?this.stopUpload():this.startUpload()},t.prototype.stopUpload=function(){this.state.uploading&&this.setState({uploading:!1})},t.prototype.retry=function(){this.startUpload(!0)},t.prototype.tick=function(){var e=this;if(!this.current&&this.state.uploading){var t=this.props,a=t.translate,n=t.multiple,i=t.autoFill,l=t.onBulkChange,o=r.default(this.state.files,function(e){return"pending"===e.state});o?(this.current=o,o.state="uploading",this.setState({files:this.state.files.concat()},function(){return e.sendFile(o,function(t,a,r){var o=e.state.files.concat(),s=o.indexOf(a);if(~s){var u=a;t?(u.state="error",u.error=t):(u=r,u.name=u.name||a.name),o.splice(s,1,u),e.current=null,e.setState({error:t?t:null,files:o},function(){var t=!n&&i&&!d.isEmpty(i)&&h.dataMapping(i,r||{});t&&l(t),e.tick()})}},function(t){var a=e.state.files.concat(),n=a.indexOf(o);~n&&(o.progress=t,e.setState({files:a}))})})):this.setState({uploading:!1},function(){e.onChange(!!e.resolve),e.resolve&&(e.resolve(e.state.files.some(function(e){return"error"===e.state})?a("文件上传失败请重试"):null),e.resolve=void 0)})}},t.prototype.sendFile=function(e,t,a){var i=this.props,l=i.reciever,r=i.fileField,s=i.downloadUrl,u=i.useChunk,d=i.chunkSize,p=i.startChunkApi,c=i.chunkApi,f=i.finishChunkApi,m=i.asBase64,h=i.asBlob,g=i.data,v=i.translate;if(m){var _=new FileReader;return _.readAsDataURL(e),_.onload=function(){e.state="ready",t(null,e,{value:_.result,name:e.name,url:"",state:"ready",id:e.id})},void(_.onerror=function(e){return t(e.message)})}if(h)return e.state="ready",void setTimeout(function(){return t(null,e,{name:e.name,value:e,url:"",state:"ready",id:e.id})},4);var y="auto"===u&&d&&e.size>d||u===!0?this.uploadBigFile:this.uploadFile;y(e,l,{},{fieldName:r,chunkSize:d,startChunkApi:p,chunkApi:c,finishChunkApi:f,data:g},a).then(function(i){if(i.status||!i.data)throw new Error(i.msg||v("上传失败, 请重试"));a(1);var l=i.data.value||i.data;t(null,e,n.__assign(n.__assign({},o.default(i.data)?i.data:null),{value:l,url:"string"==typeof s&&l?""+s+l:i.data?i.data.url:null,state:"uploaded",id:e.id}))}).catch(function(a){t(a.message||v("上传失败, 请重试"),e)})},t.prototype.removeFile=function(e,t){var a=this.state.files.concat();a.splice(t,1),this.setState({files:a},this.onChange)},t.prototype.clearError=function(){this.setState({error:null})},t.prototype.onChange=function(e){var t=this.props,a=t.multiple,n=t.onChange,i=t.joinValues,l=t.extractValue,r=t.valueField,o=t.delimiter,s=t.resetValue,u=t.asBlob,d=this.state.files.filter(function(e){return~["uploaded","init","ready"].indexOf(e.state)}),p=a?d:d[0];p?l||u?p=Array.isArray(p)?p.map(function(e){return e[r||"value"]}):p[r||"value"]:i&&(p=Array.isArray(p)?p.map(function(e){return e[r||"value"]}).join(o||","):p[r||"value"]):p="undefined"==typeof s?"":s,n(this.emitValue=p,void 0,e)},t.prototype.uploadFile=function(e,t,a,i,l){void 0===i&&(i={});var r=new FormData,o=p.buildApi(t,d.createObject(i.data,a),{method:"post"});return d.qsstringify(n.__assign(n.__assign({},o.data),a)).split("&").forEach(function(e){var t=e.split("=");r.append(t[0],decodeURIComponent(t[1]))}),r.append(i.fieldName||"file",e),this._send(o,r,{},l)},t.prototype.uploadBigFile=function(e,t,a,i,l){void 0===i&&(i={});var r,o=i.chunkSize||5242880,u=this,c=.2,f=.9,m=this.props.translate;return new Promise(function(t,h){function g(t){l(c);var a=b(e);if(r=a.map(function(){return 0}),!t.data)throw new Error(m("接口返回错误,请仔细检查"));F={key:t.data.key,uploadId:t.data.uploadId,loaded:0,total:a.length},s.default(a,3,y(F,i),function(e,t){e?h(e):_(t,F)})}function v(e,t){r[e-1]=t,l(c+(f-c)*(r.reduce(function(e,t){return e+t},0)/r.length))}function _(r,o){l(f);var s=p.buildApi(i.finishChunkApi,d.createObject(i.data,n.__assign(n.__assign({},a),{uploadId:o.uploadId,key:o.key,filename:e.name,partList:r})),{method:"post",autoAppend:!0});u._send(s).then(t).catch(h)}function y(t,l){return function(r,o){var s=p.buildApi(l.chunkApi,d.createObject(i.data,a),{method:"post"}),c=new FormData,f=r.file.slice(r.start,r.stop+1);return d.qsstringify(n.__assign(n.__assign({},s.data),a)).split("&").forEach(function(e){var t=e.split("=");c.append(t[0],decodeURIComponent(t[1]))}),c.append("key",t.key),c.append("uploadId",t.uploadId),c.append("partNumber",r.partNumber.toString()),c.append("partSize",r.partSize.toString()),c.append(i.fieldName||"file",f,e.name),u._send(s,c,{},function(e){return v(r.partNumber,e)}).then(function(e){t.loaded++,o(null,{partNumber:r.partNumber,eTag:e.data.eTag})}).catch(o)}}function b(e){for(var t=e.size,a=0,n=1,i=[];t>0;){var l=Math.min(t,o);i.push({file:e,partNumber:n,partSize:l,start:a,stop:a+l-1}),t-=l,a+=l,n+=1}return i}var F,C=p.buildApi(i.startChunkApi,d.createObject(i.data,n.__assign(n.__assign({},a),{filename:e.name})),{method:"post",autoAppend:!0});u._send(C).then(g).catch(h)})},t.prototype._send=function(e,t,a,i){var l=this.props.env;if(!l||!l.fetcher)throw new Error("fetcher is required");return l.fetcher(e,t,n.__assign(n.__assign({method:"post"},a),{withCredentials:!0,onUploadProgress:i?function(e){return i(e.loaded/e.total)}:void 0}))},t.prototype.validate=function(){var e=this,t=this.props.translate;return this.state.uploading||this.state.files.some(function(e){return"pending"===e.state})?new Promise(function(t){e.resolve=t,e.startUpload()}):this.state.files.some(function(e){return"error"===e.state})?t("文件上传失败请重试"):void 0},t.prototype.render=function(){var e=this,t=this.props,a=(t.btnLabel,t.accept),l=t.disabled,r=t.maxLength,o=t.multiple,s=t.autoUpload,u=t.description,d=t.hideUploadButton,p=t.className,h=t.classnames,v=t.translate,_=t.render,y=this.state,b=y.files,F=y.uploading,C=(y.error,b.some(function(e){return"pending"==e.state})),k=0,E=0;return this.state.uploading||this.state.files.forEach(function(e){"error"===e.state?E++:"uploaded"===e.state&&k++}),i.default.createElement("div",{className:h("FileControl",p)},i.default.createElement(m.default,{key:"drop-zone",ref:this.dropzone,onDrop:this.handleDrop,onDropRejected:this.handleDropRejected,accept:"*"===a?"":a,multiple:o},function(t){var a=t.getRootProps,s=t.getInputProps,d=t.isDragActive;return i.default.createElement("div",n.__assign({},a({onClick:g}),{className:h("FileControl-dropzone",{disabled:l,"is-empty":!b.length,"is-active":d})}),i.default.createElement("input",n.__assign({},s())),d?i.default.createElement("div",{className:h("FileControl-acceptTip")},v("把文件拖到这,然后松完成添加!")):i.default.createElement(i.default.Fragment,null,o&&(!r||b.length1024&&t.length>1;)e/=1024,t.shift();return e.toFixed(2)+t[0]},t.valueToFile=function(e){return e?a.__assign(a.__assign({},"string"==typeof e?{value:e,url:e,id:c.guid()}:e),{state:"init"}):void 0},t.sizeInfo=function(e,t,a){return e?t?a("尺寸({{width}} x {{height}})",{width:e,height:t}):a("宽度{{width}}px",{width:e}):a("高度{{height}}px",{height:t})},t.prototype.componentWillReceiveProps=function(e){var i=this,n=this.props;if(n.value!==e.value&&this.emitValue!==e.value){var o=e.value,l=(e.multiple,e.joinValues),s=e.delimiter,d=[];o&&(d=(Array.isArray(o)?o:l&&"string"==typeof o?o.split(s):[o]).map(function(n){var o,l=t.valueToFile(n,e);return l&&(o=r.default(i.files,function(e){return e.value===l.value}))&&(l=a.__assign(a.__assign(a.__assign({},o),l),{id:o.id||l.id})),l}).filter(function(e){return e})),this.setState({files:this.files=d})}n.crop!==e.crop&&this.setState({crop:this.buildCrop(e)})},t.prototype.componentWillUnmount=function(){this.unmounted=!0},t.prototype.buildCrop=function(e){var t=e.crop,i=this.props.translate;return t&&e.multiple?(e.env&&e.env.alert&&e.env.alert(i("图片多选配置和裁剪配置冲突,目前不能二者都支持!")),null):(t===!0&&(t={}),t&&(t=a.__assign({aspectRatio:void 0,guides:!0,dragMode:"move",viewMode:1,rotatable:!1,scalable:!1},t)),t)},t.prototype.handleDropRejected=function(e,t){if("change"===t.type||"drop"===t.type){var i=this.props,n=(i.multiple,i.env),o=i.accept,l=i.translate,r=e.map(function(e){return a.__assign(a.__assign({},e),{state:"invalid",id:c.guid(),name:e.name})});n.alert(l("您添加的文件{{files}}不符合类型的`{{accept}}`的设定,请仔细检查。",{files:r.map(function(e){return"「"+e.name+"」"}).join(" "),accept:o}))}},t.prototype.startUpload=function(e){void 0===e&&(e=!1),this.state.uploading||this.setState({uploading:!0,locked:!0,files:this.files=this.files.map(function(t){return e&&"error"===t.state&&(t.state="pending",t.progress=0),t})},this.tick)},t.prototype.toggleUpload=function(){return this.state.uploading?this.stopUpload():this.startUpload()},t.prototype.stopUpload=function(){this.state.uploading&&this.setState({uploading:!1})},t.prototype.tick=function(){var e=this;if(!this.current&&this.state.uploading){var t=this.props.env,i=this.props.translate,n=r.default(this.files,function(e){return"pending"===e.state});n?(this.current=n,n.state="uploading",this.setState({files:this.files=this.files.concat()},function(){return e.sendFile(n,function(n,o,l){var r=e.files.concat(),s=r.indexOf(o);if(~s){var d=o;if(n){if(d.state="uploading"!==o.state?o.state:"error",d.error=n,!e.props.multiple&&"invalid"===d.state)return r.splice(s,1),e.current=null,e.setState({files:e.files=r,error:n},e.tick);t.notify("error",n||i("图片上传失败,请重试"))}else d=a.__assign(a.__assign({},l),{preview:o.preview});r.splice(s,1,d),e.current=null,e.setState({files:e.files=r},e.tick)}},function(t){var a=e.files.concat(),i=a.indexOf(n);~i&&(n.progress=t,e.setState({files:e.files=a}))})})):this.setState({uploading:!1,locked:!1},function(){e.onChange(!!e.resolve),e.resolve&&(e.resolve(e.files.some(function(e){return"error"===e.state})?i("文件上传失败请重试"):null),e.resolve=void 0)})}},t.prototype.removeFile=function(e,t){var a=this.files.concat();a.splice(t,1),this.setState({files:this.files=a},this.onChange)},t.prototype.previewImage=function(e,t,a){var i=this.props.onImageEnlarge;if(i){var n=this.files;a.preventDefault(),i({src:e.preview||e.url,originalSrc:e.preview||e.url,index:t,list:n.map(function(e){return{src:e.preview||e.url,originalSrc:e.preview||e.url,title:e.name||m.getNameFromUrl(e.value||e.url)}})})}},t.prototype.editImage=function(e){var t=this.files;this.setState({cropFile:{preview:t[e].preview||t[e].url,state:"init"}})},t.prototype.onChange=function(e){var t=this.props,a=t.multiple,i=t.onChange,n=t.joinValues,o=t.extractValue,l=t.delimiter,r=t.valueField,s=this.files.filter(function(e){return"uploaded"==e.state||"init"==e.state}),d=s.length?n?s[0].value:s[0]:"";d=a?n?s.map(function(e){return e.value}).join(l):o?s.map(function(e){return e.value}):s:n?d.value||d:o?d[r||"value"]:d,i(this.emitValue=d||"",void 0,e)},t.prototype.handleSelect=function(){this.dropzone.current&&this.dropzone.current.open()},t.prototype.handleRetry=function(e){var t=this.files.concat(),a=t[e];("invalid"===a.state||"error"===a.state)&&(a.state="pending",a.progress=0,this.setState({files:t},this.startUpload))},t.prototype.handleDrop=function(e){var t=this.props,a=t.multiple,i=t.crop;if(i&&!a){var n=e[0];return n.preview&&n.url||(n.preview=window.URL.createObjectURL(n)),this.setState({cropFile:n})}this.addFiles(e)},t.prototype.handlePaste=function(e){var t=e.nativeEvent,a=[],i=t.clipboardData.items,n=this.props.accept;[].slice.call(i).forEach(function(e){var t;"file"===e.kind&&(t=e.getAsFile())&&f.default(t,n)&&(t.id=c.guid(),a.push(t))}),this.handleDrop(a)},t.prototype.handleCrop=function(){var e=this;this.cropper.current.getCroppedCanvas().toBlob(function(t){e.addFiles([t]),e.setState({cropFile:void 0,locked:!1,lockedReason:""})})},t.prototype.cancelCrop=function(){this.setState({cropFile:void 0,locked:!1,lockedReason:""},this.onChange)},t.prototype.addFiles=function(e){var a=this;if(e.length){var i=this.props,n=i.multiple,o=i.maxLength,l=i.maxSize,r=(i.accept,i.translate),s=this.files;!n&&s.length&&(s=[]);var d=(n?o?o:e.length+s.length:1)-s.length,p=[];[].slice.call(e,0,d).forEach(function(e){return l&&e.size>l?void alert(r("您选择的文件 {{filename}} 大小为 {{actualSize}} 超出了最大为 {{maxSize}} 的限制,请重新选择。",{filename:e.name,actualSize:t.formatFileSize(e.size),maxSize:t.formatFileSize(l)})):(e.state="pending",e.id=c.guid(),e.preview&&e.url||(e.preview=URL.createObjectURL(e)),void p.push(e))}),p.length&&this.setState({error:void 0,files:this.files=s.concat(p),locked:!0},function(){var e=a.props.autoUpload;e&&a.startUpload()})}},t.prototype.sendFile=function(e,a,i){var n=this,o=this.props,l=o.limit,r=o.translate;if(!l)return this._upload(e,a,i);var s=new Image;s.onload=function(){var o=s.width,d=s.height,c="";l.width&&l.width!=o||l.height&&l.height!=d?c=r("您选择的图片不符合尺寸要求, 请上传{{info}}的图片",{info:t.sizeInfo(l.width,l.height,r)}):l.maxWidth&&l.maxWidtho||l.minHeight&&l.minHeight>d?c=r("您选择的图片不符合尺寸要求, 请上传不要小于{{info}}的图片",{info:t.sizeInfo(l.minWidth,l.minHeight,r)}):l.aspectRatio&&Math.abs(o/d-l.aspectRatio)>.01&&(c=r("您选择的图片不符合尺寸要求, 请上传尺寸比率为 {{ratio}} 的图片",{ratio:l.aspectRatioLabel||l.aspectRatio})),c?(e.state="invalid",a(c,e)):n._upload(e,a,i)},s.src=e.preview||e.url},t.prototype._upload=function(e,t,i){var n=this.props,o=n.translate,l=n.multiple,r=n.autoFill,s=n.onBulkChange;this._send(e,this.props.reciever,{},i).then(function(i){if(i.status)throw new Error(i.msg||o("上传失败, 请重试"));var n=a.__assign(a.__assign({},i.data),{state:"uploaded"});n.value=n.value||n.url;var d=!l&&r&&!c.isEmpty(r)&&g.dataMapping(r,n);d&&s(d),t(null,e,n)}).catch(function(a){return t(a.message||o("上传失败,请重试"),e)})},t.prototype._send=function(e,t,i,n){var o=new FormData,l=this.props.data,r=d.buildApi(t,c.createObject(l,i),{method:"post"}),p=this.props.fileField||"file";o.append(p,e,e.name);var u=r.url.indexOf("?");~u&&i?(i=a.__assign(a.__assign({},s.default.parse(r.url.substring(u+1))),i),r.url=r.url.substring(0,u)+"?"+c.qsstringify(i)):i&&(r.url+="?"+c.qsstringify(i)),r.data&&c.qsstringify(r.data).split("&").forEach(function(e){var t=e.split("=");o.append(t[0],decodeURIComponent(t[1]))});var f=this.props.env;if(!f||!f.fetcher)throw new Error("fetcher is required");return f.fetcher(r,o,{method:"post",onUploadProgress:function(e){return n(e.loaded/e.total)}})},t.prototype.handleClick=function(){this.refs.dropzone.open()},t.prototype.handleImageLoaded=function(e,t){var i=this,n=t.currentTarget,o=new Image;o.onload=function(){delete o.onload;var t=i.files.concat(),n=t[e];if(n){n.info=a.__assign(a.__assign({},n.info),{width:o.width,height:o.height}),t.splice(e,1,n);var l=!(!i.current&&!r.default(t,function(e){return"pending"===e.state}));i.unmounted||i.setState({files:i.files=t},l?void 0:i.onChange)}},o.src=n.src},t.prototype.validate=function(){var e=this,t=this.props.translate;return this.state.locked&&this.state.lockedReason?this.state.lockedReason:this.state.cropFile?new Promise(function(t){e.resolve=t,e.handleCrop()}):this.state.uploading||this.files.some(function(e){return"pending"===e.state})?new Promise(function(t){e.resolve=t,e.startUpload()}):this.files.some(function(e){return"error"===e.state})?t("文件上传失败请重试"):void 0},t.prototype.render=function(){var e=this,n=this.props,r=n.className,s=n.classnames,d=n.placeholder,c=n.disabled,f=n.multiple,g=n.accept,_=n.maxLength,b=n.autoUpload,C=n.hideUploadButton,y=n.thumbMode,E=n.thumbRatio,I=n.reCropable,k=n.translate,w=this.state,F=w.files,N=w.error,S=w.crop,R=w.uploading,U=w.cropFile,x=F.some(function(e){return"pending"==e.state});return i.default.createElement("div",{className:s("ImageControl",r)},U?i.default.createElement("div",{className:s("ImageControl-cropperWrapper")},i.default.createElement(o.default,a.__assign({},S,{ref:this.cropper,src:U.preview})),i.default.createElement("div",{className:s("ImageControl-croperToolbar")},i.default.createElement("a",{className:s("ImageControl-cropCancel"),onClick:this.cancelCrop,"data-tooltip":k("取消"),"data-position":"left"},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("a",{className:s("ImageControl-cropConfirm"),onClick:this.handleCrop,"data-tooltip":k("确认"),"data-position":"left"},i.default.createElement(p.Icon,{icon:"check",className:"icon"})))):i.default.createElement(l.default,{key:"drop-zone",ref:this.dropzone,onDrop:this.handleDrop,onDropRejected:this.handleDropRejected,accept:g,multiple:f},function(n){var o=n.getRootProps,l=n.getInputProps,r=n.isDragActive,g=n.isDragAccept,w=n.isDragReject,U=n.isFocused;return i.default.createElement("div",a.__assign({},o({onClick:v,onPaste:e.handlePaste,className:s("ImageControl-dropzone",{disabled:c,"is-empty":!F.length,"is-active":r})})),i.default.createElement("input",a.__assign({},l())),r||g||w?i.default.createElement("div",{className:s("ImageControl-acceptTip",{"is-accept":g,"is-reject":w})},k("把图片拖到这,然后松开完成添加!")):i.default.createElement(i.default.Fragment,null,F&&F.length?F.map(function(a,n){return i.default.createElement("div",{key:a.id||n,className:s("ImageControl-item",{"is-uploaded":"uploading"!==a.state,"is-invalid":"error"===a.state||"invalid"===a.state})},"invalid"===a.state||"error"===a.state?i.default.createElement(i.default.Fragment,null,i.default.createElement("a",{className:s("ImageControl-itemClear"),"data-tooltip":k("移除"),"data-position":"bottom",onClick:e.removeFile.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("a",{className:s("ImageControl-retryBtn",{"is-disabled":c}),onClick:e.handleRetry.bind(e,n)},i.default.createElement(p.Icon,{icon:"retry",className:"icon"}),i.default.createElement("p",{className:"ImageControl-itemInfoError"},k("重新上传")))):"uploading"===a.state?i.default.createElement(i.default.Fragment,null,i.default.createElement("a",{onClick:e.removeFile.bind(e,a,n),key:"clear",className:s("ImageControl-itemClear"),"data-tooltip":k("移除")},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("div",{key:"info",className:s("ImageControl-itemInfo")},i.default.createElement("p",null,k("文件上传中")),i.default.createElement("div",{className:s("ImageControl-progress")},i.default.createElement("span",{style:{width:Math.round(100*a.progress)+"%"},className:s("ImageControl-progressValue")})))):i.default.createElement(i.default.Fragment,null,i.default.createElement(h.default,{key:"image",className:s("ImageControl-image"),onLoad:e.handleImageLoaded.bind(e,n),src:a.preview||a.url,alt:a.name,thumbMode:y,thumbRatio:E}),i.default.createElement("div",{key:"overlay",className:s("ImageControl-itemOverlay")},a.info?[i.default.createElement("div",{key:"info"},a.info.width," x ",a.info.height),a.info.len?i.default.createElement("div",{key:"size"},t.formatFileSize(a.info.len)):null]:i.default.createElement("div",null,"..."),i.default.createElement("a",{"data-tooltip":k("查看大图"),"data-position":"bottom",target:"_blank",href:a.url||a.preview,onClick:e.previewImage.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"view",className:"icon"})),S&&I!==!1&&!c?i.default.createElement("a",{"data-tooltip":k("裁剪图片"),"data-position":"bottom",onClick:e.editImage.bind(e,n)},i.default.createElement(p.Icon,{icon:"pencil",className:"icon"})):null,c?null:i.default.createElement("a",{"data-tooltip":k("移除"),"data-position":"bottom",onClick:e.removeFile.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"remove",className:"icon"})),i.default.createElement("a",{"data-tooltip":a.name||m.getNameFromUrl(a.value||a.url),"data-position":"bottom",target:"_blank"},i.default.createElement(p.Icon,{icon:"info",className:"icon"})))))}):null,f&&(!_||F.length<_)||!f&&!F.length?i.default.createElement("label",{className:s("ImageControl-addBtn",{"is-disabled":c}),onClick:e.handleSelect,"data-tooltip":k(d),"data-position":"right"},i.default.createElement(p.Icon,{icon:"plus",className:"icon"}),U?i.default.createElement("span",{className:s("ImageControl-pasteTip")},k("当前状态支持从剪切板中粘贴图片文件。")):null):null,b||C||!F.length?null:i.default.createElement(u.default,{level:"default",className:s("ImageControl-uploadBtn"),disabled:!x,onClick:e.toggleUpload},k(R?"暂停上传":"开始上传")),N?i.default.createElement("div",{className:s("ImageControl-errorMsg")},N):null))}))},t.defaultProps={limit:void 0,accept:"image/jpeg, image/jpg, image/png, image/gif",reciever:"/api/upload",hideUploadButton:!1,placeholder:"点击选择图片或者将图片拖入该区域",joinValues:!0,extractValue:!1,delimiter:",",autoUpload:!0,multiple:!1},t}(i.default.Component);t.default=_;var b=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([n.FormItem({type:"image",sizeMutable:!1})],t)}(_);t.ImageControlRenderer=b}); +amis.define("cf6ad73",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ImageControlRenderer=void 0;var a=e("node_modules/tslib/tslib"),i=a.__importDefault(e("node_modules/react/index")),n=e("567b83c"),o=a.__importDefault(e("node_modules/react-cropper/dist/react-cropper")),l=a.__importDefault(e("node_modules/react-dropzone/dist/index"));e("node_modules/blueimp-canvastoblob/js/canvas-to-blob");var r=a.__importDefault(e("node_modules/lodash/find")),s=a.__importDefault(e("node_modules/qs/lib/index")),d=e("1caead1"),c=e("9a80175"),p=e("b7bbd16"),u=a.__importDefault(e("a67acca")),f=a.__importDefault(e("node_modules/attr-accept/dist/index")),m=e("162bd80"),h=a.__importDefault(e("fcb3580")),g=e("f2e345e"),v=function(e){return e.stopPropagation()},_=function(e){function t(n){var o=e.call(this,n)||this;o.state={uploading:!1,locked:!1,files:[]},o.files=[],o.cropper=i.default.createRef(),o.dropzone=i.default.createRef(),o.current=null,o.unmounted=!1;var l=n.value,r=n.multiple,s=n.joinValues,d=n.delimiter,c=[];return l&&(c=(Array.isArray(l)?l:s&&"string"==typeof l&&r?l.split(d):[l]).map(function(e){return t.valueToFile(e)}).filter(function(e){return e})),o.state=a.__assign(a.__assign({},o.state),{files:o.files=c,crop:o.buildCrop(n)}),o.sendFile=o.sendFile.bind(o),o.removeFile=o.removeFile.bind(o),o.handleDrop=o.handleDrop.bind(o),o.handleClick=o.handleClick.bind(o),o.handleClick=o.handleClick.bind(o),o.handleCrop=o.handleCrop.bind(o),o.handleDropRejected=o.handleDropRejected.bind(o),o.cancelCrop=o.cancelCrop.bind(o),o.handleImageLoaded=o.handleImageLoaded.bind(o),o.startUpload=o.startUpload.bind(o),o.stopUpload=o.stopUpload.bind(o),o.toggleUpload=o.toggleUpload.bind(o),o.tick=o.tick.bind(o),o.onChange=o.onChange.bind(o),o.addFiles=o.addFiles.bind(o),o.handleSelect=o.handleSelect.bind(o),o.handlePaste=o.handlePaste.bind(o),o}return a.__extends(t,e),t.formatFileSize=function(e,t){for(void 0===t&&(t=[" B"," KB"," M"," G"]),e=parseInt(e,10)||0;e>1024&&t.length>1;)e/=1024,t.shift();return e.toFixed(2)+t[0]},t.valueToFile=function(e){return e?a.__assign(a.__assign({},"string"==typeof e?{value:e,url:e,id:c.guid()}:e),{state:"init"}):void 0},t.sizeInfo=function(e,t,a){return e?t?a("尺寸({{width}} x {{height}})",{width:e,height:t}):a("宽度{{width}}px",{width:e}):a("高度{{height}}px",{height:t})},t.prototype.componentWillReceiveProps=function(e){var i=this,n=this.props;if(n.value!==e.value&&this.emitValue!==e.value){var o=e.value,l=(e.multiple,e.joinValues),s=e.delimiter,d=[];o&&(d=(Array.isArray(o)?o:l&&"string"==typeof o?o.split(s):[o]).map(function(n){var o,l=t.valueToFile(n,e);return l&&(o=r.default(i.files,function(e){return e.value===l.value}))&&(l=a.__assign(a.__assign(a.__assign({},o),l),{id:o.id||l.id})),l}).filter(function(e){return e})),this.setState({files:this.files=d})}n.crop!==e.crop&&this.setState({crop:this.buildCrop(e)})},t.prototype.componentWillUnmount=function(){this.unmounted=!0},t.prototype.buildCrop=function(e){var t=e.crop,i=this.props.translate;return t&&e.multiple?(e.env&&e.env.alert&&e.env.alert(i("图片多选配置和裁剪配置冲突,目前不能二者都支持!")),null):(t===!0&&(t={}),t&&(t=a.__assign({aspectRatio:void 0,guides:!0,dragMode:"move",viewMode:1,rotatable:!1,scalable:!1},t)),t)},t.prototype.handleDropRejected=function(e,t){if("change"===t.type||"drop"===t.type){var i=this.props,n=(i.multiple,i.env),o=i.accept,l=i.translate,r=e.map(function(e){return a.__assign(a.__assign({},e),{state:"invalid",id:c.guid(),name:e.name})});n.alert(l("您添加的文件{{files}}不符合类型的`{{accept}}`的设定,请仔细检查。",{files:r.map(function(e){return"「"+e.name+"」"}).join(" "),accept:o}))}},t.prototype.startUpload=function(e){void 0===e&&(e=!1),this.state.uploading||this.setState({uploading:!0,locked:!0,files:this.files=this.files.map(function(t){return e&&"error"===t.state&&(t.state="pending",t.progress=0),t})},this.tick)},t.prototype.toggleUpload=function(){return this.state.uploading?this.stopUpload():this.startUpload()},t.prototype.stopUpload=function(){this.state.uploading&&this.setState({uploading:!1})},t.prototype.tick=function(){var e=this,t=this.props,i=t.multiple,n=t.autoFill,o=t.onBulkChange;if(!this.current&&this.state.uploading){var l=this.props.env,s=this.props.translate,d=r.default(this.files,function(e){return"pending"===e.state});d?(this.current=d,d.state="uploading",this.setState({files:this.files=this.files.concat()},function(){return e.sendFile(d,function(t,r,d){var p=e.files.concat(),u=p.indexOf(r);if(~u){var f=r;if(t){if(f.state="uploading"!==r.state?r.state:"error",f.error=t,!e.props.multiple&&"invalid"===f.state)return p.splice(u,1),e.current=null,e.setState({files:e.files=p,error:t},e.tick);l.notify("error",t||s("图片上传失败,请重试"))}else f=a.__assign(a.__assign({},d),{preview:r.preview});p.splice(u,1,f),e.current=null,e.setState({files:e.files=p},function(){var t=!i&&n&&!c.isEmpty(n)&&g.dataMapping(n,d||{});t&&o(t),e.tick()})}},function(t){var a=e.files.concat(),i=a.indexOf(d);~i&&(d.progress=t,e.setState({files:e.files=a}))})})):this.setState({uploading:!1,locked:!1},function(){e.onChange(!!e.resolve),e.resolve&&(e.resolve(e.files.some(function(e){return"error"===e.state})?s("文件上传失败请重试"):null),e.resolve=void 0)})}},t.prototype.removeFile=function(e,t){var a=this.files.concat();a.splice(t,1),this.setState({files:this.files=a},this.onChange)},t.prototype.previewImage=function(e,t,a){var i=this.props.onImageEnlarge;if(i){var n=this.files;a.preventDefault(),i({src:e.preview||e.url,originalSrc:e.preview||e.url,index:t,list:n.map(function(e){return{src:e.preview||e.url,originalSrc:e.preview||e.url,title:e.name||m.getNameFromUrl(e.value||e.url)}})})}},t.prototype.editImage=function(e){var t=this.files;this.setState({cropFile:{preview:t[e].preview||t[e].url,state:"init"}})},t.prototype.onChange=function(e){var t=this.props,a=t.multiple,i=t.onChange,n=t.joinValues,o=t.extractValue,l=t.delimiter,r=t.valueField,s=this.files.filter(function(e){return"uploaded"==e.state||"init"==e.state}),d=s.length?n?s[0].value:s[0]:"";d=a?n?s.map(function(e){return e.value}).join(l):o?s.map(function(e){return e.value}):s:n?d.value||d:o?d[r||"value"]:d,i(this.emitValue=d||"",void 0,e)},t.prototype.handleSelect=function(){this.dropzone.current&&this.dropzone.current.open()},t.prototype.handleRetry=function(e){var t=this.files.concat(),a=t[e];("invalid"===a.state||"error"===a.state)&&(a.state="pending",a.progress=0,this.setState({files:t},this.startUpload))},t.prototype.handleDrop=function(e){var t=this.props,a=t.multiple,i=t.crop;if(i&&!a){var n=e[0];return n.preview&&n.url||(n.preview=window.URL.createObjectURL(n)),this.setState({cropFile:n})}this.addFiles(e)},t.prototype.handlePaste=function(e){var t=e.nativeEvent,a=[],i=t.clipboardData.items,n=this.props.accept;[].slice.call(i).forEach(function(e){var t;"file"===e.kind&&(t=e.getAsFile())&&f.default(t,n)&&(t.id=c.guid(),a.push(t))}),this.handleDrop(a)},t.prototype.handleCrop=function(){var e=this;this.cropper.current.getCroppedCanvas().toBlob(function(t){e.addFiles([t]),e.setState({cropFile:void 0,locked:!1,lockedReason:""})})},t.prototype.cancelCrop=function(){this.setState({cropFile:void 0,locked:!1,lockedReason:""},this.onChange)},t.prototype.addFiles=function(e){var a=this;if(e.length){var i=this.props,n=i.multiple,o=i.maxLength,l=i.maxSize,r=(i.accept,i.translate),s=this.files;!n&&s.length&&(s=[]);var d=(n?o?o:e.length+s.length:1)-s.length,p=[];[].slice.call(e,0,d).forEach(function(e){return l&&e.size>l?void alert(r("您选择的文件 {{filename}} 大小为 {{actualSize}} 超出了最大为 {{maxSize}} 的限制,请重新选择。",{filename:e.name,actualSize:t.formatFileSize(e.size),maxSize:t.formatFileSize(l)})):(e.state="pending",e.id=c.guid(),e.preview&&e.url||(e.preview=URL.createObjectURL(e)),void p.push(e))}),p.length&&this.setState({error:void 0,files:this.files=s.concat(p),locked:!0},function(){var e=a.props.autoUpload;e&&a.startUpload()})}},t.prototype.sendFile=function(e,a,i){var n=this,o=this.props,l=o.limit,r=o.translate;if(!l)return this._upload(e,a,i);var s=new Image;s.onload=function(){var o=s.width,d=s.height,c="";l.width&&l.width!=o||l.height&&l.height!=d?c=r("您选择的图片不符合尺寸要求, 请上传{{info}}的图片",{info:t.sizeInfo(l.width,l.height,r)}):l.maxWidth&&l.maxWidtho||l.minHeight&&l.minHeight>d?c=r("您选择的图片不符合尺寸要求, 请上传不要小于{{info}}的图片",{info:t.sizeInfo(l.minWidth,l.minHeight,r)}):l.aspectRatio&&Math.abs(o/d-l.aspectRatio)>.01&&(c=r("您选择的图片不符合尺寸要求, 请上传尺寸比率为 {{ratio}} 的图片",{ratio:l.aspectRatioLabel||l.aspectRatio})),c?(e.state="invalid",a(c,e)):n._upload(e,a,i)},s.src=e.preview||e.url},t.prototype._upload=function(e,t,i){var n=this.props.translate;this._send(e,this.props.reciever,{},i).then(function(i){if(i.status)throw new Error(i.msg||n("上传失败, 请重试"));var o=a.__assign(a.__assign({},i.data),{state:"uploaded"});o.value=o.value||o.url,t(null,e,o)}).catch(function(a){return t(a.message||n("上传失败,请重试"),e)})},t.prototype._send=function(e,t,i,n){var o=new FormData,l=this.props.data,r=d.buildApi(t,c.createObject(l,i),{method:"post"}),p=this.props.fileField||"file";o.append(p,e,e.name);var u=r.url.indexOf("?");~u&&i?(i=a.__assign(a.__assign({},s.default.parse(r.url.substring(u+1))),i),r.url=r.url.substring(0,u)+"?"+c.qsstringify(i)):i&&(r.url+="?"+c.qsstringify(i)),r.data&&c.qsstringify(r.data).split("&").forEach(function(e){var t=e.split("=");o.append(t[0],decodeURIComponent(t[1]))});var f=this.props.env;if(!f||!f.fetcher)throw new Error("fetcher is required");return f.fetcher(r,o,{method:"post",onUploadProgress:function(e){return n(e.loaded/e.total)}})},t.prototype.handleClick=function(){this.refs.dropzone.open()},t.prototype.handleImageLoaded=function(e,t){var i=this,n=t.currentTarget,o=new Image;o.onload=function(){delete o.onload;var t=i.files.concat(),n=t[e];if(n){n.info=a.__assign(a.__assign({},n.info),{width:o.width,height:o.height}),t.splice(e,1,n);var l=!(!i.current&&!r.default(t,function(e){return"pending"===e.state}));i.unmounted||i.setState({files:i.files=t},l?void 0:i.onChange)}},o.src=n.src},t.prototype.validate=function(){var e=this,t=this.props.translate;return this.state.locked&&this.state.lockedReason?this.state.lockedReason:this.state.cropFile?new Promise(function(t){e.resolve=t,e.handleCrop()}):this.state.uploading||this.files.some(function(e){return"pending"===e.state})?new Promise(function(t){e.resolve=t,e.startUpload()}):this.files.some(function(e){return"error"===e.state})?t("文件上传失败请重试"):void 0},t.prototype.render=function(){var e=this,n=this.props,r=n.className,s=n.classnames,d=n.placeholder,c=n.disabled,f=n.multiple,g=n.accept,_=n.maxLength,b=n.autoUpload,C=n.hideUploadButton,y=n.thumbMode,E=n.thumbRatio,I=n.reCropable,k=n.translate,w=this.state,F=w.files,N=w.error,S=w.crop,R=w.uploading,U=w.cropFile,x=F.some(function(e){return"pending"==e.state});return i.default.createElement("div",{className:s("ImageControl",r)},U?i.default.createElement("div",{className:s("ImageControl-cropperWrapper")},i.default.createElement(o.default,a.__assign({},S,{ref:this.cropper,src:U.preview})),i.default.createElement("div",{className:s("ImageControl-croperToolbar")},i.default.createElement("a",{className:s("ImageControl-cropCancel"),onClick:this.cancelCrop,"data-tooltip":k("取消"),"data-position":"left"},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("a",{className:s("ImageControl-cropConfirm"),onClick:this.handleCrop,"data-tooltip":k("确认"),"data-position":"left"},i.default.createElement(p.Icon,{icon:"check",className:"icon"})))):i.default.createElement(l.default,{key:"drop-zone",ref:this.dropzone,onDrop:this.handleDrop,onDropRejected:this.handleDropRejected,accept:g,multiple:f},function(n){var o=n.getRootProps,l=n.getInputProps,r=n.isDragActive,g=n.isDragAccept,w=n.isDragReject,U=n.isFocused;return i.default.createElement("div",a.__assign({},o({onClick:v,onPaste:e.handlePaste,className:s("ImageControl-dropzone",{disabled:c,"is-empty":!F.length,"is-active":r})})),i.default.createElement("input",a.__assign({},l())),r||g||w?i.default.createElement("div",{className:s("ImageControl-acceptTip",{"is-accept":g,"is-reject":w})},k("把图片拖到这,然后松开完成添加!")):i.default.createElement(i.default.Fragment,null,F&&F.length?F.map(function(a,n){return i.default.createElement("div",{key:a.id||n,className:s("ImageControl-item",{"is-uploaded":"uploading"!==a.state,"is-invalid":"error"===a.state||"invalid"===a.state})},"invalid"===a.state||"error"===a.state?i.default.createElement(i.default.Fragment,null,i.default.createElement("a",{className:s("ImageControl-itemClear"),"data-tooltip":k("移除"),"data-position":"bottom",onClick:e.removeFile.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("a",{className:s("ImageControl-retryBtn",{"is-disabled":c}),onClick:e.handleRetry.bind(e,n)},i.default.createElement(p.Icon,{icon:"retry",className:"icon"}),i.default.createElement("p",{className:"ImageControl-itemInfoError"},k("重新上传")))):"uploading"===a.state?i.default.createElement(i.default.Fragment,null,i.default.createElement("a",{onClick:e.removeFile.bind(e,a,n),key:"clear",className:s("ImageControl-itemClear"),"data-tooltip":k("移除")},i.default.createElement(p.Icon,{icon:"close",className:"icon"})),i.default.createElement("div",{key:"info",className:s("ImageControl-itemInfo")},i.default.createElement("p",null,k("文件上传中")),i.default.createElement("div",{className:s("ImageControl-progress")},i.default.createElement("span",{style:{width:Math.round(100*a.progress)+"%"},className:s("ImageControl-progressValue")})))):i.default.createElement(i.default.Fragment,null,i.default.createElement(h.default,{key:"image",className:s("ImageControl-image"),onLoad:e.handleImageLoaded.bind(e,n),src:a.preview||a.url,alt:a.name,thumbMode:y,thumbRatio:E}),i.default.createElement("div",{key:"overlay",className:s("ImageControl-itemOverlay")},a.info?[i.default.createElement("div",{key:"info"},a.info.width," x ",a.info.height),a.info.len?i.default.createElement("div",{key:"size"},t.formatFileSize(a.info.len)):null]:i.default.createElement("div",null,"..."),i.default.createElement("a",{"data-tooltip":k("查看大图"),"data-position":"bottom",target:"_blank",href:a.url||a.preview,onClick:e.previewImage.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"view",className:"icon"})),S&&I!==!1&&!c?i.default.createElement("a",{"data-tooltip":k("裁剪图片"),"data-position":"bottom",onClick:e.editImage.bind(e,n)},i.default.createElement(p.Icon,{icon:"pencil",className:"icon"})):null,c?null:i.default.createElement("a",{"data-tooltip":k("移除"),"data-position":"bottom",onClick:e.removeFile.bind(e,a,n)},i.default.createElement(p.Icon,{icon:"remove",className:"icon"})),i.default.createElement("a",{"data-tooltip":a.name||m.getNameFromUrl(a.value||a.url),"data-position":"bottom",target:"_blank"},i.default.createElement(p.Icon,{icon:"info",className:"icon"})))))}):null,f&&(!_||F.length<_)||!f&&!F.length?i.default.createElement("label",{className:s("ImageControl-addBtn",{"is-disabled":c}),onClick:e.handleSelect,"data-tooltip":k(d),"data-position":"right"},i.default.createElement(p.Icon,{icon:"plus",className:"icon"}),U?i.default.createElement("span",{className:s("ImageControl-pasteTip")},k("当前状态支持从剪切板中粘贴图片文件。")):null):null,b||C||!F.length?null:i.default.createElement(u.default,{level:"default",className:s("ImageControl-uploadBtn"),disabled:!x,onClick:e.toggleUpload},k(R?"暂停上传":"开始上传")),N?i.default.createElement("div",{className:s("ImageControl-errorMsg")},N):null))}))},t.defaultProps={limit:void 0,accept:"image/jpeg, image/jpg, image/png, image/gif",reciever:"/api/upload",hideUploadButton:!1,placeholder:"点击选择图片或者将图片拖入该区域",joinValues:!0,extractValue:!1,delimiter:",",autoUpload:!0,multiple:!1},t}(i.default.Component);t.default=_;var b=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([n.FormItem({type:"image",sizeMutable:!1})],t)}(_);t.ImageControlRenderer=b}); ;/*!src/renderers/Form/Matrix.tsx*/ amis.define("690a2f4",function(e,t){"use strict";function n(e,t){return Array.isArray(e)||(e=[]),Array.isArray(t)||(t=[]),e.map(function(e){return t.map(function(t){return a.__assign(a.__assign(a.__assign({},t),e),{checked:!1})})})}function r(e,t,n){return e.map(function(e,r){return e.map(function(e,o){return a.__assign(a.__assign(a.__assign({},t[r]),n[o]),e)})})}Object.defineProperty(t,"__esModule",{value:!0}),t.MatrixRenderer=void 0;var a=e("node_modules/tslib/tslib"),o=a.__importDefault(e("node_modules/react/index")),s=e("567b83c"),i=e("1caead1"),l=e("1953fc1"),u=e("9a80175"),c=function(e){function t(t){var n=e.call(this,t)||this;return n.sourceInvalid=!1,n.mounted=!1,n.state={columns:t.columns||[],rows:t.rows||[],loading:!1},n.toggleItem=n.toggleItem.bind(n),n.reload=n.reload.bind(n),n.initOptions=n.initOptions.bind(n),n}return a.__extends(t,e),t.prototype.componentWillMount=function(){this.mounted=!0},t.prototype.componentDidMount=function(){var e=this.props,t=e.formInited,n=e.addHook;t?this.reload():n(this.initOptions,"init")},t.prototype.componentWillReceiveProps=function(e){var t=this.props;if(t.columns!==e.columns||t.rows!==e.rows)this.setState({columns:e.columns||[],rows:e.rows||[]});else if(e.formInited&&(e.source!==t.source||t.data!==e.data)){var n=i.buildApi(t.source,t.data,{ignoreData:!0}),r=i.buildApi(e.source,e.data,{ignoreData:!0});n.url!==r.url&&i.isValidApi(r.url)&&(this.sourceInvalid=!0)}},t.prototype.componentDidUpdate=function(){this.sourceInvalid&&(this.sourceInvalid=!1,this.reload())},t.prototype.componentWillUnmount=function(){this.mounted=!1;var e=this.props.removeHook;e(this.initOptions,"init")},t.prototype.initOptions=function(e){return a.__awaiter(this,void 0,void 0,function(){var t,n,r;return a.__generator(this,function(a){switch(a.label){case 0:return[4,this.reload()];case 1:return a.sent(),t=this.props,n=t.formItem,r=t.name,n?(n.value&&u.setVariable(e,r,n.value),[2]):[2]}})})},t.prototype.reload=function(){return a.__awaiter(this,void 0,void 0,function(){var e,t,n,o,s,l,u=this;return a.__generator(this,function(a){switch(a.label){case 0:if(e=this.props,t=e.source,n=e.data,o=e.env,s=e.onChange,l=e.translate,!i.isEffectiveApi(t,n)||this.state.loading)return[2];if(!o||!o.fetcher)throw new Error("fetcher is required");return[4,new Promise(function(e){return u.mounted?void u.setState({loading:!0},function(){return u.mounted?void o.fetcher(t,n).then(function(n){if(!n.ok)throw new Error(n.msg||l("数据请求错误"));return u.mounted?void u.setState({loading:!1,rows:n.data.rows||[],columns:n.data.columns||[]},function(){var a=(t&&t.replaceData,n.data.value);a&&(a=t.replaceData?a:r(a,u.state.columns,u.state.rows),s(a)),e()}):e()}).catch(function(t){return u.setState({error:t,loading:!1},e)}):e()}):e()})];case 1:return[2,a.sent()]}})})},t.prototype.toggleItem=function(e,t,r){var o=this.state,s=o.columns,i=o.rows,l=this.props,u=l.multiple,c=l.singleSelectMode,d=this.props.value||n(s,i);if(u)d[t][r]=a.__assign(a.__assign({},d[t][r]),{checked:e});else if("row"===c)for(var m=0,p=s.length;p>m;m++)d[m][r]=a.__assign(a.__assign({},d[m][r]),{checked:t===m?e:!e});else if("column"===c)for(var f=0,p=i.length;p>f;f++)d[t][f]=a.__assign(a.__assign({},d[t][f]),{checked:r===f?e:!e});else for(var f=0,p=i.length;p>f;f++)for(var m=0,h=s.length;h>m;m++)d[m][f]=a.__assign(a.__assign({},d[m][f]),{checked:t===m&&r===f?e:!e});this.props.onChange(d.concat())},t.prototype.renderInput=function(){var e=this,t=this.state,r=t.columns,a=t.rows,s=this.props,i=s.rowLabel,u=(s.className,s.classnames),c=s.multiple,d=this.props.value||n(r,a);return o.default.createElement("div",{className:u("Table m-b-none")},o.default.createElement("div",{className:u("Table-content")},o.default.createElement("table",{className:u("Table-table")},o.default.createElement("thead",null,o.default.createElement("tr",null,o.default.createElement("th",null,i),r.map(function(e,t){return o.default.createElement("th",{key:t,className:"text-center"},e.label)}))),o.default.createElement("tbody",null,a.map(function(t,n){return o.default.createElement("tr",{key:n},o.default.createElement("td",null,t.label,t.description||t.desc?o.default.createElement("span",{className:"m-l-xs text-muted text-xs"},t.description||t.desc):null),r.map(function(t,r){return o.default.createElement("td",{key:r,className:"text-center"},o.default.createElement(l.Checkbox,{type:c?"checkbox":"radio",checked:!!(d[r]&&d[r][n]&&d[r][n].checked),onChange:function(t){return e.toggleItem(t,r,n)}}))}))})))))},t.prototype.render=function(){var e=this.props,t=e.className,n=(e.render,e.classnames),r=this.state,a=r.error,s=r.loading;return o.default.createElement("div",{key:"input",className:n("MatrixControl",t||"")},a?o.default.createElement("div",{className:n("MatrixControl-error Alert Alert--danger")},String(a)):this.renderInput(),o.default.createElement(l.Spinner,{size:"lg",overlay:!0,key:"info",show:s}))},t.defaultProps={columns:[],rows:[],multiple:!0,singleSelectMode:"column"},t}(o.default.Component);t.default=c;var d=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([s.FormItem({type:"matrix",strictMode:!1,sizeMutable:!1})],t)}(c);t.MatrixRenderer=d}); ;/*!src/renderers/Form/Range.tsx*/ @@ -1069,7 +1075,7 @@ amis.define("5271012",function(e,t){"use strict";Object.defineProperty(t,"__esMo ;/*!src/renderers/Form/ChainedSelect.tsx*/ amis.define("d2efb65",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ChainedSelectControlRenderer=void 0;var a=e("node_modules/tslib/tslib"),n=a.__importDefault(e("node_modules/react/index")),i=a.__importDefault(e("node_modules/classnames/index")),o=e("b86428a"),s=a.__importDefault(e("d57879c")),l=e("1caead1"),r=function(e){function t(t){var a=e.call(this,t)||this;return a.state={stack:[]},a.handleChange=a.handleChange.bind(a),a.loadMore=a.loadMore.bind(a),a}return a.__extends(t,e),t.prototype.componentDidMount=function(){var e=this.props.formInited;e?this.loadMore():this.props.addHook(this.loadMore,"init")},t.prototype.componentWillReceiveProps=function(e){var t=this.props;t.options!==e.options&&this.setState({stack:[]})},t.prototype.componentDidUpdate=function(e){var t=this.props;t.formInited&&t.value!==e.value&&this.loadMore()},t.prototype.loadMore=function(){for(var e=this,t=this.props,n=t.value,i=t.delimiter,o=t.onChange,s=t.joinValues,r=t.extractValue,d=t.source,p=t.data,c=t.env,u=Array.isArray(n)?n.concat():n&&"string"==typeof n?n.split(i||","):[],h=0,f=this.state.stack.length;f>h&&u[h]&&this.state.stack[h].parentId==(s||r?u[h]:u[h].value);)h++;if(u[h]&&c&&l.isEffectiveApi(d,p)){var v=s||r?u[h]:u[h].value,m=this.state.stack.concat();m.splice(h,m.length-h),m.push({parentId:v,loading:!0,options:[]}),this.setState({stack:m},function(){c.fetcher(d,a.__assign(a.__assign({},p),{value:u,level:h+1,parentId:v,parent:u[h]})).then(function(t){var a=e.state.stack.concat(),l=t.data?t.data.value:void 0,r=t.data&&t.data.options||t.data;a.splice(h,a.length-h),"undefined"!=typeof l&&(u.splice(h+1,n.length-h-1),u.push(l),o(s?u.join(i||","):u)),a.push({options:r,parentId:v,loading:!1,visible:!!r}),e.setState({stack:a},e.loadMore)}).catch(function(e){c.notify("error",e.message)})})}},t.prototype.handleChange=function(e,t){var a=this.props,n=a.value,i=a.delimiter,o=a.onChange,s=a.joinValues,l=a.extractValue,r=Array.isArray(n)?n.concat():n&&"string"==typeof n?n.split(i||","):[];r.splice(e,r.length-e),r.push(s?t.value:t),o(s?r.join(i||","):l?r.map(function(e){return e.value||e}):r)},t.prototype.reload=function(){var e=this.props.reloadOptions;e&&e()},t.prototype.render=function(){var e=this,t=this.props,o=t.options,l=t.classPrefix,r=t.className,d=(t.inline,t.loading),p=t.value,c=t.delimiter,u=(t.joinValues,t.extractValue,t.multiple,a.__rest(t,["options","classPrefix","className","inline","loading","value","delimiter","joinValues","extractValue","multiple"])),h=Array.isArray(p)?p.concat():p&&"string"==typeof p?p.split(c||","):[];return n.default.createElement("div",{className:i.default(l+"ChainedSelectControl",r)},n.default.createElement(s.default,a.__assign({},u,{classPrefix:l,key:"base",options:o,value:h[0],onChange:this.handleChange.bind(this,0),loading:d,inline:!0})),this.state.stack.map(function(t,i){var o=t.options,r=t.loading,d=t.visible;return d===!1?null:n.default.createElement(s.default,a.__assign({},u,{classPrefix:l,key:"x-"+(i+1),options:o,value:h[i+1],onChange:e.handleChange.bind(e,i+1),loading:r,inline:!0}))}))},t.defaultProps={clearable:!1,searchable:!1,multiple:!0},t}(n.default.Component);t.default=r;var d=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([o.OptionsControl({type:"chained-select",sizeMutable:!1})],t)}(r);t.ChainedSelectControlRenderer=d}); ;/*!src/renderers/Form/NestedSelect.tsx*/ -amis.define("9d9f047",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NestedSelectControlRenderer=void 0;var a=e("node_modules/tslib/tslib"),n=a.__importDefault(e("node_modules/react/index")),l=a.__importDefault(e("node_modules/lodash/xorBy")),i=a.__importDefault(e("node_modules/lodash/unionBy")),s=a.__importDefault(e("997df41")),r=a.__importDefault(e("0a43d97")),o=a.__importDefault(e("2b3dcdf")),d=e("node_modules/react-overlays/lib/index"),u=e("b7bbd16"),c=e("9a80175"),p=e("f2e345e"),h=e("b86428a"),m=a.__importDefault(e("4ee46ff")),f=e("node_modules/react-dom/index"),_=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={isOpened:!1,isFocused:!1,inputValue:"",stack:[]},t}a.__extends(t,e),t.prototype.domRef=function(e){this.target=e},t.prototype.open=function(){var e=this.props,t=e.options,a=e.disabled;a||this.setState({isOpened:!0,stack:[t]})},t.prototype.close=function(){this.setState({isOpened:!1,stack:[]})},t.prototype.removeItem=function(e,t){var a=this.props,n=a.onChange,l=a.selectedOptions,i=a.disabled,s=a.joinValues,r=a.valueField,o=a.extractValue,d=a.delimiter,u=a.value;i||(t&&t.stopPropagation(),l.splice(e,1),s?u=l.map(function(e){return e[r||"value"]}).join(d||","):o&&(u=l.map(function(e){return e[r||"value"]})),n(u))},t.prototype.renderValue=function(){var e=this,t=this.props,a=t.multiple,l=t.classnames,i=t.selectedOptions,s=t.labelField,r=t.placeholder,o=t.disabled;return i&&i.length>0?i.map(function(t,i){return a?n.default.createElement("div",{className:l("Select-value"),key:i},n.default.createElement("span",{className:l("Select-valueIcon",{"is-disabled":o||t.disabled}),onClick:e.removeItem.bind(e,i)},"×"),n.default.createElement("span",{className:l("Select-valueLabel")},t[s||"label"])):n.default.createElement("div",{className:l("Select-value"),key:i},t[s||"label"])}):n.default.createElement("div",{className:l("NestedSelect-placeholder")},r)},t.prototype.renderClear=function(){var e=this.props,t=e.clearable,a=e.value,l=e.disabled,i=e.classnames;return t&&!l&&(Array.isArray(a)?a.length:a)?n.default.createElement("a",{onClick:this.clearValue,className:i("NestedSelect-clear")},n.default.createElement(u.Icon,{icon:"close",className:"icon"})):null},t.prototype.clearValue=function(){var e=this.props,t=e.onChange,a=e.resetValue;t("undefined"==typeof a?"":a)},t.prototype.handleOptionClick=function(e,t){var a=this.props,n=a.multiple,l=a.onChange,i=a.joinValues,s=a.extractValue,r=a.valueField,o=a.autoFill,d=a.onBulkChange;if(!n){t.stopPropagation();var u=!n&&o&&!c.isEmpty(o)&&p.dataMapping(o,e);u&&d(u),l(i?e[r||"value"]:s?e[r||"value"]:e),!n&&this.close()}},t.prototype.handleCheck=function(e,t){var n=this.props,s=n.onChange,r=n.selectedOptions,o=n.joinValues,d=n.delimiter,u=n.extractValue,p=n.withChildren,h=n.cascade,m=n.multiple,f=this.state.stack,_=this.props.valueField||"value";if(!Array.isArray(e)&&e.children&&e.children.length&&"number"==typeof t){var y=r.some(function(t){return t[_]==e[_]}),g=h?!1:e.uncheckable||m&&!y,v=e.children.map(function(e){return a.__assign(a.__assign({},e),{uncheckable:g})});f[t]?f.splice(t+1,1,v):f.push(v)}var b,C=r.concat();if(Array.isArray(e))e=p?c.flattenTree(e):e,b=C.length===e.length?[]:e;else if(Array.isArray(e.children))if(h)b=l.default(C,[e],_);else if(p){e=c.flattenTree([e]);var E=e.every(function(e){return!!~C.findIndex(function(t){return t[_]===e[_]})})?l.default:i.default;b=E(C,e,_)}else b=C.filter(function(t){return!~c.flattenTree([e],function(e){return e[_]}).indexOf(t[_])}),!~C.map(function(e){return e[_]}).indexOf(e[_])&&b.push(e);else b=l.default(C,[e],_);o?b=b.map(function(e){return e[_]}).join(d||","):u&&(b=b.map(function(e){return e[_]})),s(b)},t.prototype.allChecked=function(e){var t=this,a=this.props,n=a.selectedOptions,l=a.withChildren,i=a.valueField;return e.every(function(e){return l&&e.children?t.allChecked(e.children):n.some(function(t){return t[i||"value"]==e[i||"value"]})})},t.prototype.partialChecked=function(e){var t=this,a=this.props,n=a.selectedOptions,l=a.withChildren,i=a.valueField;return e.some(function(e){return l&&e.children?t.partialChecked(e.children):n.some(function(t){return t[i||"value"]==e[i||"value"]})})},t.prototype.reload=function(){var e=this.props.reloadOptions;e&&e()},t.prototype.onFocus=function(e){this.props.disabled||this.state.isOpened||this.setState({isFocused:!0},this.focus),this.props.onFocus&&this.props.onFocus(e)},t.prototype.onBlur=function(e){this.setState({isFocused:!1}),this.props.onBlur&&this.props.onBlur(e)},t.prototype.focus=function(){this.input?this.input.focus():this.getTarget()&&this.getTarget().focus()},t.prototype.blur=function(){this.input?this.input.blur():this.getTarget()&&this.getTarget().blur()},t.prototype.getTarget=function(){return this.target||(this.target=f.findDOMNode(this)),this.target},t.prototype.inputRef=function(e){this.input=e},t.prototype.handleInputChange=function(e){var t=e.currentTarget.value,a=this.props,n=a.options,l=a.labelField,i=a.valueField,s=c.string2regExp(t),r=t&&this.state.isOpened?c.filterTree(n,function(e){return s.test(e[l||"label"])||s.test(e[i||"value"])||!(!e.children||!e.children.length)},1,!0):n.concat();this.setState({inputValue:t,stack:[r]})},t.prototype.renderOptions=function(){var e=this,t=this.props,a=t.multiple,l=t.selectedOptions,i=t.classnames,s=t.value,o=t.options,d=t.disabled,c=t.searchable,p=t.searchPromptText,h=t.translate,f=t.labelField,_=this.props.valueField||"value",y=this.state.stack,g=c?n.default.createElement("div",{className:i("Select-input",{"is-focused":this.state.isFocused})},n.default.createElement(u.Icon,{icon:"search",className:"icon"}),n.default.createElement(m.default,{value:this.state.inputValue||"",onFocus:this.onFocus,onBlur:this.onBlur,disabled:d,placeholder:h(p),onChange:this.handleInputChange,ref:this.inputRef})):null,v=this.partialChecked(o),b=this.allChecked(o);return n.default.createElement(n.default.Fragment,null,y.map(function(t,o){return n.default.createElement("div",{key:o,className:i("NestedSelect-menu")},0===o?g:null,a&&0===o?n.default.createElement("div",{className:i("NestedSelect-option","checkall"),onMouseEnter:e.onMouseEnterAll},n.default.createElement(r.default,{onChange:e.handleCheck.bind(e,t),checked:v,partial:v&&!b},"全选")):null,t.map(function(t,c){var p=l.some(function(e){return e[_]==t[_]}),h=!!t.uncheckable||p,m=!!t.uncheckable||!!d;return n.default.createElement("div",{key:c,className:i("NestedSelect-option",{"is-active":s&&s===t[_]}),onClick:e.handleOptionClick.bind(e,t),onMouseEnter:e.onMouseEnter.bind(e,t,o)},a?n.default.createElement(r.default,{className:i("NestedSelect-optionLabel"),onChange:e.handleCheck.bind(e,t,o),trueValue:t[_],checked:h,disabled:m},t[f||"label"]):n.default.createElement("div",{className:i("NestedSelect-optionLabel")},n.default.createElement("span",null,t[f||"label"])),t.children&&t.children.length?n.default.createElement("div",{className:i("NestedSelect-optionArrowRight")},n.default.createElement(u.Icon,{icon:"right-arrow",className:"icon"})):null)}))}))},t.prototype.onMouseEnterAll=function(){this.setState({stack:[this.props.options]})},t.prototype.onMouseEnter=function(e,t){var n=this.state.stack,l=this.props,i=l.cascade,s=l.multiple,r=l.selectedOptions,o=l.valueField;if(t+=1,e.children&&e.children.length){var d=r.some(function(t){return t[o||"value"]==e[o||"value"]}),u=i?!1:e.uncheckable||s&&d,c=e.children.map(function(e){return a.__assign(a.__assign({},e),{uncheckable:u})});n[t]?n.splice(t,1,c):n.push(c)}else n[t]&&n.splice(t,1);this.setState({stack:n.slice(0,t+1)})},t.prototype.renderOuter=function(){var e=this.props,t=e.popOverContainer,a=e.classnames,l=n.default.createElement(d.RootCloseWrapper,{disabled:!this.state.isOpened,onRootClose:this.close},n.default.createElement("div",{className:a("NestedSelect-menuOuter")},this.renderOptions()));return n.default.createElement(s.default,{container:t||this.getTarget,target:this.getTarget,show:!0},n.default.createElement(o.default,{className:a("NestedSelect-popover")},l))},t.prototype.render=function(){var e,t=this.props,a=t.className,l=t.disabled,i=t.classnames,s=t.multiple;return n.default.createElement("div",{className:i("NestedSelectControl",a)},n.default.createElement("div",{className:i("NestedSelect",(e={},e["NestedSelect--multi"]=s,e["is-opened"]=this.state.isOpened,e["is-disabled"]=l,e)),onClick:this.open,ref:this.domRef},n.default.createElement("div",{className:i("NestedSelect-valueWrap"),onClick:this.open},this.renderValue()),this.renderClear(),n.default.createElement("span",{className:i("Select-arrow")},n.default.createElement(u.Icon,{icon:"caret",className:"icon"}))),this.state.isOpened?this.renderOuter():null)};var h,_;return t.defaultProps={cascade:!1,withChildren:!1,searchPromptText:"输入内容进行检索"},a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"domRef",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"open",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"close",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"clearValue",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"onFocus",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"onBlur",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"focus",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"blur",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"getTarget",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",["function"==typeof(h="undefined"!=typeof HTMLInputElement&&HTMLInputElement)?h:Object]),a.__metadata("design:returntype",void 0)],t.prototype,"inputRef",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",["function"==typeof(_="undefined"!=typeof n.default&&n.default.ChangeEvent)?_:Object]),a.__metadata("design:returntype",void 0)],t.prototype,"handleInputChange",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"onMouseEnterAll",null),t}(n.default.Component);t.default=_;var y=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([h.OptionsControl({type:"nested-select"})],t)}(_);t.NestedSelectControlRenderer=y}); +amis.define("9d9f047",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NestedSelectControlRenderer=void 0;var a=e("node_modules/tslib/tslib"),n=a.__importDefault(e("node_modules/react/index")),l=a.__importDefault(e("node_modules/lodash/xorBy")),i=a.__importDefault(e("node_modules/lodash/unionBy")),s=a.__importDefault(e("997df41")),r=a.__importDefault(e("0a43d97")),o=a.__importDefault(e("2b3dcdf")),d=e("node_modules/react-overlays/lib/index"),u=e("b7bbd16"),c=e("9a80175"),p=e("f2e345e"),h=e("b86428a"),m=a.__importDefault(e("4ee46ff")),f=e("node_modules/react-dom/index"),_=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={isOpened:!1,isFocused:!1,inputValue:"",stack:[]},t}a.__extends(t,e),t.prototype.domRef=function(e){this.target=e},t.prototype.open=function(){var e=this.props,t=e.options,a=e.disabled;a||this.setState({isOpened:!0,stack:[t]})},t.prototype.close=function(){this.setState({isOpened:!1,stack:[]})},t.prototype.removeItem=function(e,t){var a=this.props,n=a.onChange,l=a.selectedOptions,i=a.disabled,s=a.joinValues,r=a.valueField,o=a.extractValue,d=a.delimiter,u=a.value;i||(t&&t.stopPropagation(),l.splice(e,1),s?u=l.map(function(e){return e[r||"value"]}).join(d||","):o&&(u=l.map(function(e){return e[r||"value"]})),n(u))},t.prototype.renderValue=function(){var e=this,t=this.props,a=t.multiple,l=t.classnames,i=t.selectedOptions,s=t.labelField,r=t.placeholder,o=t.disabled;return i&&i.length>0?i.map(function(t,i){return a?n.default.createElement("div",{className:l("Select-value"),key:i},n.default.createElement("span",{className:l("Select-valueIcon",{"is-disabled":o||t.disabled}),onClick:e.removeItem.bind(e,i)},"×"),n.default.createElement("span",{className:l("Select-valueLabel")},t[s||"label"])):n.default.createElement("div",{className:l("Select-value"),key:i},t[s||"label"])}):n.default.createElement("div",{className:l("NestedSelect-placeholder")},r)},t.prototype.renderClear=function(){var e=this.props,t=e.clearable,a=e.value,l=e.disabled,i=e.classnames;return t&&!l&&(Array.isArray(a)?a.length:a)?n.default.createElement("a",{onClick:this.clearValue,className:i("NestedSelect-clear")},n.default.createElement(u.Icon,{icon:"close",className:"icon"})):null},t.prototype.clearValue=function(){var e=this.props,t=e.onChange,a=e.resetValue;t("undefined"==typeof a?"":a)},t.prototype.handleOptionClick=function(e,t){var a=this.props,n=a.multiple,l=a.onChange,i=a.joinValues,s=a.extractValue,r=a.valueField,o=a.autoFill,d=a.onBulkChange;if(!n){t.stopPropagation();var u=!n&&o&&!c.isEmpty(o)&&p.dataMapping(o,e);u&&d(u),l(i?e[r||"value"]:s?e[r||"value"]:e),!n&&this.close()}},t.prototype.handleCheck=function(e,t){var n=this.props,s=n.onChange,r=n.selectedOptions,o=n.joinValues,d=n.delimiter,u=n.extractValue,p=n.withChildren,h=n.cascade,m=n.multiple,f=this.state.stack,_=this.props.valueField||"value";if(!Array.isArray(e)&&e.children&&e.children.length&&"number"==typeof t){var y=r.some(function(t){return t[_]==e[_]}),g=h?!1:e.uncheckable||m&&!y,v=e.children.map(function(e){return a.__assign(a.__assign({},e),{uncheckable:g})});f[t]?f.splice(t+1,1,v):f.push(v)}var b,k=r.concat();if(Array.isArray(e))e=p?c.flattenTree(e):e,b=k.length===e.length?[]:e;else if(Array.isArray(e.children))if(h)b=l.default(k,[e],_);else if(p){e=c.flattenTree([e]);var C=e.every(function(e){return!!~k.findIndex(function(t){return t[_]===e[_]})})?l.default:i.default;b=C(k,e,_)}else b=k.filter(function(t){return!~c.flattenTree([e],function(e){return e[_]}).indexOf(t[_])}),!~k.map(function(e){return e[_]}).indexOf(e[_])&&b.push(e);else b=l.default(k,[e],_);o?b=b.map(function(e){return e[_]}).join(d||","):u&&(b=b.map(function(e){return e[_]})),s(b)},t.prototype.allChecked=function(e){var t=this,a=this.props,n=a.selectedOptions,l=a.withChildren,i=a.valueField;return e.every(function(e){return l&&e.children?t.allChecked(e.children):n.some(function(t){return t[i||"value"]==e[i||"value"]})})},t.prototype.partialChecked=function(e){var t=this,a=this.props,n=a.selectedOptions,l=a.withChildren,i=a.valueField;return e.some(function(e){return l&&e.children?t.partialChecked(e.children):n.some(function(t){return t[i||"value"]==e[i||"value"]})})},t.prototype.reload=function(){var e=this.props.reloadOptions;e&&e()},t.prototype.onFocus=function(e){this.props.disabled||this.state.isOpened||this.setState({isFocused:!0},this.focus),this.props.onFocus&&this.props.onFocus(e)},t.prototype.onBlur=function(e){this.setState({isFocused:!1}),this.props.onBlur&&this.props.onBlur(e)},t.prototype.focus=function(){this.input?this.input.focus():this.getTarget()&&this.getTarget().focus()},t.prototype.blur=function(){this.input?this.input.blur():this.getTarget()&&this.getTarget().blur()},t.prototype.getTarget=function(){return this.target||(this.target=f.findDOMNode(this)),this.target},t.prototype.inputRef=function(e){this.input=e},t.prototype.handleInputChange=function(e){var t=e.currentTarget.value,a=this.props,n=a.options,l=a.labelField,i=a.valueField,s=c.string2regExp(t),r=t&&this.state.isOpened?c.filterTree(n,function(e){return s.test(e[l||"label"])||s.test(e[i||"value"])||!(!e.children||!e.children.length)},1,!0):n.concat();this.setState({inputValue:t,stack:[r]})},t.prototype.renderOptions=function(){var e=this,t=this.props,a=t.multiple,l=t.selectedOptions,i=t.classnames,s=t.value,o=t.options,d=t.disabled,c=t.searchable,p=t.checkAll,h=t.checkAllLabel,f=t.searchPromptText,_=t.translate,y=t.labelField,g=this.props.valueField||"value",v=this.state.stack,b=c?n.default.createElement("div",{className:i("Select-input",{"is-focused":this.state.isFocused})},n.default.createElement(u.Icon,{icon:"search",className:"icon"}),n.default.createElement(m.default,{value:this.state.inputValue||"",onFocus:this.onFocus,onBlur:this.onBlur,disabled:d,placeholder:_(f),onChange:this.handleInputChange,ref:this.inputRef})):null,k=this.partialChecked(o),C=this.allChecked(o);return n.default.createElement(n.default.Fragment,null,v.map(function(t,o){return n.default.createElement("div",{key:o,className:i("NestedSelect-menu")},0===o?b:null,a&&p&&0===o?n.default.createElement("div",{className:i("NestedSelect-option","checkall"),onMouseEnter:e.onMouseEnterAll},n.default.createElement(r.default,{onChange:e.handleCheck.bind(e,t),checked:k,partial:k&&!C},_(h))):null,t.map(function(t,c){var p=l.some(function(e){return e[g]==t[g]}),h=!!t.uncheckable||p,m=!!t.uncheckable||!!d;return n.default.createElement("div",{key:c,className:i("NestedSelect-option",{"is-active":s&&s===t[g]}),onClick:e.handleOptionClick.bind(e,t),onMouseEnter:e.onMouseEnter.bind(e,t,o)},a?n.default.createElement(r.default,{className:i("NestedSelect-optionLabel"),onChange:e.handleCheck.bind(e,t,o),trueValue:t[g],checked:h,disabled:m},t[y||"label"]):n.default.createElement("div",{className:i("NestedSelect-optionLabel")},n.default.createElement("span",null,t[y||"label"])),t.children&&t.children.length?n.default.createElement("div",{className:i("NestedSelect-optionArrowRight")},n.default.createElement(u.Icon,{icon:"right-arrow",className:"icon"})):null)}))}))},t.prototype.onMouseEnterAll=function(){this.setState({stack:[this.props.options]})},t.prototype.onMouseEnter=function(e,t){var n=this.state.stack,l=this.props,i=l.cascade,s=l.multiple,r=l.selectedOptions,o=l.valueField;if(t+=1,e.children&&e.children.length){var d=r.some(function(t){return t[o||"value"]==e[o||"value"]}),u=i?!1:e.uncheckable||s&&d,c=e.children.map(function(e){return a.__assign(a.__assign({},e),{uncheckable:u})});n[t]?n.splice(t,1,c):n.push(c)}else n[t]&&n.splice(t,1);this.setState({stack:n.slice(0,t+1)})},t.prototype.renderOuter=function(){var e=this.props,t=e.popOverContainer,a=e.classnames,l=n.default.createElement(d.RootCloseWrapper,{disabled:!this.state.isOpened,onRootClose:this.close},n.default.createElement("div",{className:a("NestedSelect-menuOuter")},this.renderOptions()));return n.default.createElement(s.default,{container:t||this.getTarget,target:this.getTarget,show:!0},n.default.createElement(o.default,{className:a("NestedSelect-popover")},l))},t.prototype.render=function(){var e,t=this.props,a=t.className,l=t.disabled,i=t.classnames,s=t.multiple;return n.default.createElement("div",{className:i("NestedSelectControl",a)},n.default.createElement("div",{className:i("NestedSelect",(e={},e["NestedSelect--multi"]=s,e["is-opened"]=this.state.isOpened,e["is-disabled"]=l,e)),onClick:this.open,ref:this.domRef},n.default.createElement("div",{className:i("NestedSelect-valueWrap"),onClick:this.open},this.renderValue()),this.renderClear(),n.default.createElement("span",{className:i("Select-arrow")},n.default.createElement(u.Icon,{icon:"caret",className:"icon"}))),this.state.isOpened?this.renderOuter():null)};var h,_;return t.defaultProps={cascade:!1,withChildren:!1,searchPromptText:"输入内容进行检索",checkAll:!0,checkAllLabel:"全选"},a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"domRef",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"open",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"close",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"clearValue",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"onFocus",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[Object]),a.__metadata("design:returntype",void 0)],t.prototype,"onBlur",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"focus",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"blur",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"getTarget",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",["function"==typeof(h="undefined"!=typeof HTMLInputElement&&HTMLInputElement)?h:Object]),a.__metadata("design:returntype",void 0)],t.prototype,"inputRef",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",["function"==typeof(_="undefined"!=typeof n.default&&n.default.ChangeEvent)?_:Object]),a.__metadata("design:returntype",void 0)],t.prototype,"handleInputChange",null),a.__decorate([c.autobind,a.__metadata("design:type",Function),a.__metadata("design:paramtypes",[]),a.__metadata("design:returntype",void 0)],t.prototype,"onMouseEnterAll",null),t}(n.default.Component);t.default=_;var y=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t=a.__decorate([h.OptionsControl({type:"nested-select"})],t)}(_);t.NestedSelectControlRenderer=y}); ;/*!src/renderers/Form/Transfer.tsx*/ amis.define("399400a",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TransferRender=t.BaseTransferRenderer=void 0;var n=e("node_modules/tslib/tslib"),a=e("b86428a"),r=n.__importDefault(e("node_modules/react/index")),o=n.__importDefault(e("0573406")),i=e("b86428a"),s=e("9a80175"),l=n.__importDefault(e("acad559")),d=n.__importDefault(e("node_modules/lodash/find")),u=e("d57879c"),p=e("f2e345e"),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}n.__extends(t,e),t.prototype.handleChange=function(e){var t=this.props,n=t.onChange,a=t.joinValues,r=t.delimiter,o=t.valueField,i=t.extractValue,l=t.options,d=t.setOptions,p=e,c=l.concat();Array.isArray(e)&&((a||i)&&(p=e.map(function(e){var t=s.findTree(l,u.optionValueCompare(e[o||"value"],o||"value"));return t||c.push(e),e[o||"value"]})),a&&(p=p.join(r||","))),c.length>l.length&&d(c,!0),n(p)},t.prototype.option2value=function(e){return e},t.prototype.handleSearch=function(e,t){return n.__awaiter(this,void 0,void 0,function(){var a,r,o,i,l,p,c,f,_,h,m;return n.__generator(this,function(n){switch(n.label){case 0:if(a=this.props,r=a.searchApi,o=a.options,i=a.labelField,l=a.valueField,p=a.env,c=a.data,!r)return[3,5];n.label=1;case 1:return n.trys.push([1,3,,4]),[4,p.fetcher(r,s.createObject(c,{term:e}),{cancelExecutor:t})];case 2:if(f=n.sent(),!f.ok)throw new Error(f.msg||"搜索请求异常");if(_=f.data.options||f.data.items||f.data,!Array.isArray(_))throw new Error("期望接口返回数组信息");return[2,_.map(function(e){var t=null;return Array.isArray(o)&&(t=d.default(o,u.optionValueCompare(e[l||"value"],l))),t||e})];case 3:return h=n.sent(),p.isCancel(h)||p.notify("error",h.message),[2,[]];case 4:return[3,6];case 5:return e?(m=s.string2regExp(e),[2,s.filterTree(o,function(e){return!!(Array.isArray(e.children)&&e.children.length||m.test(e[i||"label"])||m.test(e[l||"value"]))},0,!0)]):[2,o];case 6:return[2]}})})},t.prototype.renderCell=function(e,t,a,r){var o=this.props,i=o.render,l=o.data;return i("cell/"+a+"/"+r,n.__assign({type:"text"},e),{value:p.resolveVariable(e.name,t),data:s.createObject(l,t)})},t.prototype.render=function(){var e=this.props,t=e.className,n=e.classnames,a=e.options,i=e.selectedOptions,s=e.showArrow,d=e.sortable,u=e.selectMode,p=e.columns,c=e.loading,f=e.searchable,_=e.searchResultMode,h=e.deferLoad,m=e.leftOptions,y=e.leftMode,v=e.rightMode;return r.default.createElement("div",{className:n("TransferControl",t)},r.default.createElement(o.default,{value:i,options:a,onChange:this.handleChange,option2value:this.option2value,sortable:d,showArrow:s,selectMode:u,searchResultMode:_,columns:p,onSearch:f?this.handleSearch:void 0,onDeferLoad:h,leftOptions:m,leftMode:y,rightMode:v,cellRender:this.renderCell}),r.default.createElement(l.default,{overlay:!0,key:"info",show:c}))};var a,c,f,_;return n.__decorate([s.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",["function"==typeof(a="undefined"!=typeof Array&&Array)?a:Object]),n.__metadata("design:returntype",void 0)],t.prototype,"handleChange",null),n.__decorate([s.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",["function"==typeof(c="undefined"!=typeof i.Option&&i.Option)?c:Object]),n.__metadata("design:returntype",void 0)],t.prototype,"option2value",null),n.__decorate([s.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",[String,"function"==typeof(f="undefined"!=typeof Function&&Function)?f:Object]),n.__metadata("design:returntype",Promise)],t.prototype,"handleSearch",null),n.__decorate([s.autobind,n.__metadata("design:type",Function),n.__metadata("design:paramtypes",[Object,"function"==typeof(_="undefined"!=typeof i.Option&&i.Option)?_:Object,Number,Number]),n.__metadata("design:returntype",void 0)],t.prototype,"renderCell",null),t}(r.default.Component);t.BaseTransferRenderer=c;var f=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n.__extends(t,e),t}(c);t.TransferRender=f,t.default=a.OptionsControl({type:"transfer"})(f)}); ;/*!src/renderers/Service.tsx*/ @@ -1163,11 +1169,11 @@ amis.define("d019970",function(e,r){"use strict";Object.defineProperty(r,"__esMo ;/*!examples/components/SchemaRender.jsx*/ amis.define("ec59a60",function(e,t){"use strict";function n(){return new Promise(function(t){return e(["997c87d"],function(e){return t(e.default)})})}function a(e){var t;return e.$schema||(e=o.__assign({$schema:"https://houtai.baidu.com/v2/schemas/page.json"},e)),f.withRouter((t=function(t){function a(n){var a=t.call(this,n)||this;a.state={open:!1},a.toggleCode=function(){return a.setState({open:!a.state.open})},a.copyCode=function(){p.default(JSON.stringify(e)),l.toast.success("页面配置JSON已复制到粘贴板")},a.close=function(){return a.setState({open:!1})};var o=n.router,r=function(e){e=e||"";var t=o.getCurrentLocation();e&&"#"===e[0]?e=t.pathname+t.search+e:e&&"?"===e[0]&&(e=t.pathname+e);var n=e.indexOf("?"),a=e.indexOf("#"),r=~n?e.substring(0,n):~a?e.substring(0,a):e,i=~n?e.substring(n,~a?a:void 0):"",s=~a?e.substring(a):t.hash;if(r){if("/"!=r[0]&&!/^https?:\/\//.test(r)){var l=t.pathname,c=l.split("/");c.pop();for(var u=void 0;u=/^\.\.?\//.exec(r);)"../"===u[0]&&c.pop(),r=r.substring(u[0].length);r=c.concat(r).join("/")}}else r=t.pathname;return r+i+s};return a.env={updateLocation:function(e,t){o[t?"replace":"push"](r(e))},isCurrentUrl:function(e){var t=r(e);return o.isActive(t)},jumpTo:function(e){e=r(e),/^https?:\/\//.test(e)?window.location.replace(e):o.push(e)},fetcher:function(e){var t=e.url,n=e.method,a=e.data,o=e.config,r=e.headers;return o=o||{},o.headers=r||{},o.cancelExecutor&&(o.cancelToken=new s.default.CancelToken(o.cancelExecutor)),a&&a instanceof FormData||!a||"string"==typeof a||a instanceof Blob||a instanceof ArrayBuffer||(a=JSON.stringify(a),o.headers["Content-Type"]="application/json"),"post"!==n&&"put"!==n&&"patch"!==n?(a&&("delete"===n?o.data=a:o.params=a),s.default[n](t,o)):s.default[n](t,a,o)},isCancel:function(e){return s.default.isCancel(e)},notify:function(e,t){return l.toast[e]?l.toast[e](t,"error"===e?"系统错误":"系统消息"):console.warn("[Notify]",e,t)},alert:c.alert,confirm:c.confirm,copy:function(e){p.default(e),l.toast.success("内容已复制到粘贴板")}},a.handleEditorMount=a.handleEditorMount.bind(a),a}return o.__extends(a,t),a.prototype.handleEditorMount=function(e,t){t.languages.json.jsonDefaults.setDiagnosticsOptions({enableSchemaRequest:!0,validate:!0})},a.prototype.renderCode=function(){return r.default.createElement(u.default,{getComponent:n,editorDidMount:this.handleEditorMount,language:"json",value:e,placeholder:"加载中,请稍后。。。",disabled:!0})},a.prototype.renderSchema=function(){var t=this.props,n=(t.router,t.location),a=t.theme,o=t.locale;return i.render(e,{location:n,theme:a,locale:o},this.env)},a.prototype.render=function(){var e=this.props.classPrefix,t=this.props.showCode;return r.default.createElement(r.default.Fragment,null,r.default.createElement("div",{className:"schema-wrapper"},t!==!1?r.default.createElement(d.default,{classPrefix:e,size:"lg",onHide:this.close,show:this.state.open,closeOnOutside:!0,position:"right"},this.state.open?this.renderCode():null):null,this.renderSchema()),t!==!1?r.default.createElement("div",{className:"Doc-toc"},r.default.createElement("div",null,r.default.createElement("div",{className:"Doc-headingList"},r.default.createElement("div",{className:"Doc-headingList-item"},r.default.createElement("a",{onClick:this.toggleCode},"查看页面配置 ",r.default.createElement("i",{className:"fa fa-code p-l-xs"}))),r.default.createElement("div",{className:"Doc-headingList-item"},r.default.createElement("a",{onClick:this.copyCode},"复制页面配置 ",r.default.createElement("i",{className:"fa fa-copy p-l-xs"})))))):null)},a}(r.default.Component),t.displayName="SchemaRenderer",t))}Object.defineProperty(t,"__esModule",{value:!0});var o=e("node_modules/tslib/tslib"),r=o.__importDefault(e("node_modules/react/index")),i=e("d019970"),s=o.__importDefault(e("node_modules/axios/index")),l=e("6ae88e0"),c=e("bfe4ee0"),u=o.__importDefault(e("4783ce8")),d=o.__importDefault(e("01a937e")),f=e("node_modules/react-router/lib/index"),p=o.__importDefault(e("node_modules/copy-to-clipboard/index"));t.default=a}); ;/*!examples/components/DocSearch.jsx*/ -amis.define("c6757fd",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("node_modules/tslib/tslib"),o=n.__importDefault(e("node_modules/react/index")),a=n.__importDefault(e("ec59a60")),r=a.default({type:"form",mode:"inline",wrapWithPanel:!1,className:":Doc-search",controls:[{type:"input-group",size:"sm",controls:[{type:"icon",addOnclassName:"no-bg no-border p-r-none p-l",className:"text-sm",icon:"search",vendor:"iconfont"},{type:"text",placeholder:"搜索...",inputClassName:"no-border",name:"docsearch"}]}]}),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n.__extends(t,e),t.prototype.componentDidMount=function(){var e='input[name="docsearch"]';docsearch({appId:"S08MJHBHFJ",apiKey:"f2d788a048dcc0bdc87a1d8c54bee363",indexName:"gh_pages",inputSelector:e,debug:!1})},t.prototype.render=function(){return o.default.createElement(r,{showCode:!1,theme:this.props.theme})},t}(o.default.Component);t.default=c}); +amis.define("c6757fd",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("node_modules/tslib/tslib"),o=n.__importDefault(e("node_modules/react/index")),a=n.__importDefault(e("ec59a60")),r=a.default({type:"form",mode:"inline",wrapWithPanel:!1,className:":Doc-search",controls:[{type:"input-group",size:"sm",controls:[{type:"icon",addOnclassName:"no-bg no-border p-r-none p-l",className:"text-sm",icon:"search",vendor:"iconfont"},{type:"text",placeholder:"搜索...",inputClassName:"no-border",name:"docsearch"}]}]}),s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n.__extends(t,e),t.prototype.componentDidMount=function(){var e='input[name="docsearch"]';docsearch({appId:"S08MJHBHFJ",apiKey:"5fba814bb773d08b5d2a3f6074f926a5",indexName:"gh_pages",inputSelector:e,debug:!1})},t.prototype.render=function(){return o.default.createElement(r,{showCode:!1,theme:this.props.theme})},t}(o.default.Component);t.default=s}); ;/*!examples/components/MdRenderer.tsx*/ amis.define("b57db8f",function(e,t){"use strict";function n(e){return function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return a.__extends(n,t),n.prototype.renderHeading=function(e){var t=this;return e.map(function(e,n){return l.default.createElement("div",{key:e.fullPath+"-"+n,className:s.default("Doc-headingList-item",{"is-active":t.props.location.hash===e.fullPath})},l.default.createElement("a",{href:"#"+e.fragment},e.label),e.children&&e.children.length?t.renderHeading(e.children):null)})},n.prototype.render=function(){var t=this.props,n=t.prevDoc,r=t.nextDoc,i=t.ContextPath;return l.default.createElement(l.default.Fragment,null,l.default.createElement("div",{className:"Doc-content"},e.title?l.default.createElement("div",{className:"Doc-title"},l.default.createElement("h1",null,e.title)):null,l.default.createElement(m,a.__assign({},this.props,{doc:e})),l.default.createElement("div",{className:"Doc-footer"},l.default.createElement("div",{className:"Doc-navLinks"},n?l.default.createElement(d.Link,{className:"Doc-navLinks--prev",to:""+i+n.path},l.default.createElement("div",{className:"Doc-navLinks-icon"},l.default.createElement("i",{className:"iconfont icon-arrow-left"})),l.default.createElement("div",{className:"Doc-navLinks-body text-right"},l.default.createElement("div",{className:"Doc-navLinks-subtitle"},"上一篇 - ",n.group||"其他"),l.default.createElement("div",{className:"Doc-navLinks-title"},n.label," "))):null,r?l.default.createElement(d.Link,{className:"Doc-navLinks--next",to:""+i+r.path},l.default.createElement("div",{className:"Doc-navLinks-body"},l.default.createElement("div",{className:"Doc-navLinks-subtitle"},"下一篇 - ",r.group||"其他"),l.default.createElement("div",{className:"Doc-navLinks-title"},r.label)),l.default.createElement("div",{className:"Doc-navLinks-icon"},l.default.createElement("i",{className:"iconfont icon-arrow-right"}))):null),l.default.createElement("div",{className:"Doc-footer-divider"}),l.default.createElement("div",{className:"Doc-footer-fixme"},"文档有误?",l.default.createElement("a",{href:"https://github.com/baidu/amis/tree/master"+location.pathname.replace(i,"")+".md",target:"_blank"},"在 Github 上编辑此页!")))),e.toc&&e.toc.children&&e.toc.children.length>0?l.default.createElement("div",{className:"Doc-toc hidden-xs hidden-sm"},l.default.createElement("div",null,l.default.createElement("div",{className:"Doc-headingList"},this.renderHeading(e.toc.children)))):null)},n}(l.default.Component)}Object.defineProperty(t,"__esModule",{value:!0});var a=e("node_modules/tslib/tslib"),l=a.__importDefault(e("node_modules/react/index")),r=a.__importDefault(e("node_modules/react-dom/index")),i=a.__importDefault(e("4783ce8")),o=a.__importDefault(e("997df41")),c=a.__importDefault(e("2b3dcdf")),s=a.__importDefault(e("node_modules/classnames/index")),d=e("node_modules/react-router/lib/index"),u=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.state={PlayGround:null},e}return a.__extends(n,t),n.prototype.componentDidMount=function(){var t=this;e(["9b1667d"],function(e){return t.setState({PlayGround:e.default})})},n.prototype.render=function(){var e=this,t=this.props,n=t.container,r=t.height,i=(t.setAsideFolded,t.setHeaderVisible,a.__rest(t,["container","height","setAsideFolded","setHeaderVisible"])),s=this.state.PlayGround;return l.default.createElement("div",null,l.default.createElement("span",{style:{display:"block",height:r},ref:"span"}),s?l.default.createElement(o.default,{container:n,target:function(){return e.refs.span},placement:"bottom",show:!0},l.default.createElement(c.default,{theme:i.theme,offset:{x:0,y:-r},style:{height:r},className:":MDPreview-shcema-preview-popover"},l.default.createElement("div",{className:"MDPreview-schema-preview"},l.default.createElement(s,a.__assign({},i,{vertical:!0}))))):null)},n}(l.default.Component),m=function(e){function t(t){var n=e.call(this,t)||this;return n.ref=null,n.doms=[],n.divRef=n.divRef.bind(n),n.handleClick=n.handleClick.bind(n),n}return a.__extends(t,e),t.prototype.componentDidMount=function(){if(this.renderSchema(),location.hash&&location.hash.length>1){window.history&&"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var e=document.querySelector('[name="'+location.hash.substring(1)+'"]');e&&e.scrollIntoView()}},t.prototype.componentDidUpdate=function(){this.renderSchema()},t.prototype.componentWillUnmount=function(){this.doms.forEach(function(e){return r.default.unmountComponentAtNode(e)})},t.prototype.handleClick=function(e){var t=e.target.getAttribute("href");t&&"#"!==t[0]&&!/^http/.test(t)&&(e.preventDefault(),this.props.push(t))},t.prototype.divRef=function(e){this.ref=e,e&&(e.innerHTML=this.props.doc.html)},t.prototype.renderSchema=function(){var e=this,t=document.querySelectorAll('script[type="text/schema"]');if(t||t.length)for(var n=function(n){var c=t[n],s={};[].slice.apply(c.attributes).forEach(function(e){s[e.name]=e.value});var d=document.createElement("div"),m=s.height?parseInt(s.height,10):200;d.setAttribute("class","doc-play-ground"),d.setAttribute("style","height: "+m+"px;"),c.parentNode.replaceChild(d,c),o.doms.push(d),r.default.unstable_renderSubtreeIntoContainer(o,l.default.createElement(i.default,a.__assign({},o.props,{height:m,container:function(){return r.default.findDOMNode(e)},height:m,component:u,code:c.innerText,scope:s.scope,unMountOnHidden:!0,placeholder:"加载中,请稍后。。。"})),d)},o=this,c=0,s=t.length;s>c;c++)n(c,s)},t.prototype.render=function(){return l.default.createElement("div",{className:"MDPreview"},l.default.createElement("div",{className:"markdown-body",ref:this.divRef},"Doc"))},t.displayName="MarkdownRenderer",t}(l.default.Component);t.default=n}); ;/*!examples/components/Doc.tsx*/ -amis.define("85a7530",function(n,o){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o.docs=void 0;var t=n("node_modules/tslib/tslib"),e=t.__importDefault(n("node_modules/react/index")),c=t.__importDefault(n("b57db8f")),l=n("9a80175");o.docs=[{label:"📌 开始",children:[{label:"介绍",path:"/docs/index",getComponent:function(o,t){return n(["docs/index.md"],function(n){t(null,c.default(n))})}},{label:"快速开始",path:"/docs/start/getting-started",getComponent:function(o,t){return n(["docs/start/getting-started.md"],function(n){t(null,c.default(n))})}},{label:"自定义",path:"/docs/start/custom",getComponent:function(o,t){return n(["docs/start/custom.md"],function(n){t(null,c.default(n))})}}]},{label:"💡 概念",children:[{label:"配置与组件",path:"/docs/concepts/schema",getComponent:function(o,t){return n(["docs/concepts/schema.md"],function(n){t(null,c.default(n))})}},{label:"数据域与数据链",path:"/docs/concepts/datascope-and-datachain",getComponent:function(o,t){return n(["docs/concepts/datascope-and-datachain.md"],function(n){t(null,c.default(n))})}},{label:"模板",path:"/docs/concepts/template",getComponent:function(o,t){return n(["docs/concepts/template.md"],function(n){t(null,c.default(n))})}},{label:"数据映射",path:"/docs/concepts/data-mapping",getComponent:function(o,t){return n(["docs/concepts/data-mapping.md"],function(n){t(null,c.default(n))})}},{label:"表达式",path:"/docs/concepts/expression",getComponent:function(o,t){return n(["docs/concepts/expression.md"],function(n){t(null,c.default(n))})}},{label:"联动",path:"/docs/concepts/linkage",getComponent:function(o,t){return n(["docs/concepts/linkage.md"],function(n){t(null,c.default(n))})}},{label:"行为",path:"/docs/concepts/action",getComponent:function(o,t){return n(["docs/concepts/action.md"],function(n){t(null,c.default(n))})}},{label:"样式",path:"/docs/concepts/style",getComponent:function(o,t){return n(["docs/concepts/style.md"],function(n){t(null,c.default(n))})}}]},{label:"🎼 类型",children:[{label:"SchemaNode",path:"/docs/types/schemanode",getComponent:function(o,t){return n(["docs/types/schemanode.md"],function(n){t(null,c.default(n))})}},{label:"API",path:"/docs/types/api",getComponent:function(o,t){return n(["docs/types/api.md"],function(n){t(null,c.default(n))})}}]},{label:"⚙ 组件",children:[{label:"组件介绍",path:"/docs/components/component",getComponent:function(o,t){return n(["docs/components/component.md"],function(n){t(null,c.default(n))})}},{label:"Page 页面",path:"/docs/components/page",getComponent:function(o,t){return n(["docs/components/page.md"],function(n){t(null,c.default(n))})}},{label:"Form 表单",children:[{label:"Form 表单",path:"/docs/components/form/index",getComponent:function(o,t){return n(["docs/components/form/index.md"],function(n){t(null,c.default(n))})}},{label:"FormItem 表单项",path:"/docs/components/form/formitem",getComponent:function(o,t){return n(["docs/components/form/formitem.md"],function(n){t(null,c.default(n))})}},{label:"Options 选择器表单项",path:"/docs/components/form/options",getComponent:function(o,t){return n(["docs/components/form/options.md"],function(n){t(null,c.default(n))})}},{label:"Array 数组输入框",path:"/docs/components/form/array",getComponent:function(o,t){return n(["docs/components/form/array.md"],function(n){t(null,c.default(n))})}},{label:"Button 按钮",path:"/docs/components/form/button",getComponent:function(o,t){return n(["docs/components/form/button.md"],function(n){t(null,c.default(n))})}},{label:"Button-Toolbar 按钮工具栏",path:"/docs/components/form/button-toolbar",getComponent:function(o,t){return n(["docs/components/form/button-toolbar.md"],function(n){t(null,c.default(n))})}},{label:"Button-Group 按钮集合",path:"/docs/components/form/button-group",getComponent:function(o,t){return n(["docs/components/form/button-group.md"],function(n){t(null,c.default(n))})}},{label:"Chain-Select 链式下拉框",path:"/docs/components/form/chain-select",getComponent:function(o,t){return n(["docs/components/form/chain-select.md"],function(n){t(null,c.default(n))})}},{label:"Checkbox 勾选框",path:"/docs/components/form/checkbox",getComponent:function(o,t){return n(["docs/components/form/checkbox.md"],function(n){t(null,c.default(n))})}},{label:"Checkboxes 复选框",path:"/docs/components/form/checkboxes",getComponent:function(o,t){return n(["docs/components/form/checkboxes.md"],function(n){t(null,c.default(n))})}},{label:"City 城市选择器",path:"/docs/components/form/city",getComponent:function(o,t){return n(["docs/components/form/city.md"],function(n){t(null,c.default(n))})}},{label:"Color 颜色选择器",path:"/docs/components/form/color",getComponent:function(o,t){return n(["docs/components/form/color.md"],function(n){t(null,c.default(n))})}},{label:"Combo 组合",path:"/docs/components/form/combo",getComponent:function(o,t){return n(["docs/components/form/combo.md"],function(n){t(null,c.default(n))})}},{label:"Date 日期选择器",path:"/docs/components/form/date",getComponent:function(o,t){return n(["docs/components/form/date.md"],function(n){t(null,c.default(n))})}},{label:"Datetime 日期时间选择器",path:"/docs/components/form/datetime",getComponent:function(o,t){return n(["docs/components/form/datetime.md"],function(n){t(null,c.default(n))})}},{label:"Date-Range 日期范围选择器",path:"/docs/components/form/date-range",getComponent:function(o,t){return n(["docs/components/form/date-range.md"],function(n){t(null,c.default(n))})}},{label:"Datetime-Range 日期时间范围",path:"/docs/components/form/datetime-range",getComponent:function(o,t){return n(["docs/components/form/datetime-range.md"],function(n){t(null,c.default(n))})}},{label:"DiffEditor 对比编辑器",path:"/docs/components/form/diff-editor",getComponent:function(o,t){return n(["docs/components/form/diff-editor.md"],function(n){t(null,c.default(n))})}},{label:"Editor 编辑器",path:"/docs/components/form/editor",getComponent:function(o,t){return n(["docs/components/form/editor.md"],function(n){t(null,c.default(n))})}},{label:"FieldSet 表单项集合",path:"/docs/components/form/fieldset",getComponent:function(o,t){return n(["docs/components/form/fieldset.md"],function(n){t(null,c.default(n))})}},{label:"File 文件上传",path:"/docs/components/form/file",getComponent:function(o,t){return n(["docs/components/form/file.md"],function(n){t(null,c.default(n))})}},{label:"Formula 公式",path:"/docs/components/form/formula",getComponent:function(o,t){return n(["docs/components/form/formula.md"],function(n){t(null,c.default(n))})}},{label:"Grid 网格",path:"/docs/components/form/grid",getComponent:function(o,t){return n(["docs/components/form/grid.md"],function(n){t(null,c.default(n))})}},{label:"Group 表单项组",path:"/docs/components/form/group",getComponent:function(o,t){return n(["docs/components/form/group.md"],function(n){t(null,c.default(n))})}},{label:"HBox",path:"/docs/components/form/hbox",getComponent:function(o,t){return n(["docs/components/form/hbox.md"],function(n){t(null,c.default(n))})}},{label:"Hidden 隐藏字段",path:"/docs/components/form/hidden",getComponent:function(o,t){return n(["docs/components/form/hidden.md"],function(n){t(null,c.default(n))})}},{label:"Image 图片",path:"/docs/components/form/image",getComponent:function(o,t){return n(["docs/components/form/image.md"],function(n){t(null,c.default(n))})}},{label:"Input-Group 输入框组合",path:"/docs/components/form/input-group",getComponent:function(o,t){return n(["docs/components/form/input-group.md"],function(n){t(null,c.default(n))})}},{label:"List 列表",path:"/docs/components/form/list",getComponent:function(o,t){return n(["docs/components/form/list.md"],function(n){t(null,c.default(n))})}},{label:"Matrix 矩阵",path:"/docs/components/form/matrix",getComponent:function(o,t){return n(["docs/components/form/matrix.md"],function(n){t(null,c.default(n))})}},{label:"NestedSelect 级联选择器",path:"/docs/components/form/nestedselect",getComponent:function(o,t){return n(["docs/components/form/nestedselect.md"],function(n){t(null,c.default(n))})}},{label:"Number 数字输入框",path:"/docs/components/form/number",getComponent:function(o,t){return n(["docs/components/form/number.md"],function(n){t(null,c.default(n))})}},{label:"Panel 面板",path:"/docs/components/form/panel",getComponent:function(o,t){return n(["docs/components/form/panel.md"],function(n){t(null,c.default(n))})}},{label:"Picker 列表选择器",path:"/docs/components/form/picker",getComponent:function(o,t){return n(["docs/components/form/picker.md"],function(n){t(null,c.default(n))})}},{label:"Radios 单选框",path:"/docs/components/form/radios",getComponent:function(o,t){return n(["docs/components/form/radios.md"],function(n){t(null,c.default(n))})}},{label:"Rating 评分",path:"/docs/components/form/rating",getComponent:function(o,t){return n(["docs/components/form/rating.md"],function(n){t(null,c.default(n))})}},{label:"Range 滑块",path:"/docs/components/form/range",getComponent:function(o,t){return n(["docs/components/form/range.md"],function(n){t(null,c.default(n))})}},{label:"Repeat 重复频率选择器",path:"/docs/components/form/repeat",getComponent:function(o,t){return n(["docs/components/form/repeat.md"],function(n){t(null,c.default(n))})}},{label:"Rich-Text 富文本编辑器",path:"/docs/components/form/rich-text",getComponent:function(o,t){return n(["docs/components/form/rich-text.md"],function(n){t(null,c.default(n))})}},{label:"Select 选择器",path:"/docs/components/form/select",getComponent:function(o,t){return n(["docs/components/form/select.md"],function(n){t(null,c.default(n))})}},{label:"Service 功能容器",path:"/docs/components/form/service",getComponent:function(o,t){return n(["docs/components/form/service.md"],function(n){t(null,c.default(n))})}},{label:"SubForm 子表单",path:"/docs/components/form/subform",getComponent:function(o,t){return n(["docs/components/form/subform.md"],function(n){t(null,c.default(n))})}},{label:"Switch 开关",path:"/docs/components/form/switch",getComponent:function(o,t){return n(["docs/components/form/switch.md"],function(n){t(null,c.default(n))})}},{label:"Static 静态展示",path:"/docs/components/form/static",getComponent:function(o,t){return n(["docs/components/form/static.md"],function(n){t(null,c.default(n))})}},{label:"Tabs 选项卡",path:"/docs/components/form/tabs",getComponent:function(o,t){return n(["docs/components/form/tabs.md"],function(n){t(null,c.default(n))})}},{label:"Table 表格",path:"/docs/components/form/table",getComponent:function(o,t){return n(["docs/components/form/table.md"],function(n){t(null,c.default(n))})}},{label:"Tag 标签选择器",path:"/docs/components/form/tag",getComponent:function(o,t){return n(["docs/components/form/tag.md"],function(n){t(null,c.default(n))})}},{label:"Text 输入框",path:"/docs/components/form/text",getComponent:function(o,t){return n(["docs/components/form/text.md"],function(n){t(null,c.default(n))})}},{label:"Textarea 多行输入框",path:"/docs/components/form/textarea",getComponent:function(o,t){return n(["docs/components/form/textarea.md"],function(n){t(null,c.default(n))})}},{label:"Time 时间",path:"/docs/components/form/time",getComponent:function(o,t){return n(["docs/components/form/time.md"],function(n){t(null,c.default(n))})}},{label:"Transfer 穿梭器",path:"/docs/components/form/transfer",getComponent:function(o,t){return n(["docs/components/form/transfer.md"],function(n){t(null,c.default(n))})}},{label:"TabsTransfer 组合穿梭器",path:"/docs/components/form/tabs-transfer",getComponent:function(o,t){return n(["docs/components/form/tabs-transfer.md"],function(n){t(null,c.default(n))})}},{label:"Tree 树形选择框",path:"/docs/components/form/tree",getComponent:function(o,t){return n(["docs/components/form/tree.md"],function(n){t(null,c.default(n))})}},{label:"TreeSelect 树形选择器",path:"/docs/components/form/treeselect",getComponent:function(o,t){return n(["docs/components/form/treeselect.md"],function(n){t(null,c.default(n))})}}]},{label:"CRUD 增删改查",path:"/docs/components/crud",getComponent:function(o,t){return n(["docs/components/crud.md"],function(n){t(null,c.default(n))})}},{label:"Action 行为按钮",path:"/docs/components/action",getComponent:function(o,t){return n(["docs/components/action.md"],function(n){t(null,c.default(n))})}},{label:"Alert 提示",path:"/docs/components/alert",getComponent:function(o,t){return n(["docs/components/alert.md"],function(n){t(null,c.default(n))})}},{label:"Audio 音频",path:"/docs/components/audio",getComponent:function(o,t){return n(["docs/components/audio.md"],function(n){t(null,c.default(n))})}},{label:"Button 按钮",path:"/docs/components/button",getComponent:function(o,t){return n(["docs/components/button.md"],function(n){t(null,c.default(n))})}},{label:"ButtonGroup 按钮组",path:"/docs/components/button-group",getComponent:function(o,t){return n(["docs/components/button-group.md"],function(n){t(null,c.default(n))})}},{label:"Card 卡片",path:"/docs/components/card",getComponent:function(o,t){return n(["docs/components/card.md"],function(n){t(null,c.default(n))})}},{label:"Cards 卡片组",path:"/docs/components/cards",getComponent:function(o,t){return n(["docs/components/cards.md"],function(n){t(null,c.default(n))})}},{label:"Carousel 轮播图",path:"/docs/components/carousel",getComponent:function(o,t){return n(["docs/components/carousel.md"],function(n){t(null,c.default(n))})}},{label:"Chart 图表",path:"/docs/components/chart",getComponent:function(o,t){return n(["docs/components/chart.md"],function(n){t(null,c.default(n))})}},{label:"Collapse 折叠器",path:"/docs/components/collapse",getComponent:function(o,t){return n(["docs/components/collapse.md"],function(n){t(null,c.default(n))})}},{label:"Color 颜色",path:"/docs/components/color",getComponent:function(o,t){return n(["docs/components/color.md"],function(n){t(null,c.default(n))})}},{label:"Container 容器",path:"/docs/components/container",getComponent:function(o,t){return n(["docs/components/container.md"],function(n){t(null,c.default(n))})}},{label:"Date 日期时间",path:"/docs/components/date",getComponent:function(o,t){return n(["docs/components/date.md"],function(n){t(null,c.default(n))})}},{label:"Dialog 对话框",path:"/docs/components/dialog",getComponent:function(o,t){return n(["docs/components/dialog.md"],function(n){t(null,c.default(n))})}},{label:"Divider 分割线",path:"/docs/components/divider",getComponent:function(o,t){return n(["docs/components/divider.md"],function(n){t(null,c.default(n))})}},{label:"Drawer 抽屉",path:"/docs/components/drawer",getComponent:function(o,t){return n(["docs/components/drawer.md"],function(n){t(null,c.default(n))})}},{label:"DropDownButton",path:"/docs/components/dropdown-button",getComponent:function(o,t){return n(["docs/components/dropdown-button.md"],function(n){t(null,c.default(n))})}},{label:"Each 循环渲染器",path:"/docs/components/each",getComponent:function(o,t){return n(["docs/components/each.md"],function(n){t(null,c.default(n))})}},{label:"Grid 网格布局",path:"/docs/components/grid",getComponent:function(o,t){return n(["docs/components/grid.md"],function(n){t(null,c.default(n))})}},{label:"HBox 布局",path:"/docs/components/hbox",getComponent:function(o,t){return n(["docs/components/hbox.md"],function(n){t(null,c.default(n))})}},{label:"Html",path:"/docs/components/html",getComponent:function(o,t){return n(["docs/components/html.md"],function(n){t(null,c.default(n))})}},{label:"Icon 图标",path:"/docs/components/icon",getComponent:function(o,t){return n(["docs/components/icon.md"],function(n){t(null,c.default(n))})}},{label:"iFrame",path:"/docs/components/iframe",getComponent:function(o,t){return n(["docs/components/iframe.md"],function(n){t(null,c.default(n))})}},{label:"Image 图片",path:"/docs/components/image",getComponent:function(o,t){return n(["docs/components/image.md"],function(n){t(null,c.default(n))})}},{label:"Images 图片集",path:"/docs/components/images",getComponent:function(o,t){return n(["docs/components/images.md"],function(n){t(null,c.default(n))})}},{label:"Json",path:"/docs/components/json",getComponent:function(o,t){return n(["docs/components/json.md"],function(n){t(null,c.default(n))})}},{label:"Link 链接",path:"/docs/components/link",getComponent:function(o,t){return n(["docs/components/link.md"],function(n){t(null,c.default(n))})}},{label:"List 列表",path:"/docs/components/list",getComponent:function(o,t){return n(["docs/components/list.md"],function(n){t(null,c.default(n))})}},{label:"Mapping 映射",path:"/docs/components/mapping",getComponent:function(o,t){return n(["docs/components/mapping.md"],function(n){t(null,c.default(n))})}},{label:"Nav 导航",path:"/docs/components/nav",getComponent:function(o,t){return n(["docs/components/nav.md"],function(n){t(null,c.default(n))})}},{label:"Panel 面板",path:"/docs/components/panel",getComponent:function(o,t){return n(["docs/components/panel.md"],function(n){t(null,c.default(n))})}},{label:"Progress 进度条",path:"/docs/components/progress",getComponent:function(o,t){return n(["docs/components/progress.md"],function(n){t(null,c.default(n))})}},{label:"QRCode 二维码",path:"/docs/components/qrcode",getComponent:function(o,t){return n(["docs/components/qrcode.md"],function(n){t(null,c.default(n))})}},{label:"Remark 标记",path:"/docs/components/remark",getComponent:function(o,t){return n(["docs/components/remark.md"],function(n){t(null,c.default(n))})}},{label:"Service 功能型容器",path:"/docs/components/service",getComponent:function(o,t){return n(["docs/components/service.md"],function(n){t(null,c.default(n))})}},{label:"Spinner 加载中",path:"/docs/components/spinner",getComponent:function(o,t){return n(["docs/components/spinner.md"],function(n){t(null,c.default(n))})}},{label:"Status 状态",path:"/docs/components/status",getComponent:function(o,t){return n(["docs/components/status.md"],function(n){t(null,c.default(n))})}},{label:"Switch 开关",path:"/docs/components/switch",getComponent:function(o,t){return n(["docs/components/switch.md"],function(n){t(null,c.default(n))})}},{label:"Table 表格",path:"/docs/components/table",getComponent:function(o,t){return n(["docs/components/table.md"],function(n){t(null,c.default(n))})}},{label:"Tabs 选项卡",path:"/docs/components/tabs",getComponent:function(o,t){return n(["docs/components/tabs.md"],function(n){t(null,c.default(n))})}},{label:"Tasks 任务操作集合",path:"/docs/components/tasks",getComponent:function(o,t){return n(["docs/components/tasks.md"],function(n){t(null,c.default(n))})}},{label:"Tpl 模板",path:"/docs/components/tpl",getComponent:function(o,t){return n(["docs/components/tpl.md"],function(n){t(null,c.default(n))})}},{label:"Video 视频",path:"/docs/components/video",getComponent:function(o,t){return n(["docs/components/video.md"],function(n){t(null,c.default(n))})}},{label:"Wrapper 包裹容器",path:"/docs/components/wrapper",getComponent:function(o,t){return n(["docs/components/wrapper.md"],function(n){t(null,c.default(n))})}},{label:"Wizard 向导",path:"/docs/components/wizard",getComponent:function(o,t){return n(["docs/components/wizard.md"],function(n){t(null,c.default(n))})}}]}];var u=function(n){function c(){var o=null!==n&&n.apply(this,arguments)||this;return o.state={prevDoc:null,nextDoc:null},o}return t.__extends(c,n),c.prototype.componentDidMount=function(){this.props.setNavigations(o.docs),this.setDocFooter()},c.prototype.componentDidUpdate=function(n){this.props.location.pathname!==n.location.pathname&&(this.props.setNavigations(o.docs),this.setDocFooter())},c.prototype.setDocFooter=function(){var n=this,e=l.mapTree(o.docs,function(n){return t.__assign(t.__assign({},n),{children:Array.isArray(n.children)&&n.children.length?n.children.map(function(o){return t.__assign(t.__assign({},o),{group:n.group||n.label})}):null})}),c=l.flattenTree(e).filter(function(n){return!!n.path}),u=c.findIndex(function(o){return""+n.props.ContextPath+o.path===location.pathname});this.setState({prevDoc:c[u-1],nextDoc:c[u+1]})},c.prototype.render=function(){return e.default.createElement(e.default.Fragment,null,e.default.cloneElement(this.props.children,t.__assign(t.__assign({},this.props.children.props),{theme:this.props.theme,classPrefix:this.props.classPrefix,locale:this.props.locale,ContextPath:this.props.ContextPath,prevDoc:this.state.prevDoc,nextDoc:this.state.nextDoc})))},c}(e.default.PureComponent);o.default=u}); +amis.define("85a7530",function(n,o){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o.docs=void 0;var t=n("node_modules/tslib/tslib"),e=t.__importDefault(n("node_modules/react/index")),c=t.__importDefault(n("b57db8f")),l=n("9a80175");o.docs=[{label:"📌 开始",children:[{label:"介绍",path:"/docs/index",getComponent:function(o,t){return n(["docs/index.md"],function(n){t(null,c.default(n))})}},{label:"快速开始",path:"/docs/start/getting-started",getComponent:function(o,t){return n(["docs/start/getting-started.md"],function(n){t(null,c.default(n))})}},{label:"自定义",path:"/docs/start/custom",getComponent:function(o,t){return n(["docs/start/custom.md"],function(n){t(null,c.default(n))})}}]},{label:"💡 概念",children:[{label:"配置与组件",path:"/docs/concepts/schema",getComponent:function(o,t){return n(["docs/concepts/schema.md"],function(n){t(null,c.default(n))})}},{label:"数据域与数据链",path:"/docs/concepts/datascope-and-datachain",getComponent:function(o,t){return n(["docs/concepts/datascope-and-datachain.md"],function(n){t(null,c.default(n))})}},{label:"模板",path:"/docs/concepts/template",getComponent:function(o,t){return n(["docs/concepts/template.md"],function(n){t(null,c.default(n))})}},{label:"数据映射",path:"/docs/concepts/data-mapping",getComponent:function(o,t){return n(["docs/concepts/data-mapping.md"],function(n){t(null,c.default(n))})}},{label:"表达式",path:"/docs/concepts/expression",getComponent:function(o,t){return n(["docs/concepts/expression.md"],function(n){t(null,c.default(n))})}},{label:"联动",path:"/docs/concepts/linkage",getComponent:function(o,t){return n(["docs/concepts/linkage.md"],function(n){t(null,c.default(n))})}},{label:"行为",path:"/docs/concepts/action",getComponent:function(o,t){return n(["docs/concepts/action.md"],function(n){t(null,c.default(n))})}},{label:"样式",path:"/docs/concepts/style",getComponent:function(o,t){return n(["docs/concepts/style.md"],function(n){t(null,c.default(n))})}}]},{label:"🎼 类型",children:[{label:"SchemaNode",path:"/docs/types/schemanode",getComponent:function(o,t){return n(["docs/types/schemanode.md"],function(n){t(null,c.default(n))})}},{label:"API",path:"/docs/types/api",getComponent:function(o,t){return n(["docs/types/api.md"],function(n){t(null,c.default(n))})}}]},{label:"⚙ 组件",children:[{label:"组件介绍",path:"/docs/components/component",getComponent:function(o,t){return n(["docs/components/component.md"],function(n){t(null,c.default(n))})}},{label:"Page 页面",path:"/docs/components/page",getComponent:function(o,t){return n(["docs/components/page.md"],function(n){t(null,c.default(n))})}},{label:"Form 表单",children:[{label:"Form 表单",path:"/docs/components/form/index",getComponent:function(o,t){return n(["docs/components/form/index.md"],function(n){t(null,c.default(n))})}},{label:"FormItem 表单项",path:"/docs/components/form/formitem",getComponent:function(o,t){return n(["docs/components/form/formitem.md"],function(n){t(null,c.default(n))})}},{label:"Options 选择器表单项",path:"/docs/components/form/options",getComponent:function(o,t){return n(["docs/components/form/options.md"],function(n){t(null,c.default(n))})}},{label:"Array 数组输入框",path:"/docs/components/form/array",getComponent:function(o,t){return n(["docs/components/form/array.md"],function(n){t(null,c.default(n))})}},{label:"Button 按钮",path:"/docs/components/form/button",getComponent:function(o,t){return n(["docs/components/form/button.md"],function(n){t(null,c.default(n))})}},{label:"Button-Toolbar 按钮工具栏",path:"/docs/components/form/button-toolbar",getComponent:function(o,t){return n(["docs/components/form/button-toolbar.md"],function(n){t(null,c.default(n))})}},{label:"Button-Group 按钮集合",path:"/docs/components/form/button-group",getComponent:function(o,t){return n(["docs/components/form/button-group.md"],function(n){t(null,c.default(n))})}},{label:"Chain-Select 链式下拉框",path:"/docs/components/form/chain-select",getComponent:function(o,t){return n(["docs/components/form/chain-select.md"],function(n){t(null,c.default(n))})}},{label:"Checkbox 勾选框",path:"/docs/components/form/checkbox",getComponent:function(o,t){return n(["docs/components/form/checkbox.md"],function(n){t(null,c.default(n))})}},{label:"Checkboxes 复选框",path:"/docs/components/form/checkboxes",getComponent:function(o,t){return n(["docs/components/form/checkboxes.md"],function(n){t(null,c.default(n))})}},{label:"City 城市选择器",path:"/docs/components/form/city",getComponent:function(o,t){return n(["docs/components/form/city.md"],function(n){t(null,c.default(n))})}},{label:"Color 颜色选择器",path:"/docs/components/form/color",getComponent:function(o,t){return n(["docs/components/form/color.md"],function(n){t(null,c.default(n))})}},{label:"Combo 组合",path:"/docs/components/form/combo",getComponent:function(o,t){return n(["docs/components/form/combo.md"],function(n){t(null,c.default(n))})}},{label:"Date 日期选择器",path:"/docs/components/form/date",getComponent:function(o,t){return n(["docs/components/form/date.md"],function(n){t(null,c.default(n))})}},{label:"Datetime 日期时间选择器",path:"/docs/components/form/datetime",getComponent:function(o,t){return n(["docs/components/form/datetime.md"],function(n){t(null,c.default(n))})}},{label:"Date-Range 日期范围选择器",path:"/docs/components/form/date-range",getComponent:function(o,t){return n(["docs/components/form/date-range.md"],function(n){t(null,c.default(n))})}},{label:"Datetime-Range 日期时间范围",path:"/docs/components/form/datetime-range",getComponent:function(o,t){return n(["docs/components/form/datetime-range.md"],function(n){t(null,c.default(n))})}},{label:"DiffEditor 对比编辑器",path:"/docs/components/form/diff-editor",getComponent:function(o,t){return n(["docs/components/form/diff-editor.md"],function(n){t(null,c.default(n))})}},{label:"Editor 编辑器",path:"/docs/components/form/editor",getComponent:function(o,t){return n(["docs/components/form/editor.md"],function(n){t(null,c.default(n))})}},{label:"FieldSet 表单项集合",path:"/docs/components/form/fieldset",getComponent:function(o,t){return n(["docs/components/form/fieldset.md"],function(n){t(null,c.default(n))})}},{label:"File 文件上传",path:"/docs/components/form/file",getComponent:function(o,t){return n(["docs/components/form/file.md"],function(n){t(null,c.default(n))})}},{label:"Formula 公式",path:"/docs/components/form/formula",getComponent:function(o,t){return n(["docs/components/form/formula.md"],function(n){t(null,c.default(n))})}},{label:"Grid 网格",path:"/docs/components/form/grid",getComponent:function(o,t){return n(["docs/components/form/grid.md"],function(n){t(null,c.default(n))})}},{label:"Group 表单项组",path:"/docs/components/form/group",getComponent:function(o,t){return n(["docs/components/form/group.md"],function(n){t(null,c.default(n))})}},{label:"HBox",path:"/docs/components/form/hbox",getComponent:function(o,t){return n(["docs/components/form/hbox.md"],function(n){t(null,c.default(n))})}},{label:"Hidden 隐藏字段",path:"/docs/components/form/hidden",getComponent:function(o,t){return n(["docs/components/form/hidden.md"],function(n){t(null,c.default(n))})}},{label:"Image 图片",path:"/docs/components/form/image",getComponent:function(o,t){return n(["docs/components/form/image.md"],function(n){t(null,c.default(n))})}},{label:"Input-Group 输入框组合",path:"/docs/components/form/input-group",getComponent:function(o,t){return n(["docs/components/form/input-group.md"],function(n){t(null,c.default(n))})}},{label:"List 列表",path:"/docs/components/form/list",getComponent:function(o,t){return n(["docs/components/form/list.md"],function(n){t(null,c.default(n))})}},{label:"Matrix 矩阵",path:"/docs/components/form/matrix",getComponent:function(o,t){return n(["docs/components/form/matrix.md"],function(n){t(null,c.default(n))})}},{label:"NestedSelect 级联选择器",path:"/docs/components/form/nestedselect",getComponent:function(o,t){return n(["docs/components/form/nestedselect.md"],function(n){t(null,c.default(n))})}},{label:"Number 数字输入框",path:"/docs/components/form/number",getComponent:function(o,t){return n(["docs/components/form/number.md"],function(n){t(null,c.default(n))})}},{label:"Panel 面板",path:"/docs/components/form/panel",getComponent:function(o,t){return n(["docs/components/form/panel.md"],function(n){t(null,c.default(n))})}},{label:"Picker 列表选择器",path:"/docs/components/form/picker",getComponent:function(o,t){return n(["docs/components/form/picker.md"],function(n){t(null,c.default(n))})}},{label:"Radios 单选框",path:"/docs/components/form/radios",getComponent:function(o,t){return n(["docs/components/form/radios.md"],function(n){t(null,c.default(n))})}},{label:"Rating 评分",path:"/docs/components/form/rating",getComponent:function(o,t){return n(["docs/components/form/rating.md"],function(n){t(null,c.default(n))})}},{label:"Range 滑块",path:"/docs/components/form/range",getComponent:function(o,t){return n(["docs/components/form/range.md"],function(n){t(null,c.default(n))})}},{label:"Repeat 重复频率选择器",path:"/docs/components/form/repeat",getComponent:function(o,t){return n(["docs/components/form/repeat.md"],function(n){t(null,c.default(n))})}},{label:"Rich-Text 富文本编辑器",path:"/docs/components/form/rich-text",getComponent:function(o,t){return n(["docs/components/form/rich-text.md"],function(n){t(null,c.default(n))})}},{label:"Select 选择器",path:"/docs/components/form/select",getComponent:function(o,t){return n(["docs/components/form/select.md"],function(n){t(null,c.default(n))})}},{label:"Service 功能容器",path:"/docs/components/form/service",getComponent:function(o,t){return n(["docs/components/form/service.md"],function(n){t(null,c.default(n))})}},{label:"SubForm 子表单",path:"/docs/components/form/subform",getComponent:function(o,t){return n(["docs/components/form/subform.md"],function(n){t(null,c.default(n))})}},{label:"Switch 开关",path:"/docs/components/form/switch",getComponent:function(o,t){return n(["docs/components/form/switch.md"],function(n){t(null,c.default(n))})}},{label:"Static 静态展示",path:"/docs/components/form/static",getComponent:function(o,t){return n(["docs/components/form/static.md"],function(n){t(null,c.default(n))})}},{label:"Tabs 选项卡",path:"/docs/components/form/tabs",getComponent:function(o,t){return n(["docs/components/form/tabs.md"],function(n){t(null,c.default(n))})}},{label:"Table 表格",path:"/docs/components/form/table",getComponent:function(o,t){return n(["docs/components/form/table.md"],function(n){t(null,c.default(n))})}},{label:"Tag 标签选择器",path:"/docs/components/form/tag",getComponent:function(o,t){return n(["docs/components/form/tag.md"],function(n){t(null,c.default(n))})}},{label:"Text 输入框",path:"/docs/components/form/text",getComponent:function(o,t){return n(["docs/components/form/text.md"],function(n){t(null,c.default(n))})}},{label:"Textarea 多行输入框",path:"/docs/components/form/textarea",getComponent:function(o,t){return n(["docs/components/form/textarea.md"],function(n){t(null,c.default(n))})}},{label:"Time 时间",path:"/docs/components/form/time",getComponent:function(o,t){return n(["docs/components/form/time.md"],function(n){t(null,c.default(n))})}},{label:"Transfer 穿梭器",path:"/docs/components/form/transfer",getComponent:function(o,t){return n(["docs/components/form/transfer.md"],function(n){t(null,c.default(n))})}},{label:"TabsTransfer 组合穿梭器",path:"/docs/components/form/tabs-transfer",getComponent:function(o,t){return n(["docs/components/form/tabs-transfer.md"],function(n){t(null,c.default(n))})}},{label:"Tree 树形选择框",path:"/docs/components/form/tree",getComponent:function(o,t){return n(["docs/components/form/tree.md"],function(n){t(null,c.default(n))})}},{label:"TreeSelect 树形选择器",path:"/docs/components/form/treeselect",getComponent:function(o,t){return n(["docs/components/form/treeselect.md"],function(n){t(null,c.default(n))})}}]},{label:"CRUD 增删改查",path:"/docs/components/crud",getComponent:function(o,t){return n(["docs/components/crud.md"],function(n){t(null,c.default(n))})}},{label:"Action 行为按钮",path:"/docs/components/action",getComponent:function(o,t){return n(["docs/components/action.md"],function(n){t(null,c.default(n))})}},{label:"Alert 提示",path:"/docs/components/alert",getComponent:function(o,t){return n(["docs/components/alert.md"],function(n){t(null,c.default(n))})}},{label:"Audio 音频",path:"/docs/components/audio",getComponent:function(o,t){return n(["docs/components/audio.md"],function(n){t(null,c.default(n))})}},{label:"Button 按钮",path:"/docs/components/button",getComponent:function(o,t){return n(["docs/components/button.md"],function(n){t(null,c.default(n))})}},{label:"ButtonGroup 按钮组",path:"/docs/components/button-group",getComponent:function(o,t){return n(["docs/components/button-group.md"],function(n){t(null,c.default(n))})}},{label:"Card 卡片",path:"/docs/components/card",getComponent:function(o,t){return n(["docs/components/card.md"],function(n){t(null,c.default(n))})}},{label:"Cards 卡片组",path:"/docs/components/cards",getComponent:function(o,t){return n(["docs/components/cards.md"],function(n){t(null,c.default(n))})}},{label:"Carousel 轮播图",path:"/docs/components/carousel",getComponent:function(o,t){return n(["docs/components/carousel.md"],function(n){t(null,c.default(n))})}},{label:"Chart 图表",path:"/docs/components/chart",getComponent:function(o,t){return n(["docs/components/chart.md"],function(n){t(null,c.default(n))})}},{label:"Collapse 折叠器",path:"/docs/components/collapse",getComponent:function(o,t){return n(["docs/components/collapse.md"],function(n){t(null,c.default(n))})}},{label:"Color 颜色",path:"/docs/components/color",getComponent:function(o,t){return n(["docs/components/color.md"],function(n){t(null,c.default(n))})}},{label:"Container 容器",path:"/docs/components/container",getComponent:function(o,t){return n(["docs/components/container.md"],function(n){t(null,c.default(n))})}},{label:"Date 日期时间",path:"/docs/components/date",getComponent:function(o,t){return n(["docs/components/date.md"],function(n){t(null,c.default(n))})}},{label:"Dialog 对话框",path:"/docs/components/dialog",getComponent:function(o,t){return n(["docs/components/dialog.md"],function(n){t(null,c.default(n))})}},{label:"Divider 分割线",path:"/docs/components/divider",getComponent:function(o,t){return n(["docs/components/divider.md"],function(n){t(null,c.default(n))})}},{label:"Drawer 抽屉",path:"/docs/components/drawer",getComponent:function(o,t){return n(["docs/components/drawer.md"],function(n){t(null,c.default(n))})}},{label:"DropDownButton",path:"/docs/components/dropdown-button",getComponent:function(o,t){return n(["docs/components/dropdown-button.md"],function(n){t(null,c.default(n))})}},{label:"Each 循环渲染器",path:"/docs/components/each",getComponent:function(o,t){return n(["docs/components/each.md"],function(n){t(null,c.default(n))})}},{label:"Grid 网格布局",path:"/docs/components/grid",getComponent:function(o,t){return n(["docs/components/grid.md"],function(n){t(null,c.default(n))})}},{label:"HBox 布局",path:"/docs/components/hbox",getComponent:function(o,t){return n(["docs/components/hbox.md"],function(n){t(null,c.default(n))})}},{label:"Html",path:"/docs/components/html",getComponent:function(o,t){return n(["docs/components/html.md"],function(n){t(null,c.default(n))})}},{label:"Icon 图标",path:"/docs/components/icon",getComponent:function(o,t){return n(["docs/components/icon.md"],function(n){t(null,c.default(n))})}},{label:"iFrame",path:"/docs/components/iframe",getComponent:function(o,t){return n(["docs/components/iframe.md"],function(n){t(null,c.default(n))})}},{label:"Image 图片",path:"/docs/components/image",getComponent:function(o,t){return n(["docs/components/image.md"],function(n){t(null,c.default(n))})}},{label:"Images 图片集",path:"/docs/components/images",getComponent:function(o,t){return n(["docs/components/images.md"],function(n){t(null,c.default(n))})}},{label:"Json",path:"/docs/components/json",getComponent:function(o,t){return n(["docs/components/json.md"],function(n){t(null,c.default(n))})}},{label:"Link 链接",path:"/docs/components/link",getComponent:function(o,t){return n(["docs/components/link.md"],function(n){t(null,c.default(n))})}},{label:"List 列表",path:"/docs/components/list",getComponent:function(o,t){return n(["docs/components/list.md"],function(n){t(null,c.default(n))})}},{label:"Mapping 映射",path:"/docs/components/mapping",getComponent:function(o,t){return n(["docs/components/mapping.md"],function(n){t(null,c.default(n))})}},{label:"Nav 导航",path:"/docs/components/nav",getComponent:function(o,t){return n(["docs/components/nav.md"],function(n){t(null,c.default(n))})}},{label:"Panel 面板",path:"/docs/components/panel",getComponent:function(o,t){return n(["docs/components/panel.md"],function(n){t(null,c.default(n))})}},{label:"Progress 进度条",path:"/docs/components/progress",getComponent:function(o,t){return n(["docs/components/progress.md"],function(n){t(null,c.default(n))})}},{label:"QRCode 二维码",path:"/docs/components/qrcode",getComponent:function(o,t){return n(["docs/components/qrcode.md"],function(n){t(null,c.default(n))})}},{label:"Remark 标记",path:"/docs/components/remark",getComponent:function(o,t){return n(["docs/components/remark.md"],function(n){t(null,c.default(n))})}},{label:"Service 功能型容器",path:"/docs/components/service",getComponent:function(o,t){return n(["docs/components/service.md"],function(n){t(null,c.default(n))})}},{label:"Spinner 加载中",path:"/docs/components/spinner",getComponent:function(o,t){return n(["docs/components/spinner.md"],function(n){t(null,c.default(n))})}},{label:"Status 状态",path:"/docs/components/status",getComponent:function(o,t){return n(["docs/components/status.md"],function(n){t(null,c.default(n))})}},{label:"Switch 开关",path:"/docs/components/switch",getComponent:function(o,t){return n(["docs/components/switch.md"],function(n){t(null,c.default(n))})}},{label:"Table 表格",path:"/docs/components/table",getComponent:function(o,t){return n(["docs/components/table.md"],function(n){t(null,c.default(n))})}},{label:"Tabs 选项卡",path:"/docs/components/tabs",getComponent:function(o,t){return n(["docs/components/tabs.md"],function(n){t(null,c.default(n))})}},{label:"Tasks 任务操作集合",path:"/docs/components/tasks",getComponent:function(o,t){return n(["docs/components/tasks.md"],function(n){t(null,c.default(n))})}},{label:"Tpl 模板",path:"/docs/components/tpl",getComponent:function(o,t){return n(["docs/components/tpl.md"],function(n){t(null,c.default(n))})}},{label:"Video 视频",path:"/docs/components/video",getComponent:function(o,t){return n(["docs/components/video.md"],function(n){t(null,c.default(n))})}},{label:"Wrapper 包裹容器",path:"/docs/components/wrapper",getComponent:function(o,t){return n(["docs/components/wrapper.md"],function(n){t(null,c.default(n))})}},{label:"Wizard 向导",path:"/docs/components/wizard",getComponent:function(o,t){return n(["docs/components/wizard.md"],function(n){t(null,c.default(n))})}}]}];var u=function(n){function c(){var o=null!==n&&n.apply(this,arguments)||this;return o.state={prevDoc:null,nextDoc:null},o}return t.__extends(c,n),c.prototype.componentDidMount=function(){this.props.setNavigations(o.docs),this.setDocFooter()},c.prototype.componentDidUpdate=function(n){this.props.location.pathname!==n.location.pathname&&(this.props.setNavigations(o.docs),this.setDocFooter())},c.prototype.setDocFooter=function(){var n=this,e=l.mapTree(o.docs,function(n){return t.__assign(t.__assign({},n),{children:Array.isArray(n.children)&&n.children.length?n.children.map(function(o){return t.__assign(t.__assign({},o),{group:n.group||n.label})}):null})}),c=l.flattenTree(e).filter(function(n){return!!n.path}),u=c.findIndex(function(o){return""+n.props.ContextPath+o.path===location.pathname});this.setState({prevDoc:c[u-1],nextDoc:c[u+1]})},c.prototype.render=function(){return e.default.createElement(e.default.Fragment,null,e.default.cloneElement(this.props.children,t.__assign(t.__assign({},this.props.children.props),{theme:this.props.theme,classPrefix:this.props.classPrefix,locale:this.props.locale,ContextPath:this.props.ContextPath,prevDoc:this.state.prevDoc,nextDoc:this.state.nextDoc})))},c}(e.default.PureComponent);o.default=u}); ;/*!examples/components/Page/Simple.jsx*/ amis.define("da274e0",function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={type:"page",title:"标题",remark:"提示 Tip",body:"内容部分. 可以使用 \\${var} 获取变量。如: `\\$date`: ${date}",aside:"边栏部分",toolbar:"工具栏",initApi:"https://houtai.baidu.com/api/mock2/page/initData"}}); ;/*!examples/components/Page/Error.jsx*/ diff --git a/gh-pages/pkg/examples/index.html_map_20e71d4.js b/gh-pages/pkg/examples/index.html_map_caa0215.js similarity index 99% rename from gh-pages/pkg/examples/index.html_map_20e71d4.js rename to gh-pages/pkg/examples/index.html_map_caa0215.js index 08d85a09..a2159bfe 100644 --- a/gh-pages/pkg/examples/index.html_map_20e71d4.js +++ b/gh-pages/pkg/examples/index.html_map_caa0215.js @@ -5204,11 +5204,11 @@ amis.require.resourceMap({ "type": "js" }, "docs/index.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/index_64ff072.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/index_9751456.js", "type": "js" }, "docs/start/getting-started.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/start/getting-started_3465d9a.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/start/getting-started_0f2c46d.js", "type": "js" }, "docs/start/custom.md": { @@ -5236,7 +5236,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/concepts/linkage.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/concepts/linkage_cf54698.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/concepts/linkage_862b62d.js", "type": "js" }, "docs/concepts/action.md": { @@ -5252,7 +5252,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/types/api.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/types/api_102dfdc.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/types/api_1399dbe.js", "type": "js" }, "docs/components/component.md": { @@ -5264,7 +5264,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/components/form/index.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/index_bd485a5.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/index_6a74e10.js", "type": "js" }, "docs/components/form/formitem.md": { @@ -5272,7 +5272,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/components/form/options.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/options_f85c3d3.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/options_d036671.js", "type": "js" }, "docs/components/form/array.md": { @@ -5336,7 +5336,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/components/form/editor.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/editor_66729c0.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/editor_0342b1c.js", "type": "js" }, "docs/components/form/fieldset.md": { @@ -5420,7 +5420,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/components/form/select.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/select_54b9a53.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/form/select_6b64a9c.js", "type": "js" }, "docs/components/form/service.md": { @@ -5480,7 +5480,7 @@ amis.require.resourceMap({ "type": "js" }, "docs/components/crud.md": { - "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/crud_3c02c38.js", + "url": "https://bce.bdstatic.com/fex/amis-gh-pages/docs/components/crud_339d30b.js", "type": "js" }, "docs/components/action.md": { diff --git a/gh-pages/pkg/style_b020740.css b/gh-pages/pkg/style_36d0dda.css similarity index 80% rename from gh-pages/pkg/style_b020740.css rename to gh-pages/pkg/style_36d0dda.css index 700b2a4f..2d901bcc 100644 --- a/gh-pages/pkg/style_b020740.css +++ b/gh-pages/pkg/style_36d0dda.css @@ -1,4 +1,4 @@ /*!examples/doc.css*/ @font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format('woff')}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;font-family:'PingFang SC','Microsoft YaHei','Hiragino Sans GB',STHeiti,'Microsoft YaHei','Helvetica Neue',Helvetica,Arial,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word;box-sizing:border-box;min-width:200px;padding:25px 45px}.anchor{padding-top:70px;margin-top:-70px}.markdown-body a:not(.btn){background-color:transparent;-webkit-text-decoration-skip:objects}.markdown-body a:active:not(.btn),.markdown-body a:hover:not(.btn){outline-width:0}.markdown-body strong{font-weight:inherit}.markdown-body strong{font-weight:bolder}.markdown-body>h1{font-size:2em;margin:.67em 0}.markdown-body img{border-style:none}.markdown-body svg:not(:root){overflow:hidden}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em}.markdown-body hr{box-sizing:content-box;height:0;overflow:visible}.markdown-body input{font:inherit;margin:0}.markdown-body input{overflow:visible}.markdown-body button:-moz-focusring,.markdown-body [type=button]:-moz-focusring,.markdown-body [type=reset]:-moz-focusring,.markdown-body [type=submit]:-moz-focusring{outline:1px dotted ButtonText}.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.markdown-body table:not(.table){border-spacing:0;border-collapse:collapse}.markdown-body table:not(.table) td,.markdown-body table:not(.table) th{padding:0}.markdown-body *{box-sizing:border-box}.markdown-body input{font:13px/1.4 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol'}.markdown-body a:not(.btn){color:#4078c0;text-decoration:none}.markdown-body a:hover:not(.btn),.markdown-body a:active:not(.btn){color:#4078c0;text-decoration:underline}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #ddd}.markdown-body hr::before{display:table;content:''}.markdown-body hr::after{display:table;clear:both;content:''}.markdown-body>h1,.markdown-body>h2,.markdown-body>h3,.markdown-body>h4,.markdown-body>h5,.markdown-body>h6{margin-top:0;margin-bottom:0;line-height:1.5}.markdown-body>h1{font-size:30px}.markdown-body>h2{font-size:21px}.markdown-body>h3{font-size:16px}.markdown-body>h4{font-size:14px}.markdown-body>h5{font-size:12px}.markdown-body>h6{font-size:11px}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0}.markdown-body ul,.markdown-body ol{padding-left:0;margin-top:0;margin-bottom:0}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body code{font-family:Consolas,'Liberation Mono',Menlo,Courier,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0;font:12px Consolas,'Liberation Mono',Menlo,Courier,monospace}.markdown-body .pl-0{padding-left:0!important}.markdown-body .pl-1{padding-left:3px!important}.markdown-body .pl-2{padding-left:6px!important}.markdown-body .pl-3{padding-left:12px!important}.markdown-body .pl-4{padding-left:24px!important}.markdown-body .pl-5{padding-left:36px!important}.markdown-body .pl-6{padding-left:48px!important}.markdown-body .form-select::-ms-expand{opacity:0}.markdown-body:before{display:table;content:''}.markdown-body:after{display:table;clear:both;content:''}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .anchor{display:inline-block;padding-right:2px;margin-left:-18px}.markdown-body .anchor:focus{outline:0}.markdown-body>h1,.markdown-body>h2,.markdown-body>h3,.markdown-body>h4,.markdown-body>h5,.markdown-body>h6{margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown-body>h1 .octicon-link,.markdown-body>h2 .octicon-link,.markdown-body>h3 .octicon-link,.markdown-body>h4 .octicon-link,.markdown-body>h5 .octicon-link,.markdown-body>h6 .octicon-link{color:#000;vertical-align:middle;visibility:hidden}.markdown-body>h1:hover .anchor,.markdown-body>h2:hover .anchor,.markdown-body>h3:hover .anchor,.markdown-body>h4:hover .anchor,.markdown-body>h5:hover .anchor,.markdown-body>h6:hover .anchor{text-decoration:none}.markdown-body>h1:hover .anchor .octicon-link,.markdown-body>h2:hover .anchor .octicon-link,.markdown-body>h3:hover .anchor .octicon-link,.markdown-body>h4:hover .anchor .octicon-link,.markdown-body>h5:hover .anchor .octicon-link,.markdown-body>h6:hover .anchor .octicon-link{visibility:visible}.markdown-body>h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #dee5e7}.markdown-body>h1 .anchor{line-height:1}.markdown-body>h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #dee5e7}.markdown-body>h2 .anchor{line-height:1}.markdown-body>h3{font-size:1.5em;line-height:1.43}.markdown-body>h3 .anchor{line-height:1.2}.markdown-body>h4{font-size:1.25em}.markdown-body>h4 .anchor{line-height:1.2}.markdown-body>h5{font-size:1em}.markdown-body>h5 .anchor{line-height:1.1}.markdown-body>h6{font-size:1em;color:#777}.markdown-body h6 .anchor{line-height:1.1}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{margin-top:0;margin-bottom:16px}.markdown-body hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown-body ul:not(.dropdown-menu):not(.nav),.markdown-body ol{padding-left:2em}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:16px}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body table:not(.table){display:block;width:100%;overflow:auto;word-break:normal}.markdown-body table:not(.table) th{font-weight:700}.markdown-body table:not(.table) th,.markdown-body table:not(.table) td{padding:6px 13px;border:1px solid #ddd}.markdown-body table:not(.table) tr{background-color:#fff;border-top:1px solid #ccc}.markdown-body table:not(.table) tr:nth-child(2n){background-color:#f8f8f8}.markdown-body img{max-width:90%;margin-left:5%;margin-right:5%;box-sizing:content-box;background-color:#fff;border-radius:5px;border:1px solid #ddd;box-shadow:0 8px 18px 0 rgba(0,0,0,.3)}@media (min-width:1200px){.markdown-body img{max-width:800px}}.markdown-body code{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown-body code:before,.markdown-body code:after{letter-spacing:-.2em;content:'\00a0'}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body pre{word-wrap:normal}.markdown-body pre code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body pre code:before,.markdown-body pre code:after{content:normal}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown-body .pl-c{color:#969896}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0086b3}.markdown-body .pl-e,.markdown-body .pl-en{color:#795da3}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#333}.markdown-body .pl-ent{color:#63a35c}.markdown-body .pl-k{color:#a71d5d}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#183691}.markdown-body .pl-v{color:#ed6a43}.markdown-body .pl-id{color:#b52a1d}.markdown-body .pl-ii{background-color:#b52a1d;color:#f8f8f8}.markdown-body .pl-sr .pl-cce{color:#63a35c;font-weight:700}.markdown-body .pl-ml{color:#693a17}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{color:#1d3e81;font-weight:700}.markdown-body .pl-mq{color:teal}.markdown-body .pl-mi{color:#333;font-style:italic}.markdown-body .pl-mb{color:#333;font-weight:700}.markdown-body .pl-md{background-color:#ffecec;color:#bd2c00}.markdown-body .pl-mi1{background-color:#eaffea;color:#55a532}.markdown-body .pl-mdr{color:#795da3;font-weight:700}.markdown-body .pl-mo{color:#1d3e81}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px Consolas,'Liberation Mono',Menlo,Courier,monospace;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#4078c0;border:1px solid #4078c0}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#4078c0}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item+.task-list-item{margin-top:3px}.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.markdown-body hr{border-bottom-color:#eee}.doc-play-ground{border:1px solid #ddd;min-height:200px;position:relative;width:100%;overflow:hidden}.doc-play-ground .nav-tabs{margin-bottom:0}.markdown-body .CodeMirror pre{padding:0 4px;margin:0;background-color:transparent}.markdown-body .CodeMirror,.markdown-body .CodeMirror *{box-sizing:content-box}.markdown-body .CodeMirror-lines{padding:0}.markdown-body .tree-view ul{padding-left:0!important}.markdown-body>.amis-preview{margin-bottom:15px}.amis-doc pre{margin-top:15px} /*!examples/style.scss*/ -body{background-color:#fff!important}body.dark{background-color:#333538!important}a{text-decoration:none!important}.page-play:before,.page-edit:before{display:table;content:' '}.page-play:after,.page-edit:after{clear:both;display:block;content:'';height:0}.page-play .app-content,.page-edit .app-content{position:absolute;top:50px;bottom:0;height:auto;left:0;right:0}.page-play .app-content-body,.page-edit .app-content-body{height:100%}.resizer{position:absolute;top:0;bottom:0;margin-left:-2px;width:4px;background:#626d78;z-index:1;cursor:col-resize}.resizer:hover{background:#343a40}.MDPreview{flex:1 auto;overflow:auto;width:100%;position:relative}.MDPreview-shcema-preview-popover{box-shadow:none!important;margin-top:-1px!important;padding:0 45px!important;left:0!important;width:100%!important;z-index:1!important;background:transparent!important;border:0!important}.MDPreview-schema-preview{border:1px solid #ddd;position:relative;height:100%;width:100%}.amis-schema-editor.fix-settings .amis-schema-editor-settings-inner .amis-schema-editor-config-tab>.tab-content,.amis-schema-editor.fix-settings .amis-schema-editor-settings-inner .amis-schema-editor-code-tab>.tab-content{bottom:50px}.app-wrapper .a-Layout,.app-wrapper .cxd-Layout,.app-wrapper .dark-Layout{padding-top:100px}.app-wrapper .a-Layout-header,.app-wrapper .cxd-Layout-header,.app-wrapper .dark-Layout-header{height:64px!important;box-shadow:none!important}.app-wrapper .a-Layout-header::before,.app-wrapper .cxd-Layout-header::before,.app-wrapper .dark-Layout-header::before{position:fixed;height:64px;content:'';z-index:-1;left:0;right:0;box-shadow:0 2px 20px 0 rgba(0,0,0,.1)}.app-wrapper .a-Layout-header .gh-icon,.app-wrapper .cxd-Layout-header .gh-icon,.app-wrapper .dark-Layout-header .gh-icon{position:fixed;right:20px;top:15px;font-size:22px;padding:0 10px;color:#333}.app-wrapper .a-Layout-header .gh-icon:hover,.app-wrapper .cxd-Layout-header .gh-icon:hover,.app-wrapper .dark-Layout-header .gh-icon:hover{color:#333}.app-wrapper .a-Layout-brandBar,.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-brandBar,.app-wrapper .dark-Layout-searchBar{position:relative}.app-wrapper .a-Layout-brandBar::before,.app-wrapper .a-Layout-searchBar::before,.app-wrapper .cxd-Layout-brandBar::before,.app-wrapper .cxd-Layout-searchBar::before,.app-wrapper .dark-Layout-brandBar::before,.app-wrapper .dark-Layout-searchBar::before{top:50%;right:0;height:32px;content:' ';position:absolute;transform:translateY(-50%);border-left:1px solid #e8ebee;width:1px}.app-wrapper .a-Layout-brandBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .dark-Layout-brandBar{background-color:transparent;width:200px}.app-wrapper .a-Layout-brandBar .a-Layout-brand,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand,.app-wrapper .a-Layout-brandBar .dark-Layout-brand,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand,.app-wrapper .dark-Layout-brandBar .a-Layout-brand,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand{height:64px;line-height:64px;font-size:24px;font-weight:400;width:200px;padding:0}.app-wrapper .a-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .a-Layout-brandBar .dark-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand .logo{background:url(https://bce.bdstatic.com/fex/amis-gh-pages/static/logo_c812f54.png) left/contain no-repeat;height:40px;margin-top:12px}.app-wrapper .a-Layout-brandBar .a-Layout-brand>a,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .a-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand>a{color:#333}.app-wrapper .a-Layout-brandBar .dark-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand>a{color:#fff}.app-wrapper .a-Layout-headerBar,.app-wrapper .cxd-Layout-headerBar,.app-wrapper .dark-Layout-headerBar{height:64px;padding-right:20px}.app-wrapper .a-Layout-headerBar-links,.app-wrapper .cxd-Layout-headerBar-links,.app-wrapper .dark-Layout-headerBar-links{height:64px;line-height:64px;font-size:14px;padding-left:35px}.app-wrapper .a-Layout-headerBar-links>a,.app-wrapper .cxd-Layout-headerBar-links>a,.app-wrapper .dark-Layout-headerBar-links>a{display:inline-block;color:#333;padding:0 22px;font-weight:500}.app-wrapper .a-Layout-headerBar-links>a.is-active,.app-wrapper .cxd-Layout-headerBar-links>a.is-active,.app-wrapper .dark-Layout-headerBar-links>a.is-active{color:#108cee;position:relative}.app-wrapper .a-Layout-headerBar-links>a.is-active::before,.app-wrapper .cxd-Layout-headerBar-links>a.is-active::before,.app-wrapper .dark-Layout-headerBar-links>a.is-active::before{content:'';border-bottom:2px solid #108cee;position:absolute;width:100%;left:0;bottom:0}.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-searchBar{width:120px}.app-wrapper .a-Layout-searchBar .Doc-search,.app-wrapper .cxd-Layout-searchBar .Doc-search,.app-wrapper .dark-Layout-searchBar .Doc-search{top:15px}.app-wrapper .a-Layout-searchBar::before,.app-wrapper .cxd-Layout-searchBar::before,.app-wrapper .dark-Layout-searchBar::before{left:0}.app-wrapper .dark-Layout-header::before{background-color:#191c22}.app-wrapper .dark-Layout .Doc-search .dark-TextControl-input{background-color:#191c22}.app-wrapper .dark-Layout-headerBar-links>a{color:#eee}.app-wrapper .a-Layout::before,.app-wrapper .cxd-Layout::before{background-color:#fff}.app-wrapper .a-Layout-header::before,.app-wrapper .cxd-Layout-header::before{background:#fff}.Doc{height:100%}.Doc .anchor{padding-top:100px;margin-top:-100px}.Doc-nav,.Doc-toc{margin-top:30px}.Doc-nav a,.Doc-toc a{display:inline-block;width:100%;padding:5px 10px}.Doc-nav>div,.Doc-toc>div{scrollbar-width:none;-ms-overflow-style:none}.Doc-nav>div::-webkit-scrollbar-track,.Doc-toc>div::-webkit-scrollbar-track{box-shadow:none!important;background-color:transparent}.Doc-nav>div::-webkit-scrollbar,.Doc-toc>div::-webkit-scrollbar{width:3px!important;background-color:transparent}.Doc-nav>div::-webkit-scrollbar-thumb,.Doc-toc>div::-webkit-scrollbar-thumb{background-color:transparent}.Doc-nav{width:200px}.Doc-toc{margin:30px 0;width:120px}.Doc-navigation{user-select:none}.Doc-navigation-item{padding-left:20px;border-left:1px solid #e8ebee;position:relative}.Doc-navigation-item>a{font-weight:600;font-size:14px;color:#666;padding-left:0;padding-right:20px}.Doc-navigation-item>a:hover{color:#999}.Doc-navigation-item i{font-size:12px;padding:0;display:block;position:absolute;right:20px;top:5px}.Doc-navigation-item i:before{display:block;transform-origin:50% 50%;transform:rotate(0deg);transition:transform .3s ease-out}.Doc-navigation-item.is-top{padding-left:0;border-left:0;display:block;cursor:pointer}.Doc-navigation-item.is-top>a{color:#333}.Doc-navigation-item.is-top>a:hover{color:#000}.Doc-navigation-item.is-active>a{color:#108cee}.Doc-navigation-item.is-active>a:hover{color:#108cee}.Doc-navigation .Doc-navigationGroup{margin-bottom:30px}.Doc-navigation .Doc-navigationGroup-name{color:#999;font-weight:700;margin-bottom:10px}.Doc-headingList{font-size:12px;font-weight:500;border-left:1px solid #e8ebee;user-select:none}.Doc-headingList-item{padding-left:15px}.Doc-headingList-item a{color:#666;cursor:pointer}.Doc-headingList-item a:hover{color:#333}.Doc-headingList-item.is-active::before{content:' ';border-left:2px solid #108cee}.Doc-headingList-item.is-active>a{color:#108cee}.Doc-content{position:relative}.Doc-content .Doc-title{padding-left:40px}.Doc-content .Doc-title h1{margin:0;font-size:40px;font-weight:700}.Doc-content .markdown-body>:first-child{margin-top:36px!important}.Doc-content .markdown-body>h1,.Doc-content .markdown-body>h2{border-top:1px solid #e0e7ec;border-bottom:0;padding-bottom:0;padding-top:35px;margin:55px 0 35px}.Doc-content .markdown-body>p,.Doc-content .markdown-body>blockquote,.Doc-content .markdown-body>ul,.Doc-content .markdown-body>ol,.Doc-content .markdown-body>dl,.Doc-content .markdown-body>table,.Doc-content .markdown-body>pre{margin-bottom:30px}.Doc-footer{margin:60px 40px 80px;padding-bottom:25px}.Doc-footer-divider{border-top:2px solid #e0e8ef;margin:25px 0}.Doc-footer-fixme{font-size:16px;color:#333;text-align:right}.Doc-footer-fixme>a{color:#108cee;font-weight:600}.Doc-footer .Doc-navLinks{display:flex;justify-content:space-between}.Doc-footer .Doc-navLinks--prev,.Doc-footer .Doc-navLinks--next{display:flex;justify-content:space-between;width:330px;height:80px;border:1px solid #e8ebee;border-radius:3px;padding:20px;transition:border-color ease-out .3s,color ease-out .3s;box-shadow:#e8ebee 0 3px 8px 0;color:#666}.Doc-footer .Doc-navLinks--prev:hover,.Doc-footer .Doc-navLinks--next:hover{border-color:#108cee;color:#108cee}.Doc-footer .Doc-navLinks--prev:hover .Doc-navLinks-title,.Doc-footer .Doc-navLinks--next:hover .Doc-navLinks-title{color:#108cee}.Doc-footer .Doc-navLinks--prev:first-child:nth-last-child(1),.Doc-footer .Doc-navLinks--next:first-child:nth-last-child(1){flex:1}.Doc-footer .Doc-navLinks-icon{line-height:40px}.Doc-footer .Doc-navLinks-body .Doc-navLinks-subtitle{font-size:12px}.Doc-footer .Doc-navLinks-body .Doc-navLinks-title{font-size:16px;font-weight:700;color:#333;transition:color ease-out .3s}.Doc .is-flipped::before{transform:rotate(180deg)}.Doc>.schema-wrapper{position:relative}.Doc>.schema-wrapper>.a-Page,.Doc>.schema-wrapper>.cxd-Page,.Doc>.schema-wrapper>.dark-Page{padding:0 35px}.dark-Layout .Doc .Doc-headingList-item a{color:#fff}.dark-Layout .Doc .Doc-headingList-item a:hover{color:#999}.dark-Layout .Doc .Doc-navigation-item>a{color:#ccc}.dark-Layout .Doc .Doc-navigation-item>a:hover{color:#fff}.dark-Layout .Doc .Doc-navigation-item.is-top>a{color:#eee}.dark-Layout .Doc .Doc-navigation-item.is-top>a:hover{color:#fff}.dark-Layout .Doc .Doc-navigation-item.is-active>a,.dark-Layout .Doc .Doc-navigation-item.is-active.is-top>a{color:#108cee}.dark-Layout .Doc-footer .Doc-navLinks--prev,.dark-Layout .Doc-footer .Doc-navLinks--next{color:#eee}.dark-Layout .Doc-footer .Doc-navLinks-title{color:#fff}.dark-Layout .Doc-footer-fixme{color:#fff}.dark-Layout .Doc .Backtop{color:#eee}.dark-Layout .Doc .Backtop:hover{color:#108cee}.dark-Layout .Doc .markdown-body pre{background-color:#282c34}.Backtop{position:fixed;right:40px;bottom:40px;width:44px;height:44px;text-align:center;line-height:44px;border:1px solid #e8ebee;border-radius:50%;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);cursor:pointer;color:#666;font-size:16px;transition:all .3s ease-in-out;opacity:0;z-index:-2}.Backtop:hover{color:#108cee}.Backtop.visible{opacity:1;z-index:0;z-index:1}@media (min-width:992px){.Doc{display:flex;flex-direction:row}.Doc-content,.Doc .schema-wrapper{flex:1 auto;width:0}.Doc-toc>div{position:fixed;width:220px;top:100px;bottom:21px;overflow:auto}.Doc-nav>div{position:fixed;width:200px;top:100px;bottom:0;overflow-y:auto;border-right:1px solid #e8ebee}.app-wrapper .a-Layout-header,.app-wrapper .cxd-Layout-header,.app-wrapper .dark-Layout-header{display:flex;flex-direction:row}.app-wrapper .a-Layout-headerBar,.app-wrapper .cxd-Layout-headerBar,.app-wrapper .dark-Layout-headerBar{flex:1 auto;width:0}.app-wrapper .a-Layout-brandBar>div,.app-wrapper .cxd-Layout-brandBar>div,.app-wrapper .dark-Layout-brandBar>div{width:220px;position:fixed}.app-wrapper .a-Layout-searchBar>div,.app-wrapper .cxd-Layout-searchBar>div,.app-wrapper .dark-Layout-searchBar>div{width:220px}}@media screen and (min-width:1640px){.Doc-toc{width:1px}.Doc-nav{width:1px}.Doc-nav>div{margin-left:-199px}.app-wrapper .a-Layout-brandBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .dark-Layout-brandBar{width:1px}.app-wrapper .a-Layout-brandBar>div,.app-wrapper .cxd-Layout-brandBar>div,.app-wrapper .dark-Layout-brandBar>div{margin-left:-220px}.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-searchBar{width:1px}} \ No newline at end of file +body{background-color:#fff!important}body.dark{background-color:#333538!important}a{text-decoration:none!important}.page-play:before,.page-edit:before{display:table;content:' '}.page-play:after,.page-edit:after{clear:both;display:block;content:'';height:0}.page-play .app-content,.page-edit .app-content{position:absolute;top:50px;bottom:0;height:auto;left:0;right:0}.page-play .app-content-body,.page-edit .app-content-body{height:100%}.resizer{position:absolute;top:0;bottom:0;margin-left:-2px;width:4px;background:#626d78;z-index:1;cursor:col-resize}.resizer:hover{background:#343a40}.MDPreview{flex:1 auto;overflow:auto;width:100%;position:relative}.MDPreview-shcema-preview-popover{box-shadow:none!important;margin-top:-1px!important;padding:0 45px!important;left:0!important;width:100%!important;z-index:1!important;background:transparent!important;border:0!important}.MDPreview-schema-preview{border:1px solid #ddd;position:relative;height:100%;width:100%}.amis-schema-editor.fix-settings .amis-schema-editor-settings-inner .amis-schema-editor-config-tab>.tab-content,.amis-schema-editor.fix-settings .amis-schema-editor-settings-inner .amis-schema-editor-code-tab>.tab-content{bottom:50px}.app-wrapper .a-Layout,.app-wrapper .cxd-Layout,.app-wrapper .dark-Layout{padding-top:100px}.app-wrapper .a-Layout-header,.app-wrapper .cxd-Layout-header,.app-wrapper .dark-Layout-header{height:64px!important;box-shadow:none!important}.app-wrapper .a-Layout-header::before,.app-wrapper .cxd-Layout-header::before,.app-wrapper .dark-Layout-header::before{position:fixed;height:64px;content:'';z-index:-1;left:0;right:0;box-shadow:0 2px 20px 0 rgba(0,0,0,.1)}.app-wrapper .a-Layout-header .gh-icon,.app-wrapper .cxd-Layout-header .gh-icon,.app-wrapper .dark-Layout-header .gh-icon{position:fixed;right:20px;top:15px;font-size:22px;padding:0 10px;color:#333}.app-wrapper .a-Layout-header .gh-icon:hover,.app-wrapper .cxd-Layout-header .gh-icon:hover,.app-wrapper .dark-Layout-header .gh-icon:hover{color:#333}.app-wrapper .a-Layout-brandBar,.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-brandBar,.app-wrapper .dark-Layout-searchBar{position:relative}.app-wrapper .a-Layout-brandBar::before,.app-wrapper .a-Layout-searchBar::before,.app-wrapper .cxd-Layout-brandBar::before,.app-wrapper .cxd-Layout-searchBar::before,.app-wrapper .dark-Layout-brandBar::before,.app-wrapper .dark-Layout-searchBar::before{top:50%;right:0;height:32px;content:' ';position:absolute;transform:translateY(-50%);border-left:1px solid #e8ebee;width:1px}.app-wrapper .a-Layout-brandBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .dark-Layout-brandBar{background-color:transparent;width:200px}.app-wrapper .a-Layout-brandBar .a-Layout-brand,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand,.app-wrapper .a-Layout-brandBar .dark-Layout-brand,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand,.app-wrapper .dark-Layout-brandBar .a-Layout-brand,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand{height:64px;line-height:64px;font-size:24px;font-weight:400;width:200px;padding:0}.app-wrapper .a-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .a-Layout-brandBar .dark-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .a-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand .logo,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand .logo{background:url(https://bce.bdstatic.com/fex/amis-gh-pages/static/logo_c812f54.png) left/contain no-repeat;height:40px;margin-top:12px}.app-wrapper .a-Layout-brandBar .a-Layout-brand>a,.app-wrapper .a-Layout-brandBar .cxd-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .a-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .cxd-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .a-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .cxd-Layout-brand>a{color:#333}.app-wrapper .a-Layout-brandBar .dark-Layout-brand>a,.app-wrapper .cxd-Layout-brandBar .dark-Layout-brand>a,.app-wrapper .dark-Layout-brandBar .dark-Layout-brand>a{color:#fff}.app-wrapper .a-Layout-headerBar,.app-wrapper .cxd-Layout-headerBar,.app-wrapper .dark-Layout-headerBar{height:64px;padding-right:20px}.app-wrapper .a-Layout-headerBar-links,.app-wrapper .cxd-Layout-headerBar-links,.app-wrapper .dark-Layout-headerBar-links{height:64px;line-height:64px;font-size:14px;padding-left:35px}.app-wrapper .a-Layout-headerBar-links>a,.app-wrapper .cxd-Layout-headerBar-links>a,.app-wrapper .dark-Layout-headerBar-links>a{display:inline-block;color:#333;padding:0 22px;font-weight:500}.app-wrapper .a-Layout-headerBar-links>a.is-active,.app-wrapper .cxd-Layout-headerBar-links>a.is-active,.app-wrapper .dark-Layout-headerBar-links>a.is-active{color:#108cee;position:relative}.app-wrapper .a-Layout-headerBar-links>a.is-active::before,.app-wrapper .cxd-Layout-headerBar-links>a.is-active::before,.app-wrapper .dark-Layout-headerBar-links>a.is-active::before{content:'';border-bottom:2px solid #108cee;position:absolute;width:100%;left:0;bottom:0}.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-searchBar{width:120px}.app-wrapper .a-Layout-searchBar .Doc-search,.app-wrapper .cxd-Layout-searchBar .Doc-search,.app-wrapper .dark-Layout-searchBar .Doc-search{top:15px}.app-wrapper .a-Layout-searchBar::before,.app-wrapper .cxd-Layout-searchBar::before,.app-wrapper .dark-Layout-searchBar::before{left:0}.app-wrapper .dark-Layout-header::before{background-color:#191c22}.app-wrapper .dark-Layout .Doc-search .dark-TextControl-input{background-color:#191c22}.app-wrapper .dark-Layout-headerBar-links>a{color:#eee}.app-wrapper .a-Layout::before,.app-wrapper .cxd-Layout::before{background-color:#fff}.app-wrapper .a-Layout-header::before,.app-wrapper .cxd-Layout-header::before{background:#fff}.Doc{height:100%}.Doc .anchor{padding-top:100px;margin-top:-100px}.Doc-nav,.Doc-toc{margin-top:30px}.Doc-nav a,.Doc-toc a{display:inline-block;width:100%;padding:5px 10px}.Doc-nav>div,.Doc-toc>div{scrollbar-width:none;-ms-overflow-style:none}.Doc-nav>div::-webkit-scrollbar-track,.Doc-toc>div::-webkit-scrollbar-track{box-shadow:none!important;background-color:transparent}.Doc-nav>div::-webkit-scrollbar,.Doc-toc>div::-webkit-scrollbar{width:3px!important;background-color:transparent}.Doc-nav>div::-webkit-scrollbar-thumb,.Doc-toc>div::-webkit-scrollbar-thumb{background-color:transparent}.Doc-nav{width:200px}.Doc-toc{margin:30px 0;width:120px}.Doc-navigation{user-select:none}.Doc-navigation-item{padding-left:20px;border-left:1px solid #e8ebee;position:relative}.Doc-navigation-item>a{font-weight:600;font-size:14px;color:#666;padding-left:0;padding-right:20px}.Doc-navigation-item>a:hover{color:#999}.Doc-navigation-item i{font-size:12px;padding:0;display:block;position:absolute;right:20px;top:5px}.Doc-navigation-item i:before{display:block;transform-origin:50% 50%;transform:rotate(0deg);transition:transform .3s ease-out}.Doc-navigation-item.is-top{padding-left:0;border-left:0;display:block;cursor:pointer}.Doc-navigation-item.is-top>a{color:#333}.Doc-navigation-item.is-top>a:hover{color:#000}.Doc-navigation-item.is-active>a{color:#108cee}.Doc-navigation-item.is-active>a:hover{color:#108cee}.Doc-navigation .Doc-navigationGroup{margin-bottom:30px}.Doc-navigation .Doc-navigationGroup-name{color:#999;font-weight:700;margin-bottom:10px;white-space:pre-wrap}.Doc-headingList{font-size:12px;font-weight:500;border-left:1px solid #e8ebee;user-select:none}.Doc-headingList-item{padding-left:15px}.Doc-headingList-item a{color:#666;cursor:pointer}.Doc-headingList-item a:hover{color:#333}.Doc-headingList-item.is-active::before{content:' ';border-left:2px solid #108cee}.Doc-headingList-item.is-active>a{color:#108cee}.Doc-content{position:relative}.Doc-content .Doc-title{padding-left:40px}.Doc-content .Doc-title h1{margin:0;font-size:40px;font-weight:700}.Doc-content .markdown-body>:first-child{margin-top:36px!important}.Doc-content .markdown-body>h1,.Doc-content .markdown-body>h2{border-top:1px solid #e0e7ec;border-bottom:0;padding-bottom:0;padding-top:35px;margin:55px 0 35px}.Doc-content .markdown-body>p,.Doc-content .markdown-body>blockquote,.Doc-content .markdown-body>ul,.Doc-content .markdown-body>ol,.Doc-content .markdown-body>dl,.Doc-content .markdown-body>table,.Doc-content .markdown-body>pre{margin-bottom:30px}.Doc-footer{margin:60px 40px 80px;padding-bottom:25px}.Doc-footer-divider{border-top:2px solid #e0e8ef;margin:25px 0}.Doc-footer-fixme{font-size:16px;color:#333;text-align:right}.Doc-footer-fixme>a{color:#108cee;font-weight:600}.Doc-footer .Doc-navLinks{display:flex;justify-content:space-between}.Doc-footer .Doc-navLinks--prev,.Doc-footer .Doc-navLinks--next{display:flex;justify-content:space-between;width:330px;height:80px;border:1px solid #e8ebee;border-radius:3px;padding:20px;transition:border-color ease-out .3s,color ease-out .3s;box-shadow:#e8ebee 0 3px 8px 0;color:#666}.Doc-footer .Doc-navLinks--prev:hover,.Doc-footer .Doc-navLinks--next:hover{border-color:#108cee;color:#108cee}.Doc-footer .Doc-navLinks--prev:hover .Doc-navLinks-title,.Doc-footer .Doc-navLinks--next:hover .Doc-navLinks-title{color:#108cee}.Doc-footer .Doc-navLinks--prev:first-child:nth-last-child(1),.Doc-footer .Doc-navLinks--next:first-child:nth-last-child(1){flex:1}.Doc-footer .Doc-navLinks-icon{line-height:40px}.Doc-footer .Doc-navLinks-body .Doc-navLinks-subtitle{font-size:12px}.Doc-footer .Doc-navLinks-body .Doc-navLinks-title{font-size:16px;font-weight:700;color:#333;transition:color ease-out .3s}.Doc .is-flipped::before{transform:rotate(180deg)}.Doc>.schema-wrapper{position:relative}.Doc>.schema-wrapper>.a-Page,.Doc>.schema-wrapper>.cxd-Page,.Doc>.schema-wrapper>.dark-Page{padding:0 35px}.dark-Layout .Doc .Doc-headingList-item a{color:#fff}.dark-Layout .Doc .Doc-headingList-item a:hover{color:#999}.dark-Layout .Doc .Doc-navigation-item>a{color:#ccc}.dark-Layout .Doc .Doc-navigation-item>a:hover{color:#fff}.dark-Layout .Doc .Doc-navigation-item.is-top>a{color:#eee}.dark-Layout .Doc .Doc-navigation-item.is-top>a:hover{color:#fff}.dark-Layout .Doc .Doc-navigation-item.is-active>a,.dark-Layout .Doc .Doc-navigation-item.is-active.is-top>a{color:#108cee}.dark-Layout .Doc-footer .Doc-navLinks--prev,.dark-Layout .Doc-footer .Doc-navLinks--next{color:#eee}.dark-Layout .Doc-footer .Doc-navLinks-title{color:#fff}.dark-Layout .Doc-footer-fixme{color:#fff}.dark-Layout .Doc .Backtop{color:#eee}.dark-Layout .Doc .Backtop:hover{color:#108cee}.dark-Layout .Doc .markdown-body pre{background-color:#282c34}.Backtop{position:fixed;right:40px;bottom:40px;width:44px;height:44px;text-align:center;line-height:44px;border:1px solid #e8ebee;border-radius:50%;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);cursor:pointer;color:#666;font-size:16px;transition:all .3s ease-in-out;opacity:0;z-index:-2}.Backtop:hover{color:#108cee}.Backtop.visible{opacity:1;z-index:0;z-index:1}@media (min-width:992px){.Doc{display:flex;flex-direction:row}.Doc-content,.Doc .schema-wrapper{flex:1 auto;width:0}.Doc-toc>div{position:fixed;width:220px;top:100px;bottom:21px;overflow:auto}.Doc-nav>div{position:fixed;width:200px;top:100px;bottom:0;overflow-y:auto;border-right:1px solid #e8ebee}.app-wrapper .a-Layout-header,.app-wrapper .cxd-Layout-header,.app-wrapper .dark-Layout-header{display:flex;flex-direction:row}.app-wrapper .a-Layout-headerBar,.app-wrapper .cxd-Layout-headerBar,.app-wrapper .dark-Layout-headerBar{flex:1 auto;width:0}.app-wrapper .a-Layout-brandBar>div,.app-wrapper .cxd-Layout-brandBar>div,.app-wrapper .dark-Layout-brandBar>div{width:220px;position:fixed}.app-wrapper .a-Layout-searchBar>div,.app-wrapper .cxd-Layout-searchBar>div,.app-wrapper .dark-Layout-searchBar>div{width:220px}}@media screen and (min-width:1640px){.Doc-toc{width:1px}.Doc-nav{width:1px}.Doc-nav>div{margin-left:-199px}.app-wrapper .a-Layout-brandBar,.app-wrapper .cxd-Layout-brandBar,.app-wrapper .dark-Layout-brandBar{width:1px}.app-wrapper .a-Layout-brandBar>div,.app-wrapper .cxd-Layout-brandBar>div,.app-wrapper .dark-Layout-brandBar>div{margin-left:-220px}.app-wrapper .a-Layout-searchBar,.app-wrapper .cxd-Layout-searchBar,.app-wrapper .dark-Layout-searchBar{width:1px}} \ No newline at end of file diff --git a/gh-pages/scss/themes/cxd_ae1e6f7.css b/gh-pages/scss/themes/cxd_ae1e6f7.css index 6dab271e..00e63d26 100644 --- a/gh-pages/scss/themes/cxd_ae1e6f7.css +++ b/gh-pages/scss/themes/cxd_ae1e6f7.css @@ -1 +1 @@ -@charset "UTF-8";html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#5fb333}svg.icon-fail{color:#ea2e2e}html{font-size:16px}body{color:#666;background-color:#fff;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#108cee;text-decoration:none}a:hover{color:#0b62a6;text-decoration:none}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#333;line-height:1.1}.is-matched{color:#ea2e2e}html,body{width:100%;height:100%}body{overflow-x:hidden}.cxd-Layout{height:100%;min-height:100%;width:100%;position:relative}.cxd-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#fff;border:inherit;display:block}.cxd-Layout--boxed{margin-right:auto;margin-left:auto}.cxd-Layout .cxd-Layout-header{background:#f5f5f5;box-shadow:none;height:3.125rem}.cxd-Layout--headerFixed{padding-top:3.125rem}.cxd-Layout--headerFixed .cxd-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.cxd-Layout-brandBar{background:#0f1012;color:#777}.cxd-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.cxd-Layout-brand{color:#fff;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cxd-Layout-brand:hover{text-decoration:none}.cxd-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.cxd-Layout-headerBar{border-bottom:0 none;min-height:3.125rem;padding:0 .625rem}.cxd-Layout-aside{float:left;background:#1e1e28;color:#84848e}.cxd-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.cxd-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:11.25rem}.cxd-Layout-asideFooter~div{padding-bottom:3.125rem}.cxd-Layout-content{height:100%}.cxd-Layout-content::before,.cxd-Layout-content::after{display:table;content:''}.cxd-Layout-content::after{clear:both}.cxd-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.cxd-Layout--noFooter .cxd-Layout-body{padding-bottom:0}.cxd-Layout-content .cxd-Layout-body{float:left}.cxd-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.cxd-Layout--sm .cxd-Layout-asideFooter{max-width:9.375rem}.cxd-Layout--sm .cxd-AsideNav-item a{font-size:.75rem}.cxd-Layout--md .cxd-Layout-asideFooter{max-width:15.625rem}.cxd-Layout--lg .cxd-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.cxd-Layout-content{transition:transform .2s ease}.cxd-Layout-aside{display:none}.cxd-Layout--offScreen .cxd-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.cxd-Layout-headerBar{display:none}.cxd-Layout--offScreen .cxd-Layout-content,.cxd-Layout--offScreen .cxd-Layout-footer{background-color:#fff;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.cxd-Layout--boxed{width:47.5rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:47.5rem}.cxd-Layout-brand,.cxd-Layout-brandBar,.cxd-Layout-aside{width:11.25rem}.cxd-Layout-brandBar{float:left}.cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--withAside .cxd-Layout-footer{margin-left:11.25rem}.cxd-Layout .visible-folded{display:none}.cxd-Layout--folded .visible-folded{display:inherit}.cxd-Layout--folded .hidden-folded{display:none!important}.cxd-Layout--folded .text-center-folded{text-align:center}.cxd-Layout--folded .pull-none-folded{float:none!important}.cxd-Layout--folded .w-auto-folded{width:auto}.cxd-Layout--folded .cxd-Layout-aside,.cxd-Layout--folded .cxd-Layout-brandBar{width:3.75rem}.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-footer{margin-left:3.75rem}.cxd-Layout--folded .cxd-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.cxd-Layout--asideFixed .cxd-Layout-aside{height:100%}.cxd-Layout--asideFixed .cxd-Layout-aside:before{position:fixed;z-index:15}.cxd-Layout--asideFixed .cxd-Layout-brandBar{position:fixed}.cxd-Layout--asideFixed .cxd-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:11.1875rem;z-index:1200}.cxd-Layout--asideFixed .cxd-Layout-asideInner{width:12.3125rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.cxd-Layout--asideFixed .cxd-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.cxd-Layout--asideFixed .cxd-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:11.25rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-aside{position:static}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-brandBar{position:static}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideInner{overflow:visible;width:4.8125rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideInner>*{width:3.75rem}.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-aside{width:9.375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:9.375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:9.3125rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:10.4375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:9.375rem}.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-aside{width:15.625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:15.625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:15.5625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:16.6875rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:15.625rem}.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-aside{width:18.75rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:18.75rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:18.6875rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:19.8125rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.cxd-Layout--boxed{width:61.25rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:61.25rem}}@media (min-width:1200px){.cxd-Layout--boxed{width:73.75rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:73.75rem}}.cxd-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.cxd-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.cxd-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.cxd-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.cxd-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.cxd-AsideNav::before,.cxd-AsideNav::after{display:table;content:''}.cxd-AsideNav::after{clear:both}.cxd-AsideNav-label{color:#6b6b74;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.cxd-AsideNav-list{list-style:none;padding:0;margin:0}.cxd-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.cxd-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.cxd-AsideNav-item.is-open>a>.cxd-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#108cee}.cxd-AsideNav-itemArrow>svg{color:#fff;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.cxd-AsideNav-item.is-open>a>.cxd-AsideNav-itemArrow>svg{transform:rotate(90deg)}.cxd-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.cxd-AsideNav-itemIcon{margin:-.6875rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:rgba(255,255,255,.6);font-size:1rem}.cxd-AsideNav-itemIcon:before{position:relative;z-index:2}.cxd-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#1e1e28}.is-open>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:hover>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:focus>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:active>.cxd-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.cxd-Layout--folded .cxd-AsideNav-item.is-open>.cxd-AsideNav-subList{overflow:hidden}.cxd-AsideNav-item{position:relative;display:block}.cxd-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.75rem;padding:.6875rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#fff;text-decoration:none;user-select:none}.cxd-AsideNav-item a:hover{color:#108cee;text-decoration:none;background-color:#171720}.cxd-AsideNav-item a:hover .cxd-AsideNav-itemIcon{color:#108cee}.cxd-AsideNav-item.is-active>a{background-color:#13131a;color:#108cee}.cxd-AsideNav-item.is-active>a:hover{background-color:#171720}.cxd-AsideNav-item.is-lg>a{padding:1rem .9375rem}.cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:2.8125rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:4.6875rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:6.5625rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-subList{display:none}.cxd-AsideNav-item .cxd-AsideNav-item.is-open .cxd-AsideNav-subList{display:block}.cxd-AsideNav-subHeader{display:none}.cxd-AsideNav-subHeader a{cursor:default;background:transparent;color:#6b6b74;padding:.6875rem 1.25rem}.cxd-AsideNav-subHeader a:hover{color:#6b6b74;background:transparent}.cxd-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.cxd-AsideNav-divider{width:auto;height:.0625rem;margin:0 .625rem;overflow:hidden;font-size:0;background-color:#3c3c4d}@media (min-width:768px){.cxd-Layout--folded .cxd-AsideNav-label{display:none}.cxd-Layout--folded .cxd-AsideNav-subHeader{display:block}.cxd-Layout--folded .cxd-AsideNav-item:hover>.cxd-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:2.5rem;border:0}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemArrow,.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemLabel{display:none}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:2.5rem;border:0!important}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item.is-lg>a{height:3.125rem}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item.is-lg>a .cxd-AsideNav-itemIcon{line-height:3.125rem}.cxd-Layout--folded .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:1.25rem!important}.cxd-Layout--folded .cxd-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:11.25rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.cxd-Layout--folded.cxd-Layout--sm .cxd-AsideNav-subList{width:9.375rem}.cxd-Layout--folded.cxd-Layout--md .cxd-AsideNav-subList{width:15.625rem}.cxd-Layout--folded.cxd-Layout--lg .cxd-AsideNav-subList{width:18.75rem}}.cxd-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.cxd-Hbox>.cxd-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.cxd-FormHbox{margin-left:-15px;margin-right:-15px}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col>.cxd-Form-group{margin-left:0;margin-right:0}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col>.cxd-Form-group:last-child{margin-bottom:0}.cxd-FormHbox.cxd-Hbox--xs{margin-left:-5px;margin-right:-5px}.cxd-FormHbox.cxd-Hbox--xs>.cxd-Hbox>.cxd-Hbox-col{padding-left:5px;padding-right:5px}.cxd-FormHbox.cxd-Hbox--sm{margin-left:-10px;margin-right:-10px}.cxd-FormHbox.cxd-Hbox--sm>.cxd-Hbox>.cxd-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.cxd-Hbox--autoSm{display:block}.cxd-Hbox--autoSm>.cxd-Hbox-col{width:auto;height:auto;display:block}.cxd-Hbox--autoSm>.cxd-Hbox-col.show{display:block!important}.cxd-Hbox--autoSm .cxd-Vbox{height:auto}.cxd-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.cxd-Hbox--autoXs{display:block}.cxd-Hbox--autoXs>.cxd-Hbox-col{width:auto;height:auto;display:block}.cxd-Hbox--autoXs .cxd-Vbox{height:auto}.cxd-Hbox--autoXs .cell-inner{position:static!important}}.cxd-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.cxd-Vbox .row-row{display:table-row;height:100%}.cxd-Vbox .row-row .cxd-Vbox-cell{position:relative;height:100%;width:100%}.ie .cxd-Vbox .row-row .cxd-Vbox-cell{display:table-cell;overflow:auto}.ie .cxd-Vbox .row-row .cxd-Vbox-cell .cell-inner{overflow:visible!important}.cxd-Vbox .row-row .cxd-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.cxd-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;min-width:4.25rem;padding:.33929rem .625rem;font-size:.75rem;line-height:1.42857;border-radius:0;height:1.875rem}.cxd-Button .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button>svg.icon:not(:last-child):not(.pull-right),.cxd-Button>.pull-left{margin-right:.625rem}.cxd-Button .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button>.pull-right{margin-left:.625rem}.cxd-Button:hover:focus{color:#666;text-decoration:none}.cxd-Button:focus,.cxd-Button.focus{outline:0;box-shadow:none}.cxd-Button.is-disabled,.cxd-Button:disabled{opacity:1;box-shadow:none;pointer-events:none;border-color:#ebebeb;background-color:#f5f5f5;color:#aaa!important}.cxd-Button.is-disabled.is-active,.cxd-Button.is-disabled:active,.cxd-Button:disabled.is-active,.cxd-Button:disabled:active{background-color:#f5f5f5!important}.cxd-Button:not(:disabled):not(.is-disabled){cursor:pointer}.cxd-Button:not(:disabled):not(.is-disabled):active,.cxd-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:none}.cxd-Button:not(:disabled):not(.is-disabled):active:focus,.cxd-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:none}.cxd-Button>.pull-left,.cxd-Button>.pull-right{line-height:inherit}.cxd-Button>.fa,.cxd-Button>.iconfont,.cxd-Button>.glyphicon{font-size:inherit}a.cxd-Button.is-disabled,fieldset:disabled a.cxd-Button{pointer-events:none}.cxd-Button--primary{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--primary:hover{color:#fff;background-color:#209bfd;border-color:#108cee}.cxd-Button--primary:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--primary:hover:focus{color:#fff;background-color:#209bfd;border-color:#108cee;box-shadow:none}.cxd-Button--primary.is-disabled,.cxd-Button--primary:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--primary:not(:disabled):not(.is-disabled):active,.cxd-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#047bdb;border-color:#108cee}.cxd-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:none}.cxd-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.cxd-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:none}.cxd-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:none}.cxd-Button--secondary.is-disabled,.cxd-Button--secondary:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--secondary:not(:disabled):not(.is-disabled):active,.cxd-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.cxd-Button--success{color:#fff;background-color:#5fb333;border-color:#5fb333;box-shadow:none}.cxd-Button--success:hover{color:#fff;background-color:#4f952b;border-color:#4a8b28}.cxd-Button--success:focus{color:#fff;background-color:#5fb333;border-color:#5fb333;box-shadow:none}.cxd-Button--success:hover:focus{color:#fff;background-color:#4f952b;border-color:#4a8b28;box-shadow:none}.cxd-Button--success.is-disabled,.cxd-Button--success:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--success:not(:disabled):not(.is-disabled):active,.cxd-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#4a8b28;border-color:#458125}.cxd-Button--info{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--info:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-Button--info:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--info:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-Button--info.is-disabled,.cxd-Button--info:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--info:not(:disabled):not(.is-disabled):active,.cxd-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-Button--warning{color:#fff;background-color:#f39000;border-color:#f39000;box-shadow:none}.cxd-Button--warning:hover{color:#fff;background-color:#cd7900;border-color:#c07200}.cxd-Button--warning:focus{color:#fff;background-color:#f39000;border-color:#f39000;box-shadow:none}.cxd-Button--warning:hover:focus{color:#fff;background-color:#cd7900;border-color:#c07200;box-shadow:none}.cxd-Button--warning.is-disabled,.cxd-Button--warning:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--warning:not(:disabled):not(.is-disabled):active,.cxd-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#c07200;border-color:#b36a00}.cxd-Button--danger{color:#fff;background-color:#ea2e2e;border-color:#ea2e2e;box-shadow:none}.cxd-Button--danger:hover{color:#fff;background-color:#f64545;border-color:#d01515}.cxd-Button--danger:focus{color:#fff;background-color:#ea2e2e;border-color:#ea2e2e;box-shadow:none}.cxd-Button--danger:hover:focus{color:#fff;background-color:#f64545;border-color:#d01515;box-shadow:none}.cxd-Button--danger.is-disabled,.cxd-Button--danger:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--danger:not(:disabled):not(.is-disabled):active,.cxd-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#d72b2b;border-color:#c51414}.cxd-Button--light{color:#666;background-color:#eaf6fe;border-color:#eceff8;box-shadow:none}.cxd-Button--light:hover{color:#666;background-color:#c5e6fc;border-color:#c7d0ea}.cxd-Button--light:focus{color:#666;background-color:#eaf6fe;border-color:#eceff8;box-shadow:none}.cxd-Button--light:hover:focus{color:#666;background-color:#c5e6fc;border-color:#c7d0ea;box-shadow:none}.cxd-Button--light.is-disabled,.cxd-Button--light:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--light:not(:disabled):not(.is-disabled):active,.cxd-Button--light:not(:disabled):not(.is-disabled).is-active{color:#666;background-color:#b9e1fc;border-color:#bdc8e7}.cxd-Button--dark{color:#fff;background-color:#343a40;border-color:#343a40;box-shadow:none}.cxd-Button--dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.cxd-Button--dark:focus{color:#fff;background-color:#343a40;border-color:#343a40;box-shadow:none}.cxd-Button--dark:hover:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:none}.cxd-Button--dark.is-disabled,.cxd-Button--dark:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--dark:not(:disabled):not(.is-disabled):active,.cxd-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1d2124;border-color:#171a1d}.cxd-Button--default{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-Button--default:hover{color:#108cee;background-color:#fff;border-color:#108cee}.cxd-Button--default:focus{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-Button--default:hover:focus{color:#108cee;background-color:#fff;border-color:#108cee;box-shadow:none}.cxd-Button--default.is-disabled,.cxd-Button--default:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--default:not(:disabled):not(.is-disabled):active,.cxd-Button--default:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#f6fbff;border-color:#108cee}.cxd-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:0;height:1.375rem}.cxd-Button--xs .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--xs>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--xs>.pull-left{margin-right:.3125rem}.cxd-Button--xs .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--xs>.pull-right{margin-left:.3125rem}.cxd-Button--xs.cxd-Button--iconOnly{min-width:1.83333rem}.cxd-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem}.cxd-Button--sm .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--sm>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--sm>.pull-left{margin-right:.5rem}.cxd-Button--sm .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--sm>.pull-right{margin-left:.5rem}.cxd-Button--sm.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--md{padding:.33929rem .625rem;font-size:.75rem;line-height:1.42857;border-radius:0;height:1.875rem}.cxd-Button--md .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--md>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--md>.pull-left{margin-right:.625rem}.cxd-Button--md .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--md>.pull-right{margin-left:.625rem}.cxd-Button--md.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--lg{padding:.6625rem 1rem;font-size:.875rem;line-height:1.2;border-radius:0;height:2.5rem}.cxd-Button--lg .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--lg>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--lg>.pull-left{margin-right:1rem}.cxd-Button--lg .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--lg>.pull-right{margin-left:1rem}.cxd-Button--lg.cxd-Button--iconOnly{min-width:3.33333rem}.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>.fa,.cxd-Button--iconOnly:not(.cxd-Button--link)>.iconfont{font-size:1rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>.iconfont{line-height:1}.cxd-Button--link{width:auto;min-width:auto;font-weight:400;color:#108cee;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.cxd-Button--link:hover:focus{color:#209bfd;text-decoration:none;box-shadow:none}.cxd-Button--link:disabled,.cxd-Button--link.is-disabled{color:#999;pointer-events:none;background-color:transparent}.cxd-Button--block{display:block;width:100%}.cxd-Button--block+.cxd-Button--block{margin-top:.9375rem}input[type=submit].cxd-Button--block,input[type=reset].cxd-Button--block,input[type=button].cxd-Button--block{width:100%}.cxd-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.cxd-ButtonToolbar>.cxd-Button{margin-left:.3125rem;margin-top:.3125rem}.cxd-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .cxd-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.cxd-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.cxd-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:12.0625rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:0 solid #eceff8;border-radius:0}.cxd-Modal-content.in,.cxd-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.cxd-Modal-content.in{animation-name:modalIn}.cxd-Modal-content.out{animation-name:modalOut}.cxd-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.7);pointer-events:none;opacity:0}.cxd-Modal-overlay.in{opacity:1}.cxd-Modal-overlay.out{opacity:0}.cxd-Modal-header{padding:.59375rem 1.25rem;background-color:#f6f7fb;border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.cxd-Modal-header::before,.cxd-Modal-header::after{display:table;content:''}.cxd-Modal-header::after{clear:both}.cxd-Modal-title{font-size:.875rem;color:#333}.cxd-Modal-close{float:right;color:#999;line-height:inherit;text-decoration:none;vertical-align:middle}.cxd-Modal-close svg{width:.75rem;height:.75rem;fill:#999}.cxd-Modal-close:not(.is-disabled){cursor:pointer}.cxd-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#666}.cxd-Modal-close:not(.is-disabled):hover svg{fill:#666}.cxd-Modal-content>.cxd-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.cxd-Modal-body{padding:.9375rem 1.875rem 1.875rem;flex-basis:0;flex-grow:1}.cxd-Modal-header+.cxd-Modal-body{padding-top:1.875rem}.cxd-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.9375rem 0;border-top:.0625rem solid #eceff8;margin:0 1.875rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Modal-footer .cxd-Button{margin-left:.625rem}.cxd-Modal--2th .cxd-Modal-content{margin-top:5.625rem}.cxd-Modal--3th .cxd-Modal-content{margin-top:7.5rem}.cxd-Modal--4th .cxd-Modal-content{margin-top:9.375rem}.cxd-Modal--5th .cxd-Modal-content{margin-top:11.25rem}.cxd-Modal--6th .cxd-Modal-content{margin-top:13.125rem}.cxd-Modal--7th .cxd-Modal-content{margin-top:15rem}.cxd-Modal--8th .cxd-Modal-content{margin-top:16.875rem}.cxd-Modal--9th .cxd-Modal-content{margin-top:18.75rem}.cxd-Modal--10th .cxd-Modal-content{margin-top:20.625rem}@media (min-width:576px){.cxd-Modal-content{max-width:31.25rem}.cxd-Modal--sm .cxd-Modal-content{max-width:21.875rem}.cxd-Modal--base .cxd-Modal-content{max-width:31.25rem}.cxd-Modal--md .cxd-Modal-content{max-width:50rem}.cxd-Modal--lg .cxd-Modal-content{max-width:68.75rem}.cxd-Modal--xl .cxd-Modal-content{max-width:90%}}.cxd-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.cxd-Dialog-error{color:#ea2e2e}.cxd-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.cxd-Modal--full>.cxd-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.cxd-Modal--full>.cxd-Modal-content>.cxd-Modal-body{height:0;overflow:auto}.cxd-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.cxd-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #eceff8;border-radius:0;transition:transform ease-in-out .3s}.cxd-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.cxd-Drawer-overlay.in{opacity:1}.cxd-Drawer-header{padding:.9375rem;background-color:#f9f9f9;border-bottom:.0625rem solid #fff;border-top-left-radius:0;border-top-right-radius:0}.cxd-Drawer-header::before,.cxd-Drawer-header::after{display:table;content:''}.cxd-Drawer-header::after{clear:both}.cxd-Drawer-title{font-size:1rem;color:#333}.cxd-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.cxd-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.cxd-Drawer-close:not(.is-disabled){cursor:pointer}.cxd-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.cxd-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.cxd-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.cxd-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #fff;border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Drawer-footer .cxd-Button{margin-left:.3125rem}.cxd-Drawer-footer .cxd-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.cxd-Drawer-footer .cxd-Drawer-error{color:#ea2e2e}.cxd-Drawer.cxd-Drawer--noOverlay{pointer-events:none}.cxd-Drawer.cxd-Drawer--noOverlay .cxd-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.cxd-Drawer .cxd-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #eceff8;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.cxd-Drawer .cxd-Drawer-content{width:25rem;height:25rem}.cxd-Drawer--xs .cxd-Drawer-content{width:12.5rem;height:12.5rem}.cxd-Drawer--sm .cxd-Drawer-content{width:18.75rem;height:18.75rem}.cxd-Drawer--md .cxd-Drawer-content{width:31.25rem;height:31.25rem}.cxd-Drawer--lg .cxd-Drawer-content{width:50rem;height:50rem}.cxd-Drawer--xl .cxd-Drawer-content{width:90%;height:90%}}.cxd-Drawer--top .cxd-Drawer-content.in,.cxd-Drawer--right .cxd-Drawer-content.in,.cxd-Drawer--bottom .cxd-Drawer-content.in,.cxd-Drawer--left .cxd-Drawer-content.in{transform:translate3d(0,0,0)}.cxd-Drawer--top .cxd-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.cxd-Drawer--top.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.cxd-Drawer--top .cxd-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.cxd-Drawer--top .cxd-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.cxd-Drawer--right .cxd-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.cxd-Drawer--right.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.cxd-Drawer--right .cxd-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.cxd-Drawer--right .cxd-Drawer-footer{justify-content:flex-start}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Button{margin-left:0;margin-right:.3125rem}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Drawer-error{color:#ea2e2e}.cxd-Drawer--right .cxd-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.cxd-Drawer--bottom .cxd-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.cxd-Drawer--bottom.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.cxd-Drawer--bottom .cxd-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.cxd-Drawer--bottom .cxd-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.cxd-Drawer--left .cxd-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.cxd-Drawer--left.cxd-Drawer--noOverlay .cxd-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.cxd-Drawer--left .cxd-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.cxd-Drawer--left .cxd-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.cxd-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#fff;border:.0625rem solid #eceff8;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.cxd-Tooltip-arrow::before,.cxd-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.cxd-Tooltip--top{margin-top:-.625rem}.cxd-Tooltip--top .cxd-Tooltip-arrow{bottom:-.5625rem}.cxd-Tooltip--top .cxd-Tooltip-arrow::before,.cxd-Tooltip--top .cxd-Tooltip-arrow::after{border-width:.5rem .5rem 0}.cxd-Tooltip--top .cxd-Tooltip-arrow::before{bottom:0;border-top-color:#eceff8}.cxd-Tooltip--top .cxd-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#fff}.cxd-Tooltip--right{margin-left:.625rem}.cxd-Tooltip--right .cxd-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.cxd-Tooltip--right .cxd-Tooltip-arrow::before,.cxd-Tooltip--right .cxd-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.cxd-Tooltip--right .cxd-Tooltip-arrow::before{left:0;border-right-color:#eceff8}.cxd-Tooltip--right .cxd-Tooltip-arrow::after{left:.0625rem;border-right-color:#fff}.cxd-Tooltip--bottom{margin-top:.625rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow{top:-.5625rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::before,.cxd-Tooltip--bottom .cxd-Tooltip-arrow::after{border-width:0 .5rem .5rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::before{top:0;border-bottom-color:#eceff8}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#fff}.cxd-Tooltip--bottom .cxd-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #f7f7f7}.cxd-Tooltip--left{margin-left:-.625rem}.cxd-Tooltip--left .cxd-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.cxd-Tooltip--left .cxd-Tooltip-arrow::before,.cxd-Tooltip--left .cxd-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.cxd-Tooltip--left .cxd-Tooltip-arrow::before{right:0;border-left-color:#eceff8}.cxd-Tooltip--left .cxd-Tooltip-arrow::after{right:.0625rem;border-left-color:#fff}.cxd-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#333;background-color:#f7f7f7;border-bottom:.0625rem solid #ebebeb;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.cxd-Tooltip-title:empty{display:none}.cxd-Tooltip-body{color:#666;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.cxd-PopOver{position:absolute;background:#fff;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border:.0625rem solid #eceff8;border-radius:.142rem}.cxd-PopOver>*{position:relative;z-index:2}.cxd-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.cxd-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.3125rem .9375rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:0;border:.0625rem solid;color:#fff;position:relative;opacity:1;cursor:pointer;opacity:0;transform:translateZ(0)}.cxd-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.cxd-Toast.in,.cxd-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.cxd-Toast.in{animation-name:bounceIn}.cxd-Toast.out{animation-name:bounceOut}.cxd-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#999;line-height:1;opacity:.8}.cxd-Toast-close:hover{color:#108cee;opacity:1}.cxd-Toast-title{display:inline;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.cxd-Toast-body{display:inline;vertical-align:middle}.cxd-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin-right:.3125rem}.cxd-Toast-icon>svg{top:0;width:1rem;height:1rem;color:inherit}.cxd-Toast--error{color:#ea2e2e;border-color:#ea2e2e;background-color:#fff5f5}.cxd-Toast--warning{color:#f39000;border-color:#f39000;background-color:#fcf7f1}.cxd-Toast--info{color:#108cee;border-color:#108cee;background-color:#eaf6fe}.cxd-Toast--success{color:#5fb333;border-color:#5fb333;background-color:#f1fdeb}.cxd-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.cxd-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.cxd-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.cxd-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.cxd-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.cxd-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.cxd-Alert{font-size:.75rem;box-shadow:none;padding:.3125rem 1.25rem;border:.0625rem solid transparent;border-radius:0;margin-bottom:1.25rem}.cxd-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.cxd-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.cxd-Alert--danger{color:#333;background-color:#fff5f5;border-color:transparent}.cxd-Alert--info{color:#333;background-color:#eaf6fe;border-color:transparent}.cxd-Alert--success{color:#333;background-color:#f1fdeb;border-color:transparent}.cxd-Alert--warning{color:#333;background-color:#fcf7f1;border-color:transparent}.cxd-ArrayInput-placeholder{color:#999;padding-top:.40179rem}.cxd-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.625rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.cxd-ArrayInput-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.cxd-ArrayInput-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.cxd-ArrayInput-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-ArrayInput-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-ArrayInput-addBtn.is-disabled,.cxd-ArrayInput-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.cxd-ArrayInput-toolbar--dnd{padding-left:29px}.cxd-ArrayInput-sortTip{color:#999}.cxd-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.cxd-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.cxd-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.cxd-ArrayInput-item--dragging{position:relative;opacity:.4}.cxd-ArrayInput-itemRemove,.cxd-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.40179rem .3125rem;cursor:pointer}.cxd-ArrayInput-itemRemove>svg,.cxd-ArrayInput-itemDrager>svg{color:#999}.cxd-ArrayInput-itemRemove:hover>svg,.cxd-ArrayInput-itemDrager:hover>svg{color:#108cee}.cxd-ArrayInput-itemDrager{cursor:move}.cxd-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #eceff8;list-style:none;user-select:none}.cxd-Tabs-links::before,.cxd-Tabs-links::after{display:table;content:''}.cxd-Tabs-links::after{clear:both}.cxd-Tabs-links>.cxd-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.cxd-Tabs-links>.cxd-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#666;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.cxd-Tabs-links>.cxd-Tabs-link>.cxd-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.cxd-Tabs-links>.cxd-Tabs-link:hover>.cxd-Combo-toolbarBtn{display:block}.cxd-Tabs-links>.cxd-Tabs-link:hover>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link>a:first-child:focus{border-color:#e9ecef;text-decoration:none}.cxd-Tabs-links>.cxd-Tabs-link.disabled,.cxd-Tabs-links>.cxd-Tabs-link.is-disabled{cursor:not-allowed}.cxd-Tabs-links>.cxd-Tabs-link.disabled>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.cxd-Tabs-links>.cxd-Tabs-link.active>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link.is-active>a:first-child{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:transparent}.cxd-Tabs-content{background-color:#fff;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#eceff8}.cxd-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.cxd-Tabs-pane.is-active{display:block}.cxd-Tabs-pane.in{opacity:1}.cxd-Tabs--line>.cxd-Tabs-links{border-bottom-color:#eceff8}.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.cxd-Tabs--line>.cxd-Tabs-links>li:last-child>a{margin:0}.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child:focus{border-color:#108cee;color:#108cee;background-color:transparent}.cxd-Tabs--line>.cxd-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.cxd-Tabs--card>.cxd-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#f5f5f5;border-top:.0625rem solid #eceff8}.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child:focus{border-color:#fff;color:#108cee;border-bottom-color:#fff;background-color:#fff}.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child:focus{color:#666;background-color:#fff;border-bottom-color:transparent}.cxd-Tabs--card>.cxd-Tabs-content{border-width:0}.cxd-Tabs--radio>.cxd-Tabs-links{border:0;margin-bottom:.625rem}.cxd-Tabs--radio>.cxd-Tabs-links>li{margin:0}.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#eceff8;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#fff}.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child:focus{color:#108cee}.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child:focus{color:#fff;background-color:#108cee;border-color:#108cee;position:relative;z-index:1}.cxd-Tabs--radio>.cxd-Tabs-links>li+li{margin-left:-1px}.cxd-Tabs--radio>.cxd-Tabs-content{border-top:.0625rem solid #eceff8}.cxd-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #eceff8;border-radius:0}.cxd-Tabs--vertical>.cxd-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.cxd-Tabs--vertical>.cxd-Tabs-links>li{margin:0 0 0 -1px;display:block}.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child:focus{color:#108cee;border-color:transparent}.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child:focus{color:#108cee;border-color:#108cee}.cxd-Tabs--vertical>.cxd-Tabs-content{border:0;flex-grow:1}.cxd-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.cxd-Nav{list-style:none;user-select:none;margin:0;padding:0}.cxd-Nav .cxd-Nav-itemIcon{margin-right:.3125rem}.cxd-Nav--tabs{border-bottom:.0625rem solid #eceff8}.cxd-Nav--tabs .cxd-Nav-item{margin-bottom:-.0625rem;display:inline-block}.cxd-Nav--tabs .cxd-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#666;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.cxd-Nav--tabs .cxd-Nav-item:hover>a,.cxd-Nav--tabs .cxd-Nav-item>a:focus{border-color:#e9ecef;text-decoration:none}.cxd-Nav--tabs .cxd-Nav-item.disabled>a,.cxd-Nav--tabs .cxd-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.cxd-Nav--tabs .cxd-Nav-item.active>a,.cxd-Nav--tabs .cxd-Nav-item.is-active>a{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:#fff}.cxd-Nav--stacked .cxd-Nav-item{position:relative}.cxd-Nav--stacked .cxd-Nav-item>a{display:block;outline:0;color:#666;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:0}.cxd-Nav--stacked .cxd-Nav-item:hover>a,.cxd-Nav--stacked .cxd-Nav-item>a:focus{border-color:#333;text-decoration:none;background-color:rgba(0,0,0,.05)}.cxd-Nav--stacked .cxd-Nav-item.disabled>a,.cxd-Nav--stacked .cxd-Nav-item.is-disabled>a{color:#999;background-color:transparent;pointer-events:none}.cxd-Nav--stacked .cxd-Nav-item.active>a,.cxd-Nav--stacked .cxd-Nav-item.is-active>a{color:#108cee;background-color:#f6f7fb;border-left:.25rem solid #108cee;padding-left:.75rem}.cxd-Nav--stacked .cxd-Nav-item.is-unfolded .cxd-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.cxd-Nav--stacked .cxd-Nav-item.is-unfolded .cxd-Nav-subItems{display:block}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler>svg{width:10px;height:10px;top:0}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-subItems{display:none;padding-left:0;list-style:none}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item{font-size:.75rem}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item.active>a:before,.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item.is-active>a:before{background-color:#108cee}.cxd-Page{width:100%;min-height:100%}.cxd-Page-header{padding:.625rem 1.25rem}.cxd-Page-main{background:#fff;height:100%;display:flex;flex-direction:column}.cxd-Page-content{padding:0}.cxd-Page-main>.cxd-Page-header{border-bottom:.0625rem solid #eceff8}.cxd-Page-headerRow{border-bottom:.0625rem solid #eceff8;display:flex;flex-direction:row;align-items:center}.cxd-Page-headerRow .cxd-Page-header,.cxd-Page-headerRow .cxd-Page-toolbar{flex-grow:1}.cxd-Page-headerRow .cxd-Page-toolbar{text-align:right;padding-right:.9375rem}.cxd-Page-title{margin:0;padding:0;color:#000;line-height:1.75;font-size:1rem;font-weight:400}.cxd-Page-body{padding:1.25rem;flex:1 auto}.cxd-Page-asideTplWrapper{padding:.3125rem}.cxd-Page-toolbar .cxd-Button+.cxd-Button{margin-left:.3125rem}.cxd-Page-aside{background-color:#fff}@media (min-width:768px){.cxd-Page-aside{width:10rem;max-width:18.75rem;border-right:.0625rem solid #eceff8}.cxd-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.cxd-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.cxd-Page--withSidebar>.cxd-Page-content{width:0;flex-grow:1}}.cxd-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.cxd-Remark-icon{color:#999;font-size:.75rem;background-color:#fff;border:.0625rem solid #999;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.cxd-Remark:hover>.cxd-Remark-icon{color:#fff;background-color:#f38900;border-color:#f38900}.cxd-Remark>svg{width:.875rem;height:.875rem;color:#999}.cxd-Remark:hover>svg{color:#fff}.cxd-Chart{min-width:300px;min-height:300px;position:relative}.cxd-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.cxd-Video{min-width:200px}.cxd-Video-cursor{position:absolute;border:2px solid #108cee;transition:all .5s ease-out}.cxd-Video-frameList .cxd-Video-frameItem{cursor:pointer}.cxd-Video-frameLabel{text-align:center}.cxd-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.cxd-Audio-original{display:none}.cxd-Audio--inline{display:inline-block}.cxd-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.cxd-Audio-controls{display:flex;flex-direction:row;align-items:center}.cxd-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.cxd-Audio-rateControl{margin-right:.625rem}.cxd-Audio-rateControl::after{clear:both;content:''}.cxd-Audio-rateControl .cxd-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.cxd-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.cxd-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.cxd-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.cxd-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.cxd-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.cxd-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.cxd-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.cxd-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.cxd-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.cxd-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.cxd-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.cxd-Audio-volumeControl .cxd-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.cxd-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Panel{margin-bottom:1.25rem;background-color:#fff;border:.0625rem solid transparent;border-radius:0;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.cxd-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -2px 10px 0 rgba(0,0,0,.05);border-top:0}.cxd-Panel-fixedBottom.in{position:fixed;bottom:0}.cxd-Panel--default{border-color:#eceff8}.cxd-Panel--default>.cxd-Panel-heading{background:#f6f8f8;color:#666}.cxd-Panel--default>.cxd-Panel-heading .badge{color:#f5f5f5;background:#333}.cxd-Panel--default>.cxd-Panel-heading{border-color:#eceff8}.cxd-Panel--primary{border-color:#108cee}.cxd-Panel--primary>.cxd-Panel-heading{background:#108cee;color:#fff}.cxd-Panel--primary>.cxd-Panel-heading .badge{color:#108cee;background:#fff}.cxd-Panel--primary>.cxd-Panel-heading,.cxd-Panel--primary>.cxd-Panel-footer{border-color:#108cee}.cxd-Panel--success{border-color:#5fb333}.cxd-Panel--success>.cxd-Panel-heading{background:#5fb333;color:#fff}.cxd-Panel--success>.cxd-Panel-heading .badge{color:#5fb333;background:#fff}.cxd-Panel--success>.cxd-Panel-heading,.cxd-Panel--success>.cxd-Panel-footer{border-color:#5fb333}.cxd-Panel--info{border-color:#108cee}.cxd-Panel--info>.cxd-Panel-heading{background:#108cee;color:#fff}.cxd-Panel--info>.cxd-Panel-heading .badge{color:#108cee;background:#fff}.cxd-Panel--info>.cxd-Panel-heading,.cxd-Panel--info>.cxd-Panel-footer{border-color:#108cee}.cxd-Panel--warning{border-color:#f39000}.cxd-Panel--warning>.cxd-Panel-heading{background:#f39000;color:#fff}.cxd-Panel--warning>.cxd-Panel-heading .badge{color:#f39000;background:#fff}.cxd-Panel--warning>.cxd-Panel-heading,.cxd-Panel--warning>.cxd-Panel-footer{border-color:#f39000}.cxd-Panel--danger{border-color:#ea2e2e}.cxd-Panel--danger>.cxd-Panel-heading{background:#ea2e2e;color:#fff}.cxd-Panel--danger>.cxd-Panel-heading .badge{color:#ea2e2e;background:#fff}.cxd-Panel--danger>.cxd-Panel-heading,.cxd-Panel--danger>.cxd-Panel-footer{border-color:#ea2e2e}.cxd-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.cxd-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.cxd-Panel-body{padding:.9375rem}.cxd-Panel-footer{border-color:#fff;border-radius:0 0 .125rem .125rem;background:#fff;padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.cxd-Panel-footer .cxd-Button+.cxd-Button{margin-left:.625rem}.cxd-Panel-btnToolbar{text-align:right}.cxd-Panel-btnToolbar::before,.cxd-Panel-btnToolbar::after{display:table;content:''}.cxd-Panel-btnToolbar::after{clear:both}.cxd-Panel-btnToolbar .cxd-Button{margin-left:.625rem}.cxd-Panel-btnToolbar:empty{display:none}.cxd-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.cxd-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.cxd-Spinner-overlay.in{opacity:1}.cxd-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url(https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/spinner-cxd_c22891d.svg);background-size:100%;transition:ease-out all .3s}.cxd-Spinner--lg{width:3.125rem;height:3.125rem}.cxd-Spinner--sm{width:1rem;height:1rem}.cxd-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.cxd-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.cxd-Spinner--overlay.cxd-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.cxd-Layout .cxd-Page-body>.cxd-Spinner-overlay{left:11.25rem}.cxd-Layout--folded .cxd-Page-body>.cxd-Spinner-overlay{left:3.75rem}}.cxd-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.cxd-ButtonGroup>.cxd-Button{position:relative;flex:0 1 auto}.cxd-ButtonGroup>.cxd-Button:hover{z-index:1}.cxd-ButtonGroup>.cxd-Button:focus,.cxd-ButtonGroup>.cxd-Button:active,.cxd-ButtonGroup>.cxd-Button.active,.cxd-ButtonGroup>.cxd-Button.is-active{z-index:1}.cxd-ButtonGroup .cxd-Button+.cxd-Button,.cxd-ButtonGroup .cxd-Button+.cxd-ButtonGroup,.cxd-ButtonGroup .cxd-ButtonGroup+.cxd-Button,.cxd-ButtonGroup .cxd-ButtonGroup+.cxd-ButtonGroup{margin-left:-.0625rem}.cxd-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.cxd-ButtonToolbar .cxd-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.cxd-ButtonGroup>.cxd-Button:first-child{margin-left:0}.cxd-ButtonGroup .cxd-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#fff}.cxd-ButtonGroup>.cxd-Button:not(:last-child),.cxd-ButtonGroup>.cxd-ButtonGroup:not(:last-child)>.cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-ButtonGroup>.cxd-Button:not(:first-child),.cxd-ButtonGroup>.cxd-ButtonGroup:not(:first-child)>.cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.cxd-ButtonGroup--vertical .cxd-Button,.cxd-ButtonGroup--vertical .cxd-ButtonGroup{width:100%}.cxd-ButtonGroup--vertical>.cxd-Button+.cxd-Button,.cxd-ButtonGroup--vertical>.cxd-Button+.cxd-ButtonGroup,.cxd-ButtonGroup--vertical>.cxd-ButtonGroup+.cxd-Button,.cxd-ButtonGroup--vertical>.cxd-ButtonGroup+.cxd-ButtonGroup{margin-top:-.0625rem;margin-left:0}.cxd-ButtonGroup--vertical>.cxd-Button:not(:last-child),.cxd-ButtonGroup--vertical>.cxd-ButtonGroup:not(:last-child)>.cxd-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-ButtonGroup--vertical>.cxd-Button:not(:first-child),.cxd-ButtonGroup--vertical>.cxd-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.cxd-ButtonGroupControl{display:inline-block}.cxd-ButtonGroupControl>.cxd-ButtonGroup--sm{margin-top:0rem}.cxd-ButtonGroupControl>.cxd-ButtonGroup--xs{margin-top:.25rem}.cxd-DropDown{position:relative;display:inline-block}.cxd-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.cxd-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.cxd-DropDown.is-opened .cxd-DropDown-caret{transform:rotate(180deg)}.cxd-DropDown--block{display:block}.cxd-DropDown--block .cxd-Button{display:block}.cxd-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#fff;list-style:none;padding:.3125rem 0;border:.0625rem solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);min-width:10rem;text-align:left}.cxd-DropDown--alignRight .cxd-DropDown-menu{left:auto;right:0}.cxd-DropDown-menuItem,.cxd-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.cxd-DropDown-menuItem:hover,.cxd-DropDown-menu>li:hover{background-color:#eaf6fe;color:inherit}.cxd-DropDown-menuItem:not(.is-disabled),.cxd-DropDown-menuItem:not(.disabled),.cxd-DropDown-menu>li:not(.is-disabled),.cxd-DropDown-menu>li:not(.disabled){cursor:pointer}.cxd-DropDown-menuItem.cxd-DropDown-divider,.cxd-DropDown-menu>li.cxd-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#eceff8;padding:0}.cxd-DropDown-menu>li a{display:block;text-decoration:none}.cxd-DropDown-popover{border:0;box-shadow:none}.cxd-DropDown>.cxd-Button{min-width:unset}.cxd-Collapse{border:0;padding:0;margin-bottom:1.25rem}.cxd-Collapse-header{font-size:1rem;font-weight:400;color:#333;padding:.3125rem 0;border-bottom:.0625rem solid #fff}.cxd-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.cxd-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#666;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.cxd-Collapse.is-collapsed .cxd-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.cxd-Collapse--collapsable .cxd-Collapse-header{user-select:none}.cxd-Collapse-content{transition:height .35s ease}.cxd-Collapse-content.in,.cxd-Collapse-content.out{height:0;overflow:hidden}.cxd-ColorField{display:inline-block}.cxd-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075);background-color:#ccc}.cxd-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.cxd-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.cxd-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.cxd-ContextMenu-menu.in,.cxd-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.cxd-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.cxd-ContextMenu-menu.out{animation-name:contextMenuOut}.cxd-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.cxd-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.cxd-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.cxd-ContextMenu-item{position:relative}.cxd-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.cxd-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.cxd-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.cxd-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.cxd-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.cxd-ContextMenu-itemIcon{margin-right:5px}.cxd-ContextMenu-subList{display:none;list-style:none}.cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.cxd-ContextMenu--left .cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList{left:auto;right:100%}.cxd-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.cxd-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.cxd-Wizard{position:relative}.cxd-Wizard::before,.cxd-Wizard::after{display:table;content:''}.cxd-Wizard::after{clear:both}.cxd-Wizard,.cxd-Wizard-tabs{padding:0}.cxd-Wizard .cxd-Badge,.cxd-Wizard-tabs .cxd-Badge{display:inline-block;width:1.625rem;height:1.625rem;font-size:.875rem;line-height:1.625rem;color:#999;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#fff;border-radius:50%;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.375rem;border:.0625rem solid #999;box-sizing:content-box}.cxd-Wizard .cxd-Badge.is-active,.cxd-Wizard-tabs .cxd-Badge.is-active{color:#fff;background-color:#333}.cxd-Wizard ul li.active,.cxd-Wizard-tabs ul li.active{color:#108cee}.cxd-Wizard .cxd-Panel-footer>.cxd-Form-group,.cxd-Wizard .cxd-Panel-footer>.btn,.cxd-Wizard-tabs .cxd-Panel-footer>.cxd-Form-group,.cxd-Wizard-tabs .cxd-Panel-footer>.btn{margin-left:.3125rem}.cxd-Wizard>ul.nav,.cxd-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #eceff8}.cxd-Wizard>ul.nav li,.cxd-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:3.75rem;line-height:3.75rem}.cxd-Wizard>ul.nav li a,.cxd-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.cxd-Wizard>ul.nav li a div,.cxd-Wizard-tabs>ul.nav li a div{display:inline}.cxd-Wizard>ul.nav li:first-child,.cxd-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.cxd-Wizard>ul.nav li:before,.cxd-Wizard>ul.nav li:after,.cxd-Wizard-tabs>ul.nav li:before,.cxd-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #eceff8;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.cxd-Wizard>ul.nav li:after,.cxd-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#fff;z-index:2}.cxd-Wizard>ul.nav li.is-active,.cxd-Wizard-tabs>ul.nav li.is-active{color:#333;background:#fff}.cxd-Wizard>ul.nav li.is-active:after,.cxd-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.cxd-Wizard-steps{font-size:.875rem;padding:.625rem 0;background-color:#fff;border-bottom:0 solid #eceff8;text-align:center}.cxd-Wizard-steps::before,.cxd-Wizard-steps::after{display:table;content:''}.cxd-Wizard-steps::after{clear:both}.cxd-Wizard-steps ul{display:inline-block;padding:0;margin:0;list-style:none outside none}.cxd-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:3.75rem;line-height:3.75rem}.cxd-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.cxd-Wizard-steps ul li:before,.cxd-Wizard-steps ul li:after{font-family:iconfont;content:'\e6ee';position:absolute;bottom:0;right:-.625rem;border:0!important;border-right:0;border-left:.625rem solid #eceff8;border-left-color:rgba(0,0,0,.05);z-index:2}.cxd-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#fff;z-index:2}.cxd-Wizard-steps ul li.is-active{color:#333;background:#fff}.cxd-Wizard-steps ul li.is-active:after{border-left-color:#fff}.cxd-Wizard-steps ul li.is-complete,.cxd-Wizard-steps ul li.is-complete:hover{color:#333;cursor:pointer;background:#fff}.cxd-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.cxd-Wizard-stepContent{padding:.9375rem}.cxd-Wizard-stepContent .Step-pane{display:none}.cxd-Wizard-stepContent .Step-pane.is-active{display:inherit}.cxd-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.cxd-Wizard--vertical.cxd-Wizard-steps{height:auto}.cxd-Wizard--vertical+.cxd-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.cxd-Wizard--vertical li{background-color:#fff}.cxd-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #eceff8;padding-left:.9375rem}.cxd-Wizard--vertical+.cxd-Wizard-stepContent+.cxd-Panel-footer{clear:both}.cxd-Crud{position:relative}.cxd-Crud-selection{margin-bottom:.9375rem}.cxd-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.cxd-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.cxd-Crud-value:hover{background-color:#b5dcfb}.cxd-Crud-value.is-disabled{pointer-events:none;opacity:1}.cxd-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Crud-valueIcon:hover{background-color:#b5dcfb}.cxd-Crud-valueLabel{padding:0 .3125rem}.cxd-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.cxd-Crud-toolbar-item{margin-left:.625rem;margin-top:.625rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.cxd-Crud-toolbar-item--left{float:left}.cxd-Crud-toolbar-item--right{float:right}.cxd-Crud-actions>*+.cxd-Button,.cxd-Crud-actions>*+.cxd-ButtonGroup,.cxd-Crud-actions>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Crud-statistics{line-height:1.875rem;vertical-align:middle}.cxd-Crud-pageSwitch .cxd-Select{margin-left:.625rem}.cxd-Crud-pager{align-self:flex-start}@media (min-width:576px){.cxd-Crud-toolbar{margin-left:-.625rem;margin-top:-.625rem;flex-basis:0;flex-grow:1}.cxd-Crud-toolbar::before,.cxd-Crud-toolbar::after{display:table;content:''}.cxd-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.625rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.cxd-Button+.cxd-Button{margin-left:.625rem}}.cxd-Table{position:relative;background:#fff;border:.0625rem solid #f5f5f5;border-radius:.142rem;margin-bottom:1.25rem}.cxd-Form-control>.cxd-Table{margin-bottom:.625rem}.cxd-Table-fixedLeft,.cxd-Table-fixedRight{position:absolute;background:#fff;z-index:5;top:-999999px}.cxd-Table-fixedLeft.in,.cxd-Table-fixedRight.in{top:auto}.cxd-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(0,0,0,.15);left:0}.cxd-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(0,0,0,.15);right:0}.cxd-Table-fixedRight .cxd-Table-table>thead>tr>th:first-child,.cxd-Table-fixedRight .cxd-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.cxd-Table-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-Table-fixedTop>.cxd-Table-fixedLeft,.cxd-Table-fixedTop>.cxd-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #f5f5f5}.cxd-Table-fixedTop>.cxd-Table-fixedLeft>table,.cxd-Table-fixedTop>.cxd-Table-fixedRight>table{margin-bottom:.3125rem}.cxd-Table-fixedTop>.cxd-Table-heading{border-bottom:0}.cxd-Table-fixedTop>.cxd-Table-wrapper{border-top:.0625rem solid #f5f5f5}.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-fixedLeft,.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-fixedRight,.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-wrapper{visibility:hidden;position:absolute}.cxd-Table-heading{background:#fff;border-bottom:.0625rem solid #f5f5f5;padding:.6875rem .625rem}.cxd-Table--unsaved .cxd-Table-heading{background:#e8f0fe;color:#4285f4}.cxd-Table-wrapper{overflow:hidden}.cxd-Table-placeholder{color:#999;text-align:center;height:6.25rem;background-color:transparent!important}.cxd-Table-placeholder:hover{color:#999;background-color:transparent!important}.cxd-Table-placeholder>td{vertical-align:middle!important;text-align:center}.cxd-Table-header{padding:.625rem}.cxd-Table-header>*+.cxd-Button,.cxd-Table-header>*+.cxd-ButtonGroup,.cxd-Table-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.cxd-Table-toolbar::before,.cxd-Table-toolbar::after{display:table;content:''}.cxd-Table-toolbar::after{clear:both}.cxd-Table-toolbar .cxd-DropDown-menuItem{height:auto}.cxd-Table-toolbar .cxd-DropDown-menuItem .cxd-Checkbox{display:flex;align-items:center}.cxd-Table-header+.cxd-Table-toolbar{padding-top:0}.cxd-Table-contentWrap{position:relative}.cxd-Table-header+.cxd-Table-contentWrap,.cxd-Table-toolbar+.cxd-Table-contentWrap{border-top:.0625rem solid #f5f5f5}.cxd-Table-footToolbar{border-top:.0625rem solid #f5f5f5}.cxd-Table-actions{display:inline-block}.cxd-Table-actions>*{margin-right:.625rem}.cxd-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.cxd-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.75rem;color:#333;background-color:#fff;border-spacing:0;border-collapse:collapse}.cxd-Table-table--withCombine>thead>tr>th:first-child,.cxd-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.cxd-Table-table--withCombine>thead>tr>th:last-child,.cxd-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.cxd-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.cxd-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.cxd-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #f5f5f5}.cxd-Table-table>thead>tr>th{background-color:#f5f5f5;padding:.625rem;border-bottom:.0625rem solid #fff;font-size:.875rem;color:#333;font-weight:400;white-space:nowrap}.cxd-Table-table>thead>tr>th[colspan]{text-align:center}.cxd-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.cxd-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.cxd-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #fff}.cxd-Table-table>thead>tr>th .cxd-TableCell--title{display:flex;align-items:center}.cxd-Table-table>thead>tr>th .cxd-Remark{margin-left:.3125rem}.cxd-Table-table>thead>tr+tr{border-top:.0625rem solid #f5f5f5}.cxd-Table-table>thead>tr{border-bottom:.0625rem solid #f5f5f5}.cxd-Table-table>tbody>tr+tr{border-top:.0625rem solid #f5f5f5}.cxd-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #fff}.cxd-Table-table>tbody>tr>th{background-color:#f5f5f5;color:#333;font-weight:400;white-space:nowrap;border-right:.0625rem solid #fff}.cxd-Table-table>tbody>tr>td,.cxd-Table-table>tbody>tr>th{padding:.625rem;vertical-align:top}.cxd-Table-table>tbody>tr>td:first-child,.cxd-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.cxd-Table-table>tbody>tr>td:last-child,.cxd-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.cxd-Table-table>tbody>tr:hover,.cxd-Table-table>tbody>tr.is-hovered{background-color:#f5fbff;border-color:#eceff8;color:#666}.cxd-Table-table>tbody>tr:hover+tr,.cxd-Table-table>tbody>tr.is-hovered+tr{border-color:#eceff8}.cxd-Table-table>tbody>tr.is-checked{background-color:transparent;border-color:#eceff8;color:#333}.cxd-Table-table>tbody>tr.is-checked+tr{border-color:#eceff8}.cxd-Table-table>tbody>tr.is-moved,.cxd-Table-table>tbody>tr.is-modified{background-color:#e8f0fe;border-color:#d0e0fd;color:#4285f4}.cxd-Table-table>tbody>tr.is-moved+tr,.cxd-Table-table>tbody>tr.is-modified+tr{border-color:#d0e0fd}.cxd-Table-table>tbody>tr.bg-light{background-color:#eaf6fe;color:#666}.cxd-Table-table>tbody>tr.bg-light.lt,.cxd-Table-table>tbody>tr.bg-light .lt{background-color:#f4fafe}.cxd-Table-table>tbody>tr.bg-light.lter,.cxd-Table-table>tbody>tr.bg-light .lter{background-color:#f9fcff}.cxd-Table-table>tbody>tr.bg-light.dk,.cxd-Table-table>tbody>tr.bg-light .dk{background-color:#dbf0fe}.cxd-Table-table>tbody>tr.bg-light.dker,.cxd-Table-table>tbody>tr.bg-light .dker{background-color:#d0ecfe}.cxd-Table-table>tbody>tr.bg-light.bg,.cxd-Table-table>tbody>tr.bg-light .bg{background-color:#eaf6fe}.cxd-Table-table>tbody>tr.bg-dark{background-color:#343a40;color:#a0a0a0}.cxd-Table-table>tbody>tr.bg-dark.lt,.cxd-Table-table>tbody>tr.bg-dark .lt{background-color:#41474c}.cxd-Table-table>tbody>tr.bg-dark.lter,.cxd-Table-table>tbody>tr.bg-dark .lter{background-color:#4f5458}.cxd-Table-table>tbody>tr.bg-dark.dk,.cxd-Table-table>tbody>tr.bg-dark .dk{background-color:#272d33}.cxd-Table-table>tbody>tr.bg-dark.dker,.cxd-Table-table>tbody>tr.bg-dark .dker{background-color:#1c2125}.cxd-Table-table>tbody>tr.bg-dark.bg,.cxd-Table-table>tbody>tr.bg-dark .bg{background-color:#343a40}.cxd-Table-table>tbody>tr.bg-dark a,.cxd-Table-table>tbody>tr.bg-dark .cxd-Button--link{color:#b9baba}.cxd-Table-table>tbody>tr.bg-dark a:hover,.cxd-Table-table>tbody>tr.bg-dark .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-dark .open>a,.cxd-Table-table>tbody>tr.bg-dark .open>a:hover,.cxd-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-dark .text-muted{color:#868787!important}.cxd-Table-table>tbody>tr.bg-dark .text-lt{color:#e0e0e0!important}.cxd-Table-table>tbody>tr.bg-black{background-color:#000;color:#666}.cxd-Table-table>tbody>tr.bg-black.lt,.cxd-Table-table>tbody>tr.bg-black .lt{background-color:#0d0d0d}.cxd-Table-table>tbody>tr.bg-black.lter,.cxd-Table-table>tbody>tr.bg-black .lter{background-color:#1a1a1a}.cxd-Table-table>tbody>tr.bg-black.dk,.cxd-Table-table>tbody>tr.bg-black .dk{background-color:#000}.cxd-Table-table>tbody>tr.bg-black.dker,.cxd-Table-table>tbody>tr.bg-black .dker{background-color:#000}.cxd-Table-table>tbody>tr.bg-black.bg,.cxd-Table-table>tbody>tr.bg-black .bg{background-color:#000}.cxd-Table-table>tbody>tr.bg-black a,.cxd-Table-table>tbody>tr.bg-black .cxd-Button--link{color:gray}.cxd-Table-table>tbody>tr.bg-black a:hover,.cxd-Table-table>tbody>tr.bg-black .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-black .open>a,.cxd-Table-table>tbody>tr.bg-black .open>a:hover,.cxd-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-black .text-muted{color:#4d4d4d!important}.cxd-Table-table>tbody>tr.bg-black .text-lt{color:#a6a6a6!important}.cxd-Table-table>tbody>tr.bg-primary{background-color:#108cee;color:#d1e7f9}.cxd-Table-table>tbody>tr.bg-primary.lt,.cxd-Table-table>tbody>tr.bg-primary .lt{background-color:#2a97ee}.cxd-Table-table>tbody>tr.bg-primary.lter,.cxd-Table-table>tbody>tr.bg-primary .lter{background-color:#44a2ed}.cxd-Table-table>tbody>tr.bg-primary.dk,.cxd-Table-table>tbody>tr.bg-primary .dk{background-color:#0c7ed9}.cxd-Table-table>tbody>tr.bg-primary.dker,.cxd-Table-table>tbody>tr.bg-primary .dker{background-color:#0870c3}.cxd-Table-table>tbody>tr.bg-primary.bg,.cxd-Table-table>tbody>tr.bg-primary .bg{background-color:#108cee}.cxd-Table-table>tbody>tr.bg-primary a,.cxd-Table-table>tbody>tr.bg-primary .cxd-Button--link{color:#feffff}.cxd-Table-table>tbody>tr.bg-primary a:hover,.cxd-Table-table>tbody>tr.bg-primary .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-primary .open>a,.cxd-Table-table>tbody>tr.bg-primary .open>a:hover,.cxd-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-primary .text-muted{color:#a4d0f3!important}.cxd-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-success{background-color:#5fb333;color:#d4eac8}.cxd-Table-table>tbody>tr.bg-success.lt,.cxd-Table-table>tbody>tr.bg-success .lt{background-color:#6bc33c}.cxd-Table-table>tbody>tr.bg-success.lter,.cxd-Table-table>tbody>tr.bg-success .lter{background-color:#7ac653}.cxd-Table-table>tbody>tr.bg-success.dk,.cxd-Table-table>tbody>tr.bg-success .dk{background-color:#54a22b}.cxd-Table-table>tbody>tr.bg-success.dker,.cxd-Table-table>tbody>tr.bg-success .dker{background-color:#499023}.cxd-Table-table>tbody>tr.bg-success.bg,.cxd-Table-table>tbody>tr.bg-success .bg{background-color:#5fb333}.cxd-Table-table>tbody>tr.bg-success a,.cxd-Table-table>tbody>tr.bg-success .cxd-Button--link{color:#f1f8ed}.cxd-Table-table>tbody>tr.bg-success a:hover,.cxd-Table-table>tbody>tr.bg-success .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-success .open>a,.cxd-Table-table>tbody>tr.bg-success .open>a:hover,.cxd-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-success .text-muted{color:#b6dca3!important}.cxd-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-info{background-color:#108cee;color:#d1e7f9}.cxd-Table-table>tbody>tr.bg-info.lt,.cxd-Table-table>tbody>tr.bg-info .lt{background-color:#2a97ee}.cxd-Table-table>tbody>tr.bg-info.lter,.cxd-Table-table>tbody>tr.bg-info .lter{background-color:#44a2ed}.cxd-Table-table>tbody>tr.bg-info.dk,.cxd-Table-table>tbody>tr.bg-info .dk{background-color:#0c7ed9}.cxd-Table-table>tbody>tr.bg-info.dker,.cxd-Table-table>tbody>tr.bg-info .dker{background-color:#0870c3}.cxd-Table-table>tbody>tr.bg-info.bg,.cxd-Table-table>tbody>tr.bg-info .bg{background-color:#108cee}.cxd-Table-table>tbody>tr.bg-info a,.cxd-Table-table>tbody>tr.bg-info .cxd-Button--link{color:#feffff}.cxd-Table-table>tbody>tr.bg-info a:hover,.cxd-Table-table>tbody>tr.bg-info .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-info .open>a,.cxd-Table-table>tbody>tr.bg-info .open>a:hover,.cxd-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-info .text-muted{color:#a4d0f3!important}.cxd-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-warning{background-color:#f39000;color:#fce5c3}.cxd-Table-table>tbody>tr.bg-warning.lt,.cxd-Table-table>tbody>tr.bg-warning .lt{background-color:#fc9c11}.cxd-Table-table>tbody>tr.bg-warning.lter,.cxd-Table-table>tbody>tr.bg-warning .lter{background-color:#faa62c}.cxd-Table-table>tbody>tr.bg-warning.dk,.cxd-Table-table>tbody>tr.bg-warning .dk{background-color:#da8100}.cxd-Table-table>tbody>tr.bg-warning.dker,.cxd-Table-table>tbody>tr.bg-warning .dker{background-color:#c07200}.cxd-Table-table>tbody>tr.bg-warning.bg,.cxd-Table-table>tbody>tr.bg-warning .bg{background-color:#f39000}.cxd-Table-table>tbody>tr.bg-warning a,.cxd-Table-table>tbody>tr.bg-warning .cxd-Button--link{color:#fefaf4}.cxd-Table-table>tbody>tr.bg-warning a:hover,.cxd-Table-table>tbody>tr.bg-warning .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-warning .open>a,.cxd-Table-table>tbody>tr.bg-warning .open>a:hover,.cxd-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-warning .text-muted{color:#f9d093!important}.cxd-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-danger{background-color:#ea2e2e;color:#fbe9e9}.cxd-Table-table>tbody>tr.bg-danger.lt,.cxd-Table-table>tbody>tr.bg-danger .lt{background-color:#ea4848}.cxd-Table-table>tbody>tr.bg-danger.lter,.cxd-Table-table>tbody>tr.bg-danger .lter{background-color:#ea6161}.cxd-Table-table>tbody>tr.bg-danger.dk,.cxd-Table-table>tbody>tr.bg-danger .dk{background-color:#ea1414}.cxd-Table-table>tbody>tr.bg-danger.dker,.cxd-Table-table>tbody>tr.bg-danger .dker{background-color:#d60f0f}.cxd-Table-table>tbody>tr.bg-danger.bg,.cxd-Table-table>tbody>tr.bg-danger .bg{background-color:#ea2e2e}.cxd-Table-table>tbody>tr.bg-danger a,.cxd-Table-table>tbody>tr.bg-danger .cxd-Button--link{color:#fff}.cxd-Table-table>tbody>tr.bg-danger a:hover,.cxd-Table-table>tbody>tr.bg-danger .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-danger .open>a,.cxd-Table-table>tbody>tr.bg-danger .open>a:hover,.cxd-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-danger .text-muted{color:#f4bdbd!important}.cxd-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.is-dragging{opacity:.1}.cxd-Table-table tr.cxd-Table-tr--2th.is-expanded .cxd-Table-expandCell:before{right:-.8125rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandBtn{position:relative;right:-1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td{position:relative;padding-left:1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--2th.is-expandable .cxd-Table-expandCell+td{padding-left:1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--3th.is-expanded .cxd-Table-expandCell:before{right:-2.0625rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandBtn{position:relative;right:-2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td{position:relative;padding-left:2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--3th.is-expandable .cxd-Table-expandCell+td{padding-left:2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--4th.is-expanded .cxd-Table-expandCell:before{right:-3.3125rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandBtn{position:relative;right:-3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td{position:relative;padding-left:3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--4th.is-expandable .cxd-Table-expandCell+td{padding-left:3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--5th.is-expanded .cxd-Table-expandCell:before{right:-4.5625rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandBtn{position:relative;right:-5rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td{position:relative;padding-left:5rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--5th.is-expandable .cxd-Table-expandCell+td{padding-left:5rem}.cxd-Table-table tr.cxd-Table-tr--5th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--6th.is-expanded .cxd-Table-expandCell:before{right:-5.8125rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandBtn{position:relative;right:-6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td{position:relative;padding-left:6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--6th.is-expandable .cxd-Table-expandCell+td{padding-left:6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--7th.is-expanded .cxd-Table-expandCell:before{right:-7.0625rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandBtn{position:relative;right:-7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td{position:relative;padding-left:7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--7th.is-expandable .cxd-Table-expandCell+td{padding-left:7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--8th.is-expanded .cxd-Table-expandCell:before{right:-8.3125rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandBtn{position:relative;right:-8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td{position:relative;padding-left:8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--8th.is-expandable .cxd-Table-expandCell+td{padding-left:8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--9th.is-expanded .cxd-Table-expandCell:before{right:-9.5625rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandBtn{position:relative;right:-10rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td{position:relative;padding-left:10rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--9th.is-expandable .cxd-Table-expandCell+td{padding-left:10rem}.cxd-Table-table tr.cxd-Table-tr--9th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--10th.is-expanded .cxd-Table-expandCell:before{right:-10.8125rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandBtn{position:relative;right:-11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td{position:relative;padding-left:11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--10th.is-expandable .cxd-Table-expandCell+td{padding-left:11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table>thead>tr>th.cxd-Table-checkCell,.cxd-Table-table>tbody>tr>td.cxd-Table-checkCell{border-right:0;width:.0625rem}.cxd-Table-table>thead>tr>th.cxd-Table-checkCell .cxd-Checkbox,.cxd-Table-table>tbody>tr>td.cxd-Table-checkCell .cxd-Checkbox{margin:0}.cxd-Table-table>thead>tr>th.cxd-Table-expandCell,.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.cxd-Table-table>thead>tr>th.cxd-Table-dragCell,.cxd-Table-table>tbody>tr>td.cxd-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell{position:relative}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:.4375rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-.8125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-2.0625rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-3.3125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-4.5625rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-5.8125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-7.0625rem}.cxd-Table-table>tbody>tr.is-expanded>td.cxd-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#dcdcdc}.cxd-Table-table>thead>tr>th.cxd-TableCell--sortable{padding-right:1.5rem;position:relative}.cxd-Table-table>thead>tr>th.cxd-TableCell--searchable{padding-right:1.625rem;position:relative}.cxd-Table-table>thead>tr>th.cxd-TableCell--filterable{padding-right:1.625rem;position:relative}.cxd-TableCell-sortBtn{cursor:pointer;width:.875rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.1875rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-sortBtn:hover{color:#108cee}.cxd-TableCell-sortBtn--up>svg,.cxd-TableCell-sortBtn--down>svg,.cxd-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.cxd-TableCell-sortBtn--up,.cxd-TableCell-sortBtn--down,.cxd-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.cxd-TableCell-sortBtn--up.is-active,.cxd-TableCell-sortBtn--down.is-active,.cxd-TableCell-sortBtn--default.is-active{display:inline-block}.cxd-TableCell-sortBtn--default.is-active{color:#999}.cxd-TableCell-sortBtn--default.is-active:hover{color:#666}.cxd-TableCell-sortBtn--up.is-active,.cxd-TableCell-sortBtn--down.is-active{color:#108cee}.cxd-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-searchBtn svg.icon{width:12px;height:12px}.cxd-TableCell-searchBtn:hover{color:#666}.cxd-TableCell-searchBtn.is-active{color:#108cee}.cxd-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.cxd-TableCell-searchPopOver .cxd-Panel{margin:0}.cxd-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-filterBtn svg.icon{width:12px;height:12px}.cxd-TableCell-filterBtn:hover{color:#666}.cxd-TableCell-filterBtn.is-active{color:#108cee}.cxd-TableCell-filterBtn .cxd-Remark{display:inline}.cxd-TableCell-filterPopOver{border:0;width:10rem}.cxd-TableCell-filterPopOver .cxd-DropDown-menu{margin:0;padding:0;border-radius:0}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider{height:1.875rem;line-height:1.875rem;padding:0 .625rem;background-color:#fff;margin:0}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider:hover{background-color:#eaf6fe;color:#108cee}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider.is-selected{background-color:#eaf6fe;color:#108cee}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider .cxd-Checkbox{width:100%;margin:0}.cxd-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(245,251,255,0) 0,#f5fbff 20%,#f5fbff 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.cxd-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#108cee;text-decoration:none}.cxd-Table-itemActions a:hover{color:#0b62a6;text-decoration:none}.cxd-Table-itemActions a.is-disabled{pointer-events:none;opacity:1;color:#999}.cxd-Table-dragTip{color:#333;clear:both;margin-top:.3125rem;width:100%;color:#108cee}.cxd-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.cxd-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.625rem}.cxd-Table-footTable>tbody>tr>td{word-break:break-all;padding:.625rem}.cxd-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #fff}.cxd-Table-expandBtn{position:relative;z-index:1;color:#108cee;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.cxd-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.cxd-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.cxd-Table-expandBtn:hover{text-decoration:none}.cxd-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#999}.cxd-Table-dragBtn:hover{text-decoration:none;color:#108cee}.cxd-Table-table>tbody>tr:hover .cxd-Table-dragBtn,.cxd-Table-table>tbody>tr.is-dragging .cxd-Table-dragBtn,.cxd-Table-table>tbody>tr.is-drop-allowed .cxd-Table-dragBtn{visibility:visible}.cxd-Table .fake-hide{visibility:hidden;position:absolute}.cxd-OperationField{margin:-.1875rem}.cxd-OperationField>.cxd-Button,.cxd-OperationField>.cxd-Button--disabled-wrap>.cxd-Button{margin:.1875rem}.cxd-OperationField>.cxd-Button--link{padding:0;margin-right:.625rem}.cxd-List{border:.0625rem solid #eceff8;border-radius:.142rem;background-color:#fff;margin-bottom:1.25rem;position:relative}.cxd-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.cxd-List-toolbar::before,.cxd-List-toolbar::after{display:table;content:''}.cxd-List-toolbar::after{clear:both}.cxd-List-actions{display:inline-block}.cxd-List-actions>*{margin-right:.625rem}.cxd-List-header{padding:.625rem}.cxd-List-header>*+.cxd-Button,.cxd-List-header>*+.cxd-ButtonGroup,.cxd-List-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-List-header+.cxd-List-toolbar{padding-top:0}.cxd-List-heading{padding:.3125rem 0}.cxd-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);padding:.625rem}.cxd-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-List-fixedTop .cxd-Cards-toolbar{margin-bottom:0}.cxd-List-fixedTop:empty{display:none}.cxd-List--unsaved .cxd-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.cxd-List-dragTip{width:100%;color:#108cee;clear:both;margin-top:.3125rem}.cxd-List-placeholder{color:#999;text-align:center;min-height:1.875rem;line-height:1.875rem}.cxd-ListGroup{max-width:25rem;display:flex;flex-direction:column}.cxd-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #eceff8}.cxd-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.cxd-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.cxd-ListGroup-item:hover{z-index:1}.cxd-ListGroup-item.is-active{z-index:2}.cxd-ListGroup-item.is-disabled{color:#999}.cxd-ListGroup--expanded .cxd-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.cxd-ListGroup--expanded .cxd-ListGroup-item:last-child{margin-bottom:0}.cxd-ListItem{position:relative;display:block;padding:.625rem .9375rem}.cxd-ListItem::before,.cxd-ListItem::after{display:table;content:''}.cxd-ListItem::after{clear:both}.cxd-ListItem+.cxd-ListItem{border-top:.0625rem solid #fff}.cxd-ListItem:nth-child(even){background-color:#f6f8f8}.cxd-ListItem-checkBtn{float:left;margin-right:.625rem}.cxd-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.cxd-ListItem-actions{float:right}.cxd-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#333;font-weight:400}.cxd-ListItem-content{overflow:hidden}.cxd-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.cxd-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.cxd-ListItem-fieldLabel{width:9.375rem;color:#999}.cxd-ListItem.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.cxd-ListItem.is-checked+.cxd-ListItem{border-color:#abe4f6}.cxd-ListItem.is-checked .cxd-ListItem-fieldLabel{color:#7dd6f1}.cxd-ListItem.is-modified,.cxd-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.cxd-ListItem.is-modified+.cxd-ListItem,.cxd-ListItem.is-moved+.cxd-ListItem{border-color:#b7d0fc}.cxd-ListItem.is-modified .cxd-ListItem-fieldLabel,.cxd-ListItem.is-moved .cxd-ListItem-fieldLabel{color:#a2c3fa}.cxd-ListItem.is-dragging{opacity:.1}.cxd-Cards-toolbar{padding:0;margin-bottom:.9375rem}.cxd-Cards-toolbar::before,.cxd-Cards-toolbar::after{display:table;content:''}.cxd-Cards-toolbar::after{clear:both}.cxd-Cards-actions{display:inline-block}.cxd-Cards-actions>*{margin-right:.625rem}.cxd-Cards-heading{padding:.3125rem 0}.cxd-Cards-header{padding:0}.cxd-Cards-header>*+.cxd-Button,.cxd-Cards-header>*+.cxd-ButtonGroup,.cxd-Cards-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Cards-header+.cxd-Cards-toolbar{padding-top:0}.cxd-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);padding:.625rem}.cxd-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-Cards-fixedTop .cxd-Cards-toolbar{margin-bottom:0}.cxd-Cards-fixedTop:empty{display:none}.cxd-Cards--unsaved .cxd-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.cxd-Cards-dragTip{width:100%;color:#108cee;clear:both;margin-top:.3125rem}.cxd-Cards-placeholder{background:#fff;color:#999;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #eceff8;border-radius:.142rem}.cxd-Cards-body>div{display:flex}.cxd-Cards--masonry{display:block;column-gap:0;column-fill:initial}.cxd-Cards--masonry:after{content:none}.cxd-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.cxd-Cards--masonrySm1{column-count:12}.cxd-Cards--masonrySm2{column-count:6}.cxd-Cards--masonrySm3{column-count:4}.cxd-Cards--masonrySm4{column-count:3}.cxd-Cards--masonrySm6{column-count:2}.cxd-Cards--masonrySm12{column-count:1}.cxd-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.cxd-Cards--masonryMd1{column-count:12}.cxd-Cards--masonryMd2{column-count:6}.cxd-Cards--masonryMd3{column-count:4}.cxd-Cards--masonryMd4{column-count:3}.cxd-Cards--masonryMd6{column-count:2}.cxd-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.cxd-Cards--masonryLg1{column-count:12}.cxd-Cards--masonryLg2{column-count:6}.cxd-Cards--masonryLg3{column-count:4}.cxd-Cards--masonryLg4{column-count:3}.cxd-Cards--masonryLg6{column-count:2}.cxd-Cards--masonryLg12{column-count:1}}.cxd-Card{background-color:#fff;border:.0625rem solid #eceff8;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.cxd-Card-title{color:#333;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cxd-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#999;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.cxd-Card-title+.cxd-Card-subTitle{margin-top:.3125rem}.cxd-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.cxd-Card-checkBtn .cxd-Checkbox{margin-right:0}.cxd-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.cxd-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.cxd-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.cxd-Card-avtar img{max-width:100%}.cxd-Card-avtarText{background-color:#108cee;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.cxd-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.cxd-Card-highlight{background-color:#5fb333;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.cxd-Card-body{padding:.9375rem;flex:1 0 auto}.cxd-Card-heading+.cxd-Card-body{padding-top:.3125rem}.cxd-Card-field{position:relative;display:flex;flex-wrap:nowrap}.cxd-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.cxd-Card-fieldLabel{width:3.75rem;color:#999}.cxd-Card-actions{border-top:.0625rem solid #f5f7fb;display:flex;flex-direction:row;width:100%;table-layout:fixed}.cxd-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#f5f7fb;border-style:solid;border-width:0 .0625rem 0 0;color:#666;text-align:center;line-height:2.5rem;font-size:.75rem}.cxd-Card-actions>a:not(.is-disabled){cursor:pointer}.cxd-Card-actions>a:not(.is-disabled):hover{background-color:#fff;color:#108cee;text-decoration:none}.cxd-Card-actions>a:last-child{border:0}.cxd-Card-actions>a.is-disabled{color:#999}.cxd-Card-actions>a.is-disabled:hover{text-decoration:none}.cxd-Card.is-checked{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-Card.is-checked .cxd-Card-actions,.cxd-Card.is-checked .cxd-Card-actions>a{border-color:#108cee;color:#108cee}.cxd-Card.is-checked .cxd-Card-fieldLabel{color:#6fbaf5}.cxd-Card.is-checked .cxd-Card-actions>a:hover{background-color:#fff;color:#0d70be}.cxd-Card.is-modified,.cxd-Card.is-moved{background-color:#108cee;border-color:#108cee;color:#108cee}.cxd-Card.is-modified .cxd-Card-actions,.cxd-Card.is-modified .cxd-Card-actions>a,.cxd-Card.is-moved .cxd-Card-actions,.cxd-Card.is-moved .cxd-Card-actions>a{border-color:#108cee;color:#108cee}.cxd-Card.is-modified .cxd-Card-fieldLabel,.cxd-Card.is-moved .cxd-Card-fieldLabel{color:#6fbaf5}.cxd-Card.is-modified .cxd-Card-actions>a:hover,.cxd-Card.is-moved .cxd-Card-actions>a:hover{background-color:#0e7ed6;color:#0d70be}.is-dragging>.cxd-Card{opacity:.1}.cxd-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.cxd-Field-quickEditBtn:hover{color:inherit;opacity:1}.cxd-Field--quickEditable{outline:0;position:relative}.cxd-Field--quickEditable:focus{position:relative}.cxd-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #108cee}.cxd-Field--quickEditable:hover .cxd-Field-quickEditBtn{visibility:visible}.cxd-QuickEdit-popover{min-width:20rem;max-width:40rem}.cxd-QuickEdit-popover .cxd-Panel{margin-bottom:0;border:0}.cxd-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.cxd-Field-popOverBtn:hover{color:inherit;opacity:1}.cxd-Field--popOverAble{outline:0;position:relative}.cxd-Field--popOverAble:hover .cxd-Field-popOverBtn{visibility:visible}.cxd-PopOverAble-popover{min-width:20rem;max-width:40rem}.cxd-PopOverAble-popover .cxd-Panel{margin-bottom:0;border:0}.cxd-Field-copyBtn{color:#999;margin-left:.3125rem;display:inline-block;cursor:pointer}.cxd-Field-copyBtn:hover{color:#108cee}.cxd-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #eceff8;height:.125rem;font-size:0}.cxd-Divider--solid{border-bottom-style:solid}.cxd-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.cxd-Pagination>li{display:inline}.cxd-Pagination>li>a,.cxd-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.75rem}.cxd-Pagination>li>a:hover,.cxd-Pagination>li>span:hover,.cxd-Pagination>li>a:focus,.cxd-Pagination>li>span:focus{background-color:transparent;color:#108cee}.cxd-Pagination>li.is-disabled>span,.cxd-Pagination>li.is-disabled>a{cursor:not-allowed}.cxd-Pagination>li.is-disabled>a,.cxd-Pagination>li.is-disabled>span,.cxd-Pagination>li.is-disabled>a:hover,.cxd-Pagination>li.is-disabled>span:hover,.cxd-Pagination>li.is-disabled>a:focus,.cxd-Pagination>li.is-disabled>span:focus{color:#ccc}.cxd-Pagination>li.is-active>a,.cxd-Pagination>li.is-active>span,.cxd-Pagination>li.is-active>a:hover,.cxd-Pagination>li.is-active>span:hover,.cxd-Pagination>li.is-active>a:focus,.cxd-Pagination>li.is-active>span:focus{background-color:#fff;color:#108cee;border:.0625rem solid #108cee}.cxd-Pagination-prev>span{cursor:pointer}.cxd-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.cxd-Pagination-next>span{cursor:pointer}.cxd-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.cxd-Pagination-inputGroup .cxd-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #eceff8;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.cxd-Pagination-inputGroup .cxd-Pagination-input:focus{outline:0;border:.0625rem solid #108cee}.cxd-Pagination-inputGroup .cxd-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.cxd-Wrapper{padding:.9375rem}.cxd-Wrapper--xs{padding:.3125rem}.cxd-Wrapper--sm{padding:.625rem}.cxd-Wrapper--md{padding:1.25rem}.cxd-Wrapper--lg{padding:1.875rem}.cxd-Wrapper--xl{padding:3.125rem}.cxd-Wrapper--none{padding:0}.cxd-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.cxd-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.cxd-StatusField svg.cxd-Status-icon{width:.875rem;height:.875rem;top:0}.cxd-StatusField .cxd-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.cxd-StatusField .cxd-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #ea2e2e;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.cxd-StatusField .cxd-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #108cee;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.cxd-StatusField .cxd-Status-icon.icon-warning{color:#f39000}.cxd-Status-icon.rolling+.cxd-StatusField-label{color:#f39000}.cxd-Status-icon.icon-success+.cxd-StatusField-label{color:#5fb333}.cxd-Status-icon.icon-fail+.cxd-StatusField-label{color:#ea2e2e}.cxd-Status-icon.icon-warning+.cxd-StatusField-label{color:#f39000}.cxd-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-dot{background-color:#fff}.cxd-Carousel.cxd-Carousel--light svg{fill:#fff}.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-item .title,.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-item .description{color:#fff}.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-dot{background-color:#000}.cxd-Carousel.cxd-Carousel--dark svg{fill:#000}.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-item .title,.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-item .description{color:#000}.cxd-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.cxd-Carousel-container .cxd-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.cxd-Carousel-container .cxd-Carousel-item.fade{opacity:0}.cxd-Carousel-container .cxd-Carousel-item.fade.in{opacity:1}.cxd-Carousel-container .cxd-Carousel-item.slide{transform:translateX(100%)}.cxd-Carousel-container .cxd-Carousel-item.slide.in{transform:translateX(0)}.cxd-Carousel-container .cxd-Carousel-item.slide.out{transform:translateX(-100%)}.cxd-Carousel-container .cxd-Carousel-item.slideRight{transform:translateX(-100%)}.cxd-Carousel-container .cxd-Carousel-item.slideRight.in{transform:translateX(0)}.cxd-Carousel-container .cxd-Carousel-item.slideRight.out{transform:translateX(100%)}.cxd-Carousel-container .cxd-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.cxd-Carousel-container .cxd-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.cxd-Carousel-container .cxd-Carousel-item .image{width:100%;height:100%;background-size:cover}.cxd-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.cxd-Carousel-dotsControl .cxd-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.cxd-Carousel-dotsControl .cxd-Carousel-dot.is-active{opacity:1}.cxd-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.cxd-Carousel-arrowsControl .cxd-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.cxd-Carousel-arrowsControl .cxd-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.cxd-Carousel-arrowsControl .cxd-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.cxd-Carousel-arrowsControl .cxd-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.cxd-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.cxd-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.cxd-ImageGallery-close:hover{color:#fff}.cxd-ImageGallery-close>svg{width:1rem;height:1rem}.cxd-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.cxd-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.cxd-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.cxd-ImageGallery-prevBtn,.cxd-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.cxd-ImageGallery-prevBtn>svg,.cxd-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.cxd-ImageGallery-prevBtn:hover,.cxd-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.cxd-ImageGallery-prevBtn.is-disabled,.cxd-ImageGallery-nextBtn.is-disabled{pointer-events:none}.cxd-ImageGallery-main:hover .cxd-ImageGallery-prevBtn,.cxd-ImageGallery-main:hover .cxd-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.cxd-ImageGallery-prevBtn{left:1.25rem}.cxd-ImageGallery-nextBtn{right:1.25rem}.cxd-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.cxd-ImageGallery-prevList,.cxd-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.cxd-ImageGallery-prevList.is-disabled,.cxd-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.cxd-ImageGallery-prevList:hover,.cxd-ImageGallery-nextList:hover{background:#000;color:#fff}.cxd-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.cxd-ImageGallery-items{display:inline-block;white-space:nowrap}.cxd-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.cxd-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.cxd-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.cxd-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.cxd-ImageGallery-item:hover{border:1px solid #e5e5e5}.cxd-ImageGallery-item:hover:after{display:none}.cxd-ImageGallery-item.is-active{border:1px solid #108cee}.cxd-ImageGallery-item.is-active:after{display:none}.cxd-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.cxd-Images-item{display:flex;margin:.3125rem}.cxd-Image{display:inline-block;width:7.5rem;border:.0625rem solid #eceff8;padding:.3125rem}.cxd-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.cxd-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.cxd-Image-thumb--4-3{height:5.0625rem}.cxd-Image-thumb--16-9{height:3.79688rem}.cxd-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.cxd-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.cxd-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.cxd-Image-caption{font-size:.75rem}.cxd-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.cxd-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.cxd-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.cxd-Image-thumb:hover .cxd-Image-overlay{display:flex}.cxd-ImageField{display:inline-block;position:relative}.cxd-InputBox{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-InputBox input::placeholder{color:#999;user-select:none}.cxd-InputBox--inline{display:inline-flex}.cxd-InputBox>input[readonly]{cursor:inherit}.cxd-InputBox.is-error{border-color:#d0021b;background-color:#fffbfb}.cxd-InputBox.is-focused{border-color:#108cee;box-shadow:none}.cxd-InputBox.is-clickable:hover{border-color:#108cee;box-shadow:none;cursor:pointer}.cxd-InputBox.is-error.is-focused{border-color:#d0021b}.cxd-InputBox.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-InputBox-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-InputBox-clear:hover svg{fill:#666}.cxd-InputBox>svg{display:inline-block;width:14px;color:#999}.cxd-InputBox>a{cursor:pointer}.cxd-ResultBox{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:1.875rem;align-items:center}.cxd-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-ResultBox input::placeholder{color:#999;user-select:none}.cxd-ResultBox.is-error{border-color:#d0021b;background-color:#fffbfb}.cxd-ResultBox.is-focused,.cxd-ResultBox:focus{outline:0;border-color:#108cee;box-shadow:none}.cxd-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.cxd-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#108cee;box-shadow:none}.cxd-ResultBox.is-error.is-focused{border-color:#d0021b}.cxd-ResultBox.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-ResultBox-singleValue{padding:0 .4375rem}.cxd-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.cxd-ResultBox-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-ResultBox-clear:hover svg{fill:#666}.cxd-ResultBox-clear:hover{background:#f5f5f5}.cxd-ResultBox-clear>svg{width:.75rem;height:.75rem}.cxd-ResultBox>svg{display:inline-block;width:.875rem;color:#999}.cxd-ResultBox>a{cursor:pointer}.cxd-ResultBox-value{background:#f5f5f5;color:#000;font-size:.75rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.cxd-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.cxd-ResultBox-value>a:hover{color:#666}.cxd-ResultBox-value>a>svg{width:.625rem;height:.625rem}.cxd-ResultBox-value:hover{background:#ebebeb}.cxd-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.cxd-ResultBox-value.is-disabled>a{color:#ebebeb}.cxd-ResultBox-placeholder{color:#999;user-select:none;margin-left:8px}.cxd-ResultBox>input{padding-left:8px;min-height:24px}.cxd-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.75rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:0;height:30px}.cxd-SearchBox:hover{background-color:rgba(255,255,255,.6)}.cxd-SearchBox.is-active{background-color:#fff;border:.0625rem solid #ccc;width:150px}.cxd-SearchBox.is-active>input{flex-grow:1}.cxd-SearchBox-activeBtn,.cxd-SearchBox-cancelBtn{cursor:pointer;color:#999}.cxd-SearchBox-activeBtn:hover,.cxd-SearchBox-cancelBtn:hover{color:#108cee}.cxd-SearchBox>input{outline:0;border:0;background:transparent;color:#666;width:0;height:1.07143rem}.cxd-SearchBox>input::placeholder{color:#999;user-select:none}.cxd-ListMenu{background:#fff;min-width:12.5rem;border:0 solid #eceff8;border-radius:0}.cxd-ListMenu-groupLabel{font-size:.6875rem;color:#999;padding:.08929rem 0 0 .3125rem}.cxd-ListMenu-group:not(:first-child)>.cxd-ListMenu-groupLabel{border-top:.0625rem solid #f5f7fb}.cxd-ListMenu-item{display:flex;min-height:1.875rem;color:#333;line-height:1.42857;font-size:.75rem;cursor:pointer;padding:.40179rem .625rem}.cxd-ListMenu-item.is-active{color:#108cee;background-color:transparent}.cxd-ListMenu-item.is-highlight{color:#000;background-color:#eaf6fe}.cxd-ListMenu-item.is-disabled{color:#999;background-color:transparent}.cxd-ListMenu-placeholder{display:block;min-height:1.875rem;color:#999;line-height:1.42857;font-size:.75rem;cursor:pointer;padding:.40179rem .625rem}.cxd-PopOver>.cxd-ListMenu{border-color:#108cee}.cxd-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.cxd-Collapse--xs,fieldset.cxd-Collapse--sm,fieldset.cxd-Collapse--base,fieldset.cxd-Collapse--md,fieldset.cxd-Collapse--lg{position:relative}fieldset.cxd-Collapse--xs:after,fieldset.cxd-Collapse--sm:after,fieldset.cxd-Collapse--base:after,fieldset.cxd-Collapse--md:after,fieldset.cxd-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #eceff8;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.cxd-Collapse--xs>legend,fieldset.cxd-Collapse--sm>legend,fieldset.cxd-Collapse--base>legend,fieldset.cxd-Collapse--md>legend,fieldset.cxd-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#fff;border-left:0!important}fieldset.cxd-Collapse--xs .collapse,fieldset.cxd-Collapse--sm .collapse,fieldset.cxd-Collapse--base .collapse,fieldset.cxd-Collapse--md .collapse,fieldset.cxd-Collapse--lg .collapse{position:relative}fieldset.cxd-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#333;border-left:#108cee .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.cxd-Collapse--xs{padding:20px 5px 5px}fieldset.cxd-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.cxd-Collapse--xs:after{top:6px}fieldset.cxd-Collapse--sm{padding:25px 10px 10px}fieldset.cxd-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.cxd-Collapse--sm:after{top:6px}fieldset.cxd-Collapse--base{padding:30px 15px 15px}fieldset.cxd-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.cxd-Collapse--base:after{top:7px}fieldset.cxd-Collapse--md{padding:30px 20px 20px}fieldset.cxd-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.cxd-Collapse--md:after{top:7px}fieldset.cxd-Collapse--lg{padding:40px 30px 30px}fieldset.cxd-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.cxd-Collapse--lg:after{top:9px}.cxd-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.cxd-Form-group{margin-bottom:1.25rem}.cxd-Form-value>.cxd-Form-group{margin-bottom:.375rem}.cxd-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.cxd-Form-group--hor.v-middle{align-items:center}.cxd-Form-group--hor.v-bottom{align-items:flex-end}.cxd-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-group--hor>.cxd-Form-item--inline{margin-right:0}.cxd-Form-group--hor>.cxd-Form-item,.cxd-Form-group--hor>div>.cxd-Form-item{margin-bottom:0}.cxd-Form-group--hor .cxd-Form-input>.cxd-Form-group{margin-bottom:0}.cxd-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.cxd-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.cxd-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.cxd-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.cxd-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.cxd-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.cxd-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.cxd-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.cxd-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.cxd-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.cxd-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.cxd-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.cxd-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.cxd-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.cxd-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.cxd-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.cxd-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.cxd-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.cxd-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.cxd-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.cxd-InputGroup{display:inline-flex;flex-wrap:nowrap}.cxd-InputGroup.cxd-Form-control--sizeXs,.cxd-InputGroup.cxd-Form-control--sizeSm,.cxd-InputGroup.cxd-Form-control--sizeMd,.cxd-InputGroup.cxd-Form-control--sizeLg{display:inline-flex}.cxd-InputGroup-addOn,.cxd-InputGroup .cxd-Form-control{display:inline-block;white-space:nowrap}.cxd-InputGroup-addOn{background:#fff;border:.0625rem solid #ccc;line-height:1.07143rem;height:1.875rem;box-sizing:border-box;padding:.33929rem .625rem}.cxd-InputGroup-addOn:not(:last-child){border-right:0}.cxd-InputGroup-addOn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup-addOn:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup-btn .cxd-Button{border-radius:0;border:.0625rem solid #ccc}.cxd-InputGroup-btn:not(:last-child) .cxd-Button{border-right:0}.cxd-InputGroup-btn:first-child .cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup-btn:last-child .cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.cxd-InputGroup .cxd-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-SelectControl .cxd-Select{background-color:#f6f7fb;border:.0625rem solid #ccc;color:#333}.cxd-InputGroup .cxd-SelectControl:not(:last-child) .cxd-Select{border-right:0}.cxd-InputGroup .cxd-SelectControl:first-child .cxd-Select{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-SelectControl:last-child .cxd-Select{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-SelectControl:not(:first-child) .cxd-Select{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-SelectControl:not(:last-child) .cxd-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup.is-focused .cxd-InputGroup-addOn,.cxd-InputGroup.is-focused .cxd-TextControl-input,.cxd-InputGroup.is-focused .cxd-Select,.cxd-InputGroup.is-focused .cxd-InputGroup-btn .cxd-Button{border-color:#108cee}.cxd-InputGroup.is-focused .cxd-Select{background-color:#eaf6fe}.cxd-InputGroup.is-focused .cxd-Select{color:#108cee}.cxd-InputGroup.is-focused .cxd-Select-arrow{color:#108cee}.cxd-InputGroup.is-focused .cxd-InputGroup-addOn{color:#108cee}.cxd-InputGroup:not(.is-inline){display:flex}.cxd-TextControl{position:relative;max-width:100%}.cxd-TextControl.is-inline{display:inline-block;width:12.5rem}.cxd-TextControl-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-TextControl-input input::placeholder{color:#999;user-select:none}.cxd-TextControl.is-error>.cxd-TextControl-input{border-color:#d0021b;background-color:#fffbfb}.cxd-TextControl.is-focused>.cxd-TextControl-input{border-color:#108cee;box-shadow:none}.cxd-TextControl.is-error.is-focused>.cxd-TextControl-input{border-color:#d0021b}.cxd-TextControl.is-disabled>.cxd-TextControl-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-TextControl-spinner{line-height:1.07143rem}.cxd-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-TextControl-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-TextControl-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-TextControl.cxd-Form-control--sizeXs>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeSm>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeMd>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeLg>.cxd-TextControl-input{min-width:100%;display:inline-flex}}.cxd-TextControl-placeholder{color:#999;user-select:none;position:absolute;left:.625rem;top:.33929rem;margin-top:.125rem;line-height:1.42857}.cxd-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.cxd-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.cxd-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.cxd-TextControl--withAddOn.cxd-Form-control--sizeXs,.cxd-TextControl--withAddOn.cxd-Form-control--sizeSm,.cxd-TextControl--withAddOn.cxd-Form-control--sizeMd,.cxd-TextControl--withAddOn.cxd-Form-control--sizeLg{display:inline-flex}.cxd-TextControl--withAddOn.cxd-Form-control--sizeXs>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeSm>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeMd>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeLg>.cxd-TextControl-input{min-width:unset}}.cxd-TextControl--withAddOn>.cxd-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:not(:last-child){border-right-width:0}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#fff;color:#666;border-color:#ccc;border-style:solid;border-width:.0625rem 0}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn:first-child{border-left-width:.0625rem}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button>.cxd-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #ccc}.cxd-TextControl--withAddOn>.cxd-TextControl-button:not(:last-child) .cxd-Button{border-right:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button:first-child .cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button:last-child .cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn.is-focused>.cxd-TextControl-button .cxd-Button{border-color:#108cee}.cxd-TextControl--withAddOn.is-error>.cxd-TextControl-addOn{border-color:#d0021b}.cxd-TextControl--withAddOn.is-focused>.cxd-TextControl-addOn{border-color:#108cee;color:#108cee;box-shadow:none}.cxd-TextControl--withAddOn.is-disabled>.cxd-TextControl-addOn{color:#999}.cxd-TextControl-input--withAC{position:relative;flex-wrap:wrap}.cxd-TextControl-input--withAC input{width:auto;color:#999}.cxd-TextControl-sugs{position:absolute;background:#fff;color:#333;border:.0625rem solid #108cee;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.cxd-TextControl-sugItem{padding:.33929rem .75rem}.cxd-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#666}.cxd-TextControl-sugItem:not(.is-disabled){cursor:pointer}.cxd-TextControl-sugItem.is-highlight{color:#000;background:#eaf6fe}.cxd-TextControl-value{user-select:none;line-height:1.07143rem;vertical-align:middle;display:inline-block}.cxd-TextControl-input--multiple{height:auto;min-height:1.875rem}.cxd-TextControl-input--multiple .cxd-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.cxd-TextControl-input--multiple .cxd-TextControl-valueWrap>input{margin-bottom:.3125rem}.cxd-TextControl-input--multiple .cxd-TextControl-value{line-height:.94643rem;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-TextControl-valueIcon:hover{background-color:#b5dcfb}.cxd-TextControl-input--multiple .cxd-TextControl-valueLabel{padding:0 .3125rem}.cxd-TextareaControl{border:1px solid #ccc;border-radius:0;line-height:1.42857;background:#fff;padding:.375rem .67857rem;font-size:.75rem;outline:0;resize:none;display:block;width:100%}.cxd-TextareaControl.is-error{border-color:#d0021b}.cxd-TextareaControl:focus,.cxd-TextareaControl.is-focused{border-color:#108cee;box-shadow:none}.cxd-TextareaControl.is-disabled,.cxd-TextareaControl[disabled]{background:#e9ecef;color:#999}.cxd-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.cxd-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.cxd-Checkbox:hover input:not(:disabled)+i{border-color:#108cee}.cxd-Checkbox>i{cursor:pointer;line-height:1;background:#fff;display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.cxd-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.cxd-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.cxd-Checkbox>i+span:empty{display:none}.cxd-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.cxd-Checkbox:hover>i+span>a{display:inline-block}.cxd-Checkbox--checkbox{padding-left:.875rem}.cxd-Checkbox--checkbox input{margin-left:-.875rem}.cxd-Checkbox--checkbox input:checked+i{border-color:#108cee}.cxd-Checkbox--checkbox input:checked+i:before{width:.5rem;height:.5rem;background:#108cee}.cxd-Checkbox--checkbox input[disabled]+i{border-color:#d9d9d9;cursor:not-allowed}.cxd-Checkbox--checkbox input[disabled]+i:before{background-color:#d9d9d9;border-color:#fff}.cxd-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#999}.cxd-Checkbox--checkbox>i{width:.875rem;height:.875rem;border:.0625rem solid #ccc;border-radius:.142rem;margin-left:-.875rem;margin-top:-.1875rem}.cxd-Checkbox--full.cxd-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#ccc}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked+i{border-color:#108cee;background:#108cee}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.3125rem;border-color:#fff}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked[disabled]+i{border-color:#d9d9d9;background-color:#d9d9d9}.cxd-Checkbox--full.cxd-Checkbox--checkbox>i{position:relative;cursor:pointer}.cxd-Checkbox--full.cxd-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.cxd-Checkbox--radio{padding-left:1rem}.cxd-Checkbox--radio input{margin-left:-1rem}.cxd-Checkbox--radio input:checked+i{border-color:#108cee}.cxd-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#108cee;border-radius:50%}.cxd-Checkbox--radio input[disabled]+i{border-color:#d9d9d9;cursor:not-allowed}.cxd-Checkbox--radio input[disabled]+i:before{background-color:#d9d9d9}.cxd-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#999}.cxd-Checkbox--radio>i{cursor:pointer;width:1rem;height:1rem;border:.0625rem solid #ccc;margin-left:-1rem;margin-top:-.125rem;border-radius:50%}.cxd-Checkbox--sm{padding-left:1rem}.cxd-Checkbox--sm input{margin-left:-1rem}.cxd-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.cxd-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.cxd-Checkbox--sm>i+span{margin-left:.3125rem}.cxd-Checkbox--sm.cxd-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.cxd-Checkbox-desc{color:#999;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.cxd-CheckboxControl,.cxd-RadiosControl,.cxd-CheckboxesControl{padding-top:.5rem}.cxd-RadiosControl .cxd-Checkbox,.cxd-CheckboxesControl .cxd-Checkbox{display:block;margin-bottom:.40179rem}.cxd-RadiosControl.is-inline .cxd-Checkbox,.cxd-CheckboxesControl.is-inline .cxd-Checkbox{display:inline-block;margin-right:1.25rem}.cxd-RadiosControl-group .cxd-RadiosControl-group,.cxd-RadiosControl-group .cxd-CheckboxesControl-group,.cxd-CheckboxesControl-group .cxd-RadiosControl-group,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group{padding-left:5rem}.cxd-RadiosControl-group .cxd-RadiosControl-group::before,.cxd-RadiosControl-group .cxd-RadiosControl-group::after,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::before,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::after,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::before,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::after,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::before,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::after{display:table;content:''}.cxd-RadiosControl-group .cxd-RadiosControl-group::after,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::after,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::after,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::after{clear:both}.cxd-RadiosControl-group .cxd-RadiosControl-group>.cxd-RadiosControl-groupLabel,.cxd-RadiosControl-group .cxd-RadiosControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-RadiosControl-group .cxd-CheckboxesControl-group>.cxd-RadiosControl-groupLabel,.cxd-RadiosControl-group .cxd-CheckboxesControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-CheckboxesControl-group .cxd-RadiosControl-group>.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-group .cxd-RadiosControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group>.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group>.cxd-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-groupLabel{display:block}.cxd-Checkboxes>.cxd-Checkbox{display:block;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem .40179rem 1.5rem}.cxd-Checkboxes--inline>.cxd-Checkbox{display:inline-block}.cxd-Checkboxes-addBtn{display:block;cursor:pointer}.cxd-Checkboxes-addBtn:hover{text-decoration:none}.cxd-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.cxd-ListCheckboxes-group:not(:first-child)>.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-group:not(:first-child)>.cxd-ListCheckboxes-itemLabel,.cxd-ListCheckboxes-group:not(:first-child)>.cxd-ListRadios-itemLabel,.cxd-ListRadios-group:not(:first-child)>.cxd-ListRadios-itemLabel{border-top:.0625rem solid #f5f7fb}.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-group>.cxd-ListCheckboxes-itemLabel,.cxd-ListCheckboxes-group>.cxd-ListRadios-itemLabel,.cxd-ListRadios-group>.cxd-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#999}.cxd-ListCheckboxes-item,.cxd-ListRadios-item{display:flex;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-ListCheckboxes-item>.cxd-Checkbox,.cxd-ListRadios-item>.cxd-Checkbox{margin-right:0}.cxd-ListCheckboxes-item.is-active,.cxd-ListRadios-item.is-active{color:#108cee;background-color:transparent}.cxd-ListCheckboxes-item:hover,.cxd-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.cxd-ListCheckboxes-item.is-disabled,.cxd-ListRadios-item.is-disabled{pointer-events:none;color:#999}.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-items>.cxd-ListCheckboxes-item,.cxd-ListRadios-group>.cxd-ListCheckboxes-items>.cxd-ListCheckboxes-item,.cxd-ListCheckboxes-group>.cxd-ListRadios-items>.cxd-ListCheckboxes-item,.cxd-ListRadios-group>.cxd-ListRadios-items>.cxd-ListCheckboxes-item,.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-items>.cxd-ListRadios-item,.cxd-ListRadios-group>.cxd-ListCheckboxes-items>.cxd-ListRadios-item,.cxd-ListCheckboxes-group>.cxd-ListRadios-items>.cxd-ListRadios-item,.cxd-ListRadios-group>.cxd-ListRadios-items>.cxd-ListRadios-item{padding-left:.9375rem}.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-itemLabel{flex-grow:1}.cxd-ListCheckboxes-placeholder,.cxd-ListRadios-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-TableCheckboxes .cxd-Table-content{border-top:.0625rem solid #f5f5f5}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th{padding-top:.375rem}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th:first-child,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th:last-child,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.cxd-TableCheckboxes .cxd-Table-table>tbody>tr{cursor:pointer}.cxd-TreeCheckboxes .cxd-Table-expandBtn,.cxd-TreeRadios .cxd-Table-expandBtn{color:#999;margin-right:5px}.cxd-TreeCheckboxes-sublist,.cxd-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.cxd-TreeCheckboxes-sublist:before,.cxd-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:.9375rem;left:-19px;border-left:dashed 1px #999}.cxd-TreeCheckboxes-item,.cxd-TreeRadios-item{position:relative}.cxd-TreeCheckboxes-item.is-expanded>.cxd-TreeCheckboxes-sublist,.cxd-TreeRadios-item.is-expanded>.cxd-TreeCheckboxes-sublist,.cxd-TreeCheckboxes-item.is-expanded>.cxd-TreeRadios-sublist,.cxd-TreeRadios-item.is-expanded>.cxd-TreeRadios-sublist{display:block}.cxd-TreeCheckboxes-item:not(:last-child)>.cxd-TreeCheckboxes-sublist:before,.cxd-TreeRadios-item:not(:last-child)>.cxd-TreeCheckboxes-sublist:before,.cxd-TreeCheckboxes-item:not(:last-child)>.cxd-TreeRadios-sublist:before,.cxd-TreeRadios-item:not(:last-child)>.cxd-TreeRadios-sublist:before{bottom:0}.cxd-TreeCheckboxes-sublist .cxd-TreeCheckboxes-item:before,.cxd-TreeRadios-sublist .cxd-TreeCheckboxes-item:before,.cxd-TreeCheckboxes-sublist .cxd-TreeRadios-item:before,.cxd-TreeRadios-sublist .cxd-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:.9375rem;width:19px;left:-19px;border-top:dashed 1px #999}.cxd-TreeCheckboxes-itemInner,.cxd-TreeRadios-itemInner{display:flex;align-items:center;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-TreeCheckboxes-itemInner>.cxd-Checkbox,.cxd-TreeRadios-itemInner>.cxd-Checkbox{margin-right:0;margin-left:.625rem}.cxd-TreeCheckboxes-itemInner.is-active,.cxd-TreeRadios-itemInner.is-active{color:#108cee;background-color:transparent}.cxd-TreeCheckboxes-itemInner:hover,.cxd-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.cxd-TreeCheckboxes-itemInner.is-disabled,.cxd-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#999}.cxd-TreeCheckboxes-itemLabel,.cxd-TreeRadios-itemLabel{flex-grow:1}.cxd-TreeCheckboxes-placeholder,.cxd-TreeRadios-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-ChainedCheckboxes{display:flex;flex-direction:row}.cxd-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.cxd-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #eceff8}.cxd-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#999}.cxd-ChainedCheckboxes-item{display:flex;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-ChainedCheckboxes-item>.cxd-Checkbox{margin-right:0}.cxd-ChainedCheckboxes-item.is-active{color:#108cee;background-color:transparent}.cxd-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.cxd-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#999}.cxd-ChainedCheckboxes-itemLabel{flex-grow:1}.cxd-ChainedCheckboxes-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-AssociatedCheckboxes{display:flex;flex-direction:row}.cxd-AssociatedCheckboxes-left,.cxd-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.cxd-AssociatedCheckboxes-left{border-right:1px solid #eceff8}.cxd-AssociatedCheckboxes-reload{text-align:center;color:#108cee;margin:20px 0 0}.cxd-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.cxd-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#999;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.cxd-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#999}.cxd-CityPicker .cxd-Select{margin-right:.3125rem;margin-bottom:.3125rem}.cxd-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem}.cxd-CityPicker-input::placeholder{color:#999;user-select:none}.cxd-CityPicker-input:focus{border-color:#108cee;box-shadow:none}.cxd-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#108cee;margin:0;vertical-align:middle;text-align:left}.cxd-Switch.is-disabled{background-color:#f5f5f5}.cxd-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#ccc;border:.0625rem solid #f0f0f0;border-radius:1.875rem;transition:all .2s}.cxd-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.cxd-Switch input{position:absolute;opacity:0}.cxd-Switch input:disabled+i:before,.cxd-Switch input:disabled:checked+i:before{color:#ccc;background-color:#f5f5f5;cursor:not-allowed}.cxd-Switch input:disabled+i:after,.cxd-Switch input:disabled:checked+i:after{background-color:#ccc;color:#ccc}.cxd-Switch input:checked+i:before{left:100%;border-width:0}.cxd-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.cxd-Switch-option{vertical-align:middle;margin-left:.625rem}.cxd-Switch-option:first-child{margin-left:0;margin-right:.625rem}.cxd-Switch-option:empty{display:none}.cxd-SwitchControl{padding-top:.25rem}.cxd-SwitchControl.is-inline{display:inline-block}.cxd-Number{margin:0;padding:0;line-height:1.875rem;font-size:.75rem;height:1.875rem;display:inline-block;vertical-align:middle;background-color:#fff;border:.0625rem solid #ccc;border-radius:0}.cxd-Number-focused{border-color:#108cee;box-shadow:none}.cxd-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.cxd-Number-handler-active{background:#ddd}.cxd-Number-handler-up-inner,.cxd-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.cxd-Number:hover{border-color:#108cee}.cxd-Number:hover .cxd-Number-handler-up,.cxd-Number:hover .cxd-Number-handler-wrap{border-color:#108cee}.cxd-Number-disabled:hover{border-color:#ccc}.cxd-Number-disabled:hover .cxd-Number-handler-up,.cxd-Number-disabled:hover .cxd-Number-handler-wrap{border-color:#ccc}.cxd-Number-input-wrap{overflow:hidden;height:100%}.cxd-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:1.75rem;height:100%;transition:all .3s ease;border:0;border-radius:0;padding:0 .625rem}.cxd-Number-handler{background-color:#fff;color:#666;font-family:iconfont;font-size:.75rem}.cxd-Number-handler:hover{background-color:#fff;color:#108cee}.cxd-Number-handler:hover:active{background-color:#f3f9fe}.cxd-Number-handler-up-inner{transform:rotate(180deg)}.cxd-Number-handler-up-inner:after{content:'\e6dd'}.cxd-Number-handler-down-inner:after{content:'\e6dd'}.cxd-Number-handler-wrap{float:right;border-left:.0625rem solid #ccc;width:1.25rem;height:100%}.cxd-Number-handler{line-height:.75rem;height:.875rem}.cxd-Number-handler-up{border-bottom:0;padding-top:.0625rem}.cxd-Number-handler-down-disabled,.cxd-Number-handler-up-disabled{background-color:#f5f5f5;pointer-events:none;color:#999}.cxd-Number-disabled .cxd-Number-input{opacity:.72;cursor:not-allowed;background-color:#fff}.cxd-Number-disabled .cxd-Number-handler{opacity:.72}.cxd-Number-disabled .cxd-Number-handler:hover{color:#999;border-color:#ccc}.cxd-NumberControl:not(.is-inline)>.cxd-Number{display:block}.cxd-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.75rem;border:.0625rem solid #ccc;background:#fff;border-radius:0;min-height:1.875rem;padding:.33929rem 0 .33929rem .625rem;cursor:pointer;color:#000}.cxd-Select:hover{background:#fff;border-color:#108cee}.cxd-Select:hover .cxd-Select-arrow:before{color:#108cee}.cxd-Select.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.cxd-Select-placeholder{color:#999;line-height:1.42857;user-select:none;white-space:nowrap}.cxd-Select-value{line-height:1.07143rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.cxd-Select--multi{height:auto;min-height:1.875rem}.cxd-Select--multi .cxd-Select-valueWrap{margin-bottom:-.3125rem}.cxd-Select--multi .cxd-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.cxd-Select--multi .cxd-Select-values+.cxd-Select-input{transform:translateY(0)}.cxd-Select--multi .cxd-Select-value{position:static;user-select:none;line-height:.94643rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-Select--multi .cxd-Select-valueLabel{padding:0 .3125rem}.cxd-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Select-valueIcon:hover{background-color:#b5dcfb}.cxd-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#e6f3fe;background:#e6f3fe}.cxd-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.cxd-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#999;width:10px;height:10px;top:0}.cxd-Select.is-opened .cxd-Select-arrow>svg{transform:rotate(180deg)}.cxd-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.cxd-Select-input{cursor:pointer;outline:0;border:0;margin:0 .625rem;height:1.875rem;font-size:.75rem;border-bottom:1px solid #eceff8;display:flex;align-items:center}.cxd-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.cxd-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.cxd-Select-option{cursor:pointer;min-width:7.5rem;padding:.21429rem .625rem}.cxd-Select-option.is-active{color:#108cee;background-color:transparent}.cxd-Select-option.is-highlight{color:#000;background-color:#eaf6fe}.cxd-Select-option.is-disabled{color:#999;background-color:transparent}.cxd-Select-option--placeholder{color:#999}.cxd-Select-option>label{display:block}.cxd-Select-option>a{float:right;margin-left:.3125rem;display:none}.cxd-Select-option.is-highlight>a{display:block}.cxd-Select-noResult{color:#999;line-height:1.42857;font-size:.75rem;user-select:none;padding:.21429rem .625rem}.cxd-Select-option-hl{color:#dc3545}.cxd-Select-addBtn{display:block;cursor:pointer;padding:.21429rem .625rem}.cxd-Select-addBtn:hover{text-decoration:none}.cxd-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.cxd-Select.is-focused,.cxd-Select.is-opened{border-color:#108cee}.cxd-Select-spinner{line-height:1.07143rem}.cxd-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.cxd-Select-clear svg{fill:#999;width:.625rem;height:.625rem;top:0}.cxd-Select-clear:hover svg{fill:#666}.cxd-Select-popover{margin-top:.1875rem;background:#fff;color:#333;border:0 solid #108cee;box-shadow:.125rem .25rem .5rem rgba(0,0,0,.2);border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.cxd-Select-popover.cxd-PopOver--leftTopLeftBottom{margin-top:-.1875rem}.cxd-SelectControl:not(.is-inline)>.cxd-Select{display:flex}@media (min-width:576px){.cxd-Form-control--sizeXs>.cxd-Select,.cxd-Form-control--sizeSm>.cxd-Select,.cxd-Form-control--sizeMd>.cxd-Select,.cxd-Form-control--sizeLg>.cxd-Select{min-width:100%;max-width:100%;display:inline-flex!important}.cxd-Form-control--sizeXs>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeSm>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeMd>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeLg>.cxd-Select .cxd-Select-valueWrap{width:0}}.cxd-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.cxd-Selections-title{height:1.875rem;background:#f5f5f5;font-size:.75rem;padding:.40179rem .625rem}.cxd-Selections-placeholder{color:#999;text-align:center;width:100%;flex-basis:1.875rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.75rem}.cxd-Selections-items{flex-grow:1}.cxd-Selections-item{display:flex;flex-direction:row;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem}.cxd-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.cxd-Selections-item>.cxd-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#999;cursor:move}.cxd-Selections-item--dragging>*{opacity:.2}.cxd-Selections-delBtn{color:#999;cursor:pointer}.cxd-Selections-delBtn:hover{color:#108cee}.cxd-Selections-delBtn>svg{width:12px;height:12px}.cxd-ListControl-items{display:block;margin:-.3125rem}.cxd-ListControl-items:empty{display:none}.cxd-ListControl-item{position:relative;user-select:none;font-size:.75rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #ccc;background-color:#fff;padding:.375rem .625rem;color:#000;transition:none;max-width:13.75rem}.cxd-ListControl-item:not(.is-disabled){cursor:pointer}.cxd-ListControl-item .b-inherit{border-color:#000}.cxd-ListControl-item:hover{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-ListControl-item:hover .b-inherit{border-color:#108cee}.cxd-ListControl-item:hover:active,.cxd-ListControl-item.is-active{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-ListControl-item:hover:active:hover,.cxd-ListControl-item.is-active:hover{background-color:#fff}.cxd-ListControl-item:hover:active .b-inherit,.cxd-ListControl-item.is-active .b-inherit{border-color:#108cee}.cxd-ListControl-item:hover:active:before,.cxd-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#108cee;right:0;bottom:0}.cxd-ListControl-item:hover:active:after,.cxd-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#fff;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.cxd-ListControl-item.is-disabled{pointer-events:none;opacity:1;border-color:#ebebeb;background-color:#f5f5f5;color:#999}.cxd-ListControl-item.is-disabled:before{background-color:#999}.cxd-ListControl-item.is-disabled .b-inherit{border-color:#ebebeb}.cxd-ListControl-itemImage{margin:-.375rem -.625rem}.cxd-ListControl-itemImage img{display:block;max-width:100%}.cxd-ListControl-itemLabel{text-align:center}.cxd-ListControl-itemImage+.cxd-ListControl-itemLabel{margin-top:.375rem}.cxd-ListControl-placeholder{color:#999}.cxd-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;white-space:nowrap;color:#000;background-color:#fff;border-radius:0}.cxd-LocationPicker:not(.is-disabled){cursor:pointer}.cxd-LocationPicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-LocationPicker:not(.is-disabled):hover .cxd-DatePicker-toggler:before{color:#108cee}.cxd-LocationPicker.is-focused,.cxd-LocationPicker.is-active{border-color:#108cee;box-shadow:none}.cxd-LocationPicker.is-disabled{background:#e9ecef}>.cxd-LocationPicker.is-disabled-input{color:#999}.cxd-LocationPicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-LocationPicker-toggler{cursor:pointer;color:#666}.cxd-LocationPicker-toggler:hover{color:#108cee}.cxd-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-LocationPicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-LocationPicker-clear:hover svg{fill:#666}.cxd-LocationControl{position:relative;width:100%}.cxd-LocationControl:not(.is-inline)>.cxd-LocationPicker{display:flex}.cxd-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#108cee}.cxd-MapPicker-search{padding:5px 10px}.cxd-MapPicker-map{display:block;width:100%;height:200px}.cxd-MapPicker-item{padding:10px;position:relative;border-top:1px solid #eceff8}.cxd-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.cxd-MapPicker-itemTitle{font-size:.875rem}.cxd-MapPicker-itemDesc{font-size:.75rem}.cxd-MapPicker-sugItem{cursor:pointer;padding:.21429rem .625rem}.cxd-MapPicker-sugItem:hover{color:#108cee;background-color:transparent}.tangram-suggestion-main{display:none!important}.cxd-MatrixControl-error{margin-bottom:0}.cxd-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;background-color:#fff;color:#000}.cxd-ColorPicker:not(.is-disabled){cursor:pointer}.cxd-ColorPicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.07143rem}.cxd-ColorPicker-input::placeholder{color:#999}.cxd-ColorPicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-ColorPicker.is-disabled{background:#f5f5f5;color:#999;pointer-events:none}.cxd-ColorPicker.is-disabled>.cxd-ColorPicker-input{color:#999}.cxd-ColorPicker.is-disabled>.cxd-ColorPicker-input::placeholder{color:#999}.cxd-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.cxd-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}.cxd-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.cxd-ColorPicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-ColorPicker-clear:hover svg{fill:#666}.cxd-ColorControl:not(.is-inline)>.cxd-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.cxd-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;white-space:nowrap;color:#000;background-color:#fff;border-radius:0}.cxd-DatePicker:not(.is-disabled){cursor:pointer}.cxd-DatePicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-DatePicker:not(.is-disabled):hover .cxd-DatePicker-toggler:before{color:#108cee}.cxd-DatePicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-DatePicker.is-disabled{background:#e9ecef}>.cxd-DatePicker.is-disabled-input{color:#999}.cxd-DatePicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.cxd-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DatePicker-toggler{cursor:pointer;color:#666}.cxd-DatePicker-toggler:hover{color:#108cee}.cxd-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-DatePicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-DatePicker-clear:hover svg{fill:#666}.cxd-DateControl:not(.is-inline)>.cxd-DatePicker{display:flex}.cxd-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.cxd-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.cxd-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.cxd-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#108cee;text-decoration:none}.cxd-DatePicker-shortcut a:hover{color:#0b62a6;text-decoration:none}.cxd-DatePicker-popover{margin:.125rem 0 0}.cxd-DatePicker-popover.cxd-PopOver--leftTopLeftBottom,.cxd-DatePicker-popover.cxd-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#666}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#fff}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#ededed}.rdt .rdtPicker td.rdtBetween{background:rgba(16,140,238,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#108cee}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#fff}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#108cee}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#eaf6fe}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#108cee;border:1px solid #eceff8;border-radius:0;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#108cee;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none;border-radius:0}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.rdtBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.rdtBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#666;background-color:#eaf6fe;border-color:#eaf6fe;box-shadow:none}.rdtBtnCancel:hover{color:#666;background-color:#c5e6fc;border-color:#b9e1fc}.rdtBtnCancel:focus{color:#666;background-color:#eaf6fe;border-color:#eaf6fe;box-shadow:none}.rdtBtnCancel:hover:focus{color:#666;background-color:#c5e6fc;border-color:#b9e1fc;box-shadow:none}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#666;background-color:#b9e1fc;border-color:#addcfb}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#0b62a6;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#108cee;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.cxd-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;border-radius:0;color:#000;background-color:#fff}.cxd-DateRangePicker:not(.is-disabled){cursor:pointer}.cxd-DateRangePicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-DateRangePicker:not(.is-disabled):hover .cxd-DateRangePicker-toggler{color:#108cee}.cxd-DateRangePicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-DateRangePicker.is-disabled{background:#e9ecef}>.cxd-DateRangePicker.is-disabled-input{color:#999}.cxd-DateRangePicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DateRangePicker-toggler{cursor:pointer;color:#666}.cxd-DateRangePicker-toggler:hover{color:#108cee}.cxd-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.cxd-DateRangePicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-DateRangePicker-clear:hover svg{fill:#666}.cxd-DateRangePicker-wrap{width:auto;padding:.625rem}.cxd-DateRangePicker-start,.cxd-DateRangePicker-end{display:inline-block;vertical-align:top}.cxd-DateRangePicker-start .rdtPicker,.cxd-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.cxd-DateRangePicker-end{margin-top:20px}.cxd-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.cxd-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.cxd-DateRangePicker-ranger a{cursor:pointer}.cxd-DateRangePicker-actions{text-align:right;margin-top:.625rem}.cxd-DateRangeControl:not(.is-inline)>.cxd-DateRangePicker{display:flex}.cxd-DateRangePicker-popover{margin:.125rem 0 0}.cxd-DateRangePicker-popover.cxd-PopOver--leftTopLeftBottom,.cxd-DateRangePicker-popover.cxd-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.cxd-DateRangePicker-wrap{white-space:nowrap}.cxd-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.cxd-ImageControl{position:relative}.cxd-ImageControl-dropzone{outline:0}.cxd-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #eceff8;cursor:pointer;margin-right:.9375rem;color:#666;background-color:#fff;border-color:.0625rem solid #dbdbdb;box-shadow:none}.cxd-ImageControl-addBtn:hover{color:#108cee;background-color:#fff;border-color:#108cee}.cxd-ImageControl-addBtn:focus{color:#666;background-color:#fff;border-color:.0625rem solid #dbdbdb;box-shadow:none}.cxd-ImageControl-addBtn:hover:focus{color:#108cee;background-color:#fff;border-color:#108cee;box-shadow:none}.cxd-ImageControl-addBtn.is-disabled,.cxd-ImageControl-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.cxd-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#f3f9fe;border-color:#108cee}.cxd-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.cxd-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #ebebeb;background:#f5f5f5;color:#ccc}.cxd-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;margin:30px 0 0 .625rem}.cxd-ImageControl-dropzone:focus .cxd-ImageControl-addBtn{border-color:#108cee;background:#fff;color:#108cee}.cxd-ImageControl-item{border:.0625rem solid #eceff8;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.cxd-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.cxd-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.cxd-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.cxd-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.cxd-ImageControl-item:hover .cxd-ImageControl-itemOverlay{display:flex}.cxd-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.cxd-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.cxd-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.cxd-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.cxd-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.cxd-ImageControl-progressValue{height:5px;display:block;background:#108cee;min-width:10%;transition:ease-out width .3s}.cxd-ImageControl-item.is-invalid .cxd-ImageControl-itemClear{display:none}.cxd-ImageControl-item.is-invalid:hover .cxd-ImageControl-itemClear{display:block}.cxd-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.cxd-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.cxd-ImageControl-retryBtn>p{width:100%;text-align:center;color:#ea2e2e;margin:10px 0 0}.cxd-ImageControl-errorMsg{color:#ea2e2e;margin:5px 0 0}.cxd-ImageControl-uploadBtn{margin-top:5px}.cxd-ImageControl-cropperWrapper{position:relative}.cxd-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.cxd-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.cxd-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.cxd-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #eceff8;border-color:#108cee;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.cxd-FileControl-dropzone{outline:0}.cxd-FileControl-selectBtn{width:7.5rem}.cxd-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.cxd-FileControl-description{margin-left:10px;color:#999;font-size:12px}.cxd-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.cxd-FileControl-list>li{color:#333;font-size:12px}.cxd-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.cxd-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.cxd-FileControl-itemInfo.is-invalid{color:#999}.cxd-FileControl-itemInfo>svg:first-child{margin-right:10px}.cxd-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.cxd-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.cxd-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.cxd-FileControl-clear:hover{color:#333}.cxd-FileControl-list:empty{display:none}.cxd-FileControl-list>li:hover .cxd-FileControl-clear{display:block}.cxd-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.cxd-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.cxd-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.cxd-FileControl-progress{height:5px;flex:1;background:#ebebeb}.cxd-FileControl-progress>span{display:block;background:#108cee;height:100%;min-width:10%;transition:ease-out width .3s}.cxd-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #108cee;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.cxd-FileControl-sum{font-size:.75rem}.cxd-FileControl-sum>a{cursor:pointer}.cxd-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #ccc;max-width:100%;box-sizing:content-box}.cxd-EditorControl>.cxd-MonacoEditor,.cxd-EditorControl>.cxd-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.cxd-EditorControl.is-error{border-color:#d0021b}.cxd-EditorControl.is-focused{border-color:#108cee}.cxd-EditorControl--sm{min-height:100px}.cxd-EditorControl--sm>.cxd-MonacoEditor{min-height:100px}.cxd-EditorControl--md{min-height:250px}.cxd-EditorControl--md>.cxd-MonacoEditor{min-height:250px}.cxd-EditorControl--lg{min-height:300px}.cxd-EditorControl--lg>.cxd-MonacoEditor{min-height:300px}.cxd-EditorControl--xl{min-height:400px}.cxd-EditorControl--xl>.cxd-MonacoEditor{min-height:400px}.cxd-EditorControl--xxl{min-height:500px}.cxd-EditorControl--xxl>.cxd-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.cxd-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #ccc;width:100%}.cxd-RichTextControl>.tox-tinymce{border:0}.cxd-RichTextControl>textarea{width:100%}.cxd-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.cxd-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #ccc}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn,.cxd-RichTextControl .fr-popup .fr-command.fr-btn{color:#000}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.cxd-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#108cee;background-color:#fff}.cxd-RichTextControl .fr-desktop .fr-command:hover,.cxd-RichTextControl .fr-desktop .fr-command:focus{background-color:#fff}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.cxd-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#fff}.cxd-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#108cee;color:#fff}.cxd-RichTextControl.is-focused{border:.0625rem solid #108cee}.cxd-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #108cee}.cxd-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.cxd-RichTextControl .fr-sticky-dummy{position:absolute}.cxd-RichTextControl.is-disabled{border-color:#ebebeb;pointer-events:none;opacity:.6}.cxd-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#ebebeb}.cxd-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.cxd-RangeControl::before,.cxd-RangeControl::after{display:table;content:''}.cxd-RangeControl::after{clear:both}.cxd-RangeControl--withInput .cxd-InputRange{width:calc(100% - 120px)}.cxd-RangeControl--withInput .cxd-InputRange-label--mid{left:calc(50% - 60px)}.cxd-RangeControl--withInput.is-multiple .cxd-InputRange{width:calc(100% - 210px)}.cxd-RangeControl .cxd-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.cxd-RangeControl .cxd-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.cxd-RangeControl .cxd-InputRange-input input:focus{outline:0;border:.0625rem solid #108cee}.cxd-RangeControl .cxd-InputRange-input-separator{display:inline-block;padding:0 5px}.cxd-RangeControl .cxd-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.cxd-RangeControl .cxd-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.cxd-RangeControl .cxd-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.cxd-InputRange{height:1.5rem;position:relative;width:100%}.cxd-InputRange-slider{appearance:none;background:#108cee;border:.0625rem solid #108cee;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.cxd-InputRange-slider:active{transform:scale(1.3)}.cxd-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(16,140,238,.2)}.input-range--disabled .cxd-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.cxd-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.cxd-InputRange-sliderContainer{transition:left .3s ease-out}.cxd-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.cxd-InputRange-label--min,.cxd-InputRange-label--max,.cxd-InputRange-label--mid{bottom:-1.4rem;position:absolute}.cxd-InputRange-label--mid{left:50%;bottom:-.3125rem}.cxd-InputRange-label--max{right:0}.cxd-InputRange-label--value{position:absolute;display:none;top:-2.5rem}.cxd-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.cxd-InputRange.is-disabled .cxd-InputRange-track{background:#eee}.cxd-InputRange-track.is-active{background:#108cee}.cxd-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.cxd-InputRange-track--background::before,.cxd-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.cxd-InputRange-track--background::before{left:-.5rem}.cxd-InputRange-track--background::after{right:-.5rem}.cxd-InputRange-track--active{background:#108cee}.cxd-RepeatControl .repeat-btn{width:5rem}.cxd-RepeatControl .Select{display:inline-block;min-width:100px}.cxd-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.cxd-TreeControl{border:1px solid #ccc;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.cxd-TreeControl.h-full{max-height:none;overflow:visible}.cxd-TreeControl.no-border{border:0}.cxd-Tree-list,.cxd-Tree-sublist{list-style:none;padding:0;margin:0}.cxd-Tree-sublist.is-folded{display:none}.cxd-Tree-item{line-height:1.875rem;position:relative}.cxd-Tree-item>div:hover{text-decoration:none}.cxd-Tree-item>div:hover>.cxd-Tree-item-icons{visibility:visible}.cxd-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.cxd-Tree-rootItem{line-height:1.875rem}.cxd-Tree-item>div:hover>.cxd-Tree-item-icons,.cxd-Tree-rootItem>div:hover>.cxd-Tree-item-icons{visibility:visible}.cxd-Tree-itemLabel{display:flex}.cxd-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.cxd-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.cxd-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.cxd-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.cxd-Tree-itemInput{padding-left:.625rem}.cxd-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#999}.cxd-Tree-itemInput>a:hover{color:#108cee;text-decoration:none}.cxd-Tree-itemInput>input{outline:0;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.19866rem .625rem;font-size:.75rem}.cxd-Tree-itemInput>input::placeholder{color:#999;user-select:none}.cxd-Tree-itemInput>input:focus{border-color:#108cee;box-shadow:none}.cxd-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.cxd-Tree-addTopBtn:hover{text-decoration:none}.cxd-Tree-addTopBtn.is-disabled{pointer-events:none;color:#999}.cxd-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.cxd-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.cxd-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.cxd-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.cxd-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.cxd-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.cxd-Tree-rootIcon>svg,.cxd-Tree-folderIcon>svg,.cxd-Tree-leafIcon>svg{width:.875rem;height:.875rem}.cxd-Tree-itemLabel{user-select:none}.cxd-Tree-itemLabel.is-checked,.cxd-Tree-itemLabel.is-children-checked{color:#108cee}.cxd-Tree-itemLabel.is-disabled{color:#999}.cxd-Tree-itemLabel>.cxd-Checkbox{line-height:1;display:inline-block;padding-top:.33929rem}.cxd-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.cxd-Tree-placeholder{color:#999}.cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel,.cxd-Tree-item .cxd-Tree-item>.cxd-Tree-placeholder{padding-left:1.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel,.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-placeholder{padding-left:2.5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:3.75rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:6.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:7.5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:8.75rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:10rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:11.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:12.5rem}.cxd-TreeSelectControl{position:relative}.cxd-TreeSelectControl>.cxd-TreeSelect-popover{width:100%}.cxd-TreeSelect{position:relative;max-width:100%;outline:0}.cxd-TreeSelect.is-inline{display:inline-block;width:12.5rem}.cxd-TreeSelect-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-TreeSelect-input input::placeholder{color:#999;user-select:none}.cxd-TreeSelect.is-error>.cxd-TreeSelect-input{border-color:#d0021b;background-color:#fffbfb}.cxd-TreeSelect.is-focused>.cxd-TreeSelect-input{border-color:#108cee;box-shadow:none}.cxd-TreeSelect.is-error.is-focused>.cxd-TreeSelect-input{border-color:#d0021b}.cxd-TreeSelect.is-disabled>.cxd-TreeSelect-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-TreeSelect-spinner{line-height:1.07143rem}.cxd-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-TreeSelect-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-TreeSelect-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-TreeSelect.cxd-Form-control--sizeXs>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeSm>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeMd>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeLg>.cxd-TreeSelect-input{min-width:100%;display:inline-flex}}.cxd-TreeSelect.is-opened{border-color:#108cee;box-shadow:none}.cxd-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.cxd-TreeSelect-popover>.cxd-Tree{background:#fff;border:.0625rem solid #108cee;padding:.3125rem .625rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.cxd-Combo-placeholder{color:#999;padding-top:.40179rem}.cxd-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#999;padding:.125rem .3125rem;cursor:pointer}.cxd-Combo-toolbarBtn:hover{color:gray}.cxd-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.cxd-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.625rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Combo-addBtn>svg{width:.75rem;height:.75rem}.cxd-Combo-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-Combo-addBtn>.pull-left{margin-right:.5rem}.cxd-Combo-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Combo-addBtn>.pull-right{margin-left:.5rem}.cxd-Combo-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-Combo-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Combo-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-Combo-addBtn.is-disabled,.cxd-Combo-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Combo-addBtn:not(:disabled):not(.is-disabled):active,.cxd-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-Combo-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-Combo-items{margin-bottom:.625rem}.cxd-Combo-items:empty{display:none}.cxd-Combo-items:empty+.cxd-Combo-toolbar{padding-top:.125rem}.cxd-Combo-item{background:#fff}.cxd-Combo-itemDrager{cursor:move}.cxd-Combo-itemDrager>a{color:#999}.cxd-Combo-itemDrager>a:hover{color:#108cee}.cxd-Combo-itemDrager svg{width:1rem;height:1rem}.cxd-Combo--hor .cxd-Combo-item{display:flex;flex-wrap:nowrap}.cxd-Combo--hor .cxd-Combo-item+.cxd-Combo-item{margin-top:.3125rem}.cxd-Combo--hor .cxd-Combo-itemInner{flex-basis:0;flex-grow:1}.cxd-Combo--hor .cxd-Combo-itemTag{margin-right:.625rem}.cxd-Combo--hor .cxd-Combo-itemTag label{color:#108cee;margin-right:.625rem}.cxd-Combo--hor .cxd-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.40179rem}.cxd-Combo--hor .cxd-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:1}.cxd-Combo--hor.is-draggable .cxd-Combo-toolbar{padding-left:1.5rem}.cxd-Combo--hor .cxd-Combo-itemDrager{padding:.3125rem .375rem 0 0}.cxd-Combo--ver:not(.cxd-Combo--noBorder)::before,.cxd-Combo--ver:not(.cxd-Combo--noBorder)::after{display:table;content:''}.cxd-Combo--ver:not(.cxd-Combo--noBorder)::after{clear:both}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-placeholder{margin:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder) .cxd-Combo-itemTag{text-align:right}.cxd-Combo--ver:not(.cxd-Combo--noBorder) .cxd-Combo-itemTag label{color:#108cee;margin-right:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item{border:.0625rem dashed #eceff8;padding:.625rem;position:relative}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item{margin:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#108cee;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#0e7ed6;border-width:.0625rem .0625rem 0}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn:hover,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn:hover{color:#fff}.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-item:hover,.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-items>.cxd-Combo-item:hover{border-color:#108cee}.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-item:hover>.cxd-Combo-itemToolbar,.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-items>.cxd-Combo-item:hover>.cxd-Combo-itemToolbar{top:-1.5625rem;opacity:1}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemDrager{position:absolute;top:.3125rem;left:-1.875rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable>.cxd-Combo-items>.cxd-Combo-item{margin-left:2.1875rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable>.cxd-Combo-toolbar{padding-left:1.5625rem}.cxd-Combo-item--dragging{position:relative}.cxd-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.cxd-ComboTabs>.cxd-Tabs-links::before,.cxd-ComboTabs>.cxd-Tabs-links::after{display:table;content:''}.cxd-ComboTabs>.cxd-Tabs-links::after{clear:both}.cxd-ComboTabs-addLink{float:right}.cxd-Combo-dragableTip{color:#999;font-size:.75rem;margin-left:.3125rem}.cxd-Combo-dragableTip:empty{display:none}.cxd-ComboControl.is-inline .cxd-Combo--hor .cxd-Combo-itemInner{flex-grow:unset;flex-basis:unset}.cxd-ComboControl.is-inline .cxd-Combo--ver .cxd-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.cxd-Combo-form .cxd-Form-item:last-child{margin-bottom:0}}.cxd-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.33929rem 0}.cxd-SubForm-value{cursor:pointer;user-select:none;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.cxd-SubForm-value:hover{background-color:#b5dcfb}.cxd-SubForm-value.is-disabled{pointer-events:none;opacity:1}.cxd-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-SubForm-valueIcon:hover{background-color:#b5dcfb}.cxd-SubForm-valueLabel{padding:0 .3125rem}.cxd-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-SubForm-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-SubForm-addBtn>.pull-left{margin-right:.5rem}.cxd-SubForm-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-SubForm-addBtn>.pull-right{margin-left:.5rem}.cxd-SubForm-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-SubForm-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-SubForm-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-SubForm-addBtn.is-disabled,.cxd-SubForm-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.cxd-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-SubForm-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-SubFormControl{padding-top:0rem}.cxd-ChainedSelectControl .cxd-Select{margin-right:.3125rem}.cxd-Picker{position:relative;max-width:100%;outline:0}.cxd-Picker.is-inline{display:inline-block;width:12.5rem}.cxd-Picker-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-Picker-input input::placeholder{color:#999;user-select:none}.cxd-Picker.is-error>.cxd-Picker-input{border-color:#d0021b;background-color:#fffbfb}.cxd-Picker.is-focused>.cxd-Picker-input{border-color:#108cee;box-shadow:none}.cxd-Picker.is-error.is-focused>.cxd-Picker-input{border-color:#d0021b}.cxd-Picker.is-disabled>.cxd-Picker-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-Picker-spinner{line-height:1.07143rem}.cxd-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-Picker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-Picker-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-Picker.cxd-Form-control--sizeXs>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeSm>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeMd>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeLg>.cxd-Picker-input{min-width:100%;display:inline-flex}}.cxd-Picker.is-focus>.cxd-Picker-input{border-color:#108cee;box-shadow:none}.cxd-Picker-placeholder{color:#999;user-select:none;position:absolute;line-height:1.42857}.cxd-Picker-input{min-height:1.875rem;height:auto}.cxd-Picker .cxd-Picker-values{display:inline}.cxd-Picker-valueWrap{flex-grow:1;position:relative}.cxd-Picker-valueWrap>input{width:1rem;display:inline-block}.cxd-Picker .cxd-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.cxd-Picker .cxd-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-Picker .cxd-Picker-value.is-disabled{pointer-events:none;opacity:1}.cxd-Picker .cxd-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Picker .cxd-Picker-valueIcon:hover{background-color:#b5dcfb}.cxd-Picker .cxd-Picker-valueLabel{padding:0 .3125rem}.cxd-Picker-btn{cursor:pointer;color:#999}.cxd-Picker-btn:hover{color:#108cee}.cxd-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-Picker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-Picker-clear:hover svg{fill:#666}.cxd-PickerControl.is-inline .cxd-Picker{display:inline-block;min-width:9.375rem}.cxd-QrCode{min-height:1.875rem;padding:.4375rem 0}.cxd-TagControl{position:relative}.cxd-TagControl-input.is-focused{border-radius:0}.cxd-TagControl-input.is-disabled{border-style:dashed;background:transparent}.cxd-TagControl.is-inline{display:inline-block}.cxd-TagControl>.cxd-TagControl-popover{padding:0;border:0;width:100%;margin-top:.1875rem}.cxd-TagControl>.cxd-TagControl-popover.cxd-PopOver--leftBottomLeftTop{top:100%!important}.cxd-TagControl>.cxd-TagControl-popover.cxd-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.cxd-TagControl-sug{margin-top:.375rem}.cxd-TagControl-sugTip{color:#108cee;margin-bottom:.375rem}.cxd-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem;color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-TagControl-sugItem .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.cxd-TagControl-sugItem>.pull-left{margin-right:.5rem}.cxd-TagControl-sugItem .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-TagControl-sugItem>.pull-right{margin-left:.5rem}.cxd-TagControl-sugItem:hover{color:#000;background-color:#ececec;border-color:#b3b3b3}.cxd-TagControl-sugItem:focus{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-TagControl-sugItem:hover:focus{color:#000;background-color:#ececec;border-color:#b3b3b3;box-shadow:none}.cxd-TagControl-sugItem.is-disabled,.cxd-TagControl-sugItem:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.cxd-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#000;background-color:#e6e6e6;border-color:#acacac}.cxd-TagControl-sugItem.is-disabled{pointer-events:none;opacity:1}.cxd-TagControl-popover.cxd-PopOver--leftBottomLeftTop>.cxd-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.cxd-TagControl-popover.cxd-PopOver--leftTopLeftBottom>.cxd-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#343a40;cursor:pointer}.cxd-Rating.is-active{color:#108cee}.cxd-Rating.is-disabled{cursor:not-allowed}.cxd-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#108cee}.cxd-RatingControl{position:relative;overflow:hidden}.cxd-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem}.cxd-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.cxd-Transfer-title{display:flex;align-items:center;background:#f5f5f5;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row}.cxd-Transfer-title--light{background:transparent}.cxd-Transfer-title>span{flex-grow:1}.cxd-Transfer-select,.cxd-Transfer-result{width:0;min-width:12.5rem;flex-grow:1;border:.0625rem solid #ccc;display:flex;flex-direction:column}.cxd-Transfer-select>.cxd-Transfer-checkboxes,.cxd-Transfer-result>.cxd-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.cxd-Transfer-search+.cxd-Transfer-checkboxes{border-top:1px solid #eceff8}.cxd-Transfer-checkboxes .cxd-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.cxd-Transfer-search{padding:.625rem}.cxd-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.cxd-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #eceff8;margin:0 10px;color:#999}.cxd-Transfer-arrow>svg{top:0;width:14px;height:14px}.cxd-Transfer-checkAll,.cxd-Transfer-clearAll{user-select:none;cursor:pointer}.cxd-Transfer-checkAll.is-disabled,.cxd-Transfer-clearAll.is-disabled{pointer-events:none;color:#999}.cxd-Transfer-tabs{display:flex;flex-direction:column;height:100%}.cxd-Transfer-tabs>.cxd-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.cxd-Transfer-tabs>.cxd-Tabs-links .cxd-TabsTransfer-tabsMid{flex-grow:1}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-SearchBox{margin:-5px 5px 0 10px}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.cxd-Transfer-tabs>.cxd-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane{position:relative;min-height:100%}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane.is-active{display:flex;flex-direction:column}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane.is-active>.cxd-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.cxd-TabsTransfer .cxd-Transfer-title{height:40px}.cxd-TabsTransfer-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-TransferControl{position:relative}.cxd-TransferControl.is-inline{display:inline-block}.cxd-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #ccc;background:#fff;border-radius:0;min-height:1.875rem;padding:.33929rem 0 .33929rem .625rem;cursor:pointer;color:#000}.cxd-NestedSelect.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-NestedSelect.is-focused,.cxd-NestedSelect.is-opened{border-color:#108cee}.cxd-NestedSelect.is-opened .cxd-Select-arrow>svg{transform:rotate(180deg)}.cxd-NestedSelect:not(.is-disabled):hover{background:#fff}.cxd-NestedSelect--multi .cxd-Select-value{position:static;user-select:none;line-height:.94643rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-NestedSelect--multi .cxd-Select-valueLabel{padding:0 .3125rem}.cxd-NestedSelect-placeholder{color:#999;line-height:1.42857}.cxd-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.cxd-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.cxd-NestedSelect-clear svg{fill:#999;width:.625rem;height:.625rem}.cxd-NestedSelect-clear:hover svg{fill:#666}.cxd-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.cxd-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#999}.cxd-NestedSelect-menuOuter{display:flex}.cxd-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#fff;color:#333;border:0 solid #108cee;box-shadow:.125rem .25rem .5rem rgba(0,0,0,.2);overflow-y:auto;overflow-x:hidden}.cxd-NestedSelect-menu:not(:first-child){border-left:0}.cxd-NestedSelect-menu .cxd-NestedSelect-option{position:relative;padding-left:.625rem;min-height:1.875rem;line-height:1.875rem;cursor:pointer;display:flex}.cxd-NestedSelect-menu .cxd-NestedSelect-option>.cxd-NestedSelect-optionLabel{flex:1;cursor:pointer}.cxd-NestedSelect-menu .cxd-NestedSelect-option>.cxd-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.cxd-NestedSelect-menu .cxd-NestedSelect-option.is-active{color:#108cee;background-color:transparent}.cxd-NestedSelect-menu .cxd-NestedSelect-option:hover{color:#000;background-color:#eaf6fe}.cxd-NestedSelect-menu .cxd-NestedSelect-option:hover>.cxd-NestedSelect-childrenOuter{display:block}.cxd-NestedSelect-menu .cxd-NestedSelect-option .cxd-Checkbox{display:inline-block;padding-top:0}.cxd-NestedSelect-menu .cxd-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.cxd-Form-control--sizeXs>.cxd-NestedSelect,.cxd-Form-control--sizeSm>.cxd-NestedSelect,.cxd-Form-control--sizeMd>.cxd-NestedSelect,.cxd-Form-control--sizeLg>.cxd-NestedSelect{display:inline-flex!important}}.cxd-IconPickerControl{position:relative;max-width:100%}.cxd-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.cxd-IconPickerControl-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-IconPickerControl-input input::placeholder{color:#999;user-select:none}.cxd-IconPickerControl.is-error>.cxd-IconPickerControl-input{border-color:#d0021b;background-color:#fffbfb}.cxd-IconPickerControl.is-focused>.cxd-IconPickerControl-input{border-color:#108cee;box-shadow:none}.cxd-IconPickerControl.is-error.is-focused>.cxd-IconPickerControl-input{border-color:#d0021b}.cxd-IconPickerControl.is-disabled>.cxd-IconPickerControl-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-IconPickerControl-spinner{line-height:1.07143rem}.cxd-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-IconPickerControl-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-IconPickerControl-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-IconPickerControl.cxd-Form-control--sizeXs>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeSm>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeMd>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeLg>.cxd-IconPickerControl-input{min-width:100%;display:inline-flex}}.cxd-IconPickerControl-placeholder{color:#999;user-select:none;position:absolute;left:.625rem;top:.33929rem;margin-top:.125rem;line-height:1.42857}.cxd-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.cxd-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.cxd-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.cxd-IconPickerControl-input--withAC>input{width:auto}.cxd-IconPickerControl-sugsPanel{position:absolute;background:#fff;color:#333;border:.0625rem solid #108cee;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.cxd-IconPickerControl-tabs{background:#f0f3f4}.cxd-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.cxd-IconPickerControl-tab.active{background:#fff}.cxd-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.cxd-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.cxd-IconPickerControl-sugItem:hover{background-color:#eaf6fe}.cxd-IconPickerControl-sugItem.is-active{color:#fff;background-color:#108cee}.cxd-IconPickerControl-value{user-select:none;line-height:1.07143rem;vertical-align:middle;display:inline-block}.cxd-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.cxd-Form{font-size:.75rem;position:relative}.cxd-Form--quickEdit .cxd-Form-item:last-child{margin-bottom:0}.cxd-Form--inline>.cxd-PlainField{display:inline-block;padding-top:.33929rem}.cxd-Form-static{min-height:1.875rem;padding-top:.40179rem;padding-bottom:.40179rem;margin-bottom:0}.cxd-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.cxd-Form-label>span{position:relative}.cxd-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.cxd-Form-feedback{color:#ea2e2e;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.cxd-Form-description{display:block;color:#999;margin:.375rem 0 0;font-size:.75rem}.cxd-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.33929rem;vertical-align:top}.cxd-Form-item{margin-bottom:1.25rem}.cxd-Grid-form>.cxd-Form-item:last-child{margin-bottom:0}.cxd-Form--inline>.cxd-Form-item--inline{margin-bottom:.625rem;margin-right:.625rem}.cxd-Form--inline>.cxd-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.cxd-Form-item .cxd-Form-remark{padding-top:.40179rem;vertical-align:top}.cxd-Form-item--horizontal>.cxd-Form-label{text-align:left;white-space:nowrap}.cxd-Form-item--normal>.cxd-Form-label{display:block}.cxd-Form-item--normal>.cxd-Form-label .cxd-Form-star{position:absolute;left:-.375rem;top:.1875rem}.cxd-Form-item.is-error>.cxd-Form-label{color:#ea2e2e}.cxd-Form-placeholder{color:#999}.cxd-Form-caption{display:inline-block;line-height:1.875rem;height:1.875rem;margin-left:.625rem}@media (min-width:576px){.cxd-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeXs.cxd-NumberControl{width:5rem}.cxd-Form-control--sizeXs.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeSm.cxd-NumberControl{width:10rem}.cxd-Form-control--sizeSm.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeMd.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeLg.cxd-NumberControl{width:20rem}.cxd-Form-control--sizeLg.cxd-TextareaControl{width:auto}.cxd-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.cxd-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-item--horizontal>.cxd-Form-label,.cxd-Form-item--horizontal>.cxd-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.cxd-Form-item--horizontal .cxd-Form-itemColumn--xs,.cxd-Form-item--horizontal .cxd-Form-itemColumn--sm,.cxd-Form-item--horizontal .cxd-Form-itemColumn--normal,.cxd-Form-item--horizontal .cxd-Form-itemColumn--md,.cxd-Form-item--horizontal .cxd-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.cxd-Form-item--horizontal>.cxd-Form-label{padding-top:.40179rem;margin-bottom:0}.cxd-Form-item--horizontal>.cxd-Form-label .cxd-Form-star{position:absolute;left:-.375rem;top:.1875rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--xs{width:3.125rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--sm{width:4.375rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--normal{width:6.25rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--md{width:8.75rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--lg{width:11.875rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.cxd-Form-item--inline{display:inline-block;vertical-align:top}.cxd-Form-item--inline .cxd-TextControl{width:12.5rem}.cxd-Form-item--inline>.cxd-Form-label{padding-top:.40179rem;margin-bottom:0;margin-right:.625rem}.cxd-Form-item--inline>.cxd-Form-label .cxd-Form-star{position:static}.cxd-Form-item--inline>.cxd-Form-value{display:inline}.cxd-Form-item--inline>.cxd-Form-value>.cxd-Form-control{vertical-align:top;display:inline-block}.cxd-Form-item--inline>.cxd-Form-value>.cxd-Form-control.cxd-InputGroup{display:inline-flex}.cxd-Form-item--inline>.cxd-Form-value>.cxd-TextControl--withAddOn{display:inline-flex;min-width:15rem}.cxd-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.cxd-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.cxd-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.cxd-Form-rowInner{display:flex;flex-wrap:nowrap}.cxd-Form-rowInner>.cxd-Form-label{display:inline-block;vertical-align:top;padding-top:.40179rem;padding-right:.625rem}.cxd-Form-rowInner>.cxd-Form-control{flex-basis:0;flex-grow:1}.cxd-Form-rowInner>.cxd-Form-control:not(.cxd-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#eaf6fe;color:#666}.bg-light.lt,.bg-light .lt{background-color:#f4fafe}.bg-light.lter,.bg-light .lter{background-color:#f9fcff}.bg-light.dk,.bg-light .dk{background-color:#dbf0fe}.bg-light.dker,.bg-light .dker{background-color:#d0ecfe}.bg-light.bg,.bg-light .bg{background-color:#eaf6fe}.bg-dark{background-color:#343a40;color:#a0a0a0}.bg-dark.lt,.bg-dark .lt{background-color:#41474c}.bg-dark.lter,.bg-dark .lter{background-color:#4f5458}.bg-dark.dk,.bg-dark .dk{background-color:#272d33}.bg-dark.dker,.bg-dark .dker{background-color:#1c2125}.bg-dark.bg,.bg-dark .bg{background-color:#343a40}.bg-dark a,.bg-dark .cxd-Button--link{color:#b9baba}.bg-dark a:hover,.bg-dark .cxd-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#868787!important}.bg-dark .text-lt{color:#e0e0e0!important}.bg-black{background-color:#000;color:#666}.bg-black.lt,.bg-black .lt{background-color:#0d0d0d}.bg-black.lter,.bg-black .lter{background-color:#1a1a1a}.bg-black.dk,.bg-black .dk{background-color:#000}.bg-black.dker,.bg-black .dker{background-color:#000}.bg-black.bg,.bg-black .bg{background-color:#000}.bg-black a,.bg-black .cxd-Button--link{color:gray}.bg-black a:hover,.bg-black .cxd-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#4d4d4d!important}.bg-black .text-lt{color:#a6a6a6!important}.bg-primary{background-color:#108cee;color:#d1e7f9}.bg-primary.lt,.bg-primary .lt{background-color:#2a97ee}.bg-primary.lter,.bg-primary .lter{background-color:#44a2ed}.bg-primary.dk,.bg-primary .dk{background-color:#0c7ed9}.bg-primary.dker,.bg-primary .dker{background-color:#0870c3}.bg-primary.bg,.bg-primary .bg{background-color:#108cee}.bg-primary a,.bg-primary .cxd-Button--link{color:#feffff}.bg-primary a:hover,.bg-primary .cxd-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#a4d0f3!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#5fb333;color:#d4eac8}.bg-success.lt,.bg-success .lt{background-color:#6bc33c}.bg-success.lter,.bg-success .lter{background-color:#7ac653}.bg-success.dk,.bg-success .dk{background-color:#54a22b}.bg-success.dker,.bg-success .dker{background-color:#499023}.bg-success.bg,.bg-success .bg{background-color:#5fb333}.bg-success a,.bg-success .cxd-Button--link{color:#f1f8ed}.bg-success a:hover,.bg-success .cxd-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#b6dca3!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#108cee;color:#d1e7f9}.bg-info.lt,.bg-info .lt{background-color:#2a97ee}.bg-info.lter,.bg-info .lter{background-color:#44a2ed}.bg-info.dk,.bg-info .dk{background-color:#0c7ed9}.bg-info.dker,.bg-info .dker{background-color:#0870c3}.bg-info.bg,.bg-info .bg{background-color:#108cee}.bg-info a,.bg-info .cxd-Button--link{color:#feffff}.bg-info a:hover,.bg-info .cxd-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#a4d0f3!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#f39000;color:#fce5c3}.bg-warning.lt,.bg-warning .lt{background-color:#fc9c11}.bg-warning.lter,.bg-warning .lter{background-color:#faa62c}.bg-warning.dk,.bg-warning .dk{background-color:#da8100}.bg-warning.dker,.bg-warning .dker{background-color:#c07200}.bg-warning.bg,.bg-warning .bg{background-color:#f39000}.bg-warning a,.bg-warning .cxd-Button--link{color:#fefaf4}.bg-warning a:hover,.bg-warning .cxd-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#f9d093!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#ea2e2e;color:#fbe9e9}.bg-danger.lt,.bg-danger .lt{background-color:#ea4848}.bg-danger.lter,.bg-danger .lter{background-color:#ea6161}.bg-danger.dk,.bg-danger .dk{background-color:#ea1414}.bg-danger.dker,.bg-danger .dker{background-color:#d60f0f}.bg-danger.bg,.bg-danger .bg{background-color:#ea2e2e}.bg-danger a,.bg-danger .cxd-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .cxd-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#f4bdbd!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#666}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#0e7ed6}a.text-primary:hover{color:#0e7ed6}.text-primary{color:#108cee}.text-primary-lt{color:#0e7ed6}.text-primary-lter{color:#0d70be}.text-primary-dk{color:#0e7ed6}.text-primary-dker{color:#0d70be}a.bg-info:hover{background-color:#0e7ed6}a.text-info:hover{color:#0e7ed6}.text-info{color:#108cee}.text-info-lt{color:#0e7ed6}.text-info-lter{color:#0d70be}.text-info-dk{color:#0e7ed6}.text-info-dker{color:#0d70be}a.bg-success:hover{background-color:#549f2d}a.text-success:hover{color:#549f2d}.text-success{color:#5fb333}.text-success-lt{color:#549f2d}.text-success-lter{color:#4a8b28}.text-success-dk{color:#549f2d}.text-success-dker{color:#4a8b28}a.bg-warning:hover{background-color:#da8100}a.text-warning:hover{color:#da8100}.text-warning{color:#f39000}.text-warning-lt{color:#da8100}.text-warning-lter{color:#c07200}.text-warning-dk{color:#da8100}.text-warning-dker{color:#c07200}a.bg-danger:hover{background-color:#e71717}a.text-danger:hover{color:#e71717}.text-danger{color:#ea2e2e}.text-danger-lt{color:#e71717}.text-danger-lter{color:#d01515}.text-danger-dk{color:#e71717}.text-danger-dker{color:#d01515}a.bg-dark:hover{background-color:#292d32}a.text-dark:hover{color:#292d32}.text-dark{color:#343a40}.text-dark-lt{color:#292d32}.text-dark-lter{color:#1d2124}.text-dark-dk{color:#292d32}.text-dark-dker{color:#1d2124}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#000}a.text-black:hover{color:#000}.text-black{color:#000}.text-black-lt{color:#000}.text-black-lter{color:#000}.text-black-dk{color:#000}.text-black-dker{color:#000}.text-muted{color:#999}.text-loud{color:#333}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #eceff8,0 2px 0 white,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #eceff8}.b-t{border-top:1px solid #eceff8}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #eceff8}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #eceff8}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #eceff8}.b-l-none{border-left-width:0}.b-light{border-color:#eaf6fe}.b-dark{border-color:#343a40}.b-black{border-color:#343a40}.b-primary{border-color:#108cee}.b-success{border-color:#5fb333}.b-info{border-color:#108cee}.b-warning{border-color:#f39000}.b-danger{border-color:#ea2e2e}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#eaf6fe}.b-l-dark{border-left-color:#343a40}.b-l-black{border-left-color:#343a40}.b-l-primary{border-left-color:#108cee}.b-l-success{border-left-color:#5fb333}.b-l-info{border-left-color:#108cee}.b-l-warning{border-left-color:#f39000}.b-l-danger{border-left-color:#ea2e2e}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#5fb333}.avatar i.off{background-color:#999}.avatar i.busy{background-color:#ea2e2e}.avatar i.away{background-color:#f39000}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.cxd-Form-col.w,.cxd-Form-col.w-xs,.cxd-Form-col.w-sm,.cxd-Form-col.w-md,.cxd-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #eceff8}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#108cee}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0d70be}.label-success{background-color:#5fb333}.label-success[href]:hover,.label-success[href]:focus{background-color:#4a8b28}.label-info{background-color:#108cee}.label-info[href]:hover,.label-info[href]:focus{background-color:#0d70be}.label-warning{background-color:#f39000}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#c07200}.label-danger{background-color:#ea2e2e}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#d01515}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file +@charset "UTF-8";html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#5fb333}svg.icon-fail{color:#ea2e2e}html{font-size:16px}body{color:#666;background-color:#fff;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#108cee;text-decoration:none}a:hover{color:#0b62a6;text-decoration:none}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#333;line-height:1.1}.is-matched{color:#ea2e2e}html,body{width:100%;height:100%}body{overflow-x:hidden}.cxd-Layout{height:100%;min-height:100%;width:100%;position:relative}.cxd-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#fff;border:inherit;display:block}.cxd-Layout--boxed{margin-right:auto;margin-left:auto}.cxd-Layout .cxd-Layout-header{background:#f5f5f5;box-shadow:none;height:3.125rem}.cxd-Layout--headerFixed{padding-top:3.125rem}.cxd-Layout--headerFixed .cxd-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.cxd-Layout-brandBar{background:#0f1012;color:#777}.cxd-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.cxd-Layout-brand{color:#fff;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cxd-Layout-brand:hover{text-decoration:none}.cxd-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.cxd-Layout-headerBar{border-bottom:0 none;min-height:3.125rem;padding:0 .625rem}.cxd-Layout-aside{float:left;background:#1e1e28;color:#84848e}.cxd-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.cxd-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:11.25rem}.cxd-Layout-asideFooter~div{padding-bottom:3.125rem}.cxd-Layout-content{height:100%}.cxd-Layout-content::before,.cxd-Layout-content::after{display:table;content:''}.cxd-Layout-content::after{clear:both}.cxd-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.cxd-Layout--noFooter .cxd-Layout-body{padding-bottom:0}.cxd-Layout-content .cxd-Layout-body{float:left}.cxd-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.cxd-Layout--sm .cxd-Layout-asideFooter{max-width:9.375rem}.cxd-Layout--sm .cxd-AsideNav-item a{font-size:.75rem}.cxd-Layout--md .cxd-Layout-asideFooter{max-width:15.625rem}.cxd-Layout--lg .cxd-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.cxd-Layout-content{transition:transform .2s ease}.cxd-Layout-aside{display:none}.cxd-Layout--offScreen .cxd-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.cxd-Layout-headerBar{display:none}.cxd-Layout--offScreen .cxd-Layout-content,.cxd-Layout--offScreen .cxd-Layout-footer{background-color:#fff;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.cxd-Layout--boxed{width:47.5rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:47.5rem}.cxd-Layout-brand,.cxd-Layout-brandBar,.cxd-Layout-aside{width:11.25rem}.cxd-Layout-brandBar{float:left}.cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--withAside .cxd-Layout-footer{margin-left:11.25rem}.cxd-Layout .visible-folded{display:none}.cxd-Layout--folded .visible-folded{display:inherit}.cxd-Layout--folded .hidden-folded{display:none!important}.cxd-Layout--folded .text-center-folded{text-align:center}.cxd-Layout--folded .pull-none-folded{float:none!important}.cxd-Layout--folded .w-auto-folded{width:auto}.cxd-Layout--folded .cxd-Layout-aside,.cxd-Layout--folded .cxd-Layout-brandBar{width:3.75rem}.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--folded.cxd-Layout--withAside .cxd-Layout-footer{margin-left:3.75rem}.cxd-Layout--folded .cxd-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.cxd-Layout--asideFixed .cxd-Layout-aside{height:100%}.cxd-Layout--asideFixed .cxd-Layout-aside:before{position:fixed;z-index:15}.cxd-Layout--asideFixed .cxd-Layout-brandBar{position:fixed}.cxd-Layout--asideFixed .cxd-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:11.1875rem;z-index:1200}.cxd-Layout--asideFixed .cxd-Layout-asideInner{width:12.3125rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.cxd-Layout--asideFixed .cxd-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.cxd-Layout--asideFixed .cxd-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:11.25rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-aside{position:static}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-brandBar{position:static}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideInner{overflow:visible;width:4.8125rem}.cxd-Layout--asideFixed.cxd-Layout--folded .cxd-Layout-asideInner>*{width:3.75rem}.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--sm:not(.cxd-Layout--folded) .cxd-Layout-aside{width:9.375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:9.375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:9.3125rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:10.4375rem}.cxd-Layout--sm:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:9.375rem}.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--md:not(.cxd-Layout--folded) .cxd-Layout-aside{width:15.625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:15.625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:15.5625rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:16.6875rem}.cxd-Layout--md:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:15.625rem}.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-brand,.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-brandBar,.cxd-Layout--lg:not(.cxd-Layout--folded) .cxd-Layout-aside{width:18.75rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-headerBar,.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-content,.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--withAside .cxd-Layout-footer{margin-left:18.75rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideWrap{width:18.6875rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner{width:19.8125rem}.cxd-Layout--lg:not(.cxd-Layout--folded).cxd-Layout--asideFixed .cxd-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.cxd-Layout--boxed{width:61.25rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:61.25rem}}@media (min-width:1200px){.cxd-Layout--boxed{width:73.75rem}.cxd-Layout--boxed.cxd-Layout--headerFixed .cxd-Layout-header{width:73.75rem}}.cxd-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.cxd-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.cxd-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.cxd-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.cxd-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.cxd-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.cxd-AsideNav::before,.cxd-AsideNav::after{display:table;content:''}.cxd-AsideNav::after{clear:both}.cxd-AsideNav-label{color:#6b6b74;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.cxd-AsideNav-list{list-style:none;padding:0;margin:0}.cxd-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.cxd-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.cxd-AsideNav-item.is-open>a>.cxd-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#108cee}.cxd-AsideNav-itemArrow>svg{color:#fff;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.cxd-AsideNav-item.is-open>a>.cxd-AsideNav-itemArrow>svg{transform:rotate(90deg)}.cxd-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.cxd-AsideNav-itemIcon{margin:-.6875rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:rgba(255,255,255,.6);font-size:1rem}.cxd-AsideNav-itemIcon:before{position:relative;z-index:2}.cxd-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#1e1e28}.is-open>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:hover>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:focus>.cxd-AsideNav-subList,.cxd-Layout--folded .cxd-AsideNav-item:active>.cxd-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.cxd-Layout--folded .cxd-AsideNav-item.is-open>.cxd-AsideNav-subList{overflow:hidden}.cxd-AsideNav-item{position:relative;display:block}.cxd-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.75rem;padding:.6875rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#fff;text-decoration:none;user-select:none}.cxd-AsideNav-item a:hover{color:#108cee;text-decoration:none;background-color:#171720}.cxd-AsideNav-item a:hover .cxd-AsideNav-itemIcon{color:#108cee}.cxd-AsideNav-item.is-active>a{background-color:#13131a;color:#108cee}.cxd-AsideNav-item.is-active>a:hover{background-color:#171720}.cxd-AsideNav-item.is-lg>a{padding:1rem .9375rem}.cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:2.8125rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:4.6875rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:6.5625rem}.cxd-AsideNav-item .cxd-AsideNav-item .cxd-AsideNav-subList{display:none}.cxd-AsideNav-item .cxd-AsideNav-item.is-open .cxd-AsideNav-subList{display:block}.cxd-AsideNav-subHeader{display:none}.cxd-AsideNav-subHeader a{cursor:default;background:transparent;color:#6b6b74;padding:.6875rem 1.25rem}.cxd-AsideNav-subHeader a:hover{color:#6b6b74;background:transparent}.cxd-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.cxd-AsideNav-divider{width:auto;height:.0625rem;margin:0 .625rem;overflow:hidden;font-size:0;background-color:#3c3c4d}@media (min-width:768px){.cxd-Layout--folded .cxd-AsideNav-label{display:none}.cxd-Layout--folded .cxd-AsideNav-subHeader{display:block}.cxd-Layout--folded .cxd-AsideNav-item:hover>.cxd-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:2.5rem;border:0}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemArrow,.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemLabel{display:none}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:2.5rem;border:0!important}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item>a .cxd-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item.is-lg>a{height:3.125rem}.cxd-Layout--folded .cxd-AsideNav-list>.cxd-AsideNav-item.is-lg>a .cxd-AsideNav-itemIcon{line-height:3.125rem}.cxd-Layout--folded .cxd-AsideNav-item .cxd-AsideNav-item a{padding-left:1.25rem!important}.cxd-Layout--folded .cxd-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:11.25rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.cxd-Layout--folded.cxd-Layout--sm .cxd-AsideNav-subList{width:9.375rem}.cxd-Layout--folded.cxd-Layout--md .cxd-AsideNav-subList{width:15.625rem}.cxd-Layout--folded.cxd-Layout--lg .cxd-AsideNav-subList{width:18.75rem}}.cxd-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.cxd-Hbox>.cxd-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.cxd-FormHbox{margin-left:-15px;margin-right:-15px}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col>.cxd-Form-group{margin-left:0;margin-right:0}.cxd-FormHbox>.cxd-Hbox>.cxd-Hbox-col>.cxd-Form-group:last-child{margin-bottom:0}.cxd-FormHbox.cxd-Hbox--xs{margin-left:-5px;margin-right:-5px}.cxd-FormHbox.cxd-Hbox--xs>.cxd-Hbox>.cxd-Hbox-col{padding-left:5px;padding-right:5px}.cxd-FormHbox.cxd-Hbox--sm{margin-left:-10px;margin-right:-10px}.cxd-FormHbox.cxd-Hbox--sm>.cxd-Hbox>.cxd-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.cxd-Hbox--autoSm{display:block}.cxd-Hbox--autoSm>.cxd-Hbox-col{width:auto;height:auto;display:block}.cxd-Hbox--autoSm>.cxd-Hbox-col.show{display:block!important}.cxd-Hbox--autoSm .cxd-Vbox{height:auto}.cxd-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.cxd-Hbox--autoXs{display:block}.cxd-Hbox--autoXs>.cxd-Hbox-col{width:auto;height:auto;display:block}.cxd-Hbox--autoXs .cxd-Vbox{height:auto}.cxd-Hbox--autoXs .cell-inner{position:static!important}}.cxd-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.cxd-Vbox .row-row{display:table-row;height:100%}.cxd-Vbox .row-row .cxd-Vbox-cell{position:relative;height:100%;width:100%}.ie .cxd-Vbox .row-row .cxd-Vbox-cell{display:table-cell;overflow:auto}.ie .cxd-Vbox .row-row .cxd-Vbox-cell .cell-inner{overflow:visible!important}.cxd-Vbox .row-row .cxd-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.cxd-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;min-width:4.25rem;padding:.33929rem .625rem;font-size:.75rem;line-height:1.42857;border-radius:0;height:1.875rem}.cxd-Button .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button>svg.icon:not(:last-child):not(.pull-right),.cxd-Button>.pull-left{margin-right:.625rem}.cxd-Button .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button>.pull-right{margin-left:.625rem}.cxd-Button:hover:focus{color:#666;text-decoration:none}.cxd-Button:focus,.cxd-Button.focus{outline:0;box-shadow:none}.cxd-Button.is-disabled,.cxd-Button:disabled{opacity:1;box-shadow:none;pointer-events:none;border-color:#ebebeb;background-color:#f5f5f5;color:#aaa!important}.cxd-Button.is-disabled.is-active,.cxd-Button.is-disabled:active,.cxd-Button:disabled.is-active,.cxd-Button:disabled:active{background-color:#f5f5f5!important}.cxd-Button:not(:disabled):not(.is-disabled){cursor:pointer}.cxd-Button:not(:disabled):not(.is-disabled):active,.cxd-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:none}.cxd-Button:not(:disabled):not(.is-disabled):active:focus,.cxd-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:none}.cxd-Button>.pull-left,.cxd-Button>.pull-right{line-height:inherit}.cxd-Button>.fa,.cxd-Button>.iconfont,.cxd-Button>.glyphicon{font-size:inherit}a.cxd-Button.is-disabled,fieldset:disabled a.cxd-Button{pointer-events:none}.cxd-Button--primary{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--primary:hover{color:#fff;background-color:#209bfd;border-color:#108cee}.cxd-Button--primary:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--primary:hover:focus{color:#fff;background-color:#209bfd;border-color:#108cee;box-shadow:none}.cxd-Button--primary.is-disabled,.cxd-Button--primary:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--primary:not(:disabled):not(.is-disabled):active,.cxd-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#047bdb;border-color:#108cee}.cxd-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:none}.cxd-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.cxd-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:none}.cxd-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:none}.cxd-Button--secondary.is-disabled,.cxd-Button--secondary:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--secondary:not(:disabled):not(.is-disabled):active,.cxd-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.cxd-Button--success{color:#fff;background-color:#5fb333;border-color:#5fb333;box-shadow:none}.cxd-Button--success:hover{color:#fff;background-color:#4f952b;border-color:#4a8b28}.cxd-Button--success:focus{color:#fff;background-color:#5fb333;border-color:#5fb333;box-shadow:none}.cxd-Button--success:hover:focus{color:#fff;background-color:#4f952b;border-color:#4a8b28;box-shadow:none}.cxd-Button--success.is-disabled,.cxd-Button--success:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--success:not(:disabled):not(.is-disabled):active,.cxd-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#4a8b28;border-color:#458125}.cxd-Button--info{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--info:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-Button--info:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Button--info:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-Button--info.is-disabled,.cxd-Button--info:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--info:not(:disabled):not(.is-disabled):active,.cxd-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-Button--warning{color:#fff;background-color:#f39000;border-color:#f39000;box-shadow:none}.cxd-Button--warning:hover{color:#fff;background-color:#cd7900;border-color:#c07200}.cxd-Button--warning:focus{color:#fff;background-color:#f39000;border-color:#f39000;box-shadow:none}.cxd-Button--warning:hover:focus{color:#fff;background-color:#cd7900;border-color:#c07200;box-shadow:none}.cxd-Button--warning.is-disabled,.cxd-Button--warning:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--warning:not(:disabled):not(.is-disabled):active,.cxd-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#c07200;border-color:#b36a00}.cxd-Button--danger{color:#fff;background-color:#ea2e2e;border-color:#ea2e2e;box-shadow:none}.cxd-Button--danger:hover{color:#fff;background-color:#f64545;border-color:#d01515}.cxd-Button--danger:focus{color:#fff;background-color:#ea2e2e;border-color:#ea2e2e;box-shadow:none}.cxd-Button--danger:hover:focus{color:#fff;background-color:#f64545;border-color:#d01515;box-shadow:none}.cxd-Button--danger.is-disabled,.cxd-Button--danger:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--danger:not(:disabled):not(.is-disabled):active,.cxd-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#d72b2b;border-color:#c51414}.cxd-Button--light{color:#666;background-color:#eaf6fe;border-color:#eceff8;box-shadow:none}.cxd-Button--light:hover{color:#666;background-color:#c5e6fc;border-color:#c7d0ea}.cxd-Button--light:focus{color:#666;background-color:#eaf6fe;border-color:#eceff8;box-shadow:none}.cxd-Button--light:hover:focus{color:#666;background-color:#c5e6fc;border-color:#c7d0ea;box-shadow:none}.cxd-Button--light.is-disabled,.cxd-Button--light:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--light:not(:disabled):not(.is-disabled):active,.cxd-Button--light:not(:disabled):not(.is-disabled).is-active{color:#666;background-color:#b9e1fc;border-color:#bdc8e7}.cxd-Button--dark{color:#fff;background-color:#343a40;border-color:#343a40;box-shadow:none}.cxd-Button--dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.cxd-Button--dark:focus{color:#fff;background-color:#343a40;border-color:#343a40;box-shadow:none}.cxd-Button--dark:hover:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:none}.cxd-Button--dark.is-disabled,.cxd-Button--dark:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--dark:not(:disabled):not(.is-disabled):active,.cxd-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1d2124;border-color:#171a1d}.cxd-Button--default{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-Button--default:hover{color:#108cee;background-color:#fff;border-color:#108cee}.cxd-Button--default:focus{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-Button--default:hover:focus{color:#108cee;background-color:#fff;border-color:#108cee;box-shadow:none}.cxd-Button--default.is-disabled,.cxd-Button--default:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Button--default:not(:disabled):not(.is-disabled):active,.cxd-Button--default:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#f6fbff;border-color:#108cee}.cxd-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:0;height:1.375rem}.cxd-Button--xs .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--xs>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--xs>.pull-left{margin-right:.3125rem}.cxd-Button--xs .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--xs>.pull-right{margin-left:.3125rem}.cxd-Button--xs.cxd-Button--iconOnly{min-width:1.83333rem}.cxd-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem}.cxd-Button--sm .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--sm>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--sm>.pull-left{margin-right:.5rem}.cxd-Button--sm .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--sm>.pull-right{margin-left:.5rem}.cxd-Button--sm.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--md{padding:.33929rem .625rem;font-size:.75rem;line-height:1.42857;border-radius:0;height:1.875rem}.cxd-Button--md .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--md>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--md>.pull-left{margin-right:.625rem}.cxd-Button--md .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--md>.pull-right{margin-left:.625rem}.cxd-Button--md.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--lg{padding:.6625rem 1rem;font-size:.875rem;line-height:1.2;border-radius:0;height:2.5rem}.cxd-Button--lg .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Button--lg>svg.icon:not(:last-child):not(.pull-right),.cxd-Button--lg>.pull-left{margin-right:1rem}.cxd-Button--lg .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Button--lg>.pull-right{margin-left:1rem}.cxd-Button--lg.cxd-Button--iconOnly{min-width:3.33333rem}.cxd-Button--iconOnly{min-width:2.5rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>.fa,.cxd-Button--iconOnly:not(.cxd-Button--link)>.iconfont{font-size:1rem}.cxd-Button--iconOnly:not(.cxd-Button--link)>.iconfont{line-height:1}.cxd-Button--link{width:auto;min-width:auto;font-weight:400;color:#108cee;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.cxd-Button--link:hover:focus{color:#209bfd;text-decoration:none;box-shadow:none}.cxd-Button--link:disabled,.cxd-Button--link.is-disabled{color:#999;pointer-events:none;background-color:transparent}.cxd-Button--block{display:block;width:100%}.cxd-Button--block+.cxd-Button--block{margin-top:.9375rem}input[type=submit].cxd-Button--block,input[type=reset].cxd-Button--block,input[type=button].cxd-Button--block{width:100%}.cxd-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.cxd-ButtonToolbar>.cxd-Button{margin-left:.3125rem;margin-top:.3125rem}.cxd-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .cxd-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.cxd-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.cxd-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:12.0625rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:0 solid #eceff8;border-radius:0}.cxd-Modal-content.in,.cxd-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.cxd-Modal-content.in{animation-name:modalIn}.cxd-Modal-content.out{animation-name:modalOut}.cxd-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.7);pointer-events:none;opacity:0}.cxd-Modal-overlay.in{opacity:1}.cxd-Modal-overlay.out{opacity:0}.cxd-Modal-header{padding:.59375rem 1.25rem;background-color:#f6f7fb;border-bottom:0;border-top-left-radius:0;border-top-right-radius:0}.cxd-Modal-header::before,.cxd-Modal-header::after{display:table;content:''}.cxd-Modal-header::after{clear:both}.cxd-Modal-title{font-size:.875rem;color:#333}.cxd-Modal-close{float:right;color:#999;line-height:inherit;text-decoration:none;vertical-align:middle}.cxd-Modal-close svg{width:.75rem;height:.75rem;fill:#999}.cxd-Modal-close:not(.is-disabled){cursor:pointer}.cxd-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#666}.cxd-Modal-close:not(.is-disabled):hover svg{fill:#666}.cxd-Modal-content>.cxd-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.cxd-Modal-body{padding:.9375rem 1.875rem 1.875rem;flex-basis:0;flex-grow:1}.cxd-Modal-header+.cxd-Modal-body{padding-top:1.875rem}.cxd-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.9375rem 0;border-top:.0625rem solid #eceff8;margin:0 1.875rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Modal-footer .cxd-Button{margin-left:.625rem}.cxd-Modal--2th .cxd-Modal-content{margin-top:5.625rem}.cxd-Modal--3th .cxd-Modal-content{margin-top:7.5rem}.cxd-Modal--4th .cxd-Modal-content{margin-top:9.375rem}.cxd-Modal--5th .cxd-Modal-content{margin-top:11.25rem}.cxd-Modal--6th .cxd-Modal-content{margin-top:13.125rem}.cxd-Modal--7th .cxd-Modal-content{margin-top:15rem}.cxd-Modal--8th .cxd-Modal-content{margin-top:16.875rem}.cxd-Modal--9th .cxd-Modal-content{margin-top:18.75rem}.cxd-Modal--10th .cxd-Modal-content{margin-top:20.625rem}@media (min-width:576px){.cxd-Modal-content{max-width:31.25rem}.cxd-Modal--sm .cxd-Modal-content{max-width:21.875rem}.cxd-Modal--base .cxd-Modal-content{max-width:31.25rem}.cxd-Modal--md .cxd-Modal-content{max-width:50rem}.cxd-Modal--lg .cxd-Modal-content{max-width:68.75rem}.cxd-Modal--xl .cxd-Modal-content{max-width:90%}}.cxd-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.cxd-Dialog-error{color:#ea2e2e}.cxd-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.cxd-Modal--full>.cxd-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.cxd-Modal--full>.cxd-Modal-content>.cxd-Modal-body{height:0;overflow:auto}.cxd-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.cxd-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #eceff8;border-radius:0;transition:transform ease-in-out .3s}.cxd-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.cxd-Drawer-overlay.in{opacity:1}.cxd-Drawer-header{padding:.9375rem;background-color:#f9f9f9;border-bottom:.0625rem solid #fff;border-top-left-radius:0;border-top-right-radius:0}.cxd-Drawer-header::before,.cxd-Drawer-header::after{display:table;content:''}.cxd-Drawer-header::after{clear:both}.cxd-Drawer-title{font-size:1rem;color:#333}.cxd-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.cxd-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.cxd-Drawer-close:not(.is-disabled){cursor:pointer}.cxd-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.cxd-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.cxd-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.cxd-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #fff;border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Drawer-footer .cxd-Button{margin-left:.3125rem}.cxd-Drawer-footer .cxd-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.cxd-Drawer-footer .cxd-Drawer-error{color:#ea2e2e}.cxd-Drawer.cxd-Drawer--noOverlay{pointer-events:none}.cxd-Drawer.cxd-Drawer--noOverlay .cxd-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.cxd-Drawer .cxd-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #eceff8;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.cxd-Drawer .cxd-Drawer-content{width:25rem;height:25rem}.cxd-Drawer--xs .cxd-Drawer-content{width:12.5rem;height:12.5rem}.cxd-Drawer--sm .cxd-Drawer-content{width:18.75rem;height:18.75rem}.cxd-Drawer--md .cxd-Drawer-content{width:31.25rem;height:31.25rem}.cxd-Drawer--lg .cxd-Drawer-content{width:50rem;height:50rem}.cxd-Drawer--xl .cxd-Drawer-content{width:90%;height:90%}}.cxd-Drawer--top .cxd-Drawer-content.in,.cxd-Drawer--right .cxd-Drawer-content.in,.cxd-Drawer--bottom .cxd-Drawer-content.in,.cxd-Drawer--left .cxd-Drawer-content.in{transform:translate3d(0,0,0)}.cxd-Drawer--top .cxd-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.cxd-Drawer--top.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.cxd-Drawer--top .cxd-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.cxd-Drawer--top .cxd-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.cxd-Drawer--right .cxd-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.cxd-Drawer--right.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.cxd-Drawer--right .cxd-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.cxd-Drawer--right .cxd-Drawer-footer{justify-content:flex-start}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Button{margin-left:0;margin-right:.3125rem}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.cxd-Drawer--right .cxd-Drawer-footer .cxd-Drawer-error{color:#ea2e2e}.cxd-Drawer--right .cxd-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.cxd-Drawer--bottom .cxd-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.cxd-Drawer--bottom.cxd-Drawer--noOverlay .cxd-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.cxd-Drawer--bottom .cxd-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.cxd-Drawer--bottom .cxd-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.cxd-Drawer--left .cxd-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.cxd-Drawer--left.cxd-Drawer--noOverlay .cxd-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.cxd-Drawer--left .cxd-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.cxd-Drawer--left .cxd-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.cxd-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#fff;border:.0625rem solid #eceff8;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.cxd-Tooltip-arrow::before,.cxd-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.cxd-Tooltip--top{margin-top:-.625rem}.cxd-Tooltip--top .cxd-Tooltip-arrow{bottom:-.5625rem}.cxd-Tooltip--top .cxd-Tooltip-arrow::before,.cxd-Tooltip--top .cxd-Tooltip-arrow::after{border-width:.5rem .5rem 0}.cxd-Tooltip--top .cxd-Tooltip-arrow::before{bottom:0;border-top-color:#eceff8}.cxd-Tooltip--top .cxd-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#fff}.cxd-Tooltip--right{margin-left:.625rem}.cxd-Tooltip--right .cxd-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.cxd-Tooltip--right .cxd-Tooltip-arrow::before,.cxd-Tooltip--right .cxd-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.cxd-Tooltip--right .cxd-Tooltip-arrow::before{left:0;border-right-color:#eceff8}.cxd-Tooltip--right .cxd-Tooltip-arrow::after{left:.0625rem;border-right-color:#fff}.cxd-Tooltip--bottom{margin-top:.625rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow{top:-.5625rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::before,.cxd-Tooltip--bottom .cxd-Tooltip-arrow::after{border-width:0 .5rem .5rem}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::before{top:0;border-bottom-color:#eceff8}.cxd-Tooltip--bottom .cxd-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#fff}.cxd-Tooltip--bottom .cxd-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #f7f7f7}.cxd-Tooltip--left{margin-left:-.625rem}.cxd-Tooltip--left .cxd-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.cxd-Tooltip--left .cxd-Tooltip-arrow::before,.cxd-Tooltip--left .cxd-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.cxd-Tooltip--left .cxd-Tooltip-arrow::before{right:0;border-left-color:#eceff8}.cxd-Tooltip--left .cxd-Tooltip-arrow::after{right:.0625rem;border-left-color:#fff}.cxd-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#333;background-color:#f7f7f7;border-bottom:.0625rem solid #ebebeb;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.cxd-Tooltip-title:empty{display:none}.cxd-Tooltip-body{color:#666;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.cxd-PopOver{position:absolute;background:#fff;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border:.0625rem solid #eceff8;border-radius:.142rem}.cxd-PopOver>*{position:relative;z-index:2}.cxd-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.cxd-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.3125rem .9375rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:0;border:.0625rem solid;color:#fff;position:relative;opacity:1;cursor:pointer;opacity:0;transform:translateZ(0)}.cxd-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.cxd-Toast.in,.cxd-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.cxd-Toast.in{animation-name:bounceIn}.cxd-Toast.out{animation-name:bounceOut}.cxd-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#999;line-height:1;opacity:.8}.cxd-Toast-close:hover{color:#108cee;opacity:1}.cxd-Toast-title{display:inline;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.cxd-Toast-body{display:inline;vertical-align:middle}.cxd-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin-right:.3125rem}.cxd-Toast-icon>svg{top:0;width:1rem;height:1rem;color:inherit}.cxd-Toast--error{color:#ea2e2e;border-color:#ea2e2e;background-color:#fff5f5}.cxd-Toast--warning{color:#f39000;border-color:#f39000;background-color:#fcf7f1}.cxd-Toast--info{color:#108cee;border-color:#108cee;background-color:#eaf6fe}.cxd-Toast--success{color:#5fb333;border-color:#5fb333;background-color:#f1fdeb}.cxd-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.cxd-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.cxd-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.cxd-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.cxd-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.cxd-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.cxd-Alert{font-size:.75rem;box-shadow:none;padding:.3125rem 1.25rem;border:.0625rem solid transparent;border-radius:0;margin-bottom:1.25rem}.cxd-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.cxd-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.cxd-Alert--danger{color:#333;background-color:#fff5f5;border-color:transparent}.cxd-Alert--info{color:#333;background-color:#eaf6fe;border-color:transparent}.cxd-Alert--success{color:#333;background-color:#f1fdeb;border-color:transparent}.cxd-Alert--warning{color:#333;background-color:#fcf7f1;border-color:transparent}.cxd-ArrayInput-placeholder{color:#999;padding-top:.40179rem}.cxd-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.625rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.cxd-ArrayInput-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.cxd-ArrayInput-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.cxd-ArrayInput-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-ArrayInput-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-ArrayInput-addBtn.is-disabled,.cxd-ArrayInput-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.cxd-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.cxd-ArrayInput-toolbar--dnd{padding-left:29px}.cxd-ArrayInput-sortTip{color:#999}.cxd-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.cxd-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.cxd-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.cxd-ArrayInput-item--dragging{position:relative;opacity:.4}.cxd-ArrayInput-itemRemove,.cxd-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.40179rem .3125rem;cursor:pointer}.cxd-ArrayInput-itemRemove>svg,.cxd-ArrayInput-itemDrager>svg{color:#999}.cxd-ArrayInput-itemRemove:hover>svg,.cxd-ArrayInput-itemDrager:hover>svg{color:#108cee}.cxd-ArrayInput-itemDrager{cursor:move}.cxd-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #eceff8;list-style:none;user-select:none}.cxd-Tabs-links::before,.cxd-Tabs-links::after{display:table;content:''}.cxd-Tabs-links::after{clear:both}.cxd-Tabs-links>.cxd-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.cxd-Tabs-links>.cxd-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#666;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.cxd-Tabs-links>.cxd-Tabs-link>.cxd-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.cxd-Tabs-links>.cxd-Tabs-link:hover>.cxd-Combo-toolbarBtn{display:block}.cxd-Tabs-links>.cxd-Tabs-link:hover>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link>a:first-child:focus{border-color:#e9ecef;text-decoration:none}.cxd-Tabs-links>.cxd-Tabs-link.disabled,.cxd-Tabs-links>.cxd-Tabs-link.is-disabled{cursor:not-allowed}.cxd-Tabs-links>.cxd-Tabs-link.disabled>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.cxd-Tabs-links>.cxd-Tabs-link.active>a:first-child,.cxd-Tabs-links>.cxd-Tabs-link.is-active>a:first-child{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:transparent}.cxd-Tabs-content{background-color:#fff;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#eceff8}.cxd-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.cxd-Tabs-pane.is-active{display:block}.cxd-Tabs-pane.in{opacity:1}.cxd-Tabs--line>.cxd-Tabs-links{border-bottom-color:#eceff8}.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--line>.cxd-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.cxd-Tabs--line>.cxd-Tabs-links>li:last-child>a{margin:0}.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--line>.cxd-Tabs-links>li.is-active>a:first-child:focus{border-color:#108cee;color:#108cee;background-color:transparent}.cxd-Tabs--line>.cxd-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.cxd-Tabs--card>.cxd-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#f5f5f5;border-top:.0625rem solid #eceff8}.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--card>.cxd-Tabs-links>li.is-active>a:first-child:focus{border-color:#fff;color:#108cee;border-bottom-color:#fff;background-color:#fff}.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--card>.cxd-Tabs-links>li>a:first-child:focus{color:#666;background-color:#fff;border-bottom-color:transparent}.cxd-Tabs--card>.cxd-Tabs-content{border-width:0}.cxd-Tabs--radio>.cxd-Tabs-links{border:0;margin-bottom:.625rem}.cxd-Tabs--radio>.cxd-Tabs-links>li{margin:0}.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#eceff8;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#fff}.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--radio>.cxd-Tabs-links>li>a:first-child:focus{color:#108cee}.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--radio>.cxd-Tabs-links>li.is-active>a:first-child:focus{color:#fff;background-color:#108cee;border-color:#108cee;position:relative;z-index:1}.cxd-Tabs--radio>.cxd-Tabs-links>li+li{margin-left:-1px}.cxd-Tabs--radio>.cxd-Tabs-content{border-top:.0625rem solid #eceff8}.cxd-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #eceff8;border-radius:0}.cxd-Tabs--vertical>.cxd-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.cxd-Tabs--vertical>.cxd-Tabs-links>li{margin:0 0 0 -1px;display:block}.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child:hover,.cxd-Tabs--vertical>.cxd-Tabs-links>li>a:first-child:focus{color:#108cee;border-color:transparent}.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child,.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child:hover,.cxd-Tabs--vertical>.cxd-Tabs-links>li.is-active>a:first-child:focus{color:#108cee;border-color:#108cee}.cxd-Tabs--vertical>.cxd-Tabs-content{border:0;flex-grow:1}.cxd-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.cxd-Nav{list-style:none;user-select:none;margin:0;padding:0}.cxd-Nav .cxd-Nav-itemIcon{margin-right:.3125rem}.cxd-Nav--tabs{border-bottom:.0625rem solid #eceff8}.cxd-Nav--tabs .cxd-Nav-item{margin-bottom:-.0625rem;display:inline-block}.cxd-Nav--tabs .cxd-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#666;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.cxd-Nav--tabs .cxd-Nav-item:hover>a,.cxd-Nav--tabs .cxd-Nav-item>a:focus{border-color:#e9ecef;text-decoration:none}.cxd-Nav--tabs .cxd-Nav-item.disabled>a,.cxd-Nav--tabs .cxd-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.cxd-Nav--tabs .cxd-Nav-item.active>a,.cxd-Nav--tabs .cxd-Nav-item.is-active>a{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:#fff}.cxd-Nav--stacked .cxd-Nav-item{position:relative}.cxd-Nav--stacked .cxd-Nav-item>a{display:block;outline:0;color:#666;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:0}.cxd-Nav--stacked .cxd-Nav-item:hover>a,.cxd-Nav--stacked .cxd-Nav-item>a:focus{border-color:#333;text-decoration:none;background-color:rgba(0,0,0,.05)}.cxd-Nav--stacked .cxd-Nav-item.disabled>a,.cxd-Nav--stacked .cxd-Nav-item.is-disabled>a{color:#999;background-color:transparent;pointer-events:none}.cxd-Nav--stacked .cxd-Nav-item.active>a,.cxd-Nav--stacked .cxd-Nav-item.is-active>a{color:#108cee;background-color:#f6f7fb;border-left:.25rem solid #108cee;padding-left:.75rem}.cxd-Nav--stacked .cxd-Nav-item.is-unfolded .cxd-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.cxd-Nav--stacked .cxd-Nav-item.is-unfolded .cxd-Nav-subItems{display:block}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler>svg{width:10px;height:10px;top:0}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-subItems{display:none;padding-left:0;list-style:none}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item{font-size:.75rem}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item.active>a:before,.cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item.is-active>a:before{background-color:#108cee}.cxd-Page{width:100%}.cxd-Page-header{padding:.625rem 1.25rem}.cxd-Page-main{background:#fff;height:100%;display:flex;flex-direction:column}.cxd-Page-content{padding:0}.cxd-Page-main>.cxd-Page-header{border-bottom:.0625rem solid #eceff8}.cxd-Page-headerRow{border-bottom:.0625rem solid #eceff8;display:flex;flex-direction:row;align-items:center}.cxd-Page-headerRow .cxd-Page-header,.cxd-Page-headerRow .cxd-Page-toolbar{flex-grow:1}.cxd-Page-headerRow .cxd-Page-toolbar{text-align:right;padding-right:.9375rem}.cxd-Page-title{margin:0;padding:0;color:#000;line-height:1.75;font-size:1rem;font-weight:400}.cxd-Page-body{padding:1.25rem;flex:1 auto}.cxd-Page-asideTplWrapper{padding:.3125rem}.cxd-Page-toolbar .cxd-Button+.cxd-Button{margin-left:.3125rem}.cxd-Page-aside{background-color:#fff}@media (min-width:768px){.cxd-Page-aside{width:10rem;max-width:18.75rem;border-right:.0625rem solid #eceff8}.cxd-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.cxd-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.cxd-Page--withSidebar>.cxd-Page-content{width:0;flex-grow:1}}.cxd-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.cxd-Remark-icon{color:#999;font-size:.75rem;background-color:#fff;border:.0625rem solid #999;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.cxd-Remark:hover>.cxd-Remark-icon{color:#fff;background-color:#f38900;border-color:#f38900}.cxd-Remark>svg{width:.875rem;height:.875rem;color:#999}.cxd-Remark:hover>svg{color:#fff}.cxd-Chart{min-width:300px;min-height:300px;position:relative}.cxd-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.cxd-Video{min-width:200px}.cxd-Video-cursor{position:absolute;border:2px solid #108cee;transition:all .5s ease-out}.cxd-Video-frameList .cxd-Video-frameItem{cursor:pointer}.cxd-Video-frameLabel{text-align:center}.cxd-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.cxd-Audio-original{display:none}.cxd-Audio--inline{display:inline-block}.cxd-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.cxd-Audio-controls{display:flex;flex-direction:row;align-items:center}.cxd-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.cxd-Audio-rateControl{margin-right:.625rem}.cxd-Audio-rateControl::after{clear:both;content:''}.cxd-Audio-rateControl .cxd-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.cxd-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.cxd-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.cxd-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.cxd-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.cxd-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.cxd-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.cxd-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.cxd-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.cxd-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.cxd-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.cxd-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.cxd-Audio-volumeControl .cxd-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.cxd-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.cxd-Panel{margin-bottom:1.25rem;background-color:#fff;border:.0625rem solid transparent;border-radius:0;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.cxd-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -2px 10px 0 rgba(0,0,0,.05);border-top:0}.cxd-Panel-fixedBottom.in{position:fixed;bottom:0}.cxd-Panel--default{border-color:#eceff8}.cxd-Panel--default>.cxd-Panel-heading{background:#f6f8f8;color:#666}.cxd-Panel--default>.cxd-Panel-heading .badge{color:#f5f5f5;background:#333}.cxd-Panel--default>.cxd-Panel-heading{border-color:#eceff8}.cxd-Panel--primary{border-color:#108cee}.cxd-Panel--primary>.cxd-Panel-heading{background:#108cee;color:#fff}.cxd-Panel--primary>.cxd-Panel-heading .badge{color:#108cee;background:#fff}.cxd-Panel--primary>.cxd-Panel-heading,.cxd-Panel--primary>.cxd-Panel-footer{border-color:#108cee}.cxd-Panel--success{border-color:#5fb333}.cxd-Panel--success>.cxd-Panel-heading{background:#5fb333;color:#fff}.cxd-Panel--success>.cxd-Panel-heading .badge{color:#5fb333;background:#fff}.cxd-Panel--success>.cxd-Panel-heading,.cxd-Panel--success>.cxd-Panel-footer{border-color:#5fb333}.cxd-Panel--info{border-color:#108cee}.cxd-Panel--info>.cxd-Panel-heading{background:#108cee;color:#fff}.cxd-Panel--info>.cxd-Panel-heading .badge{color:#108cee;background:#fff}.cxd-Panel--info>.cxd-Panel-heading,.cxd-Panel--info>.cxd-Panel-footer{border-color:#108cee}.cxd-Panel--warning{border-color:#f39000}.cxd-Panel--warning>.cxd-Panel-heading{background:#f39000;color:#fff}.cxd-Panel--warning>.cxd-Panel-heading .badge{color:#f39000;background:#fff}.cxd-Panel--warning>.cxd-Panel-heading,.cxd-Panel--warning>.cxd-Panel-footer{border-color:#f39000}.cxd-Panel--danger{border-color:#ea2e2e}.cxd-Panel--danger>.cxd-Panel-heading{background:#ea2e2e;color:#fff}.cxd-Panel--danger>.cxd-Panel-heading .badge{color:#ea2e2e;background:#fff}.cxd-Panel--danger>.cxd-Panel-heading,.cxd-Panel--danger>.cxd-Panel-footer{border-color:#ea2e2e}.cxd-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.cxd-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.cxd-Panel-body{padding:.9375rem}.cxd-Panel-footer{border-color:#fff;border-radius:0 0 .125rem .125rem;background:#fff;padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.cxd-Panel-footer .cxd-Button+.cxd-Button{margin-left:.625rem}.cxd-Panel-btnToolbar{text-align:right}.cxd-Panel-btnToolbar::before,.cxd-Panel-btnToolbar::after{display:table;content:''}.cxd-Panel-btnToolbar::after{clear:both}.cxd-Panel-btnToolbar .cxd-Button{margin-left:.625rem}.cxd-Panel-btnToolbar:empty{display:none}.cxd-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.cxd-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.cxd-Spinner-overlay.in{opacity:1}.cxd-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url(https://bce.bdstatic.com/fex/amis-gh-pages/scss/themes/spinner-cxd_c22891d.svg);background-size:100%;transition:ease-out all .3s}.cxd-Spinner--lg{width:3.125rem;height:3.125rem}.cxd-Spinner--sm{width:1rem;height:1rem}.cxd-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.cxd-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.cxd-Spinner--overlay.cxd-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.cxd-Layout .cxd-Page-body>.cxd-Spinner-overlay{left:11.25rem}.cxd-Layout--folded .cxd-Page-body>.cxd-Spinner-overlay{left:3.75rem}}.cxd-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.cxd-ButtonGroup>.cxd-Button{position:relative;flex:0 1 auto}.cxd-ButtonGroup>.cxd-Button:hover{z-index:1}.cxd-ButtonGroup>.cxd-Button:focus,.cxd-ButtonGroup>.cxd-Button:active,.cxd-ButtonGroup>.cxd-Button.active,.cxd-ButtonGroup>.cxd-Button.is-active{z-index:1}.cxd-ButtonGroup .cxd-Button+.cxd-Button,.cxd-ButtonGroup .cxd-Button+.cxd-ButtonGroup,.cxd-ButtonGroup .cxd-ButtonGroup+.cxd-Button,.cxd-ButtonGroup .cxd-ButtonGroup+.cxd-ButtonGroup{margin-left:-.0625rem}.cxd-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.cxd-ButtonToolbar .cxd-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.cxd-ButtonGroup>.cxd-Button:first-child{margin-left:0}.cxd-ButtonGroup .cxd-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#fff}.cxd-ButtonGroup>.cxd-Button:not(:last-child),.cxd-ButtonGroup>.cxd-ButtonGroup:not(:last-child)>.cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-ButtonGroup>.cxd-Button:not(:first-child),.cxd-ButtonGroup>.cxd-ButtonGroup:not(:first-child)>.cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.cxd-ButtonGroup--vertical .cxd-Button,.cxd-ButtonGroup--vertical .cxd-ButtonGroup{width:100%}.cxd-ButtonGroup--vertical>.cxd-Button+.cxd-Button,.cxd-ButtonGroup--vertical>.cxd-Button+.cxd-ButtonGroup,.cxd-ButtonGroup--vertical>.cxd-ButtonGroup+.cxd-Button,.cxd-ButtonGroup--vertical>.cxd-ButtonGroup+.cxd-ButtonGroup{margin-top:-.0625rem;margin-left:0}.cxd-ButtonGroup--vertical>.cxd-Button:not(:last-child),.cxd-ButtonGroup--vertical>.cxd-ButtonGroup:not(:last-child)>.cxd-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-ButtonGroup--vertical>.cxd-Button:not(:first-child),.cxd-ButtonGroup--vertical>.cxd-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.cxd-ButtonGroupControl{display:inline-block}.cxd-ButtonGroupControl>.cxd-ButtonGroup--sm{margin-top:0rem}.cxd-ButtonGroupControl>.cxd-ButtonGroup--xs{margin-top:.25rem}.cxd-DropDown{position:relative;display:inline-block}.cxd-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.cxd-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.cxd-DropDown.is-opened .cxd-DropDown-caret{transform:rotate(180deg)}.cxd-DropDown--block{display:block}.cxd-DropDown--block .cxd-Button{display:block}.cxd-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#fff;list-style:none;padding:.3125rem 0;border:.0625rem solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);min-width:10rem;text-align:left}.cxd-DropDown--alignRight .cxd-DropDown-menu{left:auto;right:0}.cxd-DropDown-menuItem,.cxd-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.cxd-DropDown-menuItem:hover,.cxd-DropDown-menu>li:hover{background-color:#eaf6fe;color:inherit}.cxd-DropDown-menuItem:not(.is-disabled),.cxd-DropDown-menuItem:not(.disabled),.cxd-DropDown-menu>li:not(.is-disabled),.cxd-DropDown-menu>li:not(.disabled){cursor:pointer}.cxd-DropDown-menuItem.cxd-DropDown-divider,.cxd-DropDown-menu>li.cxd-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#eceff8;padding:0}.cxd-DropDown-menu>li a{display:block;text-decoration:none}.cxd-DropDown-popover{border:0;box-shadow:none}.cxd-DropDown>.cxd-Button{min-width:unset}.cxd-Collapse{border:0;padding:0;margin-bottom:1.25rem}.cxd-Collapse-header{font-size:1rem;font-weight:400;color:#333;padding:.3125rem 0;border-bottom:.0625rem solid #fff}.cxd-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.cxd-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#666;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.cxd-Collapse.is-collapsed .cxd-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.cxd-Collapse--collapsable .cxd-Collapse-header{user-select:none}.cxd-Collapse-content{transition:height .35s ease}.cxd-Collapse-content.in,.cxd-Collapse-content.out{height:0;overflow:hidden}.cxd-ColorField{display:inline-block}.cxd-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075);background-color:#ccc}.cxd-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.cxd-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.cxd-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.cxd-ContextMenu-menu.in,.cxd-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.cxd-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.cxd-ContextMenu-menu.out{animation-name:contextMenuOut}.cxd-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.cxd-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.cxd-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.cxd-ContextMenu-item{position:relative}.cxd-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.cxd-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.cxd-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.cxd-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.cxd-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.cxd-ContextMenu-itemIcon{margin-right:5px}.cxd-ContextMenu-subList{display:none;list-style:none}.cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.cxd-ContextMenu--left .cxd-ContextMenu-item:hover>.cxd-ContextMenu-subList{left:auto;right:100%}.cxd-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.cxd-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.cxd-Wizard{position:relative}.cxd-Wizard::before,.cxd-Wizard::after{display:table;content:''}.cxd-Wizard::after{clear:both}.cxd-Wizard,.cxd-Wizard-tabs{padding:0}.cxd-Wizard .cxd-Badge,.cxd-Wizard-tabs .cxd-Badge{display:inline-block;width:1.625rem;height:1.625rem;font-size:.875rem;line-height:1.625rem;color:#999;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#fff;border-radius:50%;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.375rem;border:.0625rem solid #999;box-sizing:content-box}.cxd-Wizard .cxd-Badge.is-active,.cxd-Wizard-tabs .cxd-Badge.is-active{color:#fff;background-color:#333}.cxd-Wizard ul li.active,.cxd-Wizard-tabs ul li.active{color:#108cee}.cxd-Wizard .cxd-Panel-footer>.cxd-Form-group,.cxd-Wizard .cxd-Panel-footer>.btn,.cxd-Wizard-tabs .cxd-Panel-footer>.cxd-Form-group,.cxd-Wizard-tabs .cxd-Panel-footer>.btn{margin-left:.3125rem}.cxd-Wizard>ul.nav,.cxd-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #eceff8}.cxd-Wizard>ul.nav li,.cxd-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:3.75rem;line-height:3.75rem}.cxd-Wizard>ul.nav li a,.cxd-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.cxd-Wizard>ul.nav li a div,.cxd-Wizard-tabs>ul.nav li a div{display:inline}.cxd-Wizard>ul.nav li:first-child,.cxd-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.cxd-Wizard>ul.nav li:before,.cxd-Wizard>ul.nav li:after,.cxd-Wizard-tabs>ul.nav li:before,.cxd-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #eceff8;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.cxd-Wizard>ul.nav li:after,.cxd-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#fff;z-index:2}.cxd-Wizard>ul.nav li.is-active,.cxd-Wizard-tabs>ul.nav li.is-active{color:#333;background:#fff}.cxd-Wizard>ul.nav li.is-active:after,.cxd-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.cxd-Wizard-steps{font-size:.875rem;padding:.625rem 0;background-color:#fff;border-bottom:0 solid #eceff8;text-align:center}.cxd-Wizard-steps::before,.cxd-Wizard-steps::after{display:table;content:''}.cxd-Wizard-steps::after{clear:both}.cxd-Wizard-steps ul{display:inline-block;padding:0;margin:0;list-style:none outside none}.cxd-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:3.75rem;line-height:3.75rem}.cxd-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.cxd-Wizard-steps ul li:before,.cxd-Wizard-steps ul li:after{font-family:iconfont;content:'\e6ee';position:absolute;bottom:0;right:-.625rem;border:0!important;border-right:0;border-left:.625rem solid #eceff8;border-left-color:rgba(0,0,0,.05);z-index:2}.cxd-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#fff;z-index:2}.cxd-Wizard-steps ul li.is-active{color:#333;background:#fff}.cxd-Wizard-steps ul li.is-active:after{border-left-color:#fff}.cxd-Wizard-steps ul li.is-complete,.cxd-Wizard-steps ul li.is-complete:hover{color:#333;cursor:pointer;background:#fff}.cxd-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.cxd-Wizard-stepContent{padding:.9375rem}.cxd-Wizard-stepContent .Step-pane{display:none}.cxd-Wizard-stepContent .Step-pane.is-active{display:inherit}.cxd-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.cxd-Wizard--vertical.cxd-Wizard-steps{height:auto}.cxd-Wizard--vertical+.cxd-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.cxd-Wizard--vertical li{background-color:#fff}.cxd-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #eceff8;padding-left:.9375rem}.cxd-Wizard--vertical+.cxd-Wizard-stepContent+.cxd-Panel-footer{clear:both}.cxd-Crud{position:relative}.cxd-Crud-selection{margin-bottom:.9375rem}.cxd-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.cxd-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.cxd-Crud-value:hover{background-color:#b5dcfb}.cxd-Crud-value.is-disabled{pointer-events:none;opacity:1}.cxd-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Crud-valueIcon:hover{background-color:#b5dcfb}.cxd-Crud-valueLabel{padding:0 .3125rem}.cxd-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.cxd-Crud-toolbar-item{margin-left:.625rem;margin-top:.625rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.cxd-Crud-toolbar-item--left{float:left}.cxd-Crud-toolbar-item--right{float:right}.cxd-Crud-actions>*+.cxd-Button,.cxd-Crud-actions>*+.cxd-ButtonGroup,.cxd-Crud-actions>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Crud-statistics{line-height:1.875rem;vertical-align:middle}.cxd-Crud-pageSwitch .cxd-Select{margin-left:.625rem}.cxd-Crud-pager{align-self:flex-start}@media (min-width:576px){.cxd-Crud-toolbar{margin-left:-.625rem;margin-top:-.625rem;flex-basis:0;flex-grow:1}.cxd-Crud-toolbar::before,.cxd-Crud-toolbar::after{display:table;content:''}.cxd-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.625rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.cxd-Button+.cxd-Button{margin-left:.625rem}}.cxd-Table{position:relative;background:#fff;border:.0625rem solid #f5f5f5;border-radius:.142rem;margin-bottom:1.25rem}.cxd-Form-control>.cxd-Table{margin-bottom:.625rem}.cxd-Table-fixedLeft,.cxd-Table-fixedRight{position:absolute;background:#fff;z-index:5;top:-999999px}.cxd-Table-fixedLeft.in,.cxd-Table-fixedRight.in{top:auto}.cxd-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(0,0,0,.15);left:0}.cxd-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(0,0,0,.15);right:0}.cxd-Table-fixedRight .cxd-Table-table>thead>tr>th:first-child,.cxd-Table-fixedRight .cxd-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.cxd-Table-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-Table-fixedTop>.cxd-Table-fixedLeft,.cxd-Table-fixedTop>.cxd-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #f5f5f5}.cxd-Table-fixedTop>.cxd-Table-fixedLeft>table,.cxd-Table-fixedTop>.cxd-Table-fixedRight>table{margin-bottom:.3125rem}.cxd-Table-fixedTop>.cxd-Table-heading{border-bottom:0}.cxd-Table-fixedTop>.cxd-Table-wrapper{border-top:.0625rem solid #f5f5f5}.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-fixedLeft,.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-fixedRight,.cxd-Table-fixedTop.is-fakeHide>.cxd-Table-wrapper{visibility:hidden;position:absolute}.cxd-Table-heading{background:#fff;border-bottom:.0625rem solid #f5f5f5;padding:.6875rem .625rem}.cxd-Table--unsaved .cxd-Table-heading{background:#e8f0fe;color:#4285f4}.cxd-Table-wrapper{overflow:hidden}.cxd-Table-placeholder{color:#999;text-align:center;height:6.25rem;background-color:transparent!important}.cxd-Table-placeholder:hover{color:#999;background-color:transparent!important}.cxd-Table-placeholder>td{vertical-align:middle!important;text-align:center}.cxd-Table-header{padding:.625rem}.cxd-Table-header>*+.cxd-Button,.cxd-Table-header>*+.cxd-ButtonGroup,.cxd-Table-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.cxd-Table-toolbar::before,.cxd-Table-toolbar::after{display:table;content:''}.cxd-Table-toolbar::after{clear:both}.cxd-Table-toolbar .cxd-DropDown-menuItem{height:auto}.cxd-Table-toolbar .cxd-DropDown-menuItem .cxd-Checkbox{display:flex;align-items:center}.cxd-Table-header+.cxd-Table-toolbar{padding-top:0}.cxd-Table-contentWrap{position:relative}.cxd-Table-header+.cxd-Table-contentWrap,.cxd-Table-toolbar+.cxd-Table-contentWrap{border-top:.0625rem solid #f5f5f5}.cxd-Table-footToolbar{border-top:.0625rem solid #f5f5f5}.cxd-Table-actions{display:inline-block}.cxd-Table-actions>*{margin-right:.625rem}.cxd-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.cxd-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.75rem;color:#333;background-color:#fff;border-spacing:0;border-collapse:collapse}.cxd-Table-table--withCombine>thead>tr>th:first-child,.cxd-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.cxd-Table-table--withCombine>thead>tr>th:last-child,.cxd-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.cxd-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.cxd-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.cxd-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #f5f5f5}.cxd-Table-table>thead>tr>th{background-color:#f5f5f5;padding:.625rem;border-bottom:.0625rem solid #fff;font-size:.875rem;color:#333;font-weight:400;white-space:nowrap}.cxd-Table-table>thead>tr>th[colspan]{text-align:center}.cxd-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.cxd-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.cxd-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #fff}.cxd-Table-table>thead>tr>th .cxd-TableCell--title{display:flex;align-items:center}.cxd-Table-table>thead>tr>th .cxd-Remark{margin-left:.3125rem}.cxd-Table-table>thead>tr+tr{border-top:.0625rem solid #f5f5f5}.cxd-Table-table>thead>tr{border-bottom:.0625rem solid #f5f5f5}.cxd-Table-table>tbody>tr+tr{border-top:.0625rem solid #f5f5f5}.cxd-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #fff}.cxd-Table-table>tbody>tr>th{background-color:#f5f5f5;color:#333;font-weight:400;white-space:nowrap;border-right:.0625rem solid #fff}.cxd-Table-table>tbody>tr>td,.cxd-Table-table>tbody>tr>th{padding:.625rem;vertical-align:top}.cxd-Table-table>tbody>tr>td:first-child,.cxd-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.cxd-Table-table>tbody>tr>td:last-child,.cxd-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.cxd-Table-table>tbody>tr:hover,.cxd-Table-table>tbody>tr.is-hovered{background-color:#f5fbff;border-color:#eceff8;color:#666}.cxd-Table-table>tbody>tr:hover+tr,.cxd-Table-table>tbody>tr.is-hovered+tr{border-color:#eceff8}.cxd-Table-table>tbody>tr.is-checked{background-color:transparent;border-color:#eceff8;color:#333}.cxd-Table-table>tbody>tr.is-checked+tr{border-color:#eceff8}.cxd-Table-table>tbody>tr.is-moved,.cxd-Table-table>tbody>tr.is-modified{background-color:#e8f0fe;border-color:#d0e0fd;color:#4285f4}.cxd-Table-table>tbody>tr.is-moved+tr,.cxd-Table-table>tbody>tr.is-modified+tr{border-color:#d0e0fd}.cxd-Table-table>tbody>tr.bg-light{background-color:#eaf6fe;color:#666}.cxd-Table-table>tbody>tr.bg-light.lt,.cxd-Table-table>tbody>tr.bg-light .lt{background-color:#f4fafe}.cxd-Table-table>tbody>tr.bg-light.lter,.cxd-Table-table>tbody>tr.bg-light .lter{background-color:#f9fcff}.cxd-Table-table>tbody>tr.bg-light.dk,.cxd-Table-table>tbody>tr.bg-light .dk{background-color:#dbf0fe}.cxd-Table-table>tbody>tr.bg-light.dker,.cxd-Table-table>tbody>tr.bg-light .dker{background-color:#d0ecfe}.cxd-Table-table>tbody>tr.bg-light.bg,.cxd-Table-table>tbody>tr.bg-light .bg{background-color:#eaf6fe}.cxd-Table-table>tbody>tr.bg-dark{background-color:#343a40;color:#a0a0a0}.cxd-Table-table>tbody>tr.bg-dark.lt,.cxd-Table-table>tbody>tr.bg-dark .lt{background-color:#41474c}.cxd-Table-table>tbody>tr.bg-dark.lter,.cxd-Table-table>tbody>tr.bg-dark .lter{background-color:#4f5458}.cxd-Table-table>tbody>tr.bg-dark.dk,.cxd-Table-table>tbody>tr.bg-dark .dk{background-color:#272d33}.cxd-Table-table>tbody>tr.bg-dark.dker,.cxd-Table-table>tbody>tr.bg-dark .dker{background-color:#1c2125}.cxd-Table-table>tbody>tr.bg-dark.bg,.cxd-Table-table>tbody>tr.bg-dark .bg{background-color:#343a40}.cxd-Table-table>tbody>tr.bg-dark a,.cxd-Table-table>tbody>tr.bg-dark .cxd-Button--link{color:#b9baba}.cxd-Table-table>tbody>tr.bg-dark a:hover,.cxd-Table-table>tbody>tr.bg-dark .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-dark .open>a,.cxd-Table-table>tbody>tr.bg-dark .open>a:hover,.cxd-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-dark .text-muted{color:#868787!important}.cxd-Table-table>tbody>tr.bg-dark .text-lt{color:#e0e0e0!important}.cxd-Table-table>tbody>tr.bg-black{background-color:#000;color:#666}.cxd-Table-table>tbody>tr.bg-black.lt,.cxd-Table-table>tbody>tr.bg-black .lt{background-color:#0d0d0d}.cxd-Table-table>tbody>tr.bg-black.lter,.cxd-Table-table>tbody>tr.bg-black .lter{background-color:#1a1a1a}.cxd-Table-table>tbody>tr.bg-black.dk,.cxd-Table-table>tbody>tr.bg-black .dk{background-color:#000}.cxd-Table-table>tbody>tr.bg-black.dker,.cxd-Table-table>tbody>tr.bg-black .dker{background-color:#000}.cxd-Table-table>tbody>tr.bg-black.bg,.cxd-Table-table>tbody>tr.bg-black .bg{background-color:#000}.cxd-Table-table>tbody>tr.bg-black a,.cxd-Table-table>tbody>tr.bg-black .cxd-Button--link{color:gray}.cxd-Table-table>tbody>tr.bg-black a:hover,.cxd-Table-table>tbody>tr.bg-black .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-black .open>a,.cxd-Table-table>tbody>tr.bg-black .open>a:hover,.cxd-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-black .text-muted{color:#4d4d4d!important}.cxd-Table-table>tbody>tr.bg-black .text-lt{color:#a6a6a6!important}.cxd-Table-table>tbody>tr.bg-primary{background-color:#108cee;color:#d1e7f9}.cxd-Table-table>tbody>tr.bg-primary.lt,.cxd-Table-table>tbody>tr.bg-primary .lt{background-color:#2a97ee}.cxd-Table-table>tbody>tr.bg-primary.lter,.cxd-Table-table>tbody>tr.bg-primary .lter{background-color:#44a2ed}.cxd-Table-table>tbody>tr.bg-primary.dk,.cxd-Table-table>tbody>tr.bg-primary .dk{background-color:#0c7ed9}.cxd-Table-table>tbody>tr.bg-primary.dker,.cxd-Table-table>tbody>tr.bg-primary .dker{background-color:#0870c3}.cxd-Table-table>tbody>tr.bg-primary.bg,.cxd-Table-table>tbody>tr.bg-primary .bg{background-color:#108cee}.cxd-Table-table>tbody>tr.bg-primary a,.cxd-Table-table>tbody>tr.bg-primary .cxd-Button--link{color:#feffff}.cxd-Table-table>tbody>tr.bg-primary a:hover,.cxd-Table-table>tbody>tr.bg-primary .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-primary .open>a,.cxd-Table-table>tbody>tr.bg-primary .open>a:hover,.cxd-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-primary .text-muted{color:#a4d0f3!important}.cxd-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-success{background-color:#5fb333;color:#d4eac8}.cxd-Table-table>tbody>tr.bg-success.lt,.cxd-Table-table>tbody>tr.bg-success .lt{background-color:#6bc33c}.cxd-Table-table>tbody>tr.bg-success.lter,.cxd-Table-table>tbody>tr.bg-success .lter{background-color:#7ac653}.cxd-Table-table>tbody>tr.bg-success.dk,.cxd-Table-table>tbody>tr.bg-success .dk{background-color:#54a22b}.cxd-Table-table>tbody>tr.bg-success.dker,.cxd-Table-table>tbody>tr.bg-success .dker{background-color:#499023}.cxd-Table-table>tbody>tr.bg-success.bg,.cxd-Table-table>tbody>tr.bg-success .bg{background-color:#5fb333}.cxd-Table-table>tbody>tr.bg-success a,.cxd-Table-table>tbody>tr.bg-success .cxd-Button--link{color:#f1f8ed}.cxd-Table-table>tbody>tr.bg-success a:hover,.cxd-Table-table>tbody>tr.bg-success .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-success .open>a,.cxd-Table-table>tbody>tr.bg-success .open>a:hover,.cxd-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-success .text-muted{color:#b6dca3!important}.cxd-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-info{background-color:#108cee;color:#d1e7f9}.cxd-Table-table>tbody>tr.bg-info.lt,.cxd-Table-table>tbody>tr.bg-info .lt{background-color:#2a97ee}.cxd-Table-table>tbody>tr.bg-info.lter,.cxd-Table-table>tbody>tr.bg-info .lter{background-color:#44a2ed}.cxd-Table-table>tbody>tr.bg-info.dk,.cxd-Table-table>tbody>tr.bg-info .dk{background-color:#0c7ed9}.cxd-Table-table>tbody>tr.bg-info.dker,.cxd-Table-table>tbody>tr.bg-info .dker{background-color:#0870c3}.cxd-Table-table>tbody>tr.bg-info.bg,.cxd-Table-table>tbody>tr.bg-info .bg{background-color:#108cee}.cxd-Table-table>tbody>tr.bg-info a,.cxd-Table-table>tbody>tr.bg-info .cxd-Button--link{color:#feffff}.cxd-Table-table>tbody>tr.bg-info a:hover,.cxd-Table-table>tbody>tr.bg-info .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-info .open>a,.cxd-Table-table>tbody>tr.bg-info .open>a:hover,.cxd-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-info .text-muted{color:#a4d0f3!important}.cxd-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-warning{background-color:#f39000;color:#fce5c3}.cxd-Table-table>tbody>tr.bg-warning.lt,.cxd-Table-table>tbody>tr.bg-warning .lt{background-color:#fc9c11}.cxd-Table-table>tbody>tr.bg-warning.lter,.cxd-Table-table>tbody>tr.bg-warning .lter{background-color:#faa62c}.cxd-Table-table>tbody>tr.bg-warning.dk,.cxd-Table-table>tbody>tr.bg-warning .dk{background-color:#da8100}.cxd-Table-table>tbody>tr.bg-warning.dker,.cxd-Table-table>tbody>tr.bg-warning .dker{background-color:#c07200}.cxd-Table-table>tbody>tr.bg-warning.bg,.cxd-Table-table>tbody>tr.bg-warning .bg{background-color:#f39000}.cxd-Table-table>tbody>tr.bg-warning a,.cxd-Table-table>tbody>tr.bg-warning .cxd-Button--link{color:#fefaf4}.cxd-Table-table>tbody>tr.bg-warning a:hover,.cxd-Table-table>tbody>tr.bg-warning .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-warning .open>a,.cxd-Table-table>tbody>tr.bg-warning .open>a:hover,.cxd-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-warning .text-muted{color:#f9d093!important}.cxd-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.bg-danger{background-color:#ea2e2e;color:#fbe9e9}.cxd-Table-table>tbody>tr.bg-danger.lt,.cxd-Table-table>tbody>tr.bg-danger .lt{background-color:#ea4848}.cxd-Table-table>tbody>tr.bg-danger.lter,.cxd-Table-table>tbody>tr.bg-danger .lter{background-color:#ea6161}.cxd-Table-table>tbody>tr.bg-danger.dk,.cxd-Table-table>tbody>tr.bg-danger .dk{background-color:#ea1414}.cxd-Table-table>tbody>tr.bg-danger.dker,.cxd-Table-table>tbody>tr.bg-danger .dker{background-color:#d60f0f}.cxd-Table-table>tbody>tr.bg-danger.bg,.cxd-Table-table>tbody>tr.bg-danger .bg{background-color:#ea2e2e}.cxd-Table-table>tbody>tr.bg-danger a,.cxd-Table-table>tbody>tr.bg-danger .cxd-Button--link{color:#fff}.cxd-Table-table>tbody>tr.bg-danger a:hover,.cxd-Table-table>tbody>tr.bg-danger .cxd-Button--link:hover{color:#fff}.cxd-Table-table>tbody>tr.bg-danger .open>a,.cxd-Table-table>tbody>tr.bg-danger .open>a:hover,.cxd-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.cxd-Table-table>tbody>tr.bg-danger .text-muted{color:#f4bdbd!important}.cxd-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.cxd-Table-table>tbody>tr.is-dragging{opacity:.1}.cxd-Table-table tr.cxd-Table-tr--2th.is-expanded .cxd-Table-expandCell:before{right:-.8125rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandBtn{position:relative;right:-1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td{position:relative;padding-left:1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--2th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--2th.is-expandable .cxd-Table-expandCell+td{padding-left:1.25rem}.cxd-Table-table tr.cxd-Table-tr--2th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--3th.is-expanded .cxd-Table-expandCell:before{right:-2.0625rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandBtn{position:relative;right:-2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td{position:relative;padding-left:2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--3th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--3th.is-expandable .cxd-Table-expandCell+td{padding-left:2.5rem}.cxd-Table-table tr.cxd-Table-tr--3th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--4th.is-expanded .cxd-Table-expandCell:before{right:-3.3125rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandBtn{position:relative;right:-3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td{position:relative;padding-left:3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--4th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--4th.is-expandable .cxd-Table-expandCell+td{padding-left:3.75rem}.cxd-Table-table tr.cxd-Table-tr--4th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--5th.is-expanded .cxd-Table-expandCell:before{right:-4.5625rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandBtn{position:relative;right:-5rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td{position:relative;padding-left:5rem}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--5th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--5th.is-expandable .cxd-Table-expandCell+td{padding-left:5rem}.cxd-Table-table tr.cxd-Table-tr--5th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--6th.is-expanded .cxd-Table-expandCell:before{right:-5.8125rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandBtn{position:relative;right:-6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td{position:relative;padding-left:6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--6th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--6th.is-expandable .cxd-Table-expandCell+td{padding-left:6.25rem}.cxd-Table-table tr.cxd-Table-tr--6th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--7th.is-expanded .cxd-Table-expandCell:before{right:-7.0625rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandBtn{position:relative;right:-7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td{position:relative;padding-left:7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--7th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--7th.is-expandable .cxd-Table-expandCell+td{padding-left:7.5rem}.cxd-Table-table tr.cxd-Table-tr--7th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--8th.is-expanded .cxd-Table-expandCell:before{right:-8.3125rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandBtn{position:relative;right:-8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td{position:relative;padding-left:8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--8th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--8th.is-expandable .cxd-Table-expandCell+td{padding-left:8.75rem}.cxd-Table-table tr.cxd-Table-tr--8th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--9th.is-expanded .cxd-Table-expandCell:before{right:-9.5625rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandBtn{position:relative;right:-10rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td{position:relative;padding-left:10rem}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--9th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--9th.is-expandable .cxd-Table-expandCell+td{padding-left:10rem}.cxd-Table-table tr.cxd-Table-tr--9th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table tr.cxd-Table-tr--10th.is-expanded .cxd-Table-expandCell:before{right:-10.8125rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandBtn{position:relative;right:-11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td{position:relative;padding-left:11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--10th .cxd-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#dcdcdc}.cxd-Table-table tr.cxd-Table-tr--10th.is-expandable .cxd-Table-expandCell+td{padding-left:11.25rem}.cxd-Table-table tr.cxd-Table-tr--10th.is-last:not(.is-expanded) .cxd-Table-expandCell+td::before{height:1.125rem;bottom:auto}.cxd-Table-table>thead>tr>th.cxd-Table-checkCell,.cxd-Table-table>tbody>tr>td.cxd-Table-checkCell{border-right:0;width:.0625rem}.cxd-Table-table>thead>tr>th.cxd-Table-checkCell .cxd-Checkbox,.cxd-Table-table>tbody>tr>td.cxd-Table-checkCell .cxd-Checkbox{margin:0}.cxd-Table-table>thead>tr>th.cxd-Table-expandCell,.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.cxd-Table-table>thead>tr>th.cxd-Table-dragCell,.cxd-Table-table>tbody>tr>td.cxd-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell{position:relative}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:.4375rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-.8125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-2.0625rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-3.3125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-4.5625rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-5.8125rem}.cxd-Table-table>tbody>tr>td.cxd-Table-expandCell .cxd-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dcdcdc;right:-7.0625rem}.cxd-Table-table>tbody>tr.is-expanded>td.cxd-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#dcdcdc}.cxd-Table-table>thead>tr>th.cxd-TableCell--sortable{padding-right:1.5rem;position:relative}.cxd-Table-table>thead>tr>th.cxd-TableCell--searchable{padding-right:1.625rem;position:relative}.cxd-Table-table>thead>tr>th.cxd-TableCell--filterable{padding-right:1.625rem;position:relative}.cxd-TableCell-sortBtn{cursor:pointer;width:.875rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.1875rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-sortBtn:hover{color:#108cee}.cxd-TableCell-sortBtn--up>svg,.cxd-TableCell-sortBtn--down>svg,.cxd-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.cxd-TableCell-sortBtn--up,.cxd-TableCell-sortBtn--down,.cxd-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.cxd-TableCell-sortBtn--up.is-active,.cxd-TableCell-sortBtn--down.is-active,.cxd-TableCell-sortBtn--default.is-active{display:inline-block}.cxd-TableCell-sortBtn--default.is-active{color:#999}.cxd-TableCell-sortBtn--default.is-active:hover{color:#666}.cxd-TableCell-sortBtn--up.is-active,.cxd-TableCell-sortBtn--down.is-active{color:#108cee}.cxd-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-searchBtn svg.icon{width:12px;height:12px}.cxd-TableCell-searchBtn:hover{color:#666}.cxd-TableCell-searchBtn.is-active{color:#108cee}.cxd-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.cxd-TableCell-searchPopOver .cxd-Panel{margin:0}.cxd-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#999}.cxd-TableCell-filterBtn svg.icon{width:12px;height:12px}.cxd-TableCell-filterBtn:hover{color:#666}.cxd-TableCell-filterBtn.is-active{color:#108cee}.cxd-TableCell-filterBtn .cxd-Remark{display:inline}.cxd-TableCell-filterPopOver{border:0;width:10rem}.cxd-TableCell-filterPopOver .cxd-DropDown-menu{margin:0;padding:0;border-radius:0}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider{height:1.875rem;line-height:1.875rem;padding:0 .625rem;background-color:#fff;margin:0}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider:hover{background-color:#eaf6fe;color:#108cee}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider.is-selected{background-color:#eaf6fe;color:#108cee}.cxd-TableCell-filterPopOver .cxd-DropDown-menu .cxd-DropDown-divider .cxd-Checkbox{width:100%;margin:0}.cxd-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.cxd-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(245,251,255,0) 0,#f5fbff 20%,#f5fbff 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.cxd-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#108cee;text-decoration:none}.cxd-Table-itemActions a:hover{color:#0b62a6;text-decoration:none}.cxd-Table-itemActions a.is-disabled{pointer-events:none;opacity:1;color:#999}.cxd-Table-dragTip{color:#333;clear:both;margin-top:.3125rem;width:100%;color:#108cee}.cxd-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.cxd-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.625rem}.cxd-Table-footTable>tbody>tr>td{word-break:break-all;padding:.625rem}.cxd-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #fff}.cxd-Table-expandBtn{position:relative;z-index:1;color:#108cee;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.cxd-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.cxd-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.cxd-Table-expandBtn:hover{text-decoration:none}.cxd-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#999}.cxd-Table-dragBtn:hover{text-decoration:none;color:#108cee}.cxd-Table-table>tbody>tr:hover .cxd-Table-dragBtn,.cxd-Table-table>tbody>tr.is-dragging .cxd-Table-dragBtn,.cxd-Table-table>tbody>tr.is-drop-allowed .cxd-Table-dragBtn{visibility:visible}.cxd-Table .fake-hide{visibility:hidden;position:absolute}.cxd-OperationField{margin:-.1875rem}.cxd-OperationField>.cxd-Button,.cxd-OperationField>.cxd-Button--disabled-wrap>.cxd-Button{margin:.1875rem}.cxd-OperationField>.cxd-Button--link{padding:0;margin-right:.625rem}.cxd-List{border:.0625rem solid #eceff8;border-radius:.142rem;background-color:#fff;margin-bottom:1.25rem;position:relative}.cxd-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.cxd-List-toolbar::before,.cxd-List-toolbar::after{display:table;content:''}.cxd-List-toolbar::after{clear:both}.cxd-List-actions{display:inline-block}.cxd-List-actions>*{margin-right:.625rem}.cxd-List-header{padding:.625rem}.cxd-List-header>*+.cxd-Button,.cxd-List-header>*+.cxd-ButtonGroup,.cxd-List-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-List-header+.cxd-List-toolbar{padding-top:0}.cxd-List-heading{padding:.3125rem 0}.cxd-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);padding:.625rem}.cxd-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-List-fixedTop .cxd-Cards-toolbar{margin-bottom:0}.cxd-List-fixedTop:empty{display:none}.cxd-List--unsaved .cxd-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.cxd-List-dragTip{width:100%;color:#108cee;clear:both;margin-top:.3125rem}.cxd-List-placeholder{color:#999;text-align:center;min-height:1.875rem;line-height:1.875rem}.cxd-ListGroup{max-width:25rem;display:flex;flex-direction:column}.cxd-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #eceff8}.cxd-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.cxd-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.cxd-ListGroup-item:hover{z-index:1}.cxd-ListGroup-item.is-active{z-index:2}.cxd-ListGroup-item.is-disabled{color:#999}.cxd-ListGroup--expanded .cxd-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.cxd-ListGroup--expanded .cxd-ListGroup-item:last-child{margin-bottom:0}.cxd-ListItem{position:relative;display:block;padding:.625rem .9375rem}.cxd-ListItem::before,.cxd-ListItem::after{display:table;content:''}.cxd-ListItem::after{clear:both}.cxd-ListItem+.cxd-ListItem{border-top:.0625rem solid #fff}.cxd-ListItem:nth-child(even){background-color:#f6f8f8}.cxd-ListItem-checkBtn{float:left;margin-right:.625rem}.cxd-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.cxd-ListItem-actions{float:right}.cxd-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#333;font-weight:400}.cxd-ListItem-content{overflow:hidden}.cxd-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.cxd-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.cxd-ListItem-fieldLabel{width:9.375rem;color:#999}.cxd-ListItem.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.cxd-ListItem.is-checked+.cxd-ListItem{border-color:#abe4f6}.cxd-ListItem.is-checked .cxd-ListItem-fieldLabel{color:#7dd6f1}.cxd-ListItem.is-modified,.cxd-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.cxd-ListItem.is-modified+.cxd-ListItem,.cxd-ListItem.is-moved+.cxd-ListItem{border-color:#b7d0fc}.cxd-ListItem.is-modified .cxd-ListItem-fieldLabel,.cxd-ListItem.is-moved .cxd-ListItem-fieldLabel{color:#a2c3fa}.cxd-ListItem.is-dragging{opacity:.1}.cxd-Cards-toolbar{padding:0;margin-bottom:.9375rem}.cxd-Cards-toolbar::before,.cxd-Cards-toolbar::after{display:table;content:''}.cxd-Cards-toolbar::after{clear:both}.cxd-Cards-actions{display:inline-block}.cxd-Cards-actions>*{margin-right:.625rem}.cxd-Cards-heading{padding:.3125rem 0}.cxd-Cards-header{padding:0}.cxd-Cards-header>*+.cxd-Button,.cxd-Cards-header>*+.cxd-ButtonGroup,.cxd-Cards-header>*+.cxd-ButtonToolbar{margin-left:.625rem}.cxd-Cards-header+.cxd-Cards-toolbar{padding-top:0}.cxd-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);padding:.625rem}.cxd-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.cxd-Cards-fixedTop .cxd-Cards-toolbar{margin-bottom:0}.cxd-Cards-fixedTop:empty{display:none}.cxd-Cards--unsaved .cxd-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.cxd-Cards-dragTip{width:100%;color:#108cee;clear:both;margin-top:.3125rem}.cxd-Cards-placeholder{background:#fff;color:#999;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #eceff8;border-radius:.142rem}.cxd-Cards-body>div{display:flex}.cxd-Cards--masonry{display:block;column-gap:0;column-fill:initial}.cxd-Cards--masonry:after{content:none}.cxd-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.cxd-Cards--masonrySm1{column-count:12}.cxd-Cards--masonrySm2{column-count:6}.cxd-Cards--masonrySm3{column-count:4}.cxd-Cards--masonrySm4{column-count:3}.cxd-Cards--masonrySm6{column-count:2}.cxd-Cards--masonrySm12{column-count:1}.cxd-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.cxd-Cards--masonryMd1{column-count:12}.cxd-Cards--masonryMd2{column-count:6}.cxd-Cards--masonryMd3{column-count:4}.cxd-Cards--masonryMd4{column-count:3}.cxd-Cards--masonryMd6{column-count:2}.cxd-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.cxd-Cards--masonryLg1{column-count:12}.cxd-Cards--masonryLg2{column-count:6}.cxd-Cards--masonryLg3{column-count:4}.cxd-Cards--masonryLg4{column-count:3}.cxd-Cards--masonryLg6{column-count:2}.cxd-Cards--masonryLg12{column-count:1}}.cxd-Card{background-color:#fff;border:.0625rem solid #eceff8;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.cxd-Card-title{color:#333;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cxd-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#999;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.cxd-Card-title+.cxd-Card-subTitle{margin-top:.3125rem}.cxd-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.cxd-Card-checkBtn .cxd-Checkbox{margin-right:0}.cxd-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.cxd-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.cxd-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.cxd-Card-avtar img{max-width:100%}.cxd-Card-avtarText{background-color:#108cee;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.cxd-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.cxd-Card-highlight{background-color:#5fb333;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.cxd-Card-body{padding:.9375rem;flex:1 0 auto}.cxd-Card-heading+.cxd-Card-body{padding-top:.3125rem}.cxd-Card-field{position:relative;display:flex;flex-wrap:nowrap}.cxd-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.cxd-Card-fieldLabel{width:3.75rem;color:#999}.cxd-Card-actions{border-top:.0625rem solid #f5f7fb;display:flex;flex-direction:row;width:100%;table-layout:fixed}.cxd-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#f5f7fb;border-style:solid;border-width:0 .0625rem 0 0;color:#666;text-align:center;line-height:2.5rem;font-size:.75rem}.cxd-Card-actions>a:not(.is-disabled){cursor:pointer}.cxd-Card-actions>a:not(.is-disabled):hover{background-color:#fff;color:#108cee;text-decoration:none}.cxd-Card-actions>a:last-child{border:0}.cxd-Card-actions>a.is-disabled{color:#999}.cxd-Card-actions>a.is-disabled:hover{text-decoration:none}.cxd-Card.is-checked{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-Card.is-checked .cxd-Card-actions,.cxd-Card.is-checked .cxd-Card-actions>a{border-color:#108cee;color:#108cee}.cxd-Card.is-checked .cxd-Card-fieldLabel{color:#6fbaf5}.cxd-Card.is-checked .cxd-Card-actions>a:hover{background-color:#fff;color:#0d70be}.cxd-Card.is-modified,.cxd-Card.is-moved{background-color:#108cee;border-color:#108cee;color:#108cee}.cxd-Card.is-modified .cxd-Card-actions,.cxd-Card.is-modified .cxd-Card-actions>a,.cxd-Card.is-moved .cxd-Card-actions,.cxd-Card.is-moved .cxd-Card-actions>a{border-color:#108cee;color:#108cee}.cxd-Card.is-modified .cxd-Card-fieldLabel,.cxd-Card.is-moved .cxd-Card-fieldLabel{color:#6fbaf5}.cxd-Card.is-modified .cxd-Card-actions>a:hover,.cxd-Card.is-moved .cxd-Card-actions>a:hover{background-color:#0e7ed6;color:#0d70be}.is-dragging>.cxd-Card{opacity:.1}.cxd-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.cxd-Field-quickEditBtn:hover{color:inherit;opacity:1}.cxd-Field--quickEditable{outline:0;position:relative}.cxd-Field--quickEditable:focus{position:relative}.cxd-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #108cee}.cxd-Field--quickEditable:hover .cxd-Field-quickEditBtn{visibility:visible}.cxd-QuickEdit-popover{min-width:20rem;max-width:40rem}.cxd-QuickEdit-popover .cxd-Panel{margin-bottom:0;border:0}.cxd-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.cxd-Field-popOverBtn:hover{color:inherit;opacity:1}.cxd-Field--popOverAble{outline:0;position:relative}.cxd-Field--popOverAble:hover .cxd-Field-popOverBtn{visibility:visible}.cxd-PopOverAble-popover{min-width:20rem;max-width:40rem}.cxd-PopOverAble-popover .cxd-Panel{margin-bottom:0;border:0}.cxd-Field-copyBtn{color:#999;margin-left:.3125rem;display:inline-block;cursor:pointer}.cxd-Field-copyBtn:hover{color:#108cee}.cxd-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #eceff8;height:.125rem;font-size:0}.cxd-Divider--solid{border-bottom-style:solid}.cxd-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.cxd-Pagination>li{display:inline}.cxd-Pagination>li>a,.cxd-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.75rem}.cxd-Pagination>li>a:hover,.cxd-Pagination>li>span:hover,.cxd-Pagination>li>a:focus,.cxd-Pagination>li>span:focus{background-color:transparent;color:#108cee}.cxd-Pagination>li.is-disabled>span,.cxd-Pagination>li.is-disabled>a{cursor:not-allowed}.cxd-Pagination>li.is-disabled>a,.cxd-Pagination>li.is-disabled>span,.cxd-Pagination>li.is-disabled>a:hover,.cxd-Pagination>li.is-disabled>span:hover,.cxd-Pagination>li.is-disabled>a:focus,.cxd-Pagination>li.is-disabled>span:focus{color:#ccc}.cxd-Pagination>li.is-active>a,.cxd-Pagination>li.is-active>span,.cxd-Pagination>li.is-active>a:hover,.cxd-Pagination>li.is-active>span:hover,.cxd-Pagination>li.is-active>a:focus,.cxd-Pagination>li.is-active>span:focus{background-color:#fff;color:#108cee;border:.0625rem solid #108cee}.cxd-Pagination-prev>span{cursor:pointer}.cxd-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.cxd-Pagination-next>span{cursor:pointer}.cxd-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.cxd-Pagination-inputGroup .cxd-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #eceff8;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.cxd-Pagination-inputGroup .cxd-Pagination-input:focus{outline:0;border:.0625rem solid #108cee}.cxd-Pagination-inputGroup .cxd-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.cxd-Wrapper{padding:.9375rem}.cxd-Wrapper--xs{padding:.3125rem}.cxd-Wrapper--sm{padding:.625rem}.cxd-Wrapper--md{padding:1.25rem}.cxd-Wrapper--lg{padding:1.875rem}.cxd-Wrapper--xl{padding:3.125rem}.cxd-Wrapper--none{padding:0}.cxd-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.cxd-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.cxd-StatusField svg.cxd-Status-icon{width:.875rem;height:.875rem;top:0}.cxd-StatusField .cxd-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.cxd-StatusField .cxd-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #ea2e2e;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.cxd-StatusField .cxd-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #108cee;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.cxd-StatusField .cxd-Status-icon.icon-warning{color:#f39000}.cxd-Status-icon.rolling+.cxd-StatusField-label{color:#f39000}.cxd-Status-icon.icon-success+.cxd-StatusField-label{color:#5fb333}.cxd-Status-icon.icon-fail+.cxd-StatusField-label{color:#ea2e2e}.cxd-Status-icon.icon-warning+.cxd-StatusField-label{color:#f39000}.cxd-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-dot{background-color:#fff}.cxd-Carousel.cxd-Carousel--light svg{fill:#fff}.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-item .title,.cxd-Carousel.cxd-Carousel--light .cxd-Carousel-item .description{color:#fff}.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-dot{background-color:#000}.cxd-Carousel.cxd-Carousel--dark svg{fill:#000}.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-item .title,.cxd-Carousel.cxd-Carousel--dark .cxd-Carousel-item .description{color:#000}.cxd-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.cxd-Carousel-container .cxd-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.cxd-Carousel-container .cxd-Carousel-item.fade{opacity:0}.cxd-Carousel-container .cxd-Carousel-item.fade.in{opacity:1}.cxd-Carousel-container .cxd-Carousel-item.slide{transform:translateX(100%)}.cxd-Carousel-container .cxd-Carousel-item.slide.in{transform:translateX(0)}.cxd-Carousel-container .cxd-Carousel-item.slide.out{transform:translateX(-100%)}.cxd-Carousel-container .cxd-Carousel-item.slideRight{transform:translateX(-100%)}.cxd-Carousel-container .cxd-Carousel-item.slideRight.in{transform:translateX(0)}.cxd-Carousel-container .cxd-Carousel-item.slideRight.out{transform:translateX(100%)}.cxd-Carousel-container .cxd-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.cxd-Carousel-container .cxd-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.cxd-Carousel-container .cxd-Carousel-item .image{width:100%;height:100%;background-size:cover}.cxd-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.cxd-Carousel-dotsControl .cxd-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.cxd-Carousel-dotsControl .cxd-Carousel-dot.is-active{opacity:1}.cxd-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.cxd-Carousel-arrowsControl .cxd-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.cxd-Carousel-arrowsControl .cxd-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.cxd-Carousel-arrowsControl .cxd-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.cxd-Carousel-arrowsControl .cxd-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.cxd-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.cxd-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.cxd-ImageGallery-close:hover{color:#fff}.cxd-ImageGallery-close>svg{width:1rem;height:1rem}.cxd-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.cxd-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.cxd-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.cxd-ImageGallery-prevBtn,.cxd-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.cxd-ImageGallery-prevBtn>svg,.cxd-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.cxd-ImageGallery-prevBtn:hover,.cxd-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.cxd-ImageGallery-prevBtn.is-disabled,.cxd-ImageGallery-nextBtn.is-disabled{pointer-events:none}.cxd-ImageGallery-main:hover .cxd-ImageGallery-prevBtn,.cxd-ImageGallery-main:hover .cxd-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.cxd-ImageGallery-prevBtn{left:1.25rem}.cxd-ImageGallery-nextBtn{right:1.25rem}.cxd-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.cxd-ImageGallery-prevList,.cxd-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.cxd-ImageGallery-prevList.is-disabled,.cxd-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.cxd-ImageGallery-prevList:hover,.cxd-ImageGallery-nextList:hover{background:#000;color:#fff}.cxd-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.cxd-ImageGallery-items{display:inline-block;white-space:nowrap}.cxd-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.cxd-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.cxd-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.cxd-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.cxd-ImageGallery-item:hover{border:1px solid #e5e5e5}.cxd-ImageGallery-item:hover:after{display:none}.cxd-ImageGallery-item.is-active{border:1px solid #108cee}.cxd-ImageGallery-item.is-active:after{display:none}.cxd-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.cxd-Images-item{display:flex;margin:.3125rem}.cxd-Image{display:inline-block;width:7.5rem;border:.0625rem solid #eceff8;padding:.3125rem}.cxd-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.cxd-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.cxd-Image-thumb--4-3{height:5.0625rem}.cxd-Image-thumb--16-9{height:3.79688rem}.cxd-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.cxd-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.cxd-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.cxd-Image-caption{font-size:.75rem}.cxd-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.cxd-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.cxd-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.cxd-Image-thumb:hover .cxd-Image-overlay{display:flex}.cxd-ImageField{display:inline-block;position:relative}.cxd-InputBox{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-InputBox input::placeholder{color:#999;user-select:none}.cxd-InputBox--inline{display:inline-flex}.cxd-InputBox>input[readonly]{cursor:inherit}.cxd-InputBox.is-error{border-color:#d0021b;background-color:#fffbfb}.cxd-InputBox.is-focused{border-color:#108cee;box-shadow:none}.cxd-InputBox.is-clickable:hover{border-color:#108cee;box-shadow:none;cursor:pointer}.cxd-InputBox.is-error.is-focused{border-color:#d0021b}.cxd-InputBox.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-InputBox-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-InputBox-clear:hover svg{fill:#666}.cxd-InputBox>svg{display:inline-block;width:14px;color:#999}.cxd-InputBox>a{cursor:pointer}.cxd-ResultBox{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:1.875rem;align-items:center}.cxd-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-ResultBox input::placeholder{color:#999;user-select:none}.cxd-ResultBox.is-error{border-color:#d0021b;background-color:#fffbfb}.cxd-ResultBox.is-focused,.cxd-ResultBox:focus{outline:0;border-color:#108cee;box-shadow:none}.cxd-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.cxd-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#108cee;box-shadow:none}.cxd-ResultBox.is-error.is-focused{border-color:#d0021b}.cxd-ResultBox.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-ResultBox-singleValue{padding:0 .4375rem}.cxd-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.cxd-ResultBox-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-ResultBox-clear:hover svg{fill:#666}.cxd-ResultBox-clear:hover{background:#f5f5f5}.cxd-ResultBox-clear>svg{width:.75rem;height:.75rem}.cxd-ResultBox>svg{display:inline-block;width:.875rem;color:#999}.cxd-ResultBox>a{cursor:pointer}.cxd-ResultBox-value{background:#f5f5f5;color:#000;font-size:.75rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.cxd-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.cxd-ResultBox-value>a:hover{color:#666}.cxd-ResultBox-value>a>svg{width:.625rem;height:.625rem}.cxd-ResultBox-value:hover{background:#ebebeb}.cxd-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.cxd-ResultBox-value.is-disabled>a{color:#ebebeb}.cxd-ResultBox-placeholder{color:#999;user-select:none;margin-left:8px}.cxd-ResultBox>input{padding-left:8px;min-height:24px}.cxd-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.75rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:0;height:30px}.cxd-SearchBox:hover{background-color:rgba(255,255,255,.6)}.cxd-SearchBox.is-active{background-color:#fff;border:.0625rem solid #ccc;width:150px}.cxd-SearchBox.is-active>input{flex-grow:1}.cxd-SearchBox-activeBtn,.cxd-SearchBox-cancelBtn{cursor:pointer;color:#999}.cxd-SearchBox-activeBtn:hover,.cxd-SearchBox-cancelBtn:hover{color:#108cee}.cxd-SearchBox>input{outline:0;border:0;background:transparent;color:#666;width:0;height:1.07143rem}.cxd-SearchBox>input::placeholder{color:#999;user-select:none}.cxd-ListMenu{background:#fff;min-width:12.5rem;border:0 solid #eceff8;border-radius:0}.cxd-ListMenu-groupLabel{font-size:.6875rem;color:#999;padding:.08929rem 0 0 .3125rem}.cxd-ListMenu-group:not(:first-child)>.cxd-ListMenu-groupLabel{border-top:.0625rem solid #f5f7fb}.cxd-ListMenu-item{display:flex;min-height:1.875rem;color:#333;line-height:1.42857;font-size:.75rem;cursor:pointer;padding:.40179rem .625rem}.cxd-ListMenu-item.is-active{color:#108cee;background-color:transparent}.cxd-ListMenu-item.is-highlight{color:#000;background-color:#eaf6fe}.cxd-ListMenu-item.is-disabled{color:#999;background-color:transparent}.cxd-ListMenu-placeholder{display:block;min-height:1.875rem;color:#999;line-height:1.42857;font-size:.75rem;cursor:pointer;padding:.40179rem .625rem}.cxd-PopOver>.cxd-ListMenu{border-color:#108cee}.cxd-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.cxd-Collapse--xs,fieldset.cxd-Collapse--sm,fieldset.cxd-Collapse--base,fieldset.cxd-Collapse--md,fieldset.cxd-Collapse--lg{position:relative}fieldset.cxd-Collapse--xs:after,fieldset.cxd-Collapse--sm:after,fieldset.cxd-Collapse--base:after,fieldset.cxd-Collapse--md:after,fieldset.cxd-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #eceff8;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.cxd-Collapse--xs>legend,fieldset.cxd-Collapse--sm>legend,fieldset.cxd-Collapse--base>legend,fieldset.cxd-Collapse--md>legend,fieldset.cxd-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#fff;border-left:0!important}fieldset.cxd-Collapse--xs .collapse,fieldset.cxd-Collapse--sm .collapse,fieldset.cxd-Collapse--base .collapse,fieldset.cxd-Collapse--md .collapse,fieldset.cxd-Collapse--lg .collapse{position:relative}fieldset.cxd-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#333;border-left:#108cee .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.cxd-Collapse--xs{padding:20px 5px 5px}fieldset.cxd-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.cxd-Collapse--xs:after{top:6px}fieldset.cxd-Collapse--sm{padding:25px 10px 10px}fieldset.cxd-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.cxd-Collapse--sm:after{top:6px}fieldset.cxd-Collapse--base{padding:30px 15px 15px}fieldset.cxd-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.cxd-Collapse--base:after{top:7px}fieldset.cxd-Collapse--md{padding:30px 20px 20px}fieldset.cxd-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.cxd-Collapse--md:after{top:7px}fieldset.cxd-Collapse--lg{padding:40px 30px 30px}fieldset.cxd-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.cxd-Collapse--lg:after{top:9px}.cxd-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.cxd-Form-group{margin-bottom:1.25rem}.cxd-Form-value>.cxd-Form-group{margin-bottom:.375rem}.cxd-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.cxd-Form-group--hor.v-middle{align-items:center}.cxd-Form-group--hor.v-bottom{align-items:flex-end}.cxd-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-group--hor>.cxd-Form-item--inline{margin-right:0}.cxd-Form-group--hor>.cxd-Form-item,.cxd-Form-group--hor>div>.cxd-Form-item{margin-bottom:0}.cxd-Form-group--hor .cxd-Form-input>.cxd-Form-group{margin-bottom:0}.cxd-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.cxd-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.cxd-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.cxd-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.cxd-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.cxd-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.cxd-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.cxd-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.cxd-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.cxd-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.cxd-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.cxd-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.cxd-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.cxd-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.cxd-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.cxd-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.cxd-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.cxd-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.cxd-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.cxd-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.cxd-InputGroup{display:inline-flex;flex-wrap:nowrap}.cxd-InputGroup.cxd-Form-control--sizeXs,.cxd-InputGroup.cxd-Form-control--sizeSm,.cxd-InputGroup.cxd-Form-control--sizeMd,.cxd-InputGroup.cxd-Form-control--sizeLg{display:inline-flex}.cxd-InputGroup-addOn,.cxd-InputGroup .cxd-Form-control{display:inline-block;white-space:nowrap}.cxd-InputGroup-addOn{background:#fff;border:.0625rem solid #ccc;line-height:1.07143rem;height:1.875rem;box-sizing:border-box;padding:.33929rem .625rem}.cxd-InputGroup-addOn:not(:last-child){border-right:0}.cxd-InputGroup-addOn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup-addOn:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup-btn .cxd-Button{border-radius:0;border:.0625rem solid #ccc}.cxd-InputGroup-btn:not(:last-child) .cxd-Button{border-right:0}.cxd-InputGroup-btn:first-child .cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup-btn:last-child .cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.cxd-InputGroup .cxd-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-SelectControl .cxd-Select{background-color:#f6f7fb;border:.0625rem solid #ccc;color:#333}.cxd-InputGroup .cxd-SelectControl:not(:last-child) .cxd-Select{border-right:0}.cxd-InputGroup .cxd-SelectControl:first-child .cxd-Select{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-SelectControl:last-child .cxd-Select{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup .cxd-SelectControl:not(:first-child) .cxd-Select{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-InputGroup .cxd-SelectControl:not(:last-child) .cxd-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-InputGroup.is-focused .cxd-InputGroup-addOn,.cxd-InputGroup.is-focused .cxd-TextControl-input,.cxd-InputGroup.is-focused .cxd-Select,.cxd-InputGroup.is-focused .cxd-InputGroup-btn .cxd-Button{border-color:#108cee}.cxd-InputGroup.is-focused .cxd-Select{background-color:#eaf6fe}.cxd-InputGroup.is-focused .cxd-Select{color:#108cee}.cxd-InputGroup.is-focused .cxd-Select-arrow{color:#108cee}.cxd-InputGroup.is-focused .cxd-InputGroup-addOn{color:#108cee}.cxd-InputGroup:not(.is-inline){display:flex}.cxd-TextControl{position:relative;max-width:100%}.cxd-TextControl.is-inline{display:inline-block;width:12.5rem}.cxd-TextControl-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-TextControl-input input::placeholder{color:#999;user-select:none}.cxd-TextControl.is-error>.cxd-TextControl-input{border-color:#d0021b;background-color:#fffbfb}.cxd-TextControl.is-focused>.cxd-TextControl-input{border-color:#108cee;box-shadow:none}.cxd-TextControl.is-error.is-focused>.cxd-TextControl-input{border-color:#d0021b}.cxd-TextControl.is-disabled>.cxd-TextControl-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-TextControl-spinner{line-height:1.07143rem}.cxd-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-TextControl-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-TextControl-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-TextControl.cxd-Form-control--sizeXs>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeSm>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeMd>.cxd-TextControl-input,.cxd-TextControl.cxd-Form-control--sizeLg>.cxd-TextControl-input{min-width:100%;display:inline-flex}}.cxd-TextControl-placeholder{color:#999;user-select:none;position:absolute;left:.625rem;top:.33929rem;margin-top:.125rem;line-height:1.42857}.cxd-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.cxd-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.cxd-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.cxd-TextControl--withAddOn.cxd-Form-control--sizeXs,.cxd-TextControl--withAddOn.cxd-Form-control--sizeSm,.cxd-TextControl--withAddOn.cxd-Form-control--sizeMd,.cxd-TextControl--withAddOn.cxd-Form-control--sizeLg{display:inline-flex}.cxd-TextControl--withAddOn.cxd-Form-control--sizeXs>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeSm>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeMd>.cxd-TextControl-input,.cxd-TextControl--withAddOn.cxd-Form-control--sizeLg>.cxd-TextControl-input{min-width:unset}}.cxd-TextControl--withAddOn>.cxd-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-input:not(:last-child){border-right-width:0}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#fff;color:#666;border-color:#ccc;border-style:solid;border-width:.0625rem 0}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn:first-child{border-left-width:.0625rem}.cxd-TextControl--withAddOn>.cxd-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button>.cxd-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #ccc}.cxd-TextControl--withAddOn>.cxd-TextControl-button:not(:last-child) .cxd-Button{border-right:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button:first-child .cxd-Button{border-top-left-radius:0;border-bottom-left-radius:0}.cxd-TextControl--withAddOn>.cxd-TextControl-button:last-child .cxd-Button{border-top-right-radius:0;border-bottom-right-radius:0}.cxd-TextControl--withAddOn.is-focused>.cxd-TextControl-button .cxd-Button{border-color:#108cee}.cxd-TextControl--withAddOn.is-error>.cxd-TextControl-addOn{border-color:#d0021b}.cxd-TextControl--withAddOn.is-focused>.cxd-TextControl-addOn{border-color:#108cee;color:#108cee;box-shadow:none}.cxd-TextControl--withAddOn.is-disabled>.cxd-TextControl-addOn{color:#999}.cxd-TextControl-input--withAC{position:relative;flex-wrap:wrap}.cxd-TextControl-input--withAC input{width:auto;color:#999}.cxd-TextControl-sugs{position:absolute;background:#fff;color:#333;border:.0625rem solid #108cee;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.cxd-TextControl-sugItem{padding:.33929rem .75rem}.cxd-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#666}.cxd-TextControl-sugItem:not(.is-disabled){cursor:pointer}.cxd-TextControl-sugItem.is-highlight{color:#000;background:#eaf6fe}.cxd-TextControl-value{user-select:none;line-height:1.07143rem;vertical-align:middle;display:inline-block}.cxd-TextControl-input--multiple{height:auto;min-height:1.875rem}.cxd-TextControl-input--multiple .cxd-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.cxd-TextControl-input--multiple .cxd-TextControl-valueWrap>input{margin-bottom:.3125rem}.cxd-TextControl-input--multiple .cxd-TextControl-value{line-height:.94643rem;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-TextControl-valueIcon:hover{background-color:#b5dcfb}.cxd-TextControl-input--multiple .cxd-TextControl-valueLabel{padding:0 .3125rem}.cxd-TextareaControl{border:1px solid #ccc;border-radius:0;line-height:1.42857;background:#fff;padding:.375rem .67857rem;font-size:.75rem;outline:0;resize:none;display:block;width:100%}.cxd-TextareaControl.is-error{border-color:#d0021b}.cxd-TextareaControl:focus,.cxd-TextareaControl.is-focused{border-color:#108cee;box-shadow:none}.cxd-TextareaControl.is-disabled,.cxd-TextareaControl[disabled]{background:#e9ecef;color:#999}.cxd-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.cxd-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.cxd-Checkbox:hover input:not(:disabled)+i{border-color:#108cee}.cxd-Checkbox>i{cursor:pointer;line-height:1;background:#fff;display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.cxd-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.cxd-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.cxd-Checkbox>i+span:empty{display:none}.cxd-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.cxd-Checkbox:hover>i+span>a{display:inline-block}.cxd-Checkbox--checkbox{padding-left:.875rem}.cxd-Checkbox--checkbox input{margin-left:-.875rem}.cxd-Checkbox--checkbox input:checked+i{border-color:#108cee}.cxd-Checkbox--checkbox input:checked+i:before{width:.5rem;height:.5rem;background:#108cee}.cxd-Checkbox--checkbox input[disabled]+i{border-color:#d9d9d9;cursor:not-allowed}.cxd-Checkbox--checkbox input[disabled]+i:before{background-color:#d9d9d9;border-color:#fff}.cxd-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#999}.cxd-Checkbox--checkbox>i{width:.875rem;height:.875rem;border:.0625rem solid #ccc;border-radius:.142rem;margin-left:-.875rem;margin-top:-.1875rem}.cxd-Checkbox--full.cxd-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#ccc}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked+i{border-color:#108cee;background:#108cee}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.3125rem;border-color:#fff}.cxd-Checkbox--full.cxd-Checkbox--checkbox input:checked[disabled]+i{border-color:#d9d9d9;background-color:#d9d9d9}.cxd-Checkbox--full.cxd-Checkbox--checkbox>i{position:relative;cursor:pointer}.cxd-Checkbox--full.cxd-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.cxd-Checkbox--radio{padding-left:1rem}.cxd-Checkbox--radio input{margin-left:-1rem}.cxd-Checkbox--radio input:checked+i{border-color:#108cee}.cxd-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#108cee;border-radius:50%}.cxd-Checkbox--radio input[disabled]+i{border-color:#d9d9d9;cursor:not-allowed}.cxd-Checkbox--radio input[disabled]+i:before{background-color:#d9d9d9}.cxd-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#999}.cxd-Checkbox--radio>i{cursor:pointer;width:1rem;height:1rem;border:.0625rem solid #ccc;margin-left:-1rem;margin-top:-.125rem;border-radius:50%}.cxd-Checkbox--sm{padding-left:1rem}.cxd-Checkbox--sm input{margin-left:-1rem}.cxd-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.cxd-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.cxd-Checkbox--sm>i+span{margin-left:.3125rem}.cxd-Checkbox--sm.cxd-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.cxd-Checkbox-desc{color:#999;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.cxd-CheckboxControl,.cxd-RadiosControl,.cxd-CheckboxesControl{padding-top:.5rem}.cxd-RadiosControl .cxd-Checkbox,.cxd-CheckboxesControl .cxd-Checkbox{display:block;margin-bottom:.40179rem}.cxd-RadiosControl.is-inline .cxd-Checkbox,.cxd-CheckboxesControl.is-inline .cxd-Checkbox{display:inline-block;margin-right:1.25rem}.cxd-RadiosControl-group .cxd-RadiosControl-group,.cxd-RadiosControl-group .cxd-CheckboxesControl-group,.cxd-CheckboxesControl-group .cxd-RadiosControl-group,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group{padding-left:5rem}.cxd-RadiosControl-group .cxd-RadiosControl-group::before,.cxd-RadiosControl-group .cxd-RadiosControl-group::after,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::before,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::after,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::before,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::after,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::before,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::after{display:table;content:''}.cxd-RadiosControl-group .cxd-RadiosControl-group::after,.cxd-RadiosControl-group .cxd-CheckboxesControl-group::after,.cxd-CheckboxesControl-group .cxd-RadiosControl-group::after,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group::after{clear:both}.cxd-RadiosControl-group .cxd-RadiosControl-group>.cxd-RadiosControl-groupLabel,.cxd-RadiosControl-group .cxd-RadiosControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-RadiosControl-group .cxd-CheckboxesControl-group>.cxd-RadiosControl-groupLabel,.cxd-RadiosControl-group .cxd-CheckboxesControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-CheckboxesControl-group .cxd-RadiosControl-group>.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-group .cxd-RadiosControl-group>.cxd-CheckboxesControl-groupLabel,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group>.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-group .cxd-CheckboxesControl-group>.cxd-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.cxd-RadiosControl-groupLabel,.cxd-CheckboxesControl-groupLabel{display:block}.cxd-Checkboxes>.cxd-Checkbox{display:block;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem .40179rem 1.5rem}.cxd-Checkboxes--inline>.cxd-Checkbox{display:inline-block}.cxd-Checkboxes-addBtn{display:block;cursor:pointer}.cxd-Checkboxes-addBtn:hover{text-decoration:none}.cxd-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.cxd-ListCheckboxes-group:not(:first-child)>.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-group:not(:first-child)>.cxd-ListCheckboxes-itemLabel,.cxd-ListCheckboxes-group:not(:first-child)>.cxd-ListRadios-itemLabel,.cxd-ListRadios-group:not(:first-child)>.cxd-ListRadios-itemLabel{border-top:.0625rem solid #f5f7fb}.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-group>.cxd-ListCheckboxes-itemLabel,.cxd-ListCheckboxes-group>.cxd-ListRadios-itemLabel,.cxd-ListRadios-group>.cxd-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#999}.cxd-ListCheckboxes-item,.cxd-ListRadios-item{display:flex;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-ListCheckboxes-item>.cxd-Checkbox,.cxd-ListRadios-item>.cxd-Checkbox{margin-right:0}.cxd-ListCheckboxes-item.is-active,.cxd-ListRadios-item.is-active{color:#108cee;background-color:transparent}.cxd-ListCheckboxes-item:hover,.cxd-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.cxd-ListCheckboxes-item.is-disabled,.cxd-ListRadios-item.is-disabled{pointer-events:none;color:#999}.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-items>.cxd-ListCheckboxes-item,.cxd-ListRadios-group>.cxd-ListCheckboxes-items>.cxd-ListCheckboxes-item,.cxd-ListCheckboxes-group>.cxd-ListRadios-items>.cxd-ListCheckboxes-item,.cxd-ListRadios-group>.cxd-ListRadios-items>.cxd-ListCheckboxes-item,.cxd-ListCheckboxes-group>.cxd-ListCheckboxes-items>.cxd-ListRadios-item,.cxd-ListRadios-group>.cxd-ListCheckboxes-items>.cxd-ListRadios-item,.cxd-ListCheckboxes-group>.cxd-ListRadios-items>.cxd-ListRadios-item,.cxd-ListRadios-group>.cxd-ListRadios-items>.cxd-ListRadios-item{padding-left:.9375rem}.cxd-ListCheckboxes-itemLabel,.cxd-ListRadios-itemLabel{flex-grow:1}.cxd-ListCheckboxes-placeholder,.cxd-ListRadios-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-TableCheckboxes .cxd-Table-content{border-top:.0625rem solid #f5f5f5}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th{padding-top:.375rem}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th:first-child,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.cxd-TableCheckboxes .cxd-Table-table>thead>tr>th:last-child,.cxd-TableCheckboxes .cxd-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.cxd-TableCheckboxes .cxd-Table-table>tbody>tr{cursor:pointer}.cxd-TreeCheckboxes .cxd-Table-expandBtn,.cxd-TreeRadios .cxd-Table-expandBtn{color:#999;margin-right:5px}.cxd-TreeCheckboxes-sublist,.cxd-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.cxd-TreeCheckboxes-sublist:before,.cxd-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:.9375rem;left:-19px;border-left:dashed 1px #999}.cxd-TreeCheckboxes-item,.cxd-TreeRadios-item{position:relative}.cxd-TreeCheckboxes-item.is-expanded>.cxd-TreeCheckboxes-sublist,.cxd-TreeRadios-item.is-expanded>.cxd-TreeCheckboxes-sublist,.cxd-TreeCheckboxes-item.is-expanded>.cxd-TreeRadios-sublist,.cxd-TreeRadios-item.is-expanded>.cxd-TreeRadios-sublist{display:block}.cxd-TreeCheckboxes-item:not(:last-child)>.cxd-TreeCheckboxes-sublist:before,.cxd-TreeRadios-item:not(:last-child)>.cxd-TreeCheckboxes-sublist:before,.cxd-TreeCheckboxes-item:not(:last-child)>.cxd-TreeRadios-sublist:before,.cxd-TreeRadios-item:not(:last-child)>.cxd-TreeRadios-sublist:before{bottom:0}.cxd-TreeCheckboxes-sublist .cxd-TreeCheckboxes-item:before,.cxd-TreeRadios-sublist .cxd-TreeCheckboxes-item:before,.cxd-TreeCheckboxes-sublist .cxd-TreeRadios-item:before,.cxd-TreeRadios-sublist .cxd-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:.9375rem;width:19px;left:-19px;border-top:dashed 1px #999}.cxd-TreeCheckboxes-itemInner,.cxd-TreeRadios-itemInner{display:flex;align-items:center;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-TreeCheckboxes-itemInner>.cxd-Checkbox,.cxd-TreeRadios-itemInner>.cxd-Checkbox{margin-right:0;margin-left:.625rem}.cxd-TreeCheckboxes-itemInner.is-active,.cxd-TreeRadios-itemInner.is-active{color:#108cee;background-color:transparent}.cxd-TreeCheckboxes-itemInner:hover,.cxd-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.cxd-TreeCheckboxes-itemInner.is-disabled,.cxd-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#999}.cxd-TreeCheckboxes-itemLabel,.cxd-TreeRadios-itemLabel{flex-grow:1}.cxd-TreeCheckboxes-placeholder,.cxd-TreeRadios-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-ChainedCheckboxes{display:flex;flex-direction:row}.cxd-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.cxd-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #eceff8}.cxd-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#999}.cxd-ChainedCheckboxes-item{display:flex;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.cxd-ChainedCheckboxes-item>.cxd-Checkbox{margin-right:0}.cxd-ChainedCheckboxes-item.is-active{color:#108cee;background-color:transparent}.cxd-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.cxd-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#999}.cxd-ChainedCheckboxes-itemLabel{flex-grow:1}.cxd-ChainedCheckboxes-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-AssociatedCheckboxes{display:flex;flex-direction:row}.cxd-AssociatedCheckboxes-left,.cxd-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.cxd-AssociatedCheckboxes-left{border-right:1px solid #eceff8}.cxd-AssociatedCheckboxes-reload{text-align:center;color:#108cee;margin:20px 0 0}.cxd-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.cxd-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#999;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.cxd-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#999}.cxd-CityPicker .cxd-Select{margin-right:.3125rem;margin-bottom:.3125rem}.cxd-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem}.cxd-CityPicker-input::placeholder{color:#999;user-select:none}.cxd-CityPicker-input:focus{border-color:#108cee;box-shadow:none}.cxd-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#108cee;margin:0;vertical-align:middle;text-align:left}.cxd-Switch.is-disabled{background-color:#f5f5f5}.cxd-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#ccc;border:.0625rem solid #f0f0f0;border-radius:1.875rem;transition:all .2s}.cxd-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.cxd-Switch input{position:absolute;opacity:0}.cxd-Switch input:disabled+i:before,.cxd-Switch input:disabled:checked+i:before{color:#ccc;background-color:#f5f5f5;cursor:not-allowed}.cxd-Switch input:disabled+i:after,.cxd-Switch input:disabled:checked+i:after{background-color:#ccc;color:#ccc}.cxd-Switch input:checked+i:before{left:100%;border-width:0}.cxd-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.cxd-Switch-option{vertical-align:middle;margin-left:.625rem}.cxd-Switch-option:first-child{margin-left:0;margin-right:.625rem}.cxd-Switch-option:empty{display:none}.cxd-SwitchControl{padding-top:.25rem}.cxd-SwitchControl.is-inline{display:inline-block}.cxd-Number{margin:0;padding:0;line-height:1.875rem;font-size:.75rem;height:1.875rem;display:inline-block;vertical-align:middle;background-color:#fff;border:.0625rem solid #ccc;border-radius:0}.cxd-Number-focused{border-color:#108cee;box-shadow:none}.cxd-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.cxd-Number-handler-active{background:#ddd}.cxd-Number-handler-up-inner,.cxd-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.cxd-Number:hover{border-color:#108cee}.cxd-Number:hover .cxd-Number-handler-up,.cxd-Number:hover .cxd-Number-handler-wrap{border-color:#108cee}.cxd-Number-disabled:hover{border-color:#ccc}.cxd-Number-disabled:hover .cxd-Number-handler-up,.cxd-Number-disabled:hover .cxd-Number-handler-wrap{border-color:#ccc}.cxd-Number-input-wrap{overflow:hidden;height:100%}.cxd-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:1.75rem;height:100%;transition:all .3s ease;border:0;border-radius:0;padding:0 .625rem}.cxd-Number-handler{background-color:#fff;color:#666;font-family:iconfont;font-size:.75rem}.cxd-Number-handler:hover{background-color:#fff;color:#108cee}.cxd-Number-handler:hover:active{background-color:#f3f9fe}.cxd-Number-handler-up-inner{transform:rotate(180deg)}.cxd-Number-handler-up-inner:after{content:'\e6dd'}.cxd-Number-handler-down-inner:after{content:'\e6dd'}.cxd-Number-handler-wrap{float:right;border-left:.0625rem solid #ccc;width:1.25rem;height:100%}.cxd-Number-handler{line-height:.75rem;height:.875rem}.cxd-Number-handler-up{border-bottom:0;padding-top:.0625rem}.cxd-Number-handler-down-disabled,.cxd-Number-handler-up-disabled{background-color:#f5f5f5;pointer-events:none;color:#999}.cxd-Number-disabled .cxd-Number-input{opacity:.72;cursor:not-allowed;background-color:#fff}.cxd-Number-disabled .cxd-Number-handler{opacity:.72}.cxd-Number-disabled .cxd-Number-handler:hover{color:#999;border-color:#ccc}.cxd-NumberControl:not(.is-inline)>.cxd-Number{display:block}.cxd-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.75rem;border:.0625rem solid #ccc;background:#fff;border-radius:0;min-height:1.875rem;padding:.33929rem 0 .33929rem .625rem;cursor:pointer;color:#000}.cxd-Select:hover{background:#fff;border-color:#108cee}.cxd-Select:hover .cxd-Select-arrow:before{color:#108cee}.cxd-Select.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.cxd-Select-placeholder{color:#999;line-height:1.42857;user-select:none;white-space:nowrap}.cxd-Select-value{line-height:1.07143rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.cxd-Select--multi{height:auto;min-height:1.875rem}.cxd-Select--multi .cxd-Select-valueWrap{margin-bottom:-.3125rem}.cxd-Select--multi .cxd-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.cxd-Select--multi .cxd-Select-values+.cxd-Select-input{transform:translateY(0)}.cxd-Select--multi .cxd-Select-value{position:static;user-select:none;line-height:.94643rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-Select--multi .cxd-Select-valueLabel{padding:0 .3125rem}.cxd-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Select-valueIcon:hover{background-color:#b5dcfb}.cxd-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#e6f3fe;background:#e6f3fe}.cxd-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.cxd-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#999;width:10px;height:10px;top:0}.cxd-Select.is-opened .cxd-Select-arrow>svg{transform:rotate(180deg)}.cxd-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.cxd-Select-input{cursor:pointer;outline:0;border:0;margin:0 .625rem;height:1.875rem;font-size:.75rem;border-bottom:1px solid #eceff8;display:flex;align-items:center}.cxd-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.cxd-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.cxd-Select-option{cursor:pointer;min-width:7.5rem;padding:.21429rem .625rem}.cxd-Select-option.is-active{color:#108cee;background-color:transparent}.cxd-Select-option.is-highlight{color:#000;background-color:#eaf6fe}.cxd-Select-option.is-disabled{color:#999;background-color:transparent}.cxd-Select-option--placeholder{color:#999}.cxd-Select-option>label{display:block}.cxd-Select-option>a{float:right;margin-left:.3125rem;display:none}.cxd-Select-option.is-highlight>a{display:block}.cxd-Select-noResult{color:#999;line-height:1.42857;font-size:.75rem;user-select:none;padding:.21429rem .625rem}.cxd-Select-option-hl{color:#dc3545}.cxd-Select-addBtn{display:block;cursor:pointer;padding:.21429rem .625rem}.cxd-Select-addBtn:hover{text-decoration:none}.cxd-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.cxd-Select.is-focused,.cxd-Select.is-opened{border-color:#108cee}.cxd-Select-spinner{line-height:1.07143rem}.cxd-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.cxd-Select-clear svg{fill:#999;width:.625rem;height:.625rem;top:0}.cxd-Select-clear:hover svg{fill:#666}.cxd-Select-popover{margin-top:.1875rem;background:#fff;color:#333;border:0 solid #108cee;box-shadow:.125rem .25rem .5rem rgba(0,0,0,.2);border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.cxd-Select-popover.cxd-PopOver--leftTopLeftBottom{margin-top:-.1875rem}.cxd-SelectControl:not(.is-inline)>.cxd-Select{display:flex}@media (min-width:576px){.cxd-Form-control--sizeXs>.cxd-Select,.cxd-Form-control--sizeSm>.cxd-Select,.cxd-Form-control--sizeMd>.cxd-Select,.cxd-Form-control--sizeLg>.cxd-Select{min-width:100%;max-width:100%;display:inline-flex!important}.cxd-Form-control--sizeXs>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeSm>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeMd>.cxd-Select .cxd-Select-valueWrap,.cxd-Form-control--sizeLg>.cxd-Select .cxd-Select-valueWrap{width:0}}.cxd-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.cxd-Selections-title{height:1.875rem;background:#f5f5f5;font-size:.75rem;padding:.40179rem .625rem}.cxd-Selections-placeholder{color:#999;text-align:center;width:100%;flex-basis:1.875rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.75rem}.cxd-Selections-items{flex-grow:1}.cxd-Selections-item{display:flex;flex-direction:row;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem}.cxd-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.cxd-Selections-item>.cxd-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#999;cursor:move}.cxd-Selections-item--dragging>*{opacity:.2}.cxd-Selections-delBtn{color:#999;cursor:pointer}.cxd-Selections-delBtn:hover{color:#108cee}.cxd-Selections-delBtn>svg{width:12px;height:12px}.cxd-ListControl-items{display:block;margin:-.3125rem}.cxd-ListControl-items:empty{display:none}.cxd-ListControl-item{position:relative;user-select:none;font-size:.75rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #ccc;background-color:#fff;padding:.375rem .625rem;color:#000;transition:none;max-width:13.75rem}.cxd-ListControl-item:not(.is-disabled){cursor:pointer}.cxd-ListControl-item .b-inherit{border-color:#000}.cxd-ListControl-item:hover{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-ListControl-item:hover .b-inherit{border-color:#108cee}.cxd-ListControl-item:hover:active,.cxd-ListControl-item.is-active{background-color:#fff;border-color:#108cee;color:#108cee}.cxd-ListControl-item:hover:active:hover,.cxd-ListControl-item.is-active:hover{background-color:#fff}.cxd-ListControl-item:hover:active .b-inherit,.cxd-ListControl-item.is-active .b-inherit{border-color:#108cee}.cxd-ListControl-item:hover:active:before,.cxd-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#108cee;right:0;bottom:0}.cxd-ListControl-item:hover:active:after,.cxd-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#fff;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.cxd-ListControl-item.is-disabled{pointer-events:none;opacity:1;border-color:#ebebeb;background-color:#f5f5f5;color:#999}.cxd-ListControl-item.is-disabled:before{background-color:#999}.cxd-ListControl-item.is-disabled .b-inherit{border-color:#ebebeb}.cxd-ListControl-itemImage{margin:-.375rem -.625rem}.cxd-ListControl-itemImage img{display:block;max-width:100%}.cxd-ListControl-itemLabel{text-align:center}.cxd-ListControl-itemImage+.cxd-ListControl-itemLabel{margin-top:.375rem}.cxd-ListControl-placeholder{color:#999}.cxd-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;white-space:nowrap;color:#000;background-color:#fff;border-radius:0}.cxd-LocationPicker:not(.is-disabled){cursor:pointer}.cxd-LocationPicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-LocationPicker:not(.is-disabled):hover .cxd-DatePicker-toggler:before{color:#108cee}.cxd-LocationPicker.is-focused,.cxd-LocationPicker.is-active{border-color:#108cee;box-shadow:none}.cxd-LocationPicker.is-disabled{background:#e9ecef}>.cxd-LocationPicker.is-disabled-input{color:#999}.cxd-LocationPicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-LocationPicker-toggler{cursor:pointer;color:#666}.cxd-LocationPicker-toggler:hover{color:#108cee}.cxd-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-LocationPicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-LocationPicker-clear:hover svg{fill:#666}.cxd-LocationControl{position:relative;width:100%}.cxd-LocationControl:not(.is-inline)>.cxd-LocationPicker{display:flex}.cxd-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#108cee}.cxd-MapPicker-search{padding:5px 10px}.cxd-MapPicker-map{display:block;width:100%;height:200px}.cxd-MapPicker-item{padding:10px;position:relative;border-top:1px solid #eceff8}.cxd-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.cxd-MapPicker-itemTitle{font-size:.875rem}.cxd-MapPicker-itemDesc{font-size:.75rem}.cxd-MapPicker-sugItem{cursor:pointer;padding:.21429rem .625rem}.cxd-MapPicker-sugItem:hover{color:#108cee;background-color:transparent}.tangram-suggestion-main{display:none!important}.cxd-MatrixControl-error{margin-bottom:0}.cxd-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;background-color:#fff;color:#000}.cxd-ColorPicker:not(.is-disabled){cursor:pointer}.cxd-ColorPicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.07143rem}.cxd-ColorPicker-input::placeholder{color:#999}.cxd-ColorPicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-ColorPicker.is-disabled{background:#f5f5f5;color:#999;pointer-events:none}.cxd-ColorPicker.is-disabled>.cxd-ColorPicker-input{color:#999}.cxd-ColorPicker.is-disabled>.cxd-ColorPicker-input::placeholder{color:#999}.cxd-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.cxd-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}.cxd-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.cxd-ColorPicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-ColorPicker-clear:hover svg{fill:#666}.cxd-ColorControl:not(.is-inline)>.cxd-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.cxd-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;white-space:nowrap;color:#000;background-color:#fff;border-radius:0}.cxd-DatePicker:not(.is-disabled){cursor:pointer}.cxd-DatePicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-DatePicker:not(.is-disabled):hover .cxd-DatePicker-toggler:before{color:#108cee}.cxd-DatePicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-DatePicker.is-disabled{background:#e9ecef}>.cxd-DatePicker.is-disabled-input{color:#999}.cxd-DatePicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.cxd-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DatePicker-toggler{cursor:pointer;color:#666}.cxd-DatePicker-toggler:hover{color:#108cee}.cxd-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-DatePicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-DatePicker-clear:hover svg{fill:#666}.cxd-DateControl:not(.is-inline)>.cxd-DatePicker{display:flex}.cxd-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.cxd-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.cxd-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.cxd-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#108cee;text-decoration:none}.cxd-DatePicker-shortcut a:hover{color:#0b62a6;text-decoration:none}.cxd-DatePicker-popover{margin:.125rem 0 0}.cxd-DatePicker-popover.cxd-PopOver--leftTopLeftBottom,.cxd-DatePicker-popover.cxd-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#666}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#fff}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#ededed}.rdt .rdtPicker td.rdtBetween{background:rgba(16,140,238,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#108cee}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#fff}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#108cee}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#eaf6fe}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#108cee;border:1px solid #eceff8;border-radius:0;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#108cee;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none;border-radius:0}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.rdtBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.rdtBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#666;background-color:#eaf6fe;border-color:#eaf6fe;box-shadow:none}.rdtBtnCancel:hover{color:#666;background-color:#c5e6fc;border-color:#b9e1fc}.rdtBtnCancel:focus{color:#666;background-color:#eaf6fe;border-color:#eaf6fe;box-shadow:none}.rdtBtnCancel:hover:focus{color:#666;background-color:#c5e6fc;border-color:#b9e1fc;box-shadow:none}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#666;background-color:#b9e1fc;border-color:#addcfb}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#0b62a6;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#108cee;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.cxd-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #ccc;font-size:.75rem;padding:.33929rem .75rem;height:1.875rem;outline:0;border-radius:0;color:#000;background-color:#fff}.cxd-DateRangePicker:not(.is-disabled){cursor:pointer}.cxd-DateRangePicker:not(.is-disabled):hover{background-color:#fff;border-color:#108cee}.cxd-DateRangePicker:not(.is-disabled):hover .cxd-DateRangePicker-toggler{color:#108cee}.cxd-DateRangePicker.is-focused{border-color:#108cee;box-shadow:none}.cxd-DateRangePicker.is-disabled{background:#e9ecef}>.cxd-DateRangePicker.is-disabled-input{color:#999}.cxd-DateRangePicker-placeholder{color:#999;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.cxd-DateRangePicker-toggler{cursor:pointer;color:#666}.cxd-DateRangePicker-toggler:hover{color:#108cee}.cxd-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.cxd-DateRangePicker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-DateRangePicker-clear:hover svg{fill:#666}.cxd-DateRangePicker-wrap{width:auto;padding:.625rem}.cxd-DateRangePicker-start,.cxd-DateRangePicker-end{display:inline-block;vertical-align:top}.cxd-DateRangePicker-start .rdtPicker,.cxd-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.cxd-DateRangePicker-end{margin-top:20px}.cxd-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.cxd-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.cxd-DateRangePicker-ranger a{cursor:pointer}.cxd-DateRangePicker-actions{text-align:right;margin-top:.625rem}.cxd-DateRangeControl:not(.is-inline)>.cxd-DateRangePicker{display:flex}.cxd-DateRangePicker-popover{margin:.125rem 0 0}.cxd-DateRangePicker-popover.cxd-PopOver--leftTopLeftBottom,.cxd-DateRangePicker-popover.cxd-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.cxd-DateRangePicker-wrap{white-space:nowrap}.cxd-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.cxd-ImageControl{position:relative}.cxd-ImageControl-dropzone{outline:0}.cxd-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #eceff8;cursor:pointer;margin-right:.9375rem;color:#666;background-color:#fff;border-color:.0625rem solid #dbdbdb;box-shadow:none}.cxd-ImageControl-addBtn:hover{color:#108cee;background-color:#fff;border-color:#108cee}.cxd-ImageControl-addBtn:focus{color:#666;background-color:#fff;border-color:.0625rem solid #dbdbdb;box-shadow:none}.cxd-ImageControl-addBtn:hover:focus{color:#108cee;background-color:#fff;border-color:#108cee;box-shadow:none}.cxd-ImageControl-addBtn.is-disabled,.cxd-ImageControl-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.cxd-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#108cee;background-color:#f3f9fe;border-color:#108cee}.cxd-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.cxd-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #ebebeb;background:#f5f5f5;color:#ccc}.cxd-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #eceff8;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.15);left:100%;color:#fff;padding:.125rem .625rem;margin:30px 0 0 .625rem}.cxd-ImageControl-dropzone:focus .cxd-ImageControl-addBtn{border-color:#108cee;background:#fff;color:#108cee}.cxd-ImageControl-item{border:.0625rem solid #eceff8;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.cxd-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.cxd-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.cxd-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.cxd-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.cxd-ImageControl-item:hover .cxd-ImageControl-itemOverlay{display:flex}.cxd-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.cxd-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.cxd-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.cxd-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.cxd-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.cxd-ImageControl-progressValue{height:5px;display:block;background:#108cee;min-width:10%;transition:ease-out width .3s}.cxd-ImageControl-item.is-invalid .cxd-ImageControl-itemClear{display:none}.cxd-ImageControl-item.is-invalid:hover .cxd-ImageControl-itemClear{display:block}.cxd-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.cxd-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.cxd-ImageControl-retryBtn>p{width:100%;text-align:center;color:#ea2e2e;margin:10px 0 0}.cxd-ImageControl-errorMsg{color:#ea2e2e;margin:5px 0 0}.cxd-ImageControl-uploadBtn{margin-top:5px}.cxd-ImageControl-cropperWrapper{position:relative}.cxd-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.cxd-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.cxd-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.cxd-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #eceff8;border-color:#108cee;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.cxd-FileControl-dropzone{outline:0}.cxd-FileControl-selectBtn{width:7.5rem}.cxd-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.cxd-FileControl-description{margin-left:10px;color:#999;font-size:12px}.cxd-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.cxd-FileControl-list>li{color:#333;font-size:12px}.cxd-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.cxd-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.cxd-FileControl-itemInfo.is-invalid{color:#999}.cxd-FileControl-itemInfo>svg:first-child{margin-right:10px}.cxd-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.cxd-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.cxd-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.cxd-FileControl-clear:hover{color:#333}.cxd-FileControl-list:empty{display:none}.cxd-FileControl-list>li:hover .cxd-FileControl-clear{display:block}.cxd-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.cxd-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.cxd-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.cxd-FileControl-progress{height:5px;flex:1;background:#ebebeb}.cxd-FileControl-progress>span{display:block;background:#108cee;height:100%;min-width:10%;transition:ease-out width .3s}.cxd-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #108cee;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.cxd-FileControl-sum{font-size:.75rem}.cxd-FileControl-sum>a{cursor:pointer}.cxd-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #ccc;max-width:100%;box-sizing:content-box}.cxd-EditorControl>.cxd-MonacoEditor,.cxd-EditorControl>.cxd-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.cxd-EditorControl.is-error{border-color:#d0021b}.cxd-EditorControl.is-focused{border-color:#108cee}.cxd-EditorControl--sm{min-height:100px}.cxd-EditorControl--sm>.cxd-MonacoEditor{min-height:100px}.cxd-EditorControl--md{min-height:250px}.cxd-EditorControl--md>.cxd-MonacoEditor{min-height:250px}.cxd-EditorControl--lg{min-height:300px}.cxd-EditorControl--lg>.cxd-MonacoEditor{min-height:300px}.cxd-EditorControl--xl{min-height:400px}.cxd-EditorControl--xl>.cxd-MonacoEditor{min-height:400px}.cxd-EditorControl--xxl{min-height:500px}.cxd-EditorControl--xxl>.cxd-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.cxd-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #ccc;width:100%}.cxd-RichTextControl>.tox-tinymce{border:0}.cxd-RichTextControl>textarea{width:100%}.cxd-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.cxd-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #ccc}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn,.cxd-RichTextControl .fr-popup .fr-command.fr-btn{color:#000}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.cxd-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#108cee;background-color:#fff}.cxd-RichTextControl .fr-desktop .fr-command:hover,.cxd-RichTextControl .fr-desktop .fr-command:focus{background-color:#fff}.cxd-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.cxd-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#fff}.cxd-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#108cee;color:#fff}.cxd-RichTextControl.is-focused{border:.0625rem solid #108cee}.cxd-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #108cee}.cxd-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.cxd-RichTextControl .fr-sticky-dummy{position:absolute}.cxd-RichTextControl.is-disabled{border-color:#ebebeb;pointer-events:none;opacity:.6}.cxd-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#ebebeb}.cxd-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.cxd-RangeControl::before,.cxd-RangeControl::after{display:table;content:''}.cxd-RangeControl::after{clear:both}.cxd-RangeControl--withInput .cxd-InputRange{width:calc(100% - 120px)}.cxd-RangeControl--withInput .cxd-InputRange-label--mid{left:calc(50% - 60px)}.cxd-RangeControl--withInput.is-multiple .cxd-InputRange{width:calc(100% - 210px)}.cxd-RangeControl .cxd-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.cxd-RangeControl .cxd-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.cxd-RangeControl .cxd-InputRange-input input:focus{outline:0;border:.0625rem solid #108cee}.cxd-RangeControl .cxd-InputRange-input-separator{display:inline-block;padding:0 5px}.cxd-RangeControl .cxd-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.cxd-RangeControl .cxd-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.cxd-RangeControl .cxd-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.cxd-InputRange{height:1.5rem;position:relative;width:100%}.cxd-InputRange-slider{appearance:none;background:#108cee;border:.0625rem solid #108cee;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.cxd-InputRange-slider:active{transform:scale(1.3)}.cxd-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(16,140,238,.2)}.input-range--disabled .cxd-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.cxd-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.cxd-InputRange-sliderContainer{transition:left .3s ease-out}.cxd-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.cxd-InputRange-label--min,.cxd-InputRange-label--max,.cxd-InputRange-label--mid{bottom:-1.4rem;position:absolute}.cxd-InputRange-label--mid{left:50%;bottom:-.3125rem}.cxd-InputRange-label--max{right:0}.cxd-InputRange-label--value{position:absolute;display:none;top:-2.5rem}.cxd-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.cxd-InputRange.is-disabled .cxd-InputRange-track{background:#eee}.cxd-InputRange-track.is-active{background:#108cee}.cxd-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.cxd-InputRange-track--background::before,.cxd-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.cxd-InputRange-track--background::before{left:-.5rem}.cxd-InputRange-track--background::after{right:-.5rem}.cxd-InputRange-track--active{background:#108cee}.cxd-RepeatControl .repeat-btn{width:5rem}.cxd-RepeatControl .Select{display:inline-block;min-width:100px}.cxd-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.cxd-TreeControl{border:1px solid #ccc;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.cxd-TreeControl.h-full{max-height:none;overflow:visible}.cxd-TreeControl.no-border{border:0}.cxd-Tree-list,.cxd-Tree-sublist{list-style:none;padding:0;margin:0}.cxd-Tree-sublist.is-folded{display:none}.cxd-Tree-item{line-height:1.875rem;position:relative}.cxd-Tree-item>div:hover{text-decoration:none}.cxd-Tree-item>div:hover>.cxd-Tree-item-icons{visibility:visible}.cxd-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.cxd-Tree-rootItem{line-height:1.875rem}.cxd-Tree-item>div:hover>.cxd-Tree-item-icons,.cxd-Tree-rootItem>div:hover>.cxd-Tree-item-icons{visibility:visible}.cxd-Tree-itemLabel{display:flex;align-items:center}.cxd-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.cxd-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.cxd-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.cxd-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.cxd-Tree-itemInput{padding-left:.625rem}.cxd-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#999}.cxd-Tree-itemInput>a:hover{color:#108cee;text-decoration:none}.cxd-Tree-itemInput>input{outline:0;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.19866rem .625rem;font-size:.75rem}.cxd-Tree-itemInput>input::placeholder{color:#999;user-select:none}.cxd-Tree-itemInput>input:focus{border-color:#108cee;box-shadow:none}.cxd-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.cxd-Tree-addTopBtn:hover{text-decoration:none}.cxd-Tree-addTopBtn.is-disabled{pointer-events:none;color:#999}.cxd-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.cxd-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.cxd-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.cxd-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.cxd-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.cxd-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.cxd-Tree-rootIcon>svg,.cxd-Tree-folderIcon>svg,.cxd-Tree-leafIcon>svg{width:.875rem;height:.875rem}.cxd-Tree-itemLabel{user-select:none}.cxd-Tree-itemLabel.is-checked,.cxd-Tree-itemLabel.is-children-checked{color:#108cee}.cxd-Tree-itemLabel.is-disabled{color:#999}.cxd-Tree-itemLabel>.cxd-Checkbox{line-height:1;display:inline-block}.cxd-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.cxd-Tree-placeholder{color:#999}.cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel,.cxd-Tree-item .cxd-Tree-item>.cxd-Tree-placeholder{padding-left:1.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel,.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-placeholder{padding-left:2.5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:3.75rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:6.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:7.5rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:8.75rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:10rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:11.25rem}.cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item .cxd-Tree-item>.cxd-Tree-itemLabel{padding-left:12.5rem}.cxd-TreeSelectControl{position:relative}.cxd-TreeSelectControl>.cxd-TreeSelect-popover{width:100%}.cxd-TreeSelect{position:relative;max-width:100%;outline:0}.cxd-TreeSelect.is-inline{display:inline-block;width:12.5rem}.cxd-TreeSelect-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-TreeSelect-input input::placeholder{color:#999;user-select:none}.cxd-TreeSelect.is-error>.cxd-TreeSelect-input{border-color:#d0021b;background-color:#fffbfb}.cxd-TreeSelect.is-focused>.cxd-TreeSelect-input{border-color:#108cee;box-shadow:none}.cxd-TreeSelect.is-error.is-focused>.cxd-TreeSelect-input{border-color:#d0021b}.cxd-TreeSelect.is-disabled>.cxd-TreeSelect-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-TreeSelect-spinner{line-height:1.07143rem}.cxd-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-TreeSelect-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-TreeSelect-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-TreeSelect.cxd-Form-control--sizeXs>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeSm>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeMd>.cxd-TreeSelect-input,.cxd-TreeSelect.cxd-Form-control--sizeLg>.cxd-TreeSelect-input{min-width:100%;display:inline-flex}}.cxd-TreeSelect.is-opened{border-color:#108cee;box-shadow:none}.cxd-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.cxd-TreeSelect-popover>.cxd-Tree{background:#fff;border:.0625rem solid #108cee;padding:.3125rem .625rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.cxd-Combo-placeholder{color:#999;padding-top:.40179rem}.cxd-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#999;padding:.125rem .3125rem;cursor:pointer}.cxd-Combo-toolbarBtn:hover{color:gray}.cxd-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.cxd-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.625rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Combo-addBtn>svg{width:.75rem;height:.75rem}.cxd-Combo-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-Combo-addBtn>.pull-left{margin-right:.5rem}.cxd-Combo-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-Combo-addBtn>.pull-right{margin-left:.5rem}.cxd-Combo-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-Combo-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-Combo-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-Combo-addBtn.is-disabled,.cxd-Combo-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-Combo-addBtn:not(:disabled):not(.is-disabled):active,.cxd-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-Combo-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-Combo-items{margin-bottom:.625rem}.cxd-Combo-items:empty{display:none}.cxd-Combo-items:empty+.cxd-Combo-toolbar{padding-top:.125rem}.cxd-Combo-item{background:#fff}.cxd-Combo-itemDrager{cursor:move}.cxd-Combo-itemDrager>a{color:#999}.cxd-Combo-itemDrager>a:hover{color:#108cee}.cxd-Combo-itemDrager svg{width:1rem;height:1rem}.cxd-Combo--hor .cxd-Combo-item{display:flex;flex-wrap:nowrap}.cxd-Combo--hor .cxd-Combo-item+.cxd-Combo-item{margin-top:.3125rem}.cxd-Combo--hor .cxd-Combo-itemInner{flex-basis:0;flex-grow:1}.cxd-Combo--hor .cxd-Combo-itemTag{margin-right:.625rem}.cxd-Combo--hor .cxd-Combo-itemTag label{color:#108cee;margin-right:.625rem}.cxd-Combo--hor .cxd-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.40179rem}.cxd-Combo--hor .cxd-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:1}.cxd-Combo--hor.is-draggable .cxd-Combo-toolbar{padding-left:1.5rem}.cxd-Combo--hor .cxd-Combo-itemDrager{padding:.3125rem .375rem 0 0}.cxd-Combo--ver:not(.cxd-Combo--noBorder)::before,.cxd-Combo--ver:not(.cxd-Combo--noBorder)::after{display:table;content:''}.cxd-Combo--ver:not(.cxd-Combo--noBorder)::after{clear:both}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-placeholder{margin:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder) .cxd-Combo-itemTag{text-align:right}.cxd-Combo--ver:not(.cxd-Combo--noBorder) .cxd-Combo-itemTag label{color:#108cee;margin-right:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item{border:.0625rem dashed #eceff8;padding:.625rem;position:relative}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item{margin:.625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#108cee;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#0e7ed6;border-width:.0625rem .0625rem 0}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn:hover,.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemToolbar .cxd-Combo-toolbarBtn:hover{color:#fff}.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-item:hover,.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-items>.cxd-Combo-item:hover{border-color:#108cee}.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-item:hover>.cxd-Combo-itemToolbar,.cxd-Combo--ver:not(.cxd-Combo--noBorder):not(.is-disabled)>.cxd-Combo-items>.cxd-Combo-item:hover>.cxd-Combo-itemToolbar{top:-1.5625rem;opacity:1}.cxd-Combo--ver:not(.cxd-Combo--noBorder)>.cxd-Combo-items>.cxd-Combo-item>.cxd-Combo-itemDrager{position:absolute;top:.3125rem;left:-1.875rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable>.cxd-Combo-items>.cxd-Combo-item{margin-left:2.1875rem}.cxd-Combo--ver:not(.cxd-Combo--noBorder).is-draggable>.cxd-Combo-toolbar{padding-left:1.5625rem}.cxd-Combo-item--dragging{position:relative}.cxd-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.cxd-ComboTabs>.cxd-Tabs-links::before,.cxd-ComboTabs>.cxd-Tabs-links::after{display:table;content:''}.cxd-ComboTabs>.cxd-Tabs-links::after{clear:both}.cxd-ComboTabs-addLink{float:right}.cxd-Combo-dragableTip{color:#999;font-size:.75rem;margin-left:.3125rem}.cxd-Combo-dragableTip:empty{display:none}.cxd-ComboControl.is-inline .cxd-Combo--hor .cxd-Combo-itemInner{flex-grow:unset;flex-basis:unset}.cxd-ComboControl.is-inline .cxd-Combo--ver .cxd-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.cxd-Combo-form .cxd-Form-item:last-child{margin-bottom:0}}.cxd-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.33929rem 0}.cxd-SubForm-value{cursor:pointer;user-select:none;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.cxd-SubForm-value:hover{background-color:#b5dcfb}.cxd-SubForm-value.is-disabled{pointer-events:none;opacity:1}.cxd-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-SubForm-valueIcon:hover{background-color:#b5dcfb}.cxd-SubForm-valueLabel{padding:0 .3125rem}.cxd-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem;color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-SubForm-addBtn .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.cxd-SubForm-addBtn>.pull-left{margin-right:.5rem}.cxd-SubForm-addBtn .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-SubForm-addBtn>.pull-right{margin-left:.5rem}.cxd-SubForm-addBtn:hover{color:#fff;background-color:#0e77ca;border-color:#0d70be}.cxd-SubForm-addBtn:focus{color:#fff;background-color:#108cee;border-color:#108cee;box-shadow:none}.cxd-SubForm-addBtn:hover:focus{color:#fff;background-color:#0e77ca;border-color:#0d70be;box-shadow:none}.cxd-SubForm-addBtn.is-disabled,.cxd-SubForm-addBtn:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.cxd-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0d70be;border-color:#0c69b2}.cxd-SubForm-addBtn.is-disabled{pointer-events:none;opacity:1}.cxd-SubFormControl{padding-top:0rem}.cxd-ChainedSelectControl .cxd-Select{margin-right:.3125rem}.cxd-Picker{position:relative;max-width:100%;outline:0}.cxd-Picker.is-inline{display:inline-block;width:12.5rem}.cxd-Picker-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-Picker-input input::placeholder{color:#999;user-select:none}.cxd-Picker.is-error>.cxd-Picker-input{border-color:#d0021b;background-color:#fffbfb}.cxd-Picker.is-focused>.cxd-Picker-input{border-color:#108cee;box-shadow:none}.cxd-Picker.is-error.is-focused>.cxd-Picker-input{border-color:#d0021b}.cxd-Picker.is-disabled>.cxd-Picker-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-Picker-spinner{line-height:1.07143rem}.cxd-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-Picker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-Picker-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-Picker.cxd-Form-control--sizeXs>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeSm>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeMd>.cxd-Picker-input,.cxd-Picker.cxd-Form-control--sizeLg>.cxd-Picker-input{min-width:100%;display:inline-flex}}.cxd-Picker.is-focus>.cxd-Picker-input{border-color:#108cee;box-shadow:none}.cxd-Picker-placeholder{color:#999;user-select:none;position:absolute;line-height:1.42857}.cxd-Picker-input{min-height:1.875rem;height:auto}.cxd-Picker .cxd-Picker-values{display:inline}.cxd-Picker-valueWrap{flex-grow:1;position:relative}.cxd-Picker-valueWrap>input{width:1rem;display:inline-block}.cxd-Picker .cxd-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.cxd-Picker .cxd-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:.94643rem;display:inline-block;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-Picker .cxd-Picker-value.is-disabled{pointer-events:none;opacity:1}.cxd-Picker .cxd-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #9dd1fa;padding:1px 5px}.cxd-Picker .cxd-Picker-valueIcon:hover{background-color:#b5dcfb}.cxd-Picker .cxd-Picker-valueLabel{padding:0 .3125rem}.cxd-Picker-btn{cursor:pointer;color:#999}.cxd-Picker-btn:hover{color:#108cee}.cxd-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.cxd-Picker-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-Picker-clear:hover svg{fill:#666}.cxd-PickerControl.is-inline .cxd-Picker{display:inline-block;min-width:9.375rem}.cxd-QrCode{min-height:1.875rem;padding:.4375rem 0}.cxd-TagControl{position:relative}.cxd-TagControl-input.is-focused{border-radius:0}.cxd-TagControl-input.is-disabled{border-style:dashed;background:transparent}.cxd-TagControl.is-inline{display:inline-block}.cxd-TagControl>.cxd-TagControl-popover{padding:0;border:0;width:100%;margin-top:.1875rem}.cxd-TagControl>.cxd-TagControl-popover.cxd-PopOver--leftBottomLeftTop{top:100%!important}.cxd-TagControl>.cxd-TagControl-popover.cxd-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.cxd-TagControl-sug{margin-top:.375rem}.cxd-TagControl-sugTip{color:#108cee;margin-bottom:.375rem}.cxd-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:0;height:1.875rem;color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-TagControl-sugItem .cxd-Button-icon:first-child:not(:last-child):not(.pull-right),.cxd-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.cxd-TagControl-sugItem>.pull-left{margin-right:.5rem}.cxd-TagControl-sugItem .cxd-Button-icon:last-child:not(:first-child):not(.pull-left),.cxd-TagControl-sugItem>.pull-right{margin-left:.5rem}.cxd-TagControl-sugItem:hover{color:#000;background-color:#ececec;border-color:#b3b3b3}.cxd-TagControl-sugItem:focus{color:#000;background-color:#fff;border-color:#ccc;box-shadow:none}.cxd-TagControl-sugItem:hover:focus{color:#000;background-color:#ececec;border-color:#b3b3b3;box-shadow:none}.cxd-TagControl-sugItem.is-disabled,.cxd-TagControl-sugItem:disabled{background-color:#f5f5f5;color:#aaa;border-color:#ebebeb}.cxd-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.cxd-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#000;background-color:#e6e6e6;border-color:#acacac}.cxd-TagControl-sugItem.is-disabled{pointer-events:none;opacity:1}.cxd-TagControl-popover.cxd-PopOver--leftBottomLeftTop>.cxd-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.cxd-TagControl-popover.cxd-PopOver--leftTopLeftBottom>.cxd-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.cxd-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#343a40;cursor:pointer}.cxd-Rating.is-active{color:#108cee}.cxd-Rating.is-disabled{cursor:not-allowed}.cxd-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#108cee}.cxd-RatingControl{position:relative;overflow:hidden}.cxd-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem;position:relative}.cxd-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.cxd-Transfer-title{display:flex;align-items:center;background:#f5f5f5;height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;flex-direction:row}.cxd-Transfer-title--light{background:transparent}.cxd-Transfer-title>span{flex-grow:1}.cxd-Transfer-select,.cxd-Transfer-result{width:0;min-width:12.5rem;max-height:25rem;flex-grow:1;border:.0625rem solid #ccc;display:flex;flex-direction:column}.cxd-Transfer-select>.cxd-Transfer-checkboxes,.cxd-Transfer-result>.cxd-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.cxd-Transfer-search+.cxd-Transfer-checkboxes{border-top:1px solid #eceff8}.cxd-Transfer-checkboxes .cxd-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.cxd-Transfer-search{padding:.625rem}.cxd-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.cxd-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #eceff8;margin:0 10px;color:#999}.cxd-Transfer-arrow>svg{top:0;width:14px;height:14px}.cxd-Transfer-checkAll,.cxd-Transfer-clearAll{user-select:none;cursor:pointer}.cxd-Transfer-checkAll.is-disabled,.cxd-Transfer-clearAll.is-disabled{pointer-events:none;color:#999}.cxd-Transfer-tabs{display:flex;flex-direction:column;height:100%}.cxd-Transfer-tabs>.cxd-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.cxd-Transfer-tabs>.cxd-Tabs-links .cxd-TabsTransfer-tabsMid{flex-grow:1}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-SearchBox{margin:-5px 5px 0 10px}.cxd-Transfer-tabs>.cxd-Tabs-links>.cxd-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.cxd-Transfer-tabs>.cxd-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane{position:relative;min-height:100%}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane.is-active{display:flex;flex-direction:column}.cxd-Transfer-tabs>.cxd-Tabs-content>.cxd-Tabs-pane.is-active>.cxd-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.cxd-TabsTransfer .cxd-Transfer-title{height:40px}.cxd-TabsTransfer-placeholder{height:1.875rem;line-height:1.42857;font-size:.75rem;padding:.40179rem .625rem;color:#999}.cxd-TransferControl{position:relative}.cxd-TransferControl.is-inline{display:inline-block}.cxd-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #ccc;background:#fff;border-radius:0;min-height:1.875rem;padding:.33929rem 0 .33929rem .625rem;cursor:pointer;color:#000}.cxd-NestedSelect.is-disabled{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-NestedSelect.is-focused,.cxd-NestedSelect.is-opened{border-color:#108cee}.cxd-NestedSelect.is-opened .cxd-Select-arrow>svg{transform:rotate(180deg)}.cxd-NestedSelect:not(.is-disabled):hover{background:#fff}.cxd-NestedSelect--multi .cxd-Select-value{position:static;user-select:none;line-height:.94643rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#108cee;background:#cee8fc;border:.0625rem solid #9dd1fa;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.cxd-NestedSelect--multi .cxd-Select-valueLabel{padding:0 .3125rem}.cxd-NestedSelect-placeholder{color:#999;line-height:1.42857}.cxd-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.cxd-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.cxd-NestedSelect-clear svg{fill:#999;width:.625rem;height:.625rem}.cxd-NestedSelect-clear:hover svg{fill:#666}.cxd-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.cxd-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#999}.cxd-NestedSelect-menuOuter{display:flex}.cxd-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#fff;color:#333;border:0 solid #108cee;box-shadow:.125rem .25rem .5rem rgba(0,0,0,.2);overflow-y:auto;overflow-x:hidden}.cxd-NestedSelect-menu:not(:first-child){border-left:0}.cxd-NestedSelect-menu .cxd-NestedSelect-option{position:relative;padding-left:.625rem;min-height:1.875rem;line-height:1.875rem;cursor:pointer;display:flex}.cxd-NestedSelect-menu .cxd-NestedSelect-option>.cxd-NestedSelect-optionLabel{flex:1;cursor:pointer}.cxd-NestedSelect-menu .cxd-NestedSelect-option>.cxd-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.cxd-NestedSelect-menu .cxd-NestedSelect-option.is-active{color:#108cee;background-color:transparent}.cxd-NestedSelect-menu .cxd-NestedSelect-option:hover{color:#000;background-color:#eaf6fe}.cxd-NestedSelect-menu .cxd-NestedSelect-option:hover>.cxd-NestedSelect-childrenOuter{display:block}.cxd-NestedSelect-menu .cxd-NestedSelect-option .cxd-Checkbox{display:inline-block;padding-top:0}.cxd-NestedSelect-menu .cxd-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.cxd-Form-control--sizeXs>.cxd-NestedSelect,.cxd-Form-control--sizeSm>.cxd-NestedSelect,.cxd-Form-control--sizeMd>.cxd-NestedSelect,.cxd-Form-control--sizeLg>.cxd-NestedSelect{display:inline-flex!important}}.cxd-IconPickerControl{position:relative;max-width:100%}.cxd-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.cxd-IconPickerControl-input{display:flex;background-color:#fff;border:.0625rem solid #ccc;border-radius:0;line-height:1.42857;padding:.33929rem .625rem;font-size:.75rem;flex-wrap:wrap}.cxd-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#666;width:100%;height:1.07143rem}.cxd-IconPickerControl-input input::placeholder{color:#999;user-select:none}.cxd-IconPickerControl.is-error>.cxd-IconPickerControl-input{border-color:#d0021b;background-color:#fffbfb}.cxd-IconPickerControl.is-focused>.cxd-IconPickerControl-input{border-color:#108cee;box-shadow:none}.cxd-IconPickerControl.is-error.is-focused>.cxd-IconPickerControl-input{border-color:#d0021b}.cxd-IconPickerControl.is-disabled>.cxd-IconPickerControl-input{color:#999;background:#f5f5f5;border-color:#ebebeb}.cxd-IconPickerControl-spinner{line-height:1.07143rem}.cxd-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.cxd-IconPickerControl-clear svg{fill:#999;top:0;width:.625rem;height:.625rem}.cxd-IconPickerControl-clear:hover svg{fill:#666}@media (min-width:576px){.cxd-IconPickerControl.cxd-Form-control--sizeXs>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeSm>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeMd>.cxd-IconPickerControl-input,.cxd-IconPickerControl.cxd-Form-control--sizeLg>.cxd-IconPickerControl-input{min-width:100%;display:inline-flex}}.cxd-IconPickerControl-placeholder{color:#999;user-select:none;position:absolute;left:.625rem;top:.33929rem;margin-top:.125rem;line-height:1.42857}.cxd-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.cxd-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.cxd-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.cxd-IconPickerControl-input--withAC>input{width:auto}.cxd-IconPickerControl-sugsPanel{position:absolute;background:#fff;color:#333;border:.0625rem solid #108cee;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.cxd-IconPickerControl-tabs{background:#f0f3f4}.cxd-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.cxd-IconPickerControl-tab.active{background:#fff}.cxd-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.cxd-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.cxd-IconPickerControl-sugItem:hover{background-color:#eaf6fe}.cxd-IconPickerControl-sugItem.is-active{color:#fff;background-color:#108cee}.cxd-IconPickerControl-value{user-select:none;line-height:1.07143rem;vertical-align:middle;display:inline-block}.cxd-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.cxd-Form{font-size:.75rem;position:relative}.cxd-Form--quickEdit .cxd-Form-item:last-child{margin-bottom:0}.cxd-Form--inline>.cxd-PlainField{display:inline-block;padding-top:.33929rem}.cxd-Form-static{min-height:1.875rem;padding-top:.40179rem;padding-bottom:.40179rem;margin-bottom:0}.cxd-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.cxd-Form-label>span{position:relative}.cxd-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.cxd-Form-feedback{color:#ea2e2e;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.cxd-Form-description{display:block;color:#999;margin:.375rem 0 0;font-size:.75rem}.cxd-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.33929rem;vertical-align:top}.cxd-Form-item{margin-bottom:1.25rem}.cxd-Grid-form>.cxd-Form-item:last-child{margin-bottom:0}.cxd-Form--inline>.cxd-Form-item--inline{margin-bottom:.625rem;margin-right:.625rem}.cxd-Form--inline>.cxd-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.cxd-Form-item .cxd-Form-remark{padding-top:.40179rem;vertical-align:top}.cxd-Form-item--horizontal>.cxd-Form-label{text-align:left;white-space:nowrap}.cxd-Form-item--normal>.cxd-Form-label{display:block}.cxd-Form-item--normal>.cxd-Form-label .cxd-Form-star{position:absolute;left:-.375rem;top:.1875rem}.cxd-Form-item.is-error>.cxd-Form-label{color:#ea2e2e}.cxd-Form-placeholder{color:#999}.cxd-Form-caption{display:inline-block;line-height:1.875rem;height:1.875rem;margin-left:.625rem}@media (min-width:576px){.cxd-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeXs.cxd-NumberControl{width:5rem}.cxd-Form-control--sizeXs.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeSm.cxd-NumberControl{width:10rem}.cxd-Form-control--sizeSm.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeMd.cxd-TextareaControl{width:auto}.cxd-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.cxd-Form-control--sizeLg.cxd-NumberControl{width:20rem}.cxd-Form-control--sizeLg.cxd-TextareaControl{width:auto}.cxd-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.cxd-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.cxd-Form-item--horizontal>.cxd-Form-label,.cxd-Form-item--horizontal>.cxd-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.cxd-Form-item--horizontal .cxd-Form-itemColumn--xs,.cxd-Form-item--horizontal .cxd-Form-itemColumn--sm,.cxd-Form-item--horizontal .cxd-Form-itemColumn--normal,.cxd-Form-item--horizontal .cxd-Form-itemColumn--md,.cxd-Form-item--horizontal .cxd-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.cxd-Form-item--horizontal>.cxd-Form-label{padding-top:.40179rem;margin-bottom:0}.cxd-Form-item--horizontal>.cxd-Form-label .cxd-Form-star{position:absolute;left:-.375rem;top:.1875rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--xs{width:3.125rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--sm{width:4.375rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--normal{width:6.25rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--md{width:8.75rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--lg{width:11.875rem}.cxd-Form-item--horizontal .cxd-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.cxd-Form-item--horizontal .cxd-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.cxd-Form-item--inline{display:inline-block;vertical-align:top}.cxd-Form-item--inline .cxd-TextControl{width:12.5rem}.cxd-Form-item--inline>.cxd-Form-label{padding-top:.40179rem;margin-bottom:0;margin-right:.625rem}.cxd-Form-item--inline>.cxd-Form-label .cxd-Form-star{position:static}.cxd-Form-item--inline>.cxd-Form-value{display:inline}.cxd-Form-item--inline>.cxd-Form-value>.cxd-Form-control{vertical-align:top;display:inline-block}.cxd-Form-item--inline>.cxd-Form-value>.cxd-Form-control.cxd-InputGroup{display:inline-flex}.cxd-Form-item--inline>.cxd-Form-value>.cxd-TextControl--withAddOn{display:inline-flex;min-width:15rem}.cxd-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.cxd-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.cxd-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.cxd-Form-rowInner{display:flex;flex-wrap:nowrap}.cxd-Form-rowInner>.cxd-Form-label{display:inline-block;vertical-align:top;padding-top:.40179rem;padding-right:.625rem}.cxd-Form-rowInner>.cxd-Form-control{flex-basis:0;flex-grow:1}.cxd-Form-rowInner>.cxd-Form-control:not(.cxd-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#eaf6fe;color:#666}.bg-light.lt,.bg-light .lt{background-color:#f4fafe}.bg-light.lter,.bg-light .lter{background-color:#f9fcff}.bg-light.dk,.bg-light .dk{background-color:#dbf0fe}.bg-light.dker,.bg-light .dker{background-color:#d0ecfe}.bg-light.bg,.bg-light .bg{background-color:#eaf6fe}.bg-dark{background-color:#343a40;color:#a0a0a0}.bg-dark.lt,.bg-dark .lt{background-color:#41474c}.bg-dark.lter,.bg-dark .lter{background-color:#4f5458}.bg-dark.dk,.bg-dark .dk{background-color:#272d33}.bg-dark.dker,.bg-dark .dker{background-color:#1c2125}.bg-dark.bg,.bg-dark .bg{background-color:#343a40}.bg-dark a,.bg-dark .cxd-Button--link{color:#b9baba}.bg-dark a:hover,.bg-dark .cxd-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#868787!important}.bg-dark .text-lt{color:#e0e0e0!important}.bg-black{background-color:#000;color:#666}.bg-black.lt,.bg-black .lt{background-color:#0d0d0d}.bg-black.lter,.bg-black .lter{background-color:#1a1a1a}.bg-black.dk,.bg-black .dk{background-color:#000}.bg-black.dker,.bg-black .dker{background-color:#000}.bg-black.bg,.bg-black .bg{background-color:#000}.bg-black a,.bg-black .cxd-Button--link{color:gray}.bg-black a:hover,.bg-black .cxd-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#4d4d4d!important}.bg-black .text-lt{color:#a6a6a6!important}.bg-primary{background-color:#108cee;color:#d1e7f9}.bg-primary.lt,.bg-primary .lt{background-color:#2a97ee}.bg-primary.lter,.bg-primary .lter{background-color:#44a2ed}.bg-primary.dk,.bg-primary .dk{background-color:#0c7ed9}.bg-primary.dker,.bg-primary .dker{background-color:#0870c3}.bg-primary.bg,.bg-primary .bg{background-color:#108cee}.bg-primary a,.bg-primary .cxd-Button--link{color:#feffff}.bg-primary a:hover,.bg-primary .cxd-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#a4d0f3!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#5fb333;color:#d4eac8}.bg-success.lt,.bg-success .lt{background-color:#6bc33c}.bg-success.lter,.bg-success .lter{background-color:#7ac653}.bg-success.dk,.bg-success .dk{background-color:#54a22b}.bg-success.dker,.bg-success .dker{background-color:#499023}.bg-success.bg,.bg-success .bg{background-color:#5fb333}.bg-success a,.bg-success .cxd-Button--link{color:#f1f8ed}.bg-success a:hover,.bg-success .cxd-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#b6dca3!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#108cee;color:#d1e7f9}.bg-info.lt,.bg-info .lt{background-color:#2a97ee}.bg-info.lter,.bg-info .lter{background-color:#44a2ed}.bg-info.dk,.bg-info .dk{background-color:#0c7ed9}.bg-info.dker,.bg-info .dker{background-color:#0870c3}.bg-info.bg,.bg-info .bg{background-color:#108cee}.bg-info a,.bg-info .cxd-Button--link{color:#feffff}.bg-info a:hover,.bg-info .cxd-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#a4d0f3!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#f39000;color:#fce5c3}.bg-warning.lt,.bg-warning .lt{background-color:#fc9c11}.bg-warning.lter,.bg-warning .lter{background-color:#faa62c}.bg-warning.dk,.bg-warning .dk{background-color:#da8100}.bg-warning.dker,.bg-warning .dker{background-color:#c07200}.bg-warning.bg,.bg-warning .bg{background-color:#f39000}.bg-warning a,.bg-warning .cxd-Button--link{color:#fefaf4}.bg-warning a:hover,.bg-warning .cxd-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#f9d093!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#ea2e2e;color:#fbe9e9}.bg-danger.lt,.bg-danger .lt{background-color:#ea4848}.bg-danger.lter,.bg-danger .lter{background-color:#ea6161}.bg-danger.dk,.bg-danger .dk{background-color:#ea1414}.bg-danger.dker,.bg-danger .dker{background-color:#d60f0f}.bg-danger.bg,.bg-danger .bg{background-color:#ea2e2e}.bg-danger a,.bg-danger .cxd-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .cxd-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#f4bdbd!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#666}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#0e7ed6}a.text-primary:hover{color:#0e7ed6}.text-primary{color:#108cee}.text-primary-lt{color:#0e7ed6}.text-primary-lter{color:#0d70be}.text-primary-dk{color:#0e7ed6}.text-primary-dker{color:#0d70be}a.bg-info:hover{background-color:#0e7ed6}a.text-info:hover{color:#0e7ed6}.text-info{color:#108cee}.text-info-lt{color:#0e7ed6}.text-info-lter{color:#0d70be}.text-info-dk{color:#0e7ed6}.text-info-dker{color:#0d70be}a.bg-success:hover{background-color:#549f2d}a.text-success:hover{color:#549f2d}.text-success{color:#5fb333}.text-success-lt{color:#549f2d}.text-success-lter{color:#4a8b28}.text-success-dk{color:#549f2d}.text-success-dker{color:#4a8b28}a.bg-warning:hover{background-color:#da8100}a.text-warning:hover{color:#da8100}.text-warning{color:#f39000}.text-warning-lt{color:#da8100}.text-warning-lter{color:#c07200}.text-warning-dk{color:#da8100}.text-warning-dker{color:#c07200}a.bg-danger:hover{background-color:#e71717}a.text-danger:hover{color:#e71717}.text-danger{color:#ea2e2e}.text-danger-lt{color:#e71717}.text-danger-lter{color:#d01515}.text-danger-dk{color:#e71717}.text-danger-dker{color:#d01515}a.bg-dark:hover{background-color:#292d32}a.text-dark:hover{color:#292d32}.text-dark{color:#343a40}.text-dark-lt{color:#292d32}.text-dark-lter{color:#1d2124}.text-dark-dk{color:#292d32}.text-dark-dker{color:#1d2124}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#000}a.text-black:hover{color:#000}.text-black{color:#000}.text-black-lt{color:#000}.text-black-lter{color:#000}.text-black-dk{color:#000}.text-black-dker{color:#000}.text-muted{color:#999}.text-loud{color:#333}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #eceff8,0 2px 0 white,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #eceff8}.b-t{border-top:1px solid #eceff8}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #eceff8}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #eceff8}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #eceff8}.b-l-none{border-left-width:0}.b-light{border-color:#eaf6fe}.b-dark{border-color:#343a40}.b-black{border-color:#343a40}.b-primary{border-color:#108cee}.b-success{border-color:#5fb333}.b-info{border-color:#108cee}.b-warning{border-color:#f39000}.b-danger{border-color:#ea2e2e}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#eaf6fe}.b-l-dark{border-left-color:#343a40}.b-l-black{border-left-color:#343a40}.b-l-primary{border-left-color:#108cee}.b-l-success{border-left-color:#5fb333}.b-l-info{border-left-color:#108cee}.b-l-warning{border-left-color:#f39000}.b-l-danger{border-left-color:#ea2e2e}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#5fb333}.avatar i.off{background-color:#999}.avatar i.busy{background-color:#ea2e2e}.avatar i.away{background-color:#f39000}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.cxd-Form-col.w,.cxd-Form-col.w-xs,.cxd-Form-col.w-sm,.cxd-Form-col.w-md,.cxd-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #eceff8}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#108cee}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0d70be}.label-success{background-color:#5fb333}.label-success[href]:hover,.label-success[href]:focus{background-color:#4a8b28}.label-info{background-color:#108cee}.label-info[href]:hover,.label-info[href]:focus{background-color:#0d70be}.label-warning{background-color:#f39000}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#c07200}.label-danger{background-color:#ea2e2e}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#d01515}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file diff --git a/gh-pages/scss/themes/dark_4ab4fa5.css b/gh-pages/scss/themes/dark_4ab4fa5.css index 19b9c19f..7ee7420c 100644 --- a/gh-pages/scss/themes/dark_4ab4fa5.css +++ b/gh-pages/scss/themes/dark_4ab4fa5.css @@ -1 +1 @@ -@charset "UTF-8";button[disabled],html input[disabled]{cursor:not-allowed}input{color:#f3f1f1;background:#3c3c3c}pre{color:#f3f1f1;background:#333538}.rdtPicker{background:#333538}.rdtPicker th{border-bottom:0}.fr-toolbar{background:#333538}.markdown-body{color:#f3f1f1}html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#32d74b}svg.icon-fail{color:#dc3545}html{font-size:16px}body{color:#f3f1f1;background-color:#333538;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#2296f3;text-decoration:none}a:hover{color:#0a6ebe;text-decoration:underline}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#fff;line-height:1.1}.is-matched{color:#dc3545}html,body{width:100%;height:100%}body{overflow-x:hidden}.dark-Layout{height:100%;min-height:100%;width:100%;position:relative}.dark-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#333538;border:inherit;display:block}.dark-Layout--boxed{margin-right:auto;margin-left:auto}.dark-Layout .dark-Layout-header{background:#191c22;box-shadow:0 .125rem .125rem rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05);height:3.125rem}.dark-Layout--headerFixed{padding-top:3.125rem}.dark-Layout--headerFixed .dark-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.dark-Layout-brandBar{background:#1e1f22;color:#868686}.dark-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.dark-Layout-brand{color:#c6c6c6;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dark-Layout-brand:hover{text-decoration:none}.dark-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.dark-Layout-headerBar{border-bottom:0;min-height:3.125rem;padding:0 .625rem}.dark-Layout-aside{float:left;background:#191c22;color:#7d818a}.dark-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.dark-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:12.5rem}.dark-Layout-asideFooter~div{padding-bottom:3.125rem}.dark-Layout-content{height:100%}.dark-Layout-content::before,.dark-Layout-content::after{display:table;content:''}.dark-Layout-content::after{clear:both}.dark-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.dark-Layout--noFooter .dark-Layout-body{padding-bottom:0}.dark-Layout-content .dark-Layout-body{float:left}.dark-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.dark-Layout--sm .dark-Layout-asideFooter{max-width:9.375rem}.dark-Layout--sm .dark-AsideNav-item a{font-size:.75rem}.dark-Layout--md .dark-Layout-asideFooter{max-width:15.625rem}.dark-Layout--lg .dark-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.dark-Layout-content{transition:transform .2s ease}.dark-Layout-aside{display:none}.dark-Layout--offScreen .dark-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.dark-Layout-headerBar{display:none}.dark-Layout--offScreen .dark-Layout-content,.dark-Layout--offScreen .dark-Layout-footer{background-color:#333538;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.dark-Layout--boxed{width:47.5rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:47.5rem}.dark-Layout-brand,.dark-Layout-brandBar,.dark-Layout-aside{width:12.5rem}.dark-Layout-brandBar{float:left}.dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--withAside .dark-Layout-content,.dark-Layout--withAside .dark-Layout-footer{margin-left:12.5rem}.dark-Layout .visible-folded{display:none}.dark-Layout--folded .visible-folded{display:inherit}.dark-Layout--folded .hidden-folded{display:none!important}.dark-Layout--folded .text-center-folded{text-align:center}.dark-Layout--folded .pull-none-folded{float:none!important}.dark-Layout--folded .w-auto-folded{width:auto}.dark-Layout--folded .dark-Layout-aside,.dark-Layout--folded .dark-Layout-brandBar{width:3.75rem}.dark-Layout--folded.dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--folded.dark-Layout--withAside .dark-Layout-content,.dark-Layout--folded.dark-Layout--withAside .dark-Layout-footer{margin-left:3.75rem}.dark-Layout--folded .dark-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.dark-Layout--asideFixed .dark-Layout-aside{height:100%}.dark-Layout--asideFixed .dark-Layout-aside:before{position:fixed;z-index:15}.dark-Layout--asideFixed .dark-Layout-brandBar{position:fixed}.dark-Layout--asideFixed .dark-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:12.4375rem;z-index:1200}.dark-Layout--asideFixed .dark-Layout-asideInner{width:13.5625rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.dark-Layout--asideFixed .dark-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.dark-Layout--asideFixed .dark-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.dark-Layout--asideFixed .dark-Layout-asideInner>*{width:12.5rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-aside{position:static}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-brandBar{position:static}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideInner{overflow:visible;width:4.8125rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideInner>*{width:3.75rem}.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-aside{width:9.375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:9.375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:9.3125rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:10.4375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:9.375rem}.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-aside{width:15.625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:15.625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:15.5625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:16.6875rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:15.625rem}.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-aside{width:18.75rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:18.75rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:18.6875rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:19.8125rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.dark-Layout--boxed{width:61.25rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:61.25rem}}@media (min-width:1200px){.dark-Layout--boxed{width:73.75rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:73.75rem}}.dark-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.dark-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.dark-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.dark-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.dark-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.dark-AsideNav::before,.dark-AsideNav::after{display:table;content:''}.dark-AsideNav::after{clear:both}.dark-AsideNav-label{color:#646870;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.dark-AsideNav-list{list-style:none;padding:0;margin:0}.dark-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.dark-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.dark-AsideNav-item.is-open>a>.dark-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#fff}.dark-AsideNav-itemArrow>svg{color:#b4b6bd;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.dark-AsideNav-item.is-open>a>.dark-AsideNav-itemArrow>svg{transform:rotate(90deg)}.dark-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.dark-AsideNav-itemIcon{margin:-.59375rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:inherit;font-size:inherit}.dark-AsideNav-itemIcon:before{position:relative;z-index:2}.dark-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#131519}.is-open>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:hover>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:focus>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:active>.dark-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.dark-Layout--folded .dark-AsideNav-item.is-open>.dark-AsideNav-subList{overflow:hidden}.dark-AsideNav-item{position:relative;display:block}.dark-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.875rem;padding:.59375rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#b4b6bd;text-decoration:none;user-select:none}.dark-AsideNav-item a:hover{color:#fff;text-decoration:none;background-color:#404040}.dark-AsideNav-item a:hover .dark-AsideNav-itemIcon{color:inherit}.dark-AsideNav-item.is-active>a{background-color:#302d2a;color:#fff}.dark-AsideNav-item.is-active>a:hover{background-color:#404040}.dark-AsideNav-item.is-lg>a{padding:.90625rem .9375rem}.dark-AsideNav-item .dark-AsideNav-item a{padding-left:2.8125rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item a{padding-left:4.6875rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item a{padding-left:6.5625rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-subList{display:none}.dark-AsideNav-item .dark-AsideNav-item.is-open .dark-AsideNav-subList{display:block}.dark-AsideNav-subHeader{display:none}.dark-AsideNav-subHeader a{cursor:default;background:transparent;color:#646870;padding:.90625rem 1.25rem}.dark-AsideNav-subHeader a:hover{color:#646870;background:transparent}.dark-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.dark-AsideNav-divider{width:auto;height:.0625rem;margin:.625rem 0;overflow:hidden;font-size:0;background-color:#2e3344}@media (min-width:768px){.dark-Layout--folded .dark-AsideNav-label{display:none}.dark-Layout--folded .dark-AsideNav-subHeader{display:block}.dark-Layout--folded .dark-AsideNav-item:hover>.dark-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:3.125rem;border:0}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemArrow,.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemLabel{display:none}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:3.125rem;border:0!important}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item.is-lg>a{height:3.125rem}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item.is-lg>a .dark-AsideNav-itemIcon{line-height:3.125rem}.dark-Layout--folded .dark-AsideNav-item .dark-AsideNav-item a{padding-left:1.25rem!important}.dark-Layout--folded .dark-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:12.5rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.dark-Layout--folded.dark-Layout--sm .dark-AsideNav-subList{width:9.375rem}.dark-Layout--folded.dark-Layout--md .dark-AsideNav-subList{width:15.625rem}.dark-Layout--folded.dark-Layout--lg .dark-AsideNav-subList{width:18.75rem}}.dark-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.dark-Hbox>.dark-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.dark-FormHbox{margin-left:-15px;margin-right:-15px}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col>.dark-Form-group{margin-left:0;margin-right:0}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col>.dark-Form-group:last-child{margin-bottom:0}.dark-FormHbox.dark-Hbox--xs{margin-left:-5px;margin-right:-5px}.dark-FormHbox.dark-Hbox--xs>.dark-Hbox>.dark-Hbox-col{padding-left:5px;padding-right:5px}.dark-FormHbox.dark-Hbox--sm{margin-left:-10px;margin-right:-10px}.dark-FormHbox.dark-Hbox--sm>.dark-Hbox>.dark-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.dark-Hbox--autoSm{display:block}.dark-Hbox--autoSm>.dark-Hbox-col{width:auto;height:auto;display:block}.dark-Hbox--autoSm>.dark-Hbox-col.show{display:block!important}.dark-Hbox--autoSm .dark-Vbox{height:auto}.dark-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.dark-Hbox--autoXs{display:block}.dark-Hbox--autoXs>.dark-Hbox-col{width:auto;height:auto;display:block}.dark-Hbox--autoXs .dark-Vbox{height:auto}.dark-Hbox--autoXs .cell-inner{position:static!important}}.dark-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.dark-Vbox .row-row{display:table-row;height:100%}.dark-Vbox .row-row .dark-Vbox-cell{position:relative;height:100%;width:100%}.ie .dark-Vbox .row-row .dark-Vbox-cell{display:table-cell;overflow:auto}.ie .dark-Vbox .row-row .dark-Vbox-cell .cell-inner{overflow:visible!important}.dark-Vbox .row-row .dark-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.dark-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.dark-Button .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button>svg.icon:not(:last-child):not(.pull-right),.dark-Button>.pull-left{margin-right:.75rem}.dark-Button .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button>.pull-right{margin-left:.75rem}.dark-Button:hover:focus{color:#f3f1f1;text-decoration:none}.dark-Button:focus,.dark-Button.focus{outline:0;box-shadow:none}.dark-Button.is-disabled,.dark-Button:disabled{opacity:.65;box-shadow:none;pointer-events:none;border-color:#dee2e6}.dark-Button:not(:disabled):not(.is-disabled){cursor:pointer}.dark-Button:not(:disabled):not(.is-disabled):active,.dark-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:inset 0 3px 5px rgba(20,19,22,.125)}.dark-Button:not(:disabled):not(.is-disabled):active:focus,.dark-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:inset 0 3px 5px rgba(20,19,22,.125)}.dark-Button>.pull-left,.dark-Button>.pull-right{line-height:inherit}.dark-Button>.fa,.dark-Button>.iconfont,.dark-Button>.glyphicon{font-size:inherit}a.dark-Button.is-disabled,fieldset:disabled a.dark-Button{pointer-events:none}.dark-Button--primary{color:#fff;background-color:#0983ff;border-color:#0983ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary:hover{color:#fff;background-color:#0070e2;border-color:#006ad5}.dark-Button--primary:focus{color:#fff;background-color:#0983ff;border-color:#0983ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary:hover:focus{color:#fff;background-color:#0070e2;border-color:#006ad5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary.is-disabled,.dark-Button--primary:disabled{background-color:#0983ff;color:#fff;border-color:#dee2e6}.dark-Button--primary:not(:disabled):not(.is-disabled):active,.dark-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#006ad5;border-color:#0063c8}.dark-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.dark-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary.is-disabled,.dark-Button--secondary:disabled{background-color:#6c757d;color:#fff;border-color:#dee2e6}.dark-Button--secondary:not(:disabled):not(.is-disabled):active,.dark-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.dark-Button--success{color:#fff;background-color:#32d74b;border-color:#32d74b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success:hover{color:#fff;background-color:#25be3c;border-color:#23b339}.dark-Button--success:focus{color:#fff;background-color:#32d74b;border-color:#32d74b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success:hover:focus{color:#fff;background-color:#25be3c;border-color:#23b339;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success.is-disabled,.dark-Button--success:disabled{background-color:#32d74b;color:#fff;border-color:#dee2e6}.dark-Button--success:not(:disabled):not(.is-disabled):active,.dark-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#23b339;border-color:#21a835}.dark-Button--info{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-Button--info:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info.is-disabled,.dark-Button--info:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-Button--info:not(:disabled):not(.is-disabled):active,.dark-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-Button--warning{color:#fff;background-color:#ff9f0b;border-color:#ff9f0b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning:hover{color:#fff;background-color:#e48a00;border-color:#d78200}.dark-Button--warning:focus{color:#fff;background-color:#ff9f0b;border-color:#ff9f0b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning:hover:focus{color:#fff;background-color:#e48a00;border-color:#d78200;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning.is-disabled,.dark-Button--warning:disabled{background-color:#ff9f0b;color:#fff;border-color:#dee2e6}.dark-Button--warning:not(:disabled):not(.is-disabled):active,.dark-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#d78200;border-color:#ca7b00}.dark-Button--danger{color:#fff;background-color:#dc3545;border-color:#dc3545;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.dark-Button--danger:focus{color:#fff;background-color:#dc3545;border-color:#dc3545;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger:hover:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger.is-disabled,.dark-Button--danger:disabled{background-color:#dc3545;color:#fff;border-color:#dee2e6}.dark-Button--danger:not(:disabled):not(.is-disabled):active,.dark-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#bd2130;border-color:#b21f2d}.dark-Button--light{color:#f3f1f1;background-color:#3a3a3a;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light:hover{color:#f3f1f1;background-color:#272727;border-color:#4c4c4c}.dark-Button--light:focus{color:#f3f1f1;background-color:#3a3a3a;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light:hover:focus{color:#f3f1f1;background-color:#272727;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light.is-disabled,.dark-Button--light:disabled{background-color:#3a3a3a;color:#f3f1f1;border-color:#dee2e6}.dark-Button--light:not(:disabled):not(.is-disabled):active,.dark-Button--light:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#212121;border-color:#454545}.dark-Button--dark{color:#fff;background-color:#1e1f22;border-color:#1e1f22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark:hover{color:#fff;background-color:#0c0c0e;border-color:#060607}.dark-Button--dark:focus{color:#fff;background-color:#1e1f22;border-color:#1e1f22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark:hover:focus{color:#fff;background-color:#0c0c0e;border-color:#060607;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark.is-disabled,.dark-Button--dark:disabled{background-color:#1e1f22;color:#fff;border-color:#dee2e6}.dark-Button--dark:not(:disabled):not(.is-disabled):active,.dark-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#060607;border-color:#000}.dark-Button--default{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-Button--default:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default.is-disabled,.dark-Button--default:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-Button--default:not(:disabled):not(.is-disabled):active,.dark-Button--default:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:.142rem;height:1.375rem}.dark-Button--xs .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--xs>svg.icon:not(:last-child):not(.pull-right),.dark-Button--xs>.pull-left{margin-right:.3125rem}.dark-Button--xs .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--xs>.pull-right{margin-left:.3125rem}.dark-Button--xs.dark-Button--iconOnly{min-width:1.83333rem}.dark-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem}.dark-Button--sm .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--sm>svg.icon:not(:last-child):not(.pull-right),.dark-Button--sm>.pull-left{margin-right:.5rem}.dark-Button--sm .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--sm>.pull-right{margin-left:.5rem}.dark-Button--sm.dark-Button--iconOnly{min-width:2.5rem}.dark-Button--md{padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.dark-Button--md .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--md>svg.icon:not(:last-child):not(.pull-right),.dark-Button--md>.pull-left{margin-right:.75rem}.dark-Button--md .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--md>.pull-right{margin-left:.75rem}.dark-Button--md.dark-Button--iconOnly{min-width:2.83333rem}.dark-Button--lg{padding:.625rem 1rem;font-size:1.25rem;line-height:1.2;border-radius:.142rem;height:2.875rem}.dark-Button--lg .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--lg>svg.icon:not(:last-child):not(.pull-right),.dark-Button--lg>.pull-left{margin-right:1rem}.dark-Button--lg .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--lg>.pull-right{margin-left:1rem}.dark-Button--lg.dark-Button--iconOnly{min-width:3.83333rem}.dark-Button--iconOnly{min-width:2.83333rem}.dark-Button--iconOnly:not(.dark-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.dark-Button--iconOnly:not(.dark-Button--link)>.fa,.dark-Button--iconOnly:not(.dark-Button--link)>.iconfont{font-size:1rem}.dark-Button--iconOnly:not(.dark-Button--link)>.iconfont{line-height:1}.dark-Button--link{width:auto;min-width:auto;font-weight:400;color:#f3f1f1;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.dark-Button--link:hover:focus{color:#fff;text-decoration:underline;box-shadow:none}.dark-Button--link:disabled,.dark-Button--link.is-disabled{color:#6c6c6c;pointer-events:none;background-color:transparent}.dark-Button--block{display:block;width:100%}.dark-Button--block+.dark-Button--block{margin-top:.9375rem}input[type=submit].dark-Button--block,input[type=reset].dark-Button--block,input[type=button].dark-Button--block{width:100%}.dark-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.dark-ButtonToolbar>.dark-Button{margin-left:.3125rem;margin-top:.3125rem}.dark-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .dark-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.dark-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.dark-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:unset;pointer-events:auto;background-color:#333538;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:.0625rem solid #656565;border-radius:.142rem}.dark-Modal-content.in,.dark-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.dark-Modal-content.in{animation-name:modalIn}.dark-Modal-content.out{animation-name:modalOut}.dark-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);pointer-events:none;opacity:0}.dark-Modal-overlay.in{opacity:1}.dark-Modal-overlay.out{opacity:0}.dark-Modal-header{padding:.59375rem 1.25rem;background-color:#2d2f31;border-bottom:.0625rem solid #727272;border-top-left-radius:.142rem;border-top-right-radius:.142rem}.dark-Modal-header::before,.dark-Modal-header::after{display:table;content:''}.dark-Modal-header::after{clear:both}.dark-Modal-title{font-size:.875rem;color:#fff}.dark-Modal-close{float:right;color:#6c6c6c;line-height:inherit;text-decoration:none;vertical-align:middle}.dark-Modal-close svg{width:.75rem;height:.75rem;fill:#6c6c6c}.dark-Modal-close:not(.is-disabled){cursor:pointer}.dark-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#f3f1f1}.dark-Modal-close:not(.is-disabled):hover svg{fill:#f3f1f1}.dark-Modal-content>.dark-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.dark-Modal-body{padding:.9375rem 1.25rem 1.25rem;flex-basis:0;flex-grow:1}.dark-Modal-header+.dark-Modal-body{padding-top:1.25rem}.dark-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.625rem;border-top:.0625rem solid #727272;margin:0;border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem}.dark-Modal-footer .dark-Button{margin-left:.625rem}.dark-Modal--2th .dark-Modal-content{margin-top:5.625rem}.dark-Modal--3th .dark-Modal-content{margin-top:7.5rem}.dark-Modal--4th .dark-Modal-content{margin-top:9.375rem}.dark-Modal--5th .dark-Modal-content{margin-top:11.25rem}.dark-Modal--6th .dark-Modal-content{margin-top:13.125rem}.dark-Modal--7th .dark-Modal-content{margin-top:15rem}.dark-Modal--8th .dark-Modal-content{margin-top:16.875rem}.dark-Modal--9th .dark-Modal-content{margin-top:18.75rem}.dark-Modal--10th .dark-Modal-content{margin-top:20.625rem}@media (min-width:576px){.dark-Modal-content{max-width:31.25rem}.dark-Modal--sm .dark-Modal-content{max-width:21.875rem}.dark-Modal--base .dark-Modal-content{max-width:31.25rem}.dark-Modal--md .dark-Modal-content{max-width:50rem}.dark-Modal--lg .dark-Modal-content{max-width:68.75rem}.dark-Modal--xl .dark-Modal-content{max-width:90%}}.dark-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.dark-Dialog-error{color:#dc3545}.dark-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.dark-Modal--full>.dark-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.dark-Modal--full>.dark-Modal-content>.dark-Modal-body{height:0;overflow:auto}.dark-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.dark-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#333538;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #656565;border-radius:0;transition:transform ease-in-out .3s}.dark-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.dark-Drawer-overlay.in{opacity:1}.dark-Drawer-header{padding:.9375rem;background-color:#2d2f31;border-bottom:.0625rem solid #727272;border-top-left-radius:0;border-top-right-radius:0}.dark-Drawer-header::before,.dark-Drawer-header::after{display:table;content:''}.dark-Drawer-header::after{clear:both}.dark-Drawer-title{font-size:1rem;color:#fff}.dark-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.dark-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.dark-Drawer-close:not(.is-disabled){cursor:pointer}.dark-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.dark-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.dark-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.dark-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #727272;border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-Drawer-footer .dark-Button{margin-left:.3125rem}.dark-Drawer-footer .dark-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.dark-Drawer-footer .dark-Drawer-error{color:#dc3545}.dark-Drawer.dark-Drawer--noOverlay{pointer-events:none}.dark-Drawer.dark-Drawer--noOverlay .dark-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.dark-Drawer .dark-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #656565;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.dark-Drawer .dark-Drawer-content{width:80%;height:80%}.dark-Drawer--xs .dark-Drawer-content{width:12.5rem;height:12.5rem}.dark-Drawer--sm .dark-Drawer-content{width:18.75rem;height:18.75rem}.dark-Drawer--md .dark-Drawer-content{width:31.25rem;height:31.25rem}.dark-Drawer--lg .dark-Drawer-content{width:50rem;height:50rem}.dark-Drawer--xl .dark-Drawer-content{width:90%;height:90%}}.dark-Drawer--top .dark-Drawer-content.in,.dark-Drawer--right .dark-Drawer-content.in,.dark-Drawer--bottom .dark-Drawer-content.in,.dark-Drawer--left .dark-Drawer-content.in{transform:translate3d(0,0,0)}.dark-Drawer--top .dark-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.dark-Drawer--top.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.dark-Drawer--top .dark-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.dark-Drawer--top .dark-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.dark-Drawer--right .dark-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.dark-Drawer--right.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.dark-Drawer--right .dark-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.dark-Drawer--right .dark-Drawer-footer{justify-content:flex-start}.dark-Drawer--right .dark-Drawer-footer .dark-Button{margin-left:0;margin-right:.3125rem}.dark-Drawer--right .dark-Drawer-footer .dark-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.dark-Drawer--right .dark-Drawer-footer .dark-Drawer-error{color:#dc3545}.dark-Drawer--right .dark-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.dark-Drawer--bottom .dark-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.dark-Drawer--bottom.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.dark-Drawer--bottom .dark-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.dark-Drawer--bottom .dark-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.dark-Drawer--left .dark-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.dark-Drawer--left.dark-Drawer--noOverlay .dark-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.dark-Drawer--left .dark-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.dark-Drawer--left .dark-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.dark-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#333538;border:.0625rem solid #656565;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.dark-Tooltip-arrow::before,.dark-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.dark-Tooltip--top{margin-top:-.625rem}.dark-Tooltip--top .dark-Tooltip-arrow{bottom:-.5625rem}.dark-Tooltip--top .dark-Tooltip-arrow::before,.dark-Tooltip--top .dark-Tooltip-arrow::after{border-width:.5rem .5rem 0}.dark-Tooltip--top .dark-Tooltip-arrow::before{bottom:0;border-top-color:#656565}.dark-Tooltip--top .dark-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#333538}.dark-Tooltip--right{margin-left:.625rem}.dark-Tooltip--right .dark-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.dark-Tooltip--right .dark-Tooltip-arrow::before,.dark-Tooltip--right .dark-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.dark-Tooltip--right .dark-Tooltip-arrow::before{left:0;border-right-color:#656565}.dark-Tooltip--right .dark-Tooltip-arrow::after{left:.0625rem;border-right-color:#333538}.dark-Tooltip--bottom{margin-top:.625rem}.dark-Tooltip--bottom .dark-Tooltip-arrow{top:-.5625rem}.dark-Tooltip--bottom .dark-Tooltip-arrow::before,.dark-Tooltip--bottom .dark-Tooltip-arrow::after{border-width:0 .5rem .5rem}.dark-Tooltip--bottom .dark-Tooltip-arrow::before{top:0;border-bottom-color:#656565}.dark-Tooltip--bottom .dark-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#333538}.dark-Tooltip--bottom .dark-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #2c2d30}.dark-Tooltip--left{margin-left:-.625rem}.dark-Tooltip--left .dark-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.dark-Tooltip--left .dark-Tooltip-arrow::before,.dark-Tooltip--left .dark-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.dark-Tooltip--left .dark-Tooltip-arrow::before{right:0;border-left-color:#656565}.dark-Tooltip--left .dark-Tooltip-arrow::after{right:.0625rem;border-left-color:#333538}.dark-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#fff;background-color:#2c2d30;border-bottom:.0625rem solid #202123;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.dark-Tooltip-title:empty{display:none}.dark-Tooltip-body{color:#f3f1f1;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.dark-PopOver{position:absolute;background:#333538;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);border:.0625rem solid #656565;border-radius:.142rem}.dark-PopOver>*{position:relative;z-index:2}.dark-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.dark-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.9375rem .9375rem .9375rem 3.4375rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);border-radius:.428rem;border:0 solid;color:#fff;position:relative;opacity:.8;cursor:pointer;opacity:0;transform:translateZ(0)}.dark-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.dark-Toast.in,.dark-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.dark-Toast.in{animation-name:bounceIn}.dark-Toast.out{animation-name:bounceOut}.dark-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#fff;line-height:1;opacity:.8}.dark-Toast-close:hover{color:#fff;opacity:1}.dark-Toast-title{display:block;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.dark-Toast-body{display:block;vertical-align:middle}.dark-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;position:absolute;left:.9375rem;top:.9375rem;width:1.5625rem;height:1.5625rem;align-items:center;justify-content:center}.dark-Toast-icon>svg{top:0;width:1.875rem;height:1.875rem;color:inherit}.dark-Toast--error{color:#fff;border-color:#dc3545;background-color:#dc3545}.dark-Toast--warning{color:#fff;border-color:#ff9f0b;background-color:#ff9f0b}.dark-Toast--info{color:#fff;border-color:#2296f3;background-color:#2296f3}.dark-Toast--success{color:#fff;border-color:#32d74b;background-color:#32d74b}.dark-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.dark-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.dark-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.dark-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.dark-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.dark-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.dark-Alert{font-size:.875rem;box-shadow:none;padding:.9375rem;border:.0625rem solid transparent;border-radius:.285rem;margin-bottom:1.25rem}.dark-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.dark-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.dark-Alert--danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.dark-Alert--info{color:#31708f;background-color:#d9edf7;border-color:#c4ebf3}.dark-Alert--success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.dark-Alert--warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.dark-ArrayInput-placeholder{color:#6c6c6c;padding-top:.4375rem}.dark-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.dark-ArrayInput-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.dark-ArrayInput-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.dark-ArrayInput-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-ArrayInput-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn.is-disabled,.dark-ArrayInput-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.dark-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.dark-ArrayInput-toolbar--dnd{padding-left:29px}.dark-ArrayInput-sortTip{color:#6c6c6c}.dark-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.dark-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.dark-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.dark-ArrayInput-item--dragging{position:relative;opacity:.4}.dark-ArrayInput-itemRemove,.dark-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.4375rem .3125rem;cursor:pointer}.dark-ArrayInput-itemRemove>svg,.dark-ArrayInput-itemDrager>svg{color:#6c757d}.dark-ArrayInput-itemRemove:hover>svg,.dark-ArrayInput-itemDrager:hover>svg{color:#212529}.dark-ArrayInput-itemDrager{cursor:move}.dark-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #656565;list-style:none;user-select:none}.dark-Tabs-links::before,.dark-Tabs-links::after{display:table;content:''}.dark-Tabs-links::after{clear:both}.dark-Tabs-links>.dark-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.dark-Tabs-links>.dark-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#f3f1f1;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.dark-Tabs-links>.dark-Tabs-link>.dark-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.dark-Tabs-links>.dark-Tabs-link:hover>.dark-Combo-toolbarBtn{display:block}.dark-Tabs-links>.dark-Tabs-link:hover>a:first-child,.dark-Tabs-links>.dark-Tabs-link>a:first-child:focus{border-color:#656565;text-decoration:none}.dark-Tabs-links>.dark-Tabs-link.disabled,.dark-Tabs-links>.dark-Tabs-link.is-disabled{cursor:not-allowed}.dark-Tabs-links>.dark-Tabs-link.disabled>a:first-child,.dark-Tabs-links>.dark-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.dark-Tabs-links>.dark-Tabs-link.active>a:first-child,.dark-Tabs-links>.dark-Tabs-link.is-active>a:first-child{color:#fff;background-color:#302d2a;border-color:#656565;border-bottom-color:transparent}.dark-Tabs-content{background-color:#302d2a;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#656565}.dark-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.dark-Tabs-pane.is-active{display:block}.dark-Tabs-pane.in{opacity:1}.dark-Tabs--line>.dark-Tabs-links{border-bottom-color:#656565}.dark-Tabs--line>.dark-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.dark-Tabs--line>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--line>.dark-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.dark-Tabs--line>.dark-Tabs-links>li:last-child>a{margin:0}.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child:focus{border-color:#0983ff;color:#0983ff;background-color:transparent}.dark-Tabs--line>.dark-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.dark-Tabs--card>.dark-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#323639;border-top:.0625rem solid #333538}.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child:focus{border-color:#656565;color:#0983ff;border-bottom-color:#302d2a;background-color:#302d2a}.dark-Tabs--card>.dark-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.dark-Tabs--card>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--card>.dark-Tabs-links>li>a:first-child:focus{color:#666;background-color:#302d2a;border-bottom-color:transparent}.dark-Tabs--card>.dark-Tabs-content{border-width:0}.dark-Tabs--radio>.dark-Tabs-links{border:0;margin-bottom:.625rem}.dark-Tabs--radio>.dark-Tabs-links>li{margin:0}.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#656565;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#302d2a}.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child:focus{color:#0983ff}.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child:focus{color:#302d2a;background-color:#0983ff;border-color:#0983ff;position:relative;z-index:1}.dark-Tabs--radio>.dark-Tabs-links>li+li{margin-left:-1px}.dark-Tabs--radio>.dark-Tabs-content{border-top:.0625rem solid #656565}.dark-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #656565;border-radius:0}.dark-Tabs--vertical>.dark-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.dark-Tabs--vertical>.dark-Tabs-links>li{margin:0 0 0 -1px;display:block}.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child:focus{color:#0983ff;border-color:transparent}.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child:focus{color:#0983ff;border-color:#0983ff}.dark-Tabs--vertical>.dark-Tabs-content{border:0;flex-grow:1}.dark-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.dark-Nav{list-style:none;user-select:none;margin:0;padding:0}.dark-Nav .dark-Nav-itemIcon{margin-right:.3125rem}.dark-Nav--tabs{border-bottom:.0625rem solid #656565}.dark-Nav--tabs .dark-Nav-item{margin-bottom:-.0625rem;display:inline-block}.dark-Nav--tabs .dark-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#f3f1f1;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.dark-Nav--tabs .dark-Nav-item:hover>a,.dark-Nav--tabs .dark-Nav-item>a:focus{border-color:#656565;text-decoration:none}.dark-Nav--tabs .dark-Nav-item.disabled>a,.dark-Nav--tabs .dark-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.dark-Nav--tabs .dark-Nav-item.active>a,.dark-Nav--tabs .dark-Nav-item.is-active>a{color:#fff;background-color:#302d2a;border-color:#656565;border-bottom-color:#302d2a}.dark-Nav--stacked .dark-Nav-item{position:relative}.dark-Nav--stacked .dark-Nav-item>a{display:block;outline:0;color:#f3f1f1;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:.285rem}.dark-Nav--stacked .dark-Nav-item:hover>a,.dark-Nav--stacked .dark-Nav-item>a:focus{border-color:#fff;text-decoration:none;background-color:rgba(0,0,0,.05)}.dark-Nav--stacked .dark-Nav-item.disabled>a,.dark-Nav--stacked .dark-Nav-item.is-disabled>a{color:#6c6c6c;background-color:transparent;pointer-events:none}.dark-Nav--stacked .dark-Nav-item.active>a,.dark-Nav--stacked .dark-Nav-item.is-active>a{color:#fff;background-color:#2296f3;border-left:4px solid transparent;padding-left:.75rem}.dark-Nav--stacked .dark-Nav-item.is-unfolded .dark-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.dark-Nav--stacked .dark-Nav-item.is-unfolded .dark-Nav-subItems{display:block}.dark-Nav--stacked .dark-Nav-item .dark-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.dark-Nav--stacked .dark-Nav-item .dark-Nav-itemToggler>svg{width:10px;height:10px;top:0}.dark-Nav--stacked .dark-Nav-item .dark-Nav-subItems{display:none;padding-left:0;list-style:none}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item{font-size:.875rem}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item.active>a:before,.dark-Nav--stacked .dark-Nav-item .dark-Nav-item.is-active>a:before{background-color:#e5eaeb}.dark-Page{width:100%;min-height:100%}.dark-Page-header{padding:.9375rem}.dark-Page-main{background:transparent;height:100%;display:flex;flex-direction:column}.dark-Page-content{padding:0}.dark-Page-main>.dark-Page-header{border-bottom:.0625rem solid #656565}.dark-Page-headerRow{border-bottom:.0625rem solid #656565;display:flex;flex-direction:row;align-items:center}.dark-Page-headerRow .dark-Page-header,.dark-Page-headerRow .dark-Page-toolbar{flex-grow:1}.dark-Page-headerRow .dark-Page-toolbar{text-align:right;padding-right:.9375rem}.dark-Page-title{margin:0;padding:0;color:#fff;line-height:1.1;font-size:1rem;font-weight:400}.dark-Page-body{padding:.9375rem;flex:1 auto}.dark-Page-asideTplWrapper{padding:.3125rem}.dark-Page-toolbar .dark-Button+.dark-Button{margin-left:.3125rem}.dark-Page-aside{background-color:#3c3c3c}@media (min-width:768px){.dark-Page-aside{width:12.5rem;max-width:18.75rem;border-right:.0625rem solid #656565}.dark-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.dark-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.dark-Page--withSidebar>.dark-Page-content{width:0;flex-grow:1}}.dark-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.dark-Remark-icon{color:#6c757d;font-size:.875rem;background-color:transparent;border:0 solid #656565;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.dark-Remark:hover>.dark-Remark-icon{color:#212529;background-color:transparent;border-color:#656565}.dark-Remark>svg{width:.875rem;height:.875rem;color:#6c757d}.dark-Remark:hover>svg{color:#212529}.dark-Chart{min-width:300px;min-height:300px;position:relative}.dark-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.dark-Video{min-width:200px}.dark-Video-cursor{position:absolute;border:2px solid #2296f3;transition:all .5s ease-out}.dark-Video-frameList .dark-Video-frameItem{cursor:pointer}.dark-Video-frameLabel{text-align:center}.dark-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.dark-Audio-original{display:none}.dark-Audio--inline{display:inline-block}.dark-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.dark-Audio-controls{display:flex;flex-direction:row;align-items:center}.dark-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.dark-Audio-rateControl{margin-right:.625rem}.dark-Audio-rateControl::after{clear:both;content:''}.dark-Audio-rateControl .dark-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.dark-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.dark-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.dark-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.dark-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.dark-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.dark-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.dark-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.dark-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.dark-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.dark-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.dark-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.dark-Audio-volumeControl .dark-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.dark-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Panel{margin-bottom:1.25rem;background-color:#302d2a;border:.0625rem solid transparent;border-radius:.142rem;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.dark-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -.5rem 1rem rgba(20,19,22,.15);border-top:0}.dark-Panel-fixedBottom.in{position:fixed;bottom:0}.dark-Panel--default{border-color:#656565}.dark-Panel--default>.dark-Panel-heading{background:linear-gradient(#524e48,#423e3a);color:#f3f1f1}.dark-Panel--default>.dark-Panel-heading .badge{color:#f5f5f5;background:#333}.dark-Panel--default>.dark-Panel-heading{border-color:#656565}.dark-Panel--primary{border-color:#0983ff}.dark-Panel--primary>.dark-Panel-heading{background:#0983ff;color:#fff}.dark-Panel--primary>.dark-Panel-heading .badge{color:#0983ff;background:#fff}.dark-Panel--primary>.dark-Panel-heading,.dark-Panel--primary>.dark-Panel-footer{border-color:#0983ff}.dark-Panel--success{border-color:#32d74b}.dark-Panel--success>.dark-Panel-heading{background:#32d74b;color:#fff}.dark-Panel--success>.dark-Panel-heading .badge{color:#32d74b;background:#fff}.dark-Panel--success>.dark-Panel-heading,.dark-Panel--success>.dark-Panel-footer{border-color:#32d74b}.dark-Panel--info{border-color:#2296f3}.dark-Panel--info>.dark-Panel-heading{background:#2296f3;color:#fff}.dark-Panel--info>.dark-Panel-heading .badge{color:#2296f3;background:#fff}.dark-Panel--info>.dark-Panel-heading,.dark-Panel--info>.dark-Panel-footer{border-color:#2296f3}.dark-Panel--warning{border-color:#ff9f0b}.dark-Panel--warning>.dark-Panel-heading{background:#ff9f0b;color:#fff}.dark-Panel--warning>.dark-Panel-heading .badge{color:#ff9f0b;background:#fff}.dark-Panel--warning>.dark-Panel-heading,.dark-Panel--warning>.dark-Panel-footer{border-color:#ff9f0b}.dark-Panel--danger{border-color:#dc3545}.dark-Panel--danger>.dark-Panel-heading{background:#dc3545;color:#fff}.dark-Panel--danger>.dark-Panel-heading .badge{color:#dc3545;background:#fff}.dark-Panel--danger>.dark-Panel-heading,.dark-Panel--danger>.dark-Panel-footer{border-color:#dc3545}.dark-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.dark-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.dark-Panel-body{padding:.9375rem}.dark-Panel-footer{border-color:#727272;border-radius:0 0 .125rem .125rem;background:linear-gradient(#524e48,#423e3a);padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.dark-Panel-footer .dark-Button+.dark-Button{margin-left:.625rem}.dark-Panel-btnToolbar{text-align:right}.dark-Panel-btnToolbar::before,.dark-Panel-btnToolbar::after{display:table;content:''}.dark-Panel-btnToolbar::after{clear:both}.dark-Panel-btnToolbar .dark-Button{margin-left:.625rem}.dark-Panel-btnToolbar:empty{display:none}.dark-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.dark-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.dark-Spinner-overlay.in{opacity:1}.dark-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwcHgiICBoZWlnaHQ9IjIwMHB4IiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiIGNsYXNzPSJsZHMtcm9sbGluZyIgc3R5bGU9ImJhY2tncm91bmQ6IG5vbmU7Ij48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzE3YTJiOCIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoMTI5Ljg5NCA1MCA1MCkiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiBjYWxjTW9kZT0ibGluZWFyIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIiBkdXI9IjEuMnMiIGJlZ2luPSIwcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZVRyYW5zZm9ybT48L2NpcmNsZT48L3N2Zz4=");background-size:100%;transition:ease-out all .3s}.dark-Spinner--lg{width:3.125rem;height:3.125rem}.dark-Spinner--sm{width:1rem;height:1rem}.dark-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.dark-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.dark-Spinner--overlay.dark-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.dark-Layout .dark-Page-body>.dark-Spinner-overlay{left:12.5rem}.dark-Layout--folded .dark-Page-body>.dark-Spinner-overlay{left:3.75rem}}.dark-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.dark-ButtonGroup>.dark-Button{position:relative;flex:0 1 auto}.dark-ButtonGroup>.dark-Button:hover{z-index:1}.dark-ButtonGroup>.dark-Button:focus,.dark-ButtonGroup>.dark-Button:active,.dark-ButtonGroup>.dark-Button.active,.dark-ButtonGroup>.dark-Button.is-active{z-index:1}.dark-ButtonGroup .dark-Button+.dark-Button,.dark-ButtonGroup .dark-Button+.dark-ButtonGroup,.dark-ButtonGroup .dark-ButtonGroup+.dark-Button,.dark-ButtonGroup .dark-ButtonGroup+.dark-ButtonGroup{margin-left:-.0625rem}.dark-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.dark-ButtonToolbar .dark-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.dark-ButtonGroup>.dark-Button:first-child{margin-left:0}.dark-ButtonGroup>.dark-Button:not(:last-child),.dark-ButtonGroup>.dark-ButtonGroup:not(:last-child)>.dark-Button{border-top-right-radius:0;border-bottom-right-radius:0}.dark-ButtonGroup>.dark-Button:not(:first-child),.dark-ButtonGroup>.dark-ButtonGroup:not(:first-child)>.dark-Button{border-top-left-radius:0;border-bottom-left-radius:0}.dark-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.dark-ButtonGroup--vertical .dark-Button,.dark-ButtonGroup--vertical .dark-ButtonGroup{width:100%}.dark-ButtonGroup--vertical>.dark-Button+.dark-Button,.dark-ButtonGroup--vertical>.dark-Button+.dark-ButtonGroup,.dark-ButtonGroup--vertical>.dark-ButtonGroup+.dark-Button,.dark-ButtonGroup--vertical>.dark-ButtonGroup+.dark-ButtonGroup{margin-top:-.0625rem;margin-left:0}.dark-ButtonGroup--vertical>.dark-Button:not(:last-child),.dark-ButtonGroup--vertical>.dark-ButtonGroup:not(:last-child)>.dark-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-ButtonGroup--vertical>.dark-Button:not(:first-child),.dark-ButtonGroup--vertical>.dark-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.dark-ButtonGroupControl{display:inline-block}.dark-ButtonGroupControl>.dark-ButtonGroup--sm{margin-top:.125rem}.dark-ButtonGroupControl>.dark-ButtonGroup--xs{margin-top:.375rem}.dark-DropDown{position:relative;display:inline-block}.dark-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.dark-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.dark-DropDown.is-opened .dark-DropDown-caret{transform:rotate(180deg)}.dark-DropDown--block{display:block}.dark-DropDown--block .dark-Button{display:block}.dark-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#333538;list-style:none;padding:.3125rem 0;border:.0625rem solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);min-width:10rem;text-align:left}.dark-DropDown--alignRight .dark-DropDown-menu{left:auto;right:0}.dark-DropDown-menuItem,.dark-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.dark-DropDown-menuItem:hover,.dark-DropDown-menu>li:hover{background-color:rgba(0,126,255,.08);color:inherit}.dark-DropDown-menuItem:not(.is-disabled),.dark-DropDown-menuItem:not(.disabled),.dark-DropDown-menu>li:not(.is-disabled),.dark-DropDown-menu>li:not(.disabled){cursor:pointer}.dark-DropDown-menuItem.dark-DropDown-divider,.dark-DropDown-menu>li.dark-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#656565;padding:0}.dark-DropDown-menu>li a{display:block;text-decoration:none}.dark-DropDown-popover{border:0;box-shadow:none}.dark-DropDown>.dark-Button{min-width:unset}.dark-Collapse{border:0;padding:0;margin-bottom:.9375rem}.dark-Collapse-header{font-size:1rem;font-weight:400;color:#fff;padding:.3125rem 0;border-bottom:.0625rem solid #727272}.dark-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.dark-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#f3f1f1;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.dark-Collapse.is-collapsed .dark-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.dark-Collapse--collapsable .dark-Collapse-header{user-select:none}.dark-Collapse-content{transition:height .35s ease}.dark-Collapse-content.in,.dark-Collapse-content.out{height:0;overflow:hidden}.dark-ColorField{display:inline-block}.dark-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(20,19,22,.075);background-color:#ccc}.dark-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.dark-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.dark-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.dark-ContextMenu-menu.in,.dark-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.dark-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.dark-ContextMenu-menu.out{animation-name:contextMenuOut}.dark-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.dark-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.dark-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.dark-ContextMenu-item{position:relative}.dark-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.dark-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.dark-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.dark-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.dark-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.dark-ContextMenu-itemIcon{margin-right:5px}.dark-ContextMenu-subList{display:none;list-style:none}.dark-ContextMenu-item:hover>.dark-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.dark-ContextMenu-item:hover>.dark-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.dark-ContextMenu--left .dark-ContextMenu-item:hover>.dark-ContextMenu-subList{left:auto;right:100%}.dark-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.dark-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.dark-Wizard{position:relative}.dark-Wizard::before,.dark-Wizard::after{display:table;content:''}.dark-Wizard::after{clear:both}.dark-Wizard,.dark-Wizard-tabs{padding:0}.dark-Wizard .dark-Badge,.dark-Wizard-tabs .dark-Badge{display:inline-block;width:1.25rem;height:1.25rem;font-size:.75rem;line-height:1.25rem;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#ced4da;border-radius:.625rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.25rem;border:0;box-sizing:content-box}.dark-Wizard .dark-Badge.is-active,.dark-Wizard-tabs .dark-Badge.is-active{color:#fff;background-color:#2296f3}.dark-Wizard ul li.active,.dark-Wizard-tabs ul li.active{color:#2296f3}.dark-Wizard .dark-Panel-footer>.dark-Form-group,.dark-Wizard .dark-Panel-footer>.btn,.dark-Wizard-tabs .dark-Panel-footer>.dark-Form-group,.dark-Wizard-tabs .dark-Panel-footer>.btn{margin-left:.3125rem}.dark-Wizard>ul.nav,.dark-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #656565}.dark-Wizard>ul.nav li,.dark-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:2.5rem;line-height:2.5rem}.dark-Wizard>ul.nav li a,.dark-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.dark-Wizard>ul.nav li a div,.dark-Wizard-tabs>ul.nav li a div{display:inline}.dark-Wizard>ul.nav li:first-child,.dark-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.dark-Wizard>ul.nav li:before,.dark-Wizard>ul.nav li:after,.dark-Wizard-tabs>ul.nav li:before,.dark-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #656565;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.dark-Wizard>ul.nav li:after,.dark-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#191c22;z-index:2}.dark-Wizard>ul.nav li.is-active,.dark-Wizard-tabs>ul.nav li.is-active{color:#2296f3;background:#fff}.dark-Wizard>ul.nav li.is-active:after,.dark-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.dark-Wizard-steps{font-size:.875rem;padding:0;background-color:#191c22;border-bottom:.0625rem solid #656565;text-align:left}.dark-Wizard-steps::before,.dark-Wizard-steps::after{display:table;content:''}.dark-Wizard-steps::after{clear:both}.dark-Wizard-steps ul{display:block;padding:0;margin:0;list-style:none outside none}.dark-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:2.5rem;line-height:2.5rem}.dark-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.dark-Wizard-steps ul li:before,.dark-Wizard-steps ul li:after{font-family:"";content:"";position:absolute;bottom:0;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #656565;border-left-color:rgba(0,0,0,.05);z-index:2}.dark-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#191c22;z-index:2}.dark-Wizard-steps ul li.is-active{color:#2296f3;background:#302d2a}.dark-Wizard-steps ul li.is-active:after{border-left-color:#302d2a}.dark-Wizard-steps ul li.is-complete,.dark-Wizard-steps ul li.is-complete:hover{color:#2296f3;cursor:pointer;background:#f1f5f9}.dark-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.dark-Wizard-stepContent{padding:.9375rem}.dark-Wizard-stepContent .Step-pane{display:none}.dark-Wizard-stepContent .Step-pane.is-active{display:inherit}.dark-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.dark-Wizard--vertical.dark-Wizard-steps{height:auto}.dark-Wizard--vertical+.dark-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.dark-Wizard--vertical li{background-color:#191c22}.dark-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #656565;padding-left:.9375rem}.dark-Wizard--vertical+.dark-Wizard-stepContent+.dark-Panel-footer{clear:both}.dark-Crud{position:relative}.dark-Crud-selection{margin-bottom:.9375rem}.dark-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.dark-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.dark-Crud-value:hover{background-color:#22201e}.dark-Crud-value.is-disabled{pointer-events:none;opacity:.65}.dark-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Crud-valueIcon:hover{background-color:#22201e}.dark-Crud-valueLabel{padding:0 .3125rem}.dark-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.dark-Crud-toolbar-item{margin-left:.3125rem;margin-top:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.dark-Crud-toolbar-item--left{float:left}.dark-Crud-toolbar-item--right{float:right}.dark-Crud-actions>*+.dark-Button,.dark-Crud-actions>*+.dark-ButtonGroup,.dark-Crud-actions>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Crud-statistics{line-height:1.875rem;vertical-align:middle}.dark-Crud-pageSwitch .dark-Select{margin-left:.3125rem}.dark-Crud-pager{align-self:flex-start}@media (min-width:576px){.dark-Crud-toolbar{margin-left:-.3125rem;margin-top:-.3125rem;flex-basis:0;flex-grow:1}.dark-Crud-toolbar::before,.dark-Crud-toolbar::after{display:table;content:''}.dark-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.dark-Button+.dark-Button{margin-left:.3125rem}}.dark-Table{position:relative;background:#333538;border:.0625rem solid #656565;border-radius:.142rem;margin-bottom:1.25rem}.dark-Form-control>.dark-Table{margin-bottom:.625rem}.dark-Table-fixedLeft,.dark-Table-fixedRight{position:absolute;background:#333538;z-index:5;top:-999999px}.dark-Table-fixedLeft.in,.dark-Table-fixedRight.in{top:auto}.dark-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(20,19,22,.15);left:0}.dark-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(20,19,22,.15);right:0}.dark-Table-fixedRight .dark-Table-table>thead>tr>th:first-child,.dark-Table-fixedRight .dark-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.dark-Table-fixedTop{position:absolute;background:#333538;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-Table-fixedTop>.dark-Table-fixedLeft,.dark-Table-fixedTop>.dark-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #656565}.dark-Table-fixedTop>.dark-Table-fixedLeft>table,.dark-Table-fixedTop>.dark-Table-fixedRight>table{margin-bottom:.3125rem}.dark-Table-fixedTop>.dark-Table-heading{border-bottom:0}.dark-Table-fixedTop>.dark-Table-wrapper{border-top:.0625rem solid #656565}.dark-Table-fixedTop.is-fakeHide>.dark-Table-fixedLeft,.dark-Table-fixedTop.is-fakeHide>.dark-Table-fixedRight,.dark-Table-fixedTop.is-fakeHide>.dark-Table-wrapper{visibility:hidden;position:absolute}.dark-Table-heading{background:#fff;border-bottom:.0625rem solid #656565;padding:.59375rem .625rem}.dark-Table--unsaved .dark-Table-heading{background:#e8f0fe;color:#4285f4}.dark-Table-wrapper{overflow:hidden}.dark-Table-placeholder{color:#6c6c6c;text-align:center;height:6.25rem;background-color:transparent!important}.dark-Table-placeholder:hover{color:#6c6c6c;background-color:transparent!important}.dark-Table-placeholder>td{vertical-align:middle!important;text-align:center}.dark-Table-header{padding:.625rem}.dark-Table-header>*+.dark-Button,.dark-Table-header>*+.dark-ButtonGroup,.dark-Table-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.dark-Table-toolbar::before,.dark-Table-toolbar::after{display:table;content:''}.dark-Table-toolbar::after{clear:both}.dark-Table-toolbar .dark-DropDown-menuItem{height:auto}.dark-Table-toolbar .dark-DropDown-menuItem .dark-Checkbox{display:flex;align-items:center}.dark-Table-header+.dark-Table-toolbar{padding-top:0}.dark-Table-contentWrap{position:relative}.dark-Table-header+.dark-Table-contentWrap,.dark-Table-toolbar+.dark-Table-contentWrap{border-top:.0625rem solid #656565}.dark-Table-footToolbar{border-top:.0625rem solid #656565}.dark-Table-actions{display:inline-block}.dark-Table-actions>*{margin-right:.3125rem}.dark-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.dark-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.875rem;color:#f3f1f1;background-color:#333538;border-spacing:0;border-collapse:collapse}.dark-Table-table--withCombine>thead>tr>th:first-child,.dark-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.dark-Table-table--withCombine>thead>tr>th:last-child,.dark-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.dark-Table-table--withCombine>tbody>tr.dark-Table-tr--odd{background-color:transparent}.dark-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.dark-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.dark-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #656565}.dark-Table-table>thead>tr>th{background-color:#2f2f2f;padding:.59375rem .625rem;border-bottom:.0625rem solid #656565;font-size:.875rem;color:#fff;font-weight:400;white-space:nowrap}.dark-Table-table>thead>tr>th[colspan]{text-align:center}.dark-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.dark-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.dark-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #656565}.dark-Table-table>thead>tr>th .dark-TableCell--title{display:flex;align-items:center}.dark-Table-table>thead>tr>th .dark-Remark{margin-left:.3125rem}.dark-Table-table>thead>tr+tr{border-top:.0625rem solid #656565}.dark-Table-table>thead>tr{border-bottom:.0625rem solid #656565}.dark-Table-table>tbody>tr{background-color:transparent}.dark-Table-table>tbody>tr+tr{border-top:.0625rem solid #656565}.dark-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #656565}.dark-Table-table>tbody>tr>th{background-color:#2f2f2f;color:#fff;font-weight:400;white-space:nowrap;border-right:.0625rem solid #656565}.dark-Table-table>tbody>tr>td,.dark-Table-table>tbody>tr>th{padding:.59375rem .625rem;vertical-align:top}.dark-Table-table>tbody>tr>td:first-child,.dark-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.dark-Table-table>tbody>tr>td:last-child,.dark-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.dark-Table-table>tbody>tr.dark-Table-tr--odd{background-color:#302d2a}.dark-Table-table>tbody>tr:hover,.dark-Table-table>tbody>tr.is-hovered{background-color:#1e1f22;border-color:#060607;color:#f3f1f1}.dark-Table-table>tbody>tr:hover+tr,.dark-Table-table>tbody>tr.is-hovered+tr{border-color:#060607}.dark-Table-table>tbody>tr.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-Table-table>tbody>tr.is-checked+tr{border-color:#000}.dark-Table-table>tbody>tr.is-moved,.dark-Table-table>tbody>tr.is-modified{background-color:#141316;border-color:#080708;color:#f3f1f1}.dark-Table-table>tbody>tr.is-moved+tr,.dark-Table-table>tbody>tr.is-modified+tr{border-color:#080708}.dark-Table-table>tbody>tr.bg-light{background-color:#3a3a3a;color:#f3f1f1}.dark-Table-table>tbody>tr.bg-light.lt,.dark-Table-table>tbody>tr.bg-light .lt{background-color:#3f3f3f}.dark-Table-table>tbody>tr.bg-light.lter,.dark-Table-table>tbody>tr.bg-light .lter{background-color:#424242}.dark-Table-table>tbody>tr.bg-light.dk,.dark-Table-table>tbody>tr.bg-light .dk{background-color:#343131}.dark-Table-table>tbody>tr.bg-light.dker,.dark-Table-table>tbody>tr.bg-light .dker{background-color:#302b2b}.dark-Table-table>tbody>tr.bg-light.bg,.dark-Table-table>tbody>tr.bg-light .bg{background-color:#3a3a3a}.dark-Table-table>tbody>tr.bg-dark{background-color:#1e1f22;color:#868686}.dark-Table-table>tbody>tr.bg-dark.lt,.dark-Table-table>tbody>tr.bg-dark .lt{background-color:#2b2c2e}.dark-Table-table>tbody>tr.bg-dark.lter,.dark-Table-table>tbody>tr.bg-dark .lter{background-color:#39393a}.dark-Table-table>tbody>tr.bg-dark.dk,.dark-Table-table>tbody>tr.bg-dark .dk{background-color:#121215}.dark-Table-table>tbody>tr.bg-dark.dker,.dark-Table-table>tbody>tr.bg-dark .dker{background-color:#060607}.dark-Table-table>tbody>tr.bg-dark.bg,.dark-Table-table>tbody>tr.bg-dark .bg{background-color:#1e1f22}.dark-Table-table>tbody>tr.bg-dark a,.dark-Table-table>tbody>tr.bg-dark .dark-Button--link{color:#a0a0a0}.dark-Table-table>tbody>tr.bg-dark a:hover,.dark-Table-table>tbody>tr.bg-dark .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-dark .open>a,.dark-Table-table>tbody>tr.bg-dark .open>a:hover,.dark-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-dark .text-muted{color:#6d6d6d!important}.dark-Table-table>tbody>tr.bg-dark .text-lt{color:#c6c6c6!important}.dark-Table-table>tbody>tr.bg-black{background-color:#141316;color:#7b7b7b}.dark-Table-table>tbody>tr.bg-black.lt,.dark-Table-table>tbody>tr.bg-black .lt{background-color:#212023}.dark-Table-table>tbody>tr.bg-black.lter,.dark-Table-table>tbody>tr.bg-black .lter{background-color:#2e2d2f}.dark-Table-table>tbody>tr.bg-black.dk,.dark-Table-table>tbody>tr.bg-black .dk{background-color:#070709}.dark-Table-table>tbody>tr.bg-black.dker,.dark-Table-table>tbody>tr.bg-black .dker{background-color:#000}.dark-Table-table>tbody>tr.bg-black.bg,.dark-Table-table>tbody>tr.bg-black .bg{background-color:#141316}.dark-Table-table>tbody>tr.bg-black a,.dark-Table-table>tbody>tr.bg-black .dark-Button--link{color:#949494}.dark-Table-table>tbody>tr.bg-black a:hover,.dark-Table-table>tbody>tr.bg-black .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-black .open>a,.dark-Table-table>tbody>tr.bg-black .open>a:hover,.dark-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-black .text-muted{color:#616161!important}.dark-Table-table>tbody>tr.bg-black .text-lt{color:#bababa!important}.dark-Table-table>tbody>tr.bg-primary{background-color:#0983ff;color:#d7eafd}.dark-Table-table>tbody>tr.bg-primary.lt,.dark-Table-table>tbody>tr.bg-primary .lt{background-color:#2590fc}.dark-Table-table>tbody>tr.bg-primary.lter,.dark-Table-table>tbody>tr.bg-primary .lter{background-color:#419dfa}.dark-Table-table>tbody>tr.bg-primary.dk,.dark-Table-table>tbody>tr.bg-primary .dk{background-color:#0076ef}.dark-Table-table>tbody>tr.bg-primary.dker,.dark-Table-table>tbody>tr.bg-primary .dker{background-color:#006ad5}.dark-Table-table>tbody>tr.bg-primary.bg,.dark-Table-table>tbody>tr.bg-primary .bg{background-color:#0983ff}.dark-Table-table>tbody>tr.bg-primary a,.dark-Table-table>tbody>tr.bg-primary .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-primary a:hover,.dark-Table-table>tbody>tr.bg-primary .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-primary .open>a,.dark-Table-table>tbody>tr.bg-primary .open>a:hover,.dark-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-primary .text-muted{color:#a7d0fa!important}.dark-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-success{background-color:#32d74b;color:#dff6e2}.dark-Table-table>tbody>tr.bg-success.lt,.dark-Table-table>tbody>tr.bg-success .lt{background-color:#4ad860}.dark-Table-table>tbody>tr.bg-success.lter,.dark-Table-table>tbody>tr.bg-success .lter{background-color:#62da74}.dark-Table-table>tbody>tr.bg-success.dk,.dark-Table-table>tbody>tr.bg-success .dk{background-color:#24cb3d}.dark-Table-table>tbody>tr.bg-success.dker,.dark-Table-table>tbody>tr.bg-success .dker{background-color:#1eb835}.dark-Table-table>tbody>tr.bg-success.bg,.dark-Table-table>tbody>tr.bg-success .bg{background-color:#32d74b}.dark-Table-table>tbody>tr.bg-success a,.dark-Table-table>tbody>tr.bg-success .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-success a:hover,.dark-Table-table>tbody>tr.bg-success .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-success .open>a,.dark-Table-table>tbody>tr.bg-success .open>a:hover,.dark-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-success .text-muted{color:#b7ebbf!important}.dark-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-info{background-color:#2296f3;color:#e5f2fc}.dark-Table-table>tbody>tr.bg-info.lt,.dark-Table-table>tbody>tr.bg-info .lt{background-color:#3da1f2}.dark-Table-table>tbody>tr.bg-info.lter,.dark-Table-table>tbody>tr.bg-info .lter{background-color:#57acf1}.dark-Table-table>tbody>tr.bg-info.dk,.dark-Table-table>tbody>tr.bg-info .dk{background-color:#0a8bf2}.dark-Table-table>tbody>tr.bg-info.dker,.dark-Table-table>tbody>tr.bg-info .dker{background-color:#067ddc}.dark-Table-table>tbody>tr.bg-info.bg,.dark-Table-table>tbody>tr.bg-info .bg{background-color:#2296f3}.dark-Table-table>tbody>tr.bg-info a,.dark-Table-table>tbody>tr.bg-info .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-info a:hover,.dark-Table-table>tbody>tr.bg-info .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-info .open>a,.dark-Table-table>tbody>tr.bg-info .open>a:hover,.dark-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-info .text-muted{color:#b7dbf7!important}.dark-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-warning{background-color:#ff9f0b;color:#fdefd9}.dark-Table-table>tbody>tr.bg-warning.lt,.dark-Table-table>tbody>tr.bg-warning .lt{background-color:#fca827}.dark-Table-table>tbody>tr.bg-warning.lter,.dark-Table-table>tbody>tr.bg-warning .lter{background-color:#fab243}.dark-Table-table>tbody>tr.bg-warning.dk,.dark-Table-table>tbody>tr.bg-warning .dk{background-color:#f19200}.dark-Table-table>tbody>tr.bg-warning.dker,.dark-Table-table>tbody>tr.bg-warning .dker{background-color:#d78200}.dark-Table-table>tbody>tr.bg-warning.bg,.dark-Table-table>tbody>tr.bg-warning .bg{background-color:#ff9f0b}.dark-Table-table>tbody>tr.bg-warning a,.dark-Table-table>tbody>tr.bg-warning .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-warning a:hover,.dark-Table-table>tbody>tr.bg-warning .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-warning .open>a,.dark-Table-table>tbody>tr.bg-warning .open>a:hover,.dark-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-warning .text-muted{color:#fadaa9!important}.dark-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-danger{background-color:#dc3545;color:#f8e5e6}.dark-Table-table>tbody>tr.bg-danger.lt,.dark-Table-table>tbody>tr.bg-danger .lt{background-color:#dd4d5b}.dark-Table-table>tbody>tr.bg-danger.lter,.dark-Table-table>tbody>tr.bg-danger .lter{background-color:#df6571}.dark-Table-table>tbody>tr.bg-danger.dk,.dark-Table-table>tbody>tr.bg-danger .dk{background-color:#d62133}.dark-Table-table>tbody>tr.bg-danger.dker,.dark-Table-table>tbody>tr.bg-danger .dker{background-color:#c31b2b}.dark-Table-table>tbody>tr.bg-danger.bg,.dark-Table-table>tbody>tr.bg-danger .bg{background-color:#dc3545}.dark-Table-table>tbody>tr.bg-danger a,.dark-Table-table>tbody>tr.bg-danger .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-danger a:hover,.dark-Table-table>tbody>tr.bg-danger .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-danger .open>a,.dark-Table-table>tbody>tr.bg-danger .open>a:hover,.dark-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-danger .text-muted{color:#eebcc0!important}.dark-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.is-dragging{opacity:.1}.dark-Table-table tr.dark-Table-tr--2th.is-expanded .dark-Table-expandCell:before{right:-.8125rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandBtn{position:relative;right:-1.25rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td{position:relative;padding-left:1.25rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--2th.is-expandable .dark-Table-expandCell+td{padding-left:1.25rem}.dark-Table-table tr.dark-Table-tr--2th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--3th.is-expanded .dark-Table-expandCell:before{right:-2.0625rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandBtn{position:relative;right:-2.5rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td{position:relative;padding-left:2.5rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--3th.is-expandable .dark-Table-expandCell+td{padding-left:2.5rem}.dark-Table-table tr.dark-Table-tr--3th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--4th.is-expanded .dark-Table-expandCell:before{right:-3.3125rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandBtn{position:relative;right:-3.75rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td{position:relative;padding-left:3.75rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--4th.is-expandable .dark-Table-expandCell+td{padding-left:3.75rem}.dark-Table-table tr.dark-Table-tr--4th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--5th.is-expanded .dark-Table-expandCell:before{right:-4.5625rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandBtn{position:relative;right:-5rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td{position:relative;padding-left:5rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--5th.is-expandable .dark-Table-expandCell+td{padding-left:5rem}.dark-Table-table tr.dark-Table-tr--5th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--6th.is-expanded .dark-Table-expandCell:before{right:-5.8125rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandBtn{position:relative;right:-6.25rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td{position:relative;padding-left:6.25rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--6th.is-expandable .dark-Table-expandCell+td{padding-left:6.25rem}.dark-Table-table tr.dark-Table-tr--6th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--7th.is-expanded .dark-Table-expandCell:before{right:-7.0625rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandBtn{position:relative;right:-7.5rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td{position:relative;padding-left:7.5rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--7th.is-expandable .dark-Table-expandCell+td{padding-left:7.5rem}.dark-Table-table tr.dark-Table-tr--7th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--8th.is-expanded .dark-Table-expandCell:before{right:-8.3125rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandBtn{position:relative;right:-8.75rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td{position:relative;padding-left:8.75rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--8th.is-expandable .dark-Table-expandCell+td{padding-left:8.75rem}.dark-Table-table tr.dark-Table-tr--8th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--9th.is-expanded .dark-Table-expandCell:before{right:-9.5625rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandBtn{position:relative;right:-10rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td{position:relative;padding-left:10rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--9th.is-expandable .dark-Table-expandCell+td{padding-left:10rem}.dark-Table-table tr.dark-Table-tr--9th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--10th.is-expanded .dark-Table-expandCell:before{right:-10.8125rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandBtn{position:relative;right:-11.25rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td{position:relative;padding-left:11.25rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--10th.is-expandable .dark-Table-expandCell+td{padding-left:11.25rem}.dark-Table-table tr.dark-Table-tr--10th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table>thead>tr>th.dark-Table-checkCell,.dark-Table-table>tbody>tr>td.dark-Table-checkCell{border-right:0;width:.0625rem}.dark-Table-table>thead>tr>th.dark-Table-checkCell .dark-Checkbox,.dark-Table-table>tbody>tr>td.dark-Table-checkCell .dark-Checkbox{margin:0}.dark-Table-table>thead>tr>th.dark-Table-expandCell,.dark-Table-table>tbody>tr>td.dark-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.dark-Table-table>thead>tr>th.dark-Table-dragCell,.dark-Table-table>tbody>tr>td.dark-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.dark-Table-table>tbody>tr>td.dark-Table-expandCell{position:relative}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:.4375rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-.8125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-2.0625rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-3.3125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-4.5625rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-5.8125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-7.0625rem}.dark-Table-table>tbody>tr.is-expanded>td.dark-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#656565}.dark-Table-table>thead>tr>th.dark-TableCell--sortable{padding-right:1.125rem;position:relative}.dark-Table-table>thead>tr>th.dark-TableCell--searchable{padding-right:1.625rem;position:relative}.dark-Table-table>thead>tr>th.dark-TableCell--filterable{padding-right:1.625rem;position:relative}.dark-TableCell-sortBtn{cursor:pointer;width:.5rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.375rem;top:50%;transform:translateY(-50%);color:#6c757d}.dark-TableCell-sortBtn:hover{color:#212529}.dark-TableCell-sortBtn--up>svg,.dark-TableCell-sortBtn--down>svg,.dark-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.dark-TableCell-sortBtn--up,.dark-TableCell-sortBtn--down,.dark-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.dark-TableCell-sortBtn--up.is-active,.dark-TableCell-sortBtn--down.is-active,.dark-TableCell-sortBtn--default.is-active{display:inline-block}.dark-TableCell-sortBtn--default.is-active{color:#6c6c6c}.dark-TableCell-sortBtn--default.is-active:hover{color:#f3f1f1}.dark-TableCell-sortBtn--up.is-active,.dark-TableCell-sortBtn--down.is-active{color:#0983ff}.dark-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#6c6c6c}.dark-TableCell-searchBtn svg.icon{width:12px;height:12px}.dark-TableCell-searchBtn:hover{color:#f3f1f1}.dark-TableCell-searchBtn.is-active{color:#0983ff}.dark-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.dark-TableCell-searchPopOver .dark-Panel{margin:0}.dark-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#6c6c6c}.dark-TableCell-filterBtn svg.icon{width:12px;height:12px}.dark-TableCell-filterBtn:hover{color:#f3f1f1}.dark-TableCell-filterBtn.is-active{color:#0983ff}.dark-TableCell-filterBtn .dark-Remark{display:inline}.dark-TableCell-filterPopOver{border:0;width:10rem}.dark-TableCell-filterPopOver .dark-DropDown-menu{margin:0;padding:0;border-radius:0}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider{height:2.125rem;line-height:2.125rem;padding:0 .75rem;background-color:#fff;margin:0}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider:hover{background-color:#3a3a3a;color:#0983ff}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider.is-selected{background-color:#3a3a3a;color:#0983ff}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider .dark-Checkbox{width:100%;margin:0}.dark-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(30,31,34,0) 0,#1e1f22 20%,#1e1f22 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.dark-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#2296f3;text-decoration:none}.dark-Table-itemActions a:hover{color:#0a6ebe;text-decoration:underline}.dark-Table-itemActions a.is-disabled{pointer-events:none;opacity:.65;color:#6c6c6c}.dark-Table-dragTip{color:#fff;clear:both;margin-top:.3125rem;width:100%;color:#2296f3}.dark-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.dark-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.59375rem .625rem}.dark-Table-footTable>tbody>tr>td{word-break:break-all;padding:.59375rem .625rem}.dark-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #6b6b6b}.dark-Table-expandBtn{position:relative;z-index:1;color:#2296f3;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.dark-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.dark-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.dark-Table-expandBtn:hover{text-decoration:none}.dark-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#6c757d}.dark-Table-dragBtn:hover{text-decoration:none;color:#212529}.dark-Table-table>tbody>tr:hover .dark-Table-dragBtn,.dark-Table-table>tbody>tr.is-dragging .dark-Table-dragBtn,.dark-Table-table>tbody>tr.is-drop-allowed .dark-Table-dragBtn{visibility:visible}.dark-Table .fake-hide{visibility:hidden;position:absolute}.dark-OperationField{margin:-.1875rem}.dark-OperationField>.dark-Button,.dark-OperationField>.dark-Button--disabled-wrap>.dark-Button{margin:.1875rem}.dark-OperationField>.dark-Button--link{padding:0;margin-right:.625rem}.dark-List{border:.0625rem solid #656565;border-radius:.142rem;background-color:#302d2a;margin-bottom:1.25rem;position:relative}.dark-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.dark-List-toolbar::before,.dark-List-toolbar::after{display:table;content:''}.dark-List-toolbar::after{clear:both}.dark-List-actions{display:inline-block}.dark-List-actions>*{margin-right:.3125rem}.dark-List-header{padding:.625rem}.dark-List-header>*+.dark-Button,.dark-List-header>*+.dark-ButtonGroup,.dark-List-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-List-header+.dark-List-toolbar{padding-top:0}.dark-List-heading{padding:.3125rem 0}.dark-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);padding:.625rem}.dark-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-List-fixedTop .dark-Cards-toolbar{margin-bottom:0}.dark-List-fixedTop:empty{display:none}.dark-List--unsaved .dark-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.dark-List-dragTip{width:100%;color:#2296f3;clear:both;margin-top:.3125rem}.dark-List-placeholder{color:#6c6c6c;text-align:center;min-height:1.875rem;line-height:1.875rem}.dark-ListGroup{max-width:25rem;display:flex;flex-direction:column}.dark-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #656565}.dark-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.dark-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.dark-ListGroup-item:hover{z-index:1}.dark-ListGroup-item.is-active{z-index:2}.dark-ListGroup-item.is-disabled{color:#6c6c6c}.dark-ListGroup--expanded .dark-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.dark-ListGroup--expanded .dark-ListGroup-item:last-child{margin-bottom:0}.dark-ListItem{position:relative;display:block;padding:.625rem .9375rem}.dark-ListItem::before,.dark-ListItem::after{display:table;content:''}.dark-ListItem::after{clear:both}.dark-ListItem+.dark-ListItem{border-top:.0625rem solid #727272}.dark-ListItem:nth-child(even){background-color:#333538}.dark-ListItem-checkBtn{float:left;margin-right:.625rem}.dark-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.dark-ListItem-actions{float:right}.dark-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#fff;font-weight:400}.dark-ListItem-content{overflow:hidden}.dark-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.dark-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.dark-ListItem-fieldLabel{width:9.375rem;color:#6c6c6c}.dark-ListItem.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-ListItem.is-checked+.dark-ListItem{border-color:#000}.dark-ListItem.is-checked .dark-ListItem-fieldLabel{color:#fff}.dark-ListItem.is-modified,.dark-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#f3f1f1}.dark-ListItem.is-modified+.dark-ListItem,.dark-ListItem.is-moved+.dark-ListItem{border-color:#b7d0fc}.dark-ListItem.is-modified .dark-ListItem-fieldLabel,.dark-ListItem.is-moved .dark-ListItem-fieldLabel{color:#fff}.dark-ListItem.is-dragging{opacity:.1}.dark-Cards-toolbar{padding:0;margin-bottom:.9375rem}.dark-Cards-toolbar::before,.dark-Cards-toolbar::after{display:table;content:''}.dark-Cards-toolbar::after{clear:both}.dark-Cards-actions{display:inline-block}.dark-Cards-actions>*{margin-right:.3125rem}.dark-Cards-heading{padding:.3125rem 0}.dark-Cards-header{padding:0}.dark-Cards-header>*+.dark-Button,.dark-Cards-header>*+.dark-ButtonGroup,.dark-Cards-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Cards-header+.dark-Cards-toolbar{padding-top:0}.dark-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);padding:.625rem}.dark-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-Cards-fixedTop .dark-Cards-toolbar{margin-bottom:0}.dark-Cards-fixedTop:empty{display:none}.dark-Cards--unsaved .dark-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.dark-Cards-dragTip{width:100%;color:#2296f3;clear:both;margin-top:.3125rem}.dark-Cards-placeholder{background:#fff;color:#6c6c6c;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #656565;border-radius:.142rem}.dark-Cards-body>div{display:flex}.dark-Cards--masonry{display:block;column-gap:0;column-fill:initial}.dark-Cards--masonry:after{content:none}.dark-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.dark-Cards--masonrySm1{column-count:12}.dark-Cards--masonrySm2{column-count:6}.dark-Cards--masonrySm3{column-count:4}.dark-Cards--masonrySm4{column-count:3}.dark-Cards--masonrySm6{column-count:2}.dark-Cards--masonrySm12{column-count:1}.dark-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.dark-Cards--masonryMd1{column-count:12}.dark-Cards--masonryMd2{column-count:6}.dark-Cards--masonryMd3{column-count:4}.dark-Cards--masonryMd4{column-count:3}.dark-Cards--masonryMd6{column-count:2}.dark-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.dark-Cards--masonryLg1{column-count:12}.dark-Cards--masonryLg2{column-count:6}.dark-Cards--masonryLg3{column-count:4}.dark-Cards--masonryLg4{column-count:3}.dark-Cards--masonryLg6{column-count:2}.dark-Cards--masonryLg12{column-count:1}}.dark-Card{background-color:#302d2a;border:.0625rem solid #656565;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.dark-Card-title{color:#fff;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dark-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#6c6c6c;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.dark-Card-title+.dark-Card-subTitle{margin-top:.3125rem}.dark-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.dark-Card-checkBtn .dark-Checkbox{margin-right:0}.dark-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.dark-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.dark-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.dark-Card-avtar img{max-width:100%}.dark-Card-avtarText{background-color:#0983ff;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.dark-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.dark-Card-highlight{background-color:#32d74b;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.dark-Card-body{padding:.9375rem;flex:1 0 auto}.dark-Card-heading+.dark-Card-body{padding-top:.3125rem}.dark-Card-field{position:relative;display:flex;flex-wrap:nowrap}.dark-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.dark-Card-fieldLabel{width:3.75rem;color:#6c6c6c}.dark-Card-actions{border-top:.0625rem solid #727272;display:flex;flex-direction:row;width:100%;table-layout:fixed}.dark-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#727272;border-style:solid;border-width:0 .0625rem 0 0;color:#f3f1f1;text-align:center;line-height:2.5rem;font-size:.875rem}.dark-Card-actions>a:not(.is-disabled){cursor:pointer}.dark-Card-actions>a:not(.is-disabled):hover{background-color:#1e1f22;color:#f3f1f1;text-decoration:none}.dark-Card-actions>a:last-child{border:0}.dark-Card-actions>a.is-disabled{color:#6c6c6c}.dark-Card-actions>a.is-disabled:hover{text-decoration:none}.dark-Card.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-Card.is-checked .dark-Card-actions,.dark-Card.is-checked .dark-Card-actions>a{border-color:#000;color:#f3f1f1}.dark-Card.is-checked .dark-Card-fieldLabel{color:#fff}.dark-Card.is-checked .dark-Card-actions>a:hover{background-color:#c2ecf9;color:#dbd6d6}.dark-Card.is-modified,.dark-Card.is-moved{background-color:#1e1f22;border-color:#060607;color:#f3f1f1}.dark-Card.is-modified .dark-Card-actions,.dark-Card.is-modified .dark-Card-actions>a,.dark-Card.is-moved .dark-Card-actions,.dark-Card.is-moved .dark-Card-actions>a{border-color:#060607;color:#f3f1f1}.dark-Card.is-modified .dark-Card-fieldLabel,.dark-Card.is-moved .dark-Card-fieldLabel{color:#fff}.dark-Card.is-modified .dark-Card-actions>a:hover,.dark-Card.is-moved .dark-Card-actions>a:hover{background-color:#121314;color:#dbd6d6}.is-dragging>.dark-Card{opacity:.1}.dark-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.dark-Field-quickEditBtn:hover{color:inherit;opacity:1}.dark-Field--quickEditable{outline:0;position:relative}.dark-Field--quickEditable:focus{position:relative}.dark-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #2296f3}.dark-Field--quickEditable:hover .dark-Field-quickEditBtn{visibility:visible}.dark-QuickEdit-popover{min-width:20rem;max-width:40rem}.dark-QuickEdit-popover .dark-Panel{margin-bottom:0;border:0}.dark-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.dark-Field-popOverBtn:hover{color:inherit;opacity:1}.dark-Field--popOverAble{outline:0;position:relative}.dark-Field--popOverAble:hover .dark-Field-popOverBtn{visibility:visible}.dark-PopOverAble-popover{min-width:20rem;max-width:40rem}.dark-PopOverAble-popover .dark-Panel{margin-bottom:0;border:0}.dark-Field-copyBtn{color:#6c757d;margin-left:.3125rem;display:inline-block;cursor:pointer}.dark-Field-copyBtn:hover{color:#212529}.dark-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #656565;height:.125rem;font-size:0}.dark-Divider--solid{border-bottom-style:solid}.dark-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.dark-Pagination>li{display:inline}.dark-Pagination>li>a,.dark-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.875rem}.dark-Pagination>li>a:hover,.dark-Pagination>li>span:hover,.dark-Pagination>li>a:focus,.dark-Pagination>li>span:focus{background-color:transparent;color:#0983ff}.dark-Pagination>li.is-disabled>span,.dark-Pagination>li.is-disabled>a{cursor:not-allowed}.dark-Pagination>li.is-disabled>a,.dark-Pagination>li.is-disabled>span,.dark-Pagination>li.is-disabled>a:hover,.dark-Pagination>li.is-disabled>span:hover,.dark-Pagination>li.is-disabled>a:focus,.dark-Pagination>li.is-disabled>span:focus{color:#ccc}.dark-Pagination>li.is-active>a,.dark-Pagination>li.is-active>span,.dark-Pagination>li.is-active>a:hover,.dark-Pagination>li.is-active>span:hover,.dark-Pagination>li.is-active>a:focus,.dark-Pagination>li.is-active>span:focus{background-color:#0983ff;color:#fff;border:0}.dark-Pagination-prev>span{cursor:pointer}.dark-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.dark-Pagination-next>span{cursor:pointer}.dark-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.dark-Pagination-inputGroup .dark-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #656565;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.dark-Pagination-inputGroup .dark-Pagination-input:focus{outline:0;border:.0625rem solid #0983ff}.dark-Pagination-inputGroup .dark-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.dark-Wrapper{padding:.9375rem}.dark-Wrapper--xs{padding:.3125rem}.dark-Wrapper--sm{padding:.625rem}.dark-Wrapper--md{padding:1.25rem}.dark-Wrapper--lg{padding:1.875rem}.dark-Wrapper--xl{padding:3.125rem}.dark-Wrapper--none{padding:0}.dark-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.dark-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.dark-StatusField svg.dark-Status-icon{width:1.25rem;height:1.25rem;top:0}.dark-StatusField .dark-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.dark-StatusField .dark-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #dc3545;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.dark-StatusField .dark-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #0983ff;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.dark-StatusField .dark-Status-icon.icon-warning{color:#ff9f0b}.dark-Status-icon.rolling+.dark-StatusField-label{color:#ff9f0b}.dark-Status-icon.icon-success+.dark-StatusField-label{color:#32d74b}.dark-Status-icon.icon-fail+.dark-StatusField-label{color:#dc3545}.dark-Status-icon.icon-warning+.dark-StatusField-label{color:#ff9f0b}.dark-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.dark-Carousel.dark-Carousel--light .dark-Carousel-dot{background-color:#fff}.dark-Carousel.dark-Carousel--light svg{fill:#fff}.dark-Carousel.dark-Carousel--light .dark-Carousel-item .title,.dark-Carousel.dark-Carousel--light .dark-Carousel-item .description{color:#fff}.dark-Carousel.dark-Carousel--dark .dark-Carousel-dot{background-color:#000}.dark-Carousel.dark-Carousel--dark svg{fill:#000}.dark-Carousel.dark-Carousel--dark .dark-Carousel-item .title,.dark-Carousel.dark-Carousel--dark .dark-Carousel-item .description{color:#000}.dark-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.dark-Carousel-container .dark-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.dark-Carousel-container .dark-Carousel-item.fade{opacity:0}.dark-Carousel-container .dark-Carousel-item.fade.in{opacity:1}.dark-Carousel-container .dark-Carousel-item.slide{transform:translateX(100%)}.dark-Carousel-container .dark-Carousel-item.slide.in{transform:translateX(0)}.dark-Carousel-container .dark-Carousel-item.slide.out{transform:translateX(-100%)}.dark-Carousel-container .dark-Carousel-item.slideRight{transform:translateX(-100%)}.dark-Carousel-container .dark-Carousel-item.slideRight.in{transform:translateX(0)}.dark-Carousel-container .dark-Carousel-item.slideRight.out{transform:translateX(100%)}.dark-Carousel-container .dark-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.dark-Carousel-container .dark-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.dark-Carousel-container .dark-Carousel-item .image{width:100%;height:100%;background-size:cover}.dark-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.dark-Carousel-dotsControl .dark-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.dark-Carousel-dotsControl .dark-Carousel-dot.is-active{opacity:1}.dark-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.dark-Carousel-arrowsControl .dark-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.dark-Carousel-arrowsControl .dark-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.dark-Carousel-arrowsControl .dark-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.dark-Carousel-arrowsControl .dark-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.dark-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.dark-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.dark-ImageGallery-close:hover{color:#fff}.dark-ImageGallery-close>svg{width:1rem;height:1rem}.dark-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.dark-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.dark-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.dark-ImageGallery-prevBtn,.dark-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.dark-ImageGallery-prevBtn>svg,.dark-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.dark-ImageGallery-prevBtn:hover,.dark-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.dark-ImageGallery-prevBtn.is-disabled,.dark-ImageGallery-nextBtn.is-disabled{pointer-events:none}.dark-ImageGallery-main:hover .dark-ImageGallery-prevBtn,.dark-ImageGallery-main:hover .dark-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.dark-ImageGallery-prevBtn{left:1.25rem}.dark-ImageGallery-nextBtn{right:1.25rem}.dark-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.dark-ImageGallery-prevList,.dark-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.dark-ImageGallery-prevList.is-disabled,.dark-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.dark-ImageGallery-prevList:hover,.dark-ImageGallery-nextList:hover{background:#000;color:#fff}.dark-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.dark-ImageGallery-items{display:inline-block;white-space:nowrap}.dark-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.dark-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.dark-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.dark-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.dark-ImageGallery-item:hover{border:1px solid #e5e5e5}.dark-ImageGallery-item:hover:after{display:none}.dark-ImageGallery-item.is-active{border:1px solid #108cee}.dark-ImageGallery-item.is-active:after{display:none}.dark-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.dark-Images-item{display:flex;margin:.3125rem}.dark-Image{display:inline-block;width:7.5rem;border:.0625rem solid #656565;padding:.3125rem}.dark-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.dark-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.dark-Image-thumb--4-3{height:5.0625rem}.dark-Image-thumb--16-9{height:3.79688rem}.dark-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.dark-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.dark-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.dark-Image-caption{font-size:.75rem}.dark-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.dark-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.dark-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.dark-Image-thumb:hover .dark-Image-overlay{display:flex}.dark-ImageField{display:inline-block;position:relative}.dark-InputBox{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-InputBox input::placeholder{color:#6c6c6c;user-select:none}.dark-InputBox--inline{display:inline-flex}.dark-InputBox>input[readonly]{cursor:inherit}.dark-InputBox.is-error{border-color:#dc3545;background-color:#3c3c3c}.dark-InputBox.is-focused{border-color:#2296f3;box-shadow:none}.dark-InputBox.is-clickable:hover{border-color:#2296f3;box-shadow:none;cursor:pointer}.dark-InputBox.is-error.is-focused{border-color:#dc3545}.dark-InputBox.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-InputBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-InputBox-clear:hover svg{fill:#3d4246}.dark-InputBox>svg{display:inline-block;width:14px;color:#6c757d}.dark-InputBox>a{cursor:pointer}.dark-ResultBox{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:2.125rem;align-items:center}.dark-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-ResultBox input::placeholder{color:#6c6c6c;user-select:none}.dark-ResultBox.is-error{border-color:#dc3545;background-color:#3c3c3c}.dark-ResultBox.is-focused,.dark-ResultBox:focus{outline:0;border-color:#2296f3;box-shadow:none}.dark-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.dark-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#2296f3;box-shadow:none}.dark-ResultBox.is-error.is-focused{border-color:#dc3545}.dark-ResultBox.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-ResultBox-singleValue{padding:0 .5625rem}.dark-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.dark-ResultBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-ResultBox-clear:hover svg{fill:#3d4246}.dark-ResultBox-clear:hover{background:#f5f5f5}.dark-ResultBox-clear>svg{width:.75rem;height:.75rem}.dark-ResultBox>svg{display:inline-block;width:.875rem;color:#6c757d}.dark-ResultBox>a{cursor:pointer}.dark-ResultBox-value{background:#f5f5f5;color:#000;font-size:.875rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.dark-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.dark-ResultBox-value>a:hover{color:#666}.dark-ResultBox-value>a>svg{width:.625rem;height:.625rem}.dark-ResultBox-value:hover{background:#ebebeb}.dark-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.dark-ResultBox-value.is-disabled>a{color:#ebebeb}.dark-ResultBox-placeholder{color:#6c6c6c;user-select:none;margin-left:8px}.dark-ResultBox>input{padding-left:8px;min-height:24px}.dark-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.875rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:.142rem;height:30px}.dark-SearchBox:hover{background-color:rgba(60,60,60,.6)}.dark-SearchBox.is-active{background-color:#3c3c3c;border:.0625rem solid #656565;width:150px}.dark-SearchBox.is-active>input{flex-grow:1}.dark-SearchBox-activeBtn,.dark-SearchBox-cancelBtn{cursor:pointer;color:#6c757d}.dark-SearchBox-activeBtn:hover,.dark-SearchBox-cancelBtn:hover{color:#212529}.dark-SearchBox>input{outline:0;border:0;background:transparent;color:#f3f1f1;width:0;height:1.25rem}.dark-SearchBox>input::placeholder{color:#6c6c6c;user-select:none}.dark-ListMenu{background:#fff;min-width:12.5rem;border:.0625rem solid #656565;border-radius:.125rem}.dark-ListMenu-groupLabel{font-size:.6875rem;color:#6c6c6c;padding:.125rem 0 0 .4375rem}.dark-ListMenu-group:not(:first-child)>.dark-ListMenu-groupLabel{border-top:.0625rem solid #6b6b6b}.dark-ListMenu-item{display:flex;min-height:2.125rem;color:#f3f1f1;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.dark-ListMenu-item.is-active{color:#2296f3;background-color:transparent}.dark-ListMenu-item.is-highlight{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-ListMenu-item.is-disabled{color:#6c6c6c;background-color:transparent}.dark-ListMenu-placeholder{display:block;min-height:2.125rem;color:#6c6c6c;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.dark-PopOver>.dark-ListMenu{border-color:#2296f3}.dark-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.dark-Collapse--xs,fieldset.dark-Collapse--sm,fieldset.dark-Collapse--base,fieldset.dark-Collapse--md,fieldset.dark-Collapse--lg{position:relative}fieldset.dark-Collapse--xs:after,fieldset.dark-Collapse--sm:after,fieldset.dark-Collapse--base:after,fieldset.dark-Collapse--md:after,fieldset.dark-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #656565;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.dark-Collapse--xs>legend,fieldset.dark-Collapse--sm>legend,fieldset.dark-Collapse--base>legend,fieldset.dark-Collapse--md>legend,fieldset.dark-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#333538;border-left:0!important}fieldset.dark-Collapse--xs .collapse,fieldset.dark-Collapse--sm .collapse,fieldset.dark-Collapse--base .collapse,fieldset.dark-Collapse--md .collapse,fieldset.dark-Collapse--lg .collapse{position:relative}fieldset.dark-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#fff;border-left:#0983ff .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.dark-Collapse--xs{padding:20px 5px 5px}fieldset.dark-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.dark-Collapse--xs:after{top:6px}fieldset.dark-Collapse--sm{padding:25px 10px 10px}fieldset.dark-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.dark-Collapse--sm:after{top:6px}fieldset.dark-Collapse--base{padding:30px 15px 15px}fieldset.dark-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.dark-Collapse--base:after{top:7px}fieldset.dark-Collapse--md{padding:30px 20px 20px}fieldset.dark-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.dark-Collapse--md:after{top:7px}fieldset.dark-Collapse--lg{padding:40px 30px 30px}fieldset.dark-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.dark-Collapse--lg:after{top:9px}.dark-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.dark-Form-group{margin-bottom:.9375rem}.dark-Form-value>.dark-Form-group{margin-bottom:.375rem}.dark-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.dark-Form-group--hor.v-middle{align-items:center}.dark-Form-group--hor.v-bottom{align-items:flex-end}.dark-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-group--hor>.dark-Form-item--inline{margin-right:0}.dark-Form-group--hor>.dark-Form-item,.dark-Form-group--hor>div>.dark-Form-item{margin-bottom:0}.dark-Form-group--hor .dark-Form-input>.dark-Form-group{margin-bottom:0}.dark-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.dark-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.dark-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.dark-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.dark-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.dark-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.dark-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.dark-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.dark-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.dark-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.dark-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.dark-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.dark-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.dark-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.dark-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.dark-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.dark-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.dark-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.dark-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.dark-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.dark-InputGroup{display:inline-flex;flex-wrap:nowrap}.dark-InputGroup.dark-Form-control--sizeXs,.dark-InputGroup.dark-Form-control--sizeSm,.dark-InputGroup.dark-Form-control--sizeMd,.dark-InputGroup.dark-Form-control--sizeLg{display:inline-flex}.dark-InputGroup-addOn,.dark-InputGroup .dark-Form-control{display:inline-block;white-space:nowrap}.dark-InputGroup-addOn{background:#3c3c3c;border:.0625rem solid #656565;line-height:1.25rem;height:2.125rem;box-sizing:border-box;padding:.375rem .625rem}.dark-InputGroup-addOn:not(:last-child){border-right:0}.dark-InputGroup-addOn:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup-addOn:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup-btn .dark-Button{border-radius:0;border:.0625rem solid #656565}.dark-InputGroup-btn:not(:last-child) .dark-Button{border-right:0}.dark-InputGroup-btn:first-child .dark-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup-btn:last-child .dark-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup .dark-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.dark-InputGroup .dark-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dark-InputGroup .dark-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.dark-InputGroup .dark-SelectControl .dark-Select{background-color:#333538;border:.0625rem solid #656565}.dark-InputGroup .dark-SelectControl:not(:last-child) .dark-Select{border-right:0}.dark-InputGroup .dark-SelectControl:first-child .dark-Select{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup .dark-SelectControl:last-child .dark-Select{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup .dark-SelectControl:not(:first-child) .dark-Select{border-top-left-radius:0;border-bottom-left-radius:0}.dark-InputGroup .dark-SelectControl:not(:last-child) .dark-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.dark-InputGroup.is-focused .dark-InputGroup-addOn,.dark-InputGroup.is-focused .dark-TextControl-input,.dark-InputGroup.is-focused .dark-Select,.dark-InputGroup.is-focused .dark-InputGroup-btn .dark-Button{border-color:#2296f3}.dark-InputGroup.is-focused .dark-Select{background-color:#302d2a}.dark-InputGroup.is-focused .dark-Select-arrow{color:#212529}.dark-InputGroup.is-focused .dark-InputGroup-addOn{color:#0983ff}.dark-InputGroup:not(.is-inline){display:flex}.dark-TextControl{position:relative;max-width:100%}.dark-TextControl.is-inline{display:inline-block;width:12.5rem}.dark-TextControl-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-TextControl-input input::placeholder{color:#6c6c6c;user-select:none}.dark-TextControl.is-error>.dark-TextControl-input{border-color:#dc3545;background-color:#3c3c3c}.dark-TextControl.is-focused>.dark-TextControl-input{border-color:#2296f3;box-shadow:none}.dark-TextControl.is-error.is-focused>.dark-TextControl-input{border-color:#dc3545}.dark-TextControl.is-disabled>.dark-TextControl-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-TextControl-spinner{line-height:1.25rem}.dark-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-TextControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-TextControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-TextControl.dark-Form-control--sizeXs>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeSm>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeMd>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeLg>.dark-TextControl-input{min-width:100%;display:inline-flex}}.dark-TextControl-placeholder{color:#6c6c6c;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.dark-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.dark-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.dark-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.dark-TextControl--withAddOn.dark-Form-control--sizeXs,.dark-TextControl--withAddOn.dark-Form-control--sizeSm,.dark-TextControl--withAddOn.dark-Form-control--sizeMd,.dark-TextControl--withAddOn.dark-Form-control--sizeLg{display:inline-flex}.dark-TextControl--withAddOn.dark-Form-control--sizeXs>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeSm>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeMd>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeLg>.dark-TextControl-input{min-width:unset}}.dark-TextControl--withAddOn>.dark-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.dark-TextControl--withAddOn>.dark-TextControl-input:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-input:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#3c3c3c;color:#f3f1f1;border-color:#656565;border-style:solid;border-width:.0625rem 0}.dark-TextControl--withAddOn>.dark-TextControl-addOn:first-child{border-left-width:.0625rem}.dark-TextControl--withAddOn>.dark-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-button>.dark-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #656565}.dark-TextControl--withAddOn>.dark-TextControl-button:not(:last-child) .dark-Button{border-right:0}.dark-TextControl--withAddOn>.dark-TextControl-button:first-child .dark-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-button:last-child .dark-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn.is-focused>.dark-TextControl-button .dark-Button{border-color:#2296f3}.dark-TextControl--withAddOn.is-error>.dark-TextControl-addOn{border-color:#dc3545}.dark-TextControl--withAddOn.is-focused>.dark-TextControl-addOn{border-color:#2296f3;color:#0983ff;box-shadow:none}.dark-TextControl--withAddOn.is-disabled>.dark-TextControl-addOn{color:#6c6c6c}.dark-TextControl-input--withAC{position:relative;flex-wrap:wrap}.dark-TextControl-input--withAC input{width:auto;color:#6c6c6c}.dark-TextControl-sugs{position:absolute;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.dark-TextControl-sugItem{padding:.375rem .75rem}.dark-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#3d4246}.dark-TextControl-sugItem:not(.is-disabled){cursor:pointer}.dark-TextControl-sugItem.is-highlight{color:#2296f3;background:rgba(0,126,255,.08)}.dark-TextControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.dark-TextControl-input--multiple{height:auto;min-height:2.125rem}.dark-TextControl-input--multiple .dark-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.dark-TextControl-input--multiple .dark-TextControl-valueWrap>input{margin-bottom:.3125rem}.dark-TextControl-input--multiple .dark-TextControl-value{line-height:1.125rem;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-TextControl-valueIcon:hover{background-color:#22201e}.dark-TextControl-input--multiple .dark-TextControl-valueLabel{padding:0 .3125rem}.dark-TextareaControl{border:1px solid #656565;border-radius:.142rem;line-height:1.42857;background:#3c3c3c;padding:.375rem .75rem;font-size:.875rem;outline:0;resize:none;display:block;width:100%}.dark-TextareaControl.is-error{border-color:#dc3545}.dark-TextareaControl:focus,.dark-TextareaControl.is-focused{border-color:#2296f3;box-shadow:none}.dark-TextareaControl.is-disabled,.dark-TextareaControl[disabled]{background:#e9ecef;color:#6c6c6c}.dark-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.dark-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.dark-Checkbox:hover input:not(:disabled)+i{border-color:#0983ff}.dark-Checkbox>i{cursor:pointer;line-height:1;background:linear-gradient(#515151,#4b4b4b);display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.dark-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.dark-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.dark-Checkbox>i+span:empty{display:none}.dark-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.dark-Checkbox:hover>i+span>a{display:inline-block}.dark-Checkbox--checkbox{padding-left:1.25rem}.dark-Checkbox--checkbox input{margin-left:-1.25rem}.dark-Checkbox--checkbox input:checked+i{border-color:#0983ff}.dark-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.625rem;background:#0983ff}.dark-Checkbox--checkbox input[disabled]+i{border-color:#727272;cursor:not-allowed}.dark-Checkbox--checkbox input[disabled]+i:before{background-color:#727272;border-color:#fff}.dark-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#6c6c6c}.dark-Checkbox--checkbox>i{width:1.25rem;height:1.25rem;border:.0625rem solid #656565;border-radius:.142rem;margin-left:-1.25rem;margin-top:-.1875rem}.dark-Checkbox--full.dark-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#656565}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked+i{border-color:#0983ff;background:#0983ff}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked+i:before{width:.75rem;height:.375rem;border-color:#fff}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked[disabled]+i{border-color:#727272;background-color:#727272}.dark-Checkbox--full.dark-Checkbox--checkbox>i{position:relative;cursor:pointer}.dark-Checkbox--full.dark-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.dark-Checkbox--radio{padding-left:1.25rem}.dark-Checkbox--radio input{margin-left:-1.25rem}.dark-Checkbox--radio input:checked+i{border-color:#0983ff}.dark-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#0983ff;border-radius:50%}.dark-Checkbox--radio input[disabled]+i{border-color:#727272;cursor:not-allowed}.dark-Checkbox--radio input[disabled]+i:before{background-color:#727272}.dark-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#6c6c6c}.dark-Checkbox--radio>i{cursor:pointer;width:1.25rem;height:1.25rem;border:.0625rem solid #656565;margin-left:-1.25rem;margin-top:-.125rem;border-radius:50%}.dark-Checkbox--sm{padding-left:1rem}.dark-Checkbox--sm input{margin-left:-1rem}.dark-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.dark-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.dark-Checkbox--sm>i+span{margin-left:.3125rem}.dark-Checkbox--sm.dark-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.dark-Checkbox-desc{color:#6c6c6c;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.dark-CheckboxControl,.dark-RadiosControl,.dark-CheckboxesControl{padding-top:.4375rem}.dark-RadiosControl .dark-Checkbox,.dark-CheckboxesControl .dark-Checkbox{display:block;margin-bottom:.4375rem}.dark-RadiosControl.is-inline .dark-Checkbox,.dark-CheckboxesControl.is-inline .dark-Checkbox{display:inline-block;margin-right:1.25rem}.dark-RadiosControl-group .dark-RadiosControl-group,.dark-RadiosControl-group .dark-CheckboxesControl-group,.dark-CheckboxesControl-group .dark-RadiosControl-group,.dark-CheckboxesControl-group .dark-CheckboxesControl-group{padding-left:5rem}.dark-RadiosControl-group .dark-RadiosControl-group::before,.dark-RadiosControl-group .dark-RadiosControl-group::after,.dark-RadiosControl-group .dark-CheckboxesControl-group::before,.dark-RadiosControl-group .dark-CheckboxesControl-group::after,.dark-CheckboxesControl-group .dark-RadiosControl-group::before,.dark-CheckboxesControl-group .dark-RadiosControl-group::after,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::before,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::after{display:table;content:''}.dark-RadiosControl-group .dark-RadiosControl-group::after,.dark-RadiosControl-group .dark-CheckboxesControl-group::after,.dark-CheckboxesControl-group .dark-RadiosControl-group::after,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::after{clear:both}.dark-RadiosControl-group .dark-RadiosControl-group>.dark-RadiosControl-groupLabel,.dark-RadiosControl-group .dark-RadiosControl-group>.dark-CheckboxesControl-groupLabel,.dark-RadiosControl-group .dark-CheckboxesControl-group>.dark-RadiosControl-groupLabel,.dark-RadiosControl-group .dark-CheckboxesControl-group>.dark-CheckboxesControl-groupLabel,.dark-CheckboxesControl-group .dark-RadiosControl-group>.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-group .dark-RadiosControl-group>.dark-CheckboxesControl-groupLabel,.dark-CheckboxesControl-group .dark-CheckboxesControl-group>.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-group .dark-CheckboxesControl-group>.dark-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-groupLabel{display:block}.dark-Checkboxes>.dark-Checkbox{display:block;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem .4375rem 1.875rem}.dark-Checkboxes--inline>.dark-Checkbox{display:inline-block}.dark-Checkboxes-addBtn{display:block;cursor:pointer}.dark-Checkboxes-addBtn:hover{text-decoration:none}.dark-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.dark-ListCheckboxes-group:not(:first-child)>.dark-ListCheckboxes-itemLabel,.dark-ListRadios-group:not(:first-child)>.dark-ListCheckboxes-itemLabel,.dark-ListCheckboxes-group:not(:first-child)>.dark-ListRadios-itemLabel,.dark-ListRadios-group:not(:first-child)>.dark-ListRadios-itemLabel{border-top:.0625rem solid #6b6b6b}.dark-ListCheckboxes-group>.dark-ListCheckboxes-itemLabel,.dark-ListRadios-group>.dark-ListCheckboxes-itemLabel,.dark-ListCheckboxes-group>.dark-ListRadios-itemLabel,.dark-ListRadios-group>.dark-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#6c6c6c}.dark-ListCheckboxes-item,.dark-ListRadios-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-ListCheckboxes-item>.dark-Checkbox,.dark-ListRadios-item>.dark-Checkbox{margin-right:0}.dark-ListCheckboxes-item.is-active,.dark-ListRadios-item.is-active{color:#2296f3;background-color:transparent}.dark-ListCheckboxes-item:hover,.dark-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.dark-ListCheckboxes-item.is-disabled,.dark-ListRadios-item.is-disabled{pointer-events:none;color:#6c6c6c}.dark-ListCheckboxes-group>.dark-ListCheckboxes-items>.dark-ListCheckboxes-item,.dark-ListRadios-group>.dark-ListCheckboxes-items>.dark-ListCheckboxes-item,.dark-ListCheckboxes-group>.dark-ListRadios-items>.dark-ListCheckboxes-item,.dark-ListRadios-group>.dark-ListRadios-items>.dark-ListCheckboxes-item,.dark-ListCheckboxes-group>.dark-ListCheckboxes-items>.dark-ListRadios-item,.dark-ListRadios-group>.dark-ListCheckboxes-items>.dark-ListRadios-item,.dark-ListCheckboxes-group>.dark-ListRadios-items>.dark-ListRadios-item,.dark-ListRadios-group>.dark-ListRadios-items>.dark-ListRadios-item{padding-left:.9375rem}.dark-ListCheckboxes-itemLabel,.dark-ListRadios-itemLabel{flex-grow:1}.dark-ListCheckboxes-placeholder,.dark-ListRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-TableCheckboxes .dark-Table-content{border-top:.0625rem solid #656565}.dark-TableCheckboxes .dark-Table-table>thead>tr>th,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.dark-TableCheckboxes .dark-Table-table>thead>tr>th{padding-top:.375rem}.dark-TableCheckboxes .dark-Table-table>thead>tr>th:first-child,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.dark-TableCheckboxes .dark-Table-table>thead>tr>th:last-child,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.dark-TableCheckboxes .dark-Table-table>tbody>tr{cursor:pointer}.dark-TreeCheckboxes .dark-Table-expandBtn,.dark-TreeRadios .dark-Table-expandBtn{color:#6c757d;margin-right:5px}.dark-TreeCheckboxes-sublist,.dark-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.dark-TreeCheckboxes-sublist:before,.dark-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:1.0625rem;left:-19px;border-left:dashed 1px #6c757d}.dark-TreeCheckboxes-item,.dark-TreeRadios-item{position:relative}.dark-TreeCheckboxes-item.is-expanded>.dark-TreeCheckboxes-sublist,.dark-TreeRadios-item.is-expanded>.dark-TreeCheckboxes-sublist,.dark-TreeCheckboxes-item.is-expanded>.dark-TreeRadios-sublist,.dark-TreeRadios-item.is-expanded>.dark-TreeRadios-sublist{display:block}.dark-TreeCheckboxes-item:not(:last-child)>.dark-TreeCheckboxes-sublist:before,.dark-TreeRadios-item:not(:last-child)>.dark-TreeCheckboxes-sublist:before,.dark-TreeCheckboxes-item:not(:last-child)>.dark-TreeRadios-sublist:before,.dark-TreeRadios-item:not(:last-child)>.dark-TreeRadios-sublist:before{bottom:0}.dark-TreeCheckboxes-sublist .dark-TreeCheckboxes-item:before,.dark-TreeRadios-sublist .dark-TreeCheckboxes-item:before,.dark-TreeCheckboxes-sublist .dark-TreeRadios-item:before,.dark-TreeRadios-sublist .dark-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:1.0625rem;width:19px;left:-19px;border-top:dashed 1px #6c757d}.dark-TreeCheckboxes-itemInner,.dark-TreeRadios-itemInner{display:flex;align-items:center;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-TreeCheckboxes-itemInner>.dark-Checkbox,.dark-TreeRadios-itemInner>.dark-Checkbox{margin-right:0;margin-left:.625rem}.dark-TreeCheckboxes-itemInner.is-active,.dark-TreeRadios-itemInner.is-active{color:#2296f3;background-color:transparent}.dark-TreeCheckboxes-itemInner:hover,.dark-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.dark-TreeCheckboxes-itemInner.is-disabled,.dark-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#6c6c6c}.dark-TreeCheckboxes-itemLabel,.dark-TreeRadios-itemLabel{flex-grow:1}.dark-TreeCheckboxes-placeholder,.dark-TreeRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-ChainedCheckboxes{display:flex;flex-direction:row}.dark-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.dark-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #656565}.dark-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#6c6c6c}.dark-ChainedCheckboxes-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-ChainedCheckboxes-item>.dark-Checkbox{margin-right:0}.dark-ChainedCheckboxes-item.is-active{color:#2296f3;background-color:transparent}.dark-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.dark-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#6c6c6c}.dark-ChainedCheckboxes-itemLabel{flex-grow:1}.dark-ChainedCheckboxes-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-AssociatedCheckboxes{display:flex;flex-direction:row}.dark-AssociatedCheckboxes-left,.dark-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.dark-AssociatedCheckboxes-left{border-right:1px solid #656565}.dark-AssociatedCheckboxes-reload{text-align:center;color:#2296f3;margin:20px 0 0}.dark-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.dark-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#6c6c6c;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.dark-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#6c6c6c}.dark-CityPicker .dark-Select{margin-right:.3125rem;margin-bottom:.3125rem}.dark-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem}.dark-CityPicker-input::placeholder{color:#6c6c6c;user-select:none}.dark-CityPicker-input:focus{border-color:#2296f3;box-shadow:none}.dark-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#2296f3;margin:0;vertical-align:middle;text-align:left}.dark-Switch.is-disabled{background-color:#ccc}.dark-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#6c757d;border:.0625rem solid #545b62;border-radius:1.875rem;transition:all .2s}.dark-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.dark-Switch input{position:absolute;opacity:0}.dark-Switch input:disabled+i:before,.dark-Switch input:disabled:checked+i:before{color:#fff;background-color:#ccc;cursor:not-allowed}.dark-Switch input:disabled+i:after,.dark-Switch input:disabled:checked+i:after{background-color:#fff;color:#fff}.dark-Switch input:checked+i:before{left:100%;border-width:0}.dark-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.dark-Switch-option{vertical-align:middle;margin-left:.625rem}.dark-Switch-option:first-child{margin-left:0;margin-right:.625rem}.dark-Switch-option:empty{display:none}.dark-SwitchControl{padding-top:.375rem}.dark-SwitchControl.is-inline{display:inline-block}.dark-Number{margin:0;padding:0;line-height:2.125rem;font-size:.875rem;height:2.125rem;display:inline-block;vertical-align:middle;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem}.dark-Number-focused{border-color:#2296f3;box-shadow:none}.dark-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.dark-Number-handler-active{background:#ddd}.dark-Number-handler-up-inner,.dark-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.dark-Number:hover{border-color:#2296f3}.dark-Number:hover .dark-Number-handler-up,.dark-Number:hover .dark-Number-handler-wrap{border-color:#2296f3}.dark-Number-disabled:hover{border-color:#656565}.dark-Number-disabled:hover .dark-Number-handler-up,.dark-Number-disabled:hover .dark-Number-handler-wrap{border-color:#656565}.dark-Number-input-wrap{overflow:hidden;height:100%}.dark-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:2rem;height:100%;transition:all .3s ease;border:0;border-radius:.142rem;padding:0 .75rem}.dark-Number-handler{background-color:#333538;color:#f3f1f1;font-family:inherit;font-size:.875rem}.dark-Number-handler:hover{background-color:#27282b;color:#f3f1f1}.dark-Number-handler:hover:active{background-color:#27282b}.dark-Number-handler-up-inner{transform:none}.dark-Number-handler-up-inner:after{content:"+"}.dark-Number-handler-down-inner:after{content:"-"}.dark-Number-handler-wrap{float:right;border-left:.0625rem solid #656565;width:1.25rem;height:100%}.dark-Number-handler{line-height:.875rem;height:1rem}.dark-Number-handler-up{border-bottom:.0625rem solid #656565;padding-top:.0625rem}.dark-Number-handler-down-disabled,.dark-Number-handler-up-disabled{background-color:#302d2a;pointer-events:none;color:#6c6c6c}.dark-Number-disabled .dark-Number-input{opacity:.72;cursor:not-allowed;background-color:#3c3c3c}.dark-Number-disabled .dark-Number-handler{opacity:.72}.dark-Number-disabled .dark-Number-handler:hover{color:#6c6c6c;border-color:#656565}.dark-NumberControl:not(.is-inline)>.dark-Number{display:block}.dark-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.875rem;border:.0625rem solid #656565;background:#333538;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#f3f1f1}.dark-Select:hover{background:#191c22;border-color:#656565}.dark-Select:hover .dark-Select-arrow:before{color:#212529}.dark-Select.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.dark-Select-placeholder{color:#6c6c6c;line-height:1.42857;user-select:none;white-space:nowrap}.dark-Select-value{line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.dark-Select--multi{height:auto;min-height:2.125rem}.dark-Select--multi .dark-Select-valueWrap{margin-bottom:-.3125rem}.dark-Select--multi .dark-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.dark-Select--multi .dark-Select-values+.dark-Select-input{transform:translateY(0)}.dark-Select--multi .dark-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-Select--multi .dark-Select-valueLabel{padding:0 .3125rem}.dark-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Select-valueIcon:hover{background-color:#22201e}.dark-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#3e3a36;background:#3e3a36}.dark-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.dark-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#6c757d;width:10px;height:10px;top:0}.dark-Select.is-opened .dark-Select-arrow>svg{transform:rotate(180deg)}.dark-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.dark-Select-input{cursor:pointer;outline:0;border:0;margin:0 .75rem;height:2.125rem;font-size:.75rem;border-bottom:1px solid #656565;display:flex;align-items:center}.dark-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.dark-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.dark-Select-option{cursor:pointer;min-width:7.5rem;padding:.4375rem .75rem}.dark-Select-option.is-active{color:#2296f3;background-color:transparent}.dark-Select-option.is-highlight{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-Select-option.is-disabled{color:#6c6c6c;background-color:transparent}.dark-Select-option--placeholder{color:#6c6c6c}.dark-Select-option>label{display:block}.dark-Select-option>a{float:right;margin-left:.3125rem;display:none}.dark-Select-option.is-highlight>a{display:block}.dark-Select-noResult{color:#6c6c6c;line-height:1.42857;font-size:.75rem;user-select:none;padding:.4375rem .75rem}.dark-Select-option-hl{color:#dc3545}.dark-Select-addBtn{display:block;cursor:pointer;padding:.4375rem .75rem}.dark-Select-addBtn:hover{text-decoration:none}.dark-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.dark-Select.is-focused,.dark-Select.is-opened{border-color:#2296f3}.dark-Select-spinner{line-height:1.25rem}.dark-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.dark-Select-clear svg{fill:#6c757d;width:.625rem;height:.625rem;top:0}.dark-Select-clear:hover svg{fill:#3d4246}.dark-Select-popover{margin-top:-.0625rem;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;box-shadow:none;border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.dark-Select-popover.dark-PopOver--leftTopLeftBottom{margin-top:.0625rem}.dark-SelectControl:not(.is-inline)>.dark-Select{display:flex}@media (min-width:576px){.dark-Form-control--sizeXs>.dark-Select,.dark-Form-control--sizeSm>.dark-Select,.dark-Form-control--sizeMd>.dark-Select,.dark-Form-control--sizeLg>.dark-Select{min-width:100%;max-width:100%;display:inline-flex!important}.dark-Form-control--sizeXs>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeSm>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeMd>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeLg>.dark-Select .dark-Select-valueWrap{width:0}}.dark-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.dark-Selections-title{height:2.125rem;background:#2f2f2f;font-size:.875rem;padding:.4375rem .625rem}.dark-Selections-placeholder{color:#6c6c6c;text-align:center;width:100%;flex-basis:2.125rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.875rem}.dark-Selections-items{flex-grow:1}.dark-Selections-item{display:flex;flex-direction:row;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem}.dark-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.dark-Selections-item>.dark-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#6c757d;cursor:move}.dark-Selections-item--dragging>*{opacity:.2}.dark-Selections-delBtn{color:#6c757d;cursor:pointer}.dark-Selections-delBtn:hover{color:#212529}.dark-Selections-delBtn>svg{width:12px;height:12px}.dark-ListControl-items{display:block;margin:-.3125rem}.dark-ListControl-items:empty{display:none}.dark-ListControl-item{position:relative;user-select:none;font-size:.875rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #656565;background-color:#333538;padding:.375rem .75rem;color:#f3f1f1;transition:none;max-width:14rem}.dark-ListControl-item:not(.is-disabled){cursor:pointer}.dark-ListControl-item .b-inherit{border-color:#f3f1f1}.dark-ListControl-item:hover{background-color:#212224;border-color:#4c4c4c;color:#f3f1f1}.dark-ListControl-item:hover .b-inherit{border-color:#4c4c4c}.dark-ListControl-item:hover:active,.dark-ListControl-item.is-active{background-color:#0983ff;border-color:#006ad5;color:#fff}.dark-ListControl-item:hover:active .b-inherit,.dark-ListControl-item.is-active .b-inherit{border-color:#fff}.dark-ListControl-item:hover:active:before,.dark-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#333538;right:0;bottom:0}.dark-ListControl-item:hover:active:after,.dark-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#0983ff;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.dark-ListControl-item.is-disabled{pointer-events:none;opacity:.6;border-color:#727272;background-color:#333538;color:#f3f1f1}.dark-ListControl-item.is-disabled:before{background-color:#f3f1f1}.dark-ListControl-item.is-disabled .b-inherit{border-color:#727272}.dark-ListControl-itemImage{margin:-.375rem -.75rem}.dark-ListControl-itemImage img{display:block;max-width:100%}.dark-ListControl-itemLabel{text-align:center}.dark-ListControl-itemImage+.dark-ListControl-itemLabel{margin-top:.375rem}.dark-ListControl-placeholder{color:#6c6c6c}.dark-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#f3f1f1;background-color:#333538;border-radius:.142rem}.dark-LocationPicker:not(.is-disabled){cursor:pointer}.dark-LocationPicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-LocationPicker:not(.is-disabled):hover .dark-DatePicker-toggler:before{color:#212529}.dark-LocationPicker.is-focused,.dark-LocationPicker.is-active{border-color:#2296f3;box-shadow:none}.dark-LocationPicker.is-disabled{background:#e9ecef}>.dark-LocationPicker.is-disabled-input{color:#6c6c6c}.dark-LocationPicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-LocationPicker-toggler{cursor:pointer;color:#6c757d}.dark-LocationPicker-toggler:hover{color:#212529}.dark-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-LocationPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-LocationPicker-clear:hover svg{fill:#3d4246}.dark-LocationControl{position:relative;width:100%}.dark-LocationControl:not(.is-inline)>.dark-LocationPicker{display:flex}.dark-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#2296f3}.dark-MapPicker-search{padding:5px 10px}.dark-MapPicker-map{display:block;width:100%;height:200px}.dark-MapPicker-item{padding:10px;position:relative;border-top:1px solid #656565}.dark-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.dark-MapPicker-itemTitle{font-size:.875rem}.dark-MapPicker-itemDesc{font-size:.75rem}.dark-MapPicker-sugItem{cursor:pointer;padding:.4375rem .75rem}.dark-MapPicker-sugItem:hover{color:#2296f3;background-color:transparent}.tangram-suggestion-main{display:none!important}.dark-MatrixControl-error{margin-bottom:0}.dark-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;background-color:#333538;color:#f3f1f1}.dark-ColorPicker:not(.is-disabled){cursor:pointer}.dark-ColorPicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.25rem}.dark-ColorPicker-input::placeholder{color:#6c6c6c}.dark-ColorPicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-ColorPicker.is-disabled{background:#e9ecef;color:#6c6c6c;pointer-events:none}.dark-ColorPicker.is-disabled>.dark-ColorPicker-input{color:#6c6c6c}.dark-ColorPicker.is-disabled>.dark-ColorPicker-input::placeholder{color:#6c6c6c}.dark-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.dark-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(20,19,22,.075)}.dark-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.dark-ColorPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-ColorPicker-clear:hover svg{fill:#3d4246}.dark-ColorControl:not(.is-inline)>.dark-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.dark-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#f3f1f1;background-color:#333538;border-radius:.142rem}.dark-DatePicker:not(.is-disabled){cursor:pointer}.dark-DatePicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-DatePicker:not(.is-disabled):hover .dark-DatePicker-toggler:before{color:#212529}.dark-DatePicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-DatePicker.is-disabled{background:#e9ecef}>.dark-DatePicker.is-disabled-input{color:#6c6c6c}.dark-DatePicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.dark-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DatePicker-toggler{cursor:pointer;color:#6c757d}.dark-DatePicker-toggler:hover{color:#212529}.dark-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-DatePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-DatePicker-clear:hover svg{fill:#3d4246}.dark-DateControl:not(.is-inline)>.dark-DatePicker{display:flex}.dark-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.dark-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.dark-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.dark-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#2296f3;text-decoration:none}.dark-DatePicker-shortcut a:hover{color:#0a6ebe;text-decoration:none}.dark-DatePicker-popover{margin:.125rem 0 0}.dark-DatePicker-popover.dark-PopOver--leftTopLeftBottom,.dark-DatePicker-popover.dark-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#f3f1f1}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#302d2a}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#1d1b19}.rdt .rdtPicker td.rdtBetween{background:rgba(34,150,243,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#2296f3}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#302d2a}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#2296f3}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#3a3a3a}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#2296f3;border:1px solid #656565;border-radius:.142rem;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#2296f3;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075);border-radius:.142rem}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.rdtBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#f3f1f1;background-color:#191c22;border-color:#191c22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel:hover{color:#f3f1f1;background-color:#090a0c;border-color:#030405}.rdtBtnCancel:focus{color:#f3f1f1;background-color:#191c22;border-color:#191c22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel:hover:focus{color:#f3f1f1;background-color:#090a0c;border-color:#030405;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#191c22;color:#f3f1f1;border-color:#dee2e6}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#030405;border-color:#000}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#0a6ebe;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#2296f3;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.dark-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;border-radius:.142rem;color:#f3f1f1;background-color:#333538}.dark-DateRangePicker:not(.is-disabled){cursor:pointer}.dark-DateRangePicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-DateRangePicker:not(.is-disabled):hover .dark-DateRangePicker-toggler{color:#212529}.dark-DateRangePicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-DateRangePicker.is-disabled{background:#e9ecef}>.dark-DateRangePicker.is-disabled-input{color:#6c6c6c}.dark-DateRangePicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DateRangePicker-toggler{cursor:pointer;color:#6c757d}.dark-DateRangePicker-toggler:hover{color:#212529}.dark-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.dark-DateRangePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-DateRangePicker-clear:hover svg{fill:#3d4246}.dark-DateRangePicker-wrap{width:auto;padding:.625rem}.dark-DateRangePicker-start,.dark-DateRangePicker-end{display:inline-block;vertical-align:top}.dark-DateRangePicker-start .rdtPicker,.dark-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.dark-DateRangePicker-end{margin-top:20px}.dark-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.dark-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.dark-DateRangePicker-ranger a{cursor:pointer}.dark-DateRangePicker-actions{text-align:right;margin-top:.625rem}.dark-DateRangeControl:not(.is-inline)>.dark-DateRangePicker{display:flex}.dark-DateRangePicker-popover{margin:.125rem 0 0}.dark-DateRangePicker-popover.dark-PopOver--leftTopLeftBottom,.dark-DateRangePicker-popover.dark-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.dark-DateRangePicker-wrap{white-space:nowrap}.dark-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.dark-ImageControl{position:relative}.dark-ImageControl-dropzone{outline:0}.dark-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #656565;cursor:pointer;margin-right:.9375rem;color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-ImageControl-addBtn:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn.is-disabled,.dark-ImageControl-addBtn:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.dark-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.dark-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #656565;background:#302d2a;color:#6c6c6c}.dark-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;margin:30px 0 0 .625rem}.dark-ImageControl-dropzone:focus .dark-ImageControl-addBtn{border-color:#4c4c4c;background:#010101;color:#f3f1f1}.dark-ImageControl-item{border:.0625rem solid #656565;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.dark-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.dark-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.dark-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.dark-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.dark-ImageControl-item:hover .dark-ImageControl-itemOverlay{display:flex}.dark-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.dark-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.dark-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.dark-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.dark-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.dark-ImageControl-progressValue{height:5px;display:block;background:#2296f3;min-width:10%;transition:ease-out width .3s}.dark-ImageControl-item.is-invalid .dark-ImageControl-itemClear{display:none}.dark-ImageControl-item.is-invalid:hover .dark-ImageControl-itemClear{display:block}.dark-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.dark-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.dark-ImageControl-retryBtn>p{width:100%;text-align:center;color:#dc3545;margin:10px 0 0}.dark-ImageControl-errorMsg{color:#dc3545;margin:5px 0 0}.dark-ImageControl-uploadBtn{margin-top:5px}.dark-ImageControl-cropperWrapper{position:relative}.dark-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.dark-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.dark-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.dark-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #656565;border-color:#2296f3;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.dark-FileControl-dropzone{outline:0}.dark-FileControl-selectBtn{width:7.5rem}.dark-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.dark-FileControl-description{margin-left:10px;color:#999;font-size:12px}.dark-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.dark-FileControl-list>li{color:#333;font-size:12px}.dark-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.dark-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.dark-FileControl-itemInfo.is-invalid{color:#999}.dark-FileControl-itemInfo>svg:first-child{margin-right:10px}.dark-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.dark-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.dark-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.dark-FileControl-clear:hover{color:#333}.dark-FileControl-list:empty{display:none}.dark-FileControl-list>li:hover .dark-FileControl-clear{display:block}.dark-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.dark-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.dark-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.dark-FileControl-progress{height:5px;flex:1;background:#ebebeb}.dark-FileControl-progress>span{display:block;background:#2296f3;height:100%;min-width:10%;transition:ease-out width .3s}.dark-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #2296f3;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.dark-FileControl-sum{font-size:.75rem}.dark-FileControl-sum>a{cursor:pointer}.dark-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #656565;max-width:100%;box-sizing:content-box}.dark-EditorControl>.dark-MonacoEditor,.dark-EditorControl>.dark-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.dark-EditorControl.is-error{border-color:#dc3545}.dark-EditorControl.is-focused{border-color:#2296f3}.dark-EditorControl--sm{min-height:100px}.dark-EditorControl--sm>.dark-MonacoEditor{min-height:100px}.dark-EditorControl--md{min-height:250px}.dark-EditorControl--md>.dark-MonacoEditor{min-height:250px}.dark-EditorControl--lg{min-height:300px}.dark-EditorControl--lg>.dark-MonacoEditor{min-height:300px}.dark-EditorControl--xl{min-height:400px}.dark-EditorControl--xl>.dark-MonacoEditor{min-height:400px}.dark-EditorControl--xxl{min-height:500px}.dark-EditorControl--xxl>.dark-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.dark-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #656565;width:100%}.dark-RichTextControl>.tox-tinymce{border:0}.dark-RichTextControl>textarea{width:100%}.dark-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.dark-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #656565}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn,.dark-RichTextControl .fr-popup .fr-command.fr-btn{color:#f3f1f1}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.dark-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#2296f3;background-color:#191c22}.dark-RichTextControl .fr-desktop .fr-command:hover,.dark-RichTextControl .fr-desktop .fr-command:focus{background-color:#191c22}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.dark-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#191c22}.dark-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#2296f3;color:#fff}.dark-RichTextControl.is-focused{border:.0625rem solid #2296f3}.dark-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #2296f3}.dark-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.dark-RichTextControl .fr-sticky-dummy{position:absolute}.dark-RichTextControl.is-disabled{border-color:#656565;pointer-events:none;opacity:.6}.dark-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#656565}.dark-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.dark-RangeControl::before,.dark-RangeControl::after{display:table;content:''}.dark-RangeControl::after{clear:both}.dark-RangeControl--withInput .dark-InputRange{width:calc(100% - 120px)}.dark-RangeControl--withInput .dark-InputRange-label--mid{left:calc(50% - 60px)}.dark-RangeControl--withInput.is-multiple .dark-InputRange{width:calc(100% - 210px)}.dark-RangeControl .dark-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.dark-RangeControl .dark-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.dark-RangeControl .dark-InputRange-input input:focus{outline:0;border:.0625rem solid #2296f3}.dark-RangeControl .dark-InputRange-input-separator{display:inline-block;padding:0 5px}.dark-RangeControl .dark-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.dark-RangeControl .dark-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.dark-RangeControl .dark-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.dark-InputRange{height:1.5rem;position:relative;width:100%}.dark-InputRange-slider{appearance:none;background:#2296f3;border:.0625rem solid #2296f3;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.dark-InputRange-slider:active{transform:scale(1.3)}.dark-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(34,150,243,.2)}.input-range--disabled .dark-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.dark-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.dark-InputRange-sliderContainer{transition:left .3s ease-out}.dark-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.dark-InputRange-label--min,.dark-InputRange-label--max,.dark-InputRange-label--mid{bottom:-1.4rem;position:absolute}.dark-InputRange-label--mid{left:50%;bottom:-.3125rem}.dark-InputRange-label--max{right:0}.dark-InputRange-label--value{position:absolute;display:block;top:-2.5rem}.dark-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.dark-InputRange.is-disabled .dark-InputRange-track{background:#eee}.dark-InputRange-track.is-active{background:#2296f3}.dark-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.dark-InputRange-track--background::before,.dark-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.dark-InputRange-track--background::before{left:-.5rem}.dark-InputRange-track--background::after{right:-.5rem}.dark-InputRange-track--active{background:#2296f3}.dark-RepeatControl .repeat-btn{width:5rem}.dark-RepeatControl .Select{display:inline-block;min-width:100px}.dark-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.dark-TreeControl{border:1px solid #656565;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.dark-TreeControl.h-full{max-height:none;overflow:visible}.dark-TreeControl.no-border{border:0}.dark-Tree-list,.dark-Tree-sublist{list-style:none;padding:0;margin:0}.dark-Tree-sublist.is-folded{display:none}.dark-Tree-item{line-height:1.875rem;position:relative}.dark-Tree-item>div:hover{text-decoration:none}.dark-Tree-item>div:hover>.dark-Tree-item-icons{visibility:visible}.dark-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.dark-Tree-rootItem{line-height:1.875rem}.dark-Tree-item>div:hover>.dark-Tree-item-icons,.dark-Tree-rootItem>div:hover>.dark-Tree-item-icons{visibility:visible}.dark-Tree-itemLabel{display:flex}.dark-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.dark-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.dark-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.dark-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.dark-Tree-itemInput{padding-left:.625rem}.dark-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#6c757d}.dark-Tree-itemInput>a:hover{color:#212529;text-decoration:none}.dark-Tree-itemInput>input{outline:0;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.21562rem .75rem;font-size:.875rem}.dark-Tree-itemInput>input::placeholder{color:#6c6c6c;user-select:none}.dark-Tree-itemInput>input:focus{border-color:#2296f3;box-shadow:none}.dark-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.dark-Tree-addTopBtn:hover{text-decoration:none}.dark-Tree-addTopBtn.is-disabled{pointer-events:none;color:#6c6c6c}.dark-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.dark-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.dark-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.dark-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.dark-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.dark-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.dark-Tree-rootIcon>svg,.dark-Tree-folderIcon>svg,.dark-Tree-leafIcon>svg{width:.875rem;height:.875rem}.dark-Tree-itemLabel{user-select:none}.dark-Tree-itemLabel.is-checked,.dark-Tree-itemLabel.is-children-checked{color:#f3f1f1}.dark-Tree-itemLabel.is-disabled{color:#6c6c6c}.dark-Tree-itemLabel>.dark-Checkbox{line-height:1;display:inline-block;padding-top:.375rem}.dark-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.dark-Tree-placeholder{color:#6c6c6c}.dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel,.dark-Tree-item .dark-Tree-item>.dark-Tree-placeholder{padding-left:1.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel,.dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-placeholder{padding-left:2.5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:3.75rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:6.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:7.5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:8.75rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:10rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:11.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:12.5rem}.dark-TreeSelectControl{position:relative}.dark-TreeSelectControl>.dark-TreeSelect-popover{width:100%}.dark-TreeSelect{position:relative;max-width:100%;outline:0}.dark-TreeSelect.is-inline{display:inline-block;width:12.5rem}.dark-TreeSelect-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-TreeSelect-input input::placeholder{color:#6c6c6c;user-select:none}.dark-TreeSelect.is-error>.dark-TreeSelect-input{border-color:#dc3545;background-color:#3c3c3c}.dark-TreeSelect.is-focused>.dark-TreeSelect-input{border-color:#2296f3;box-shadow:none}.dark-TreeSelect.is-error.is-focused>.dark-TreeSelect-input{border-color:#dc3545}.dark-TreeSelect.is-disabled>.dark-TreeSelect-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-TreeSelect-spinner{line-height:1.25rem}.dark-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-TreeSelect-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-TreeSelect-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-TreeSelect.dark-Form-control--sizeXs>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeSm>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeMd>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeLg>.dark-TreeSelect-input{min-width:100%;display:inline-flex}}.dark-TreeSelect.is-opened{border-color:#2296f3;box-shadow:none}.dark-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.dark-TreeSelect-popover>.dark-Tree{background:#302d2a;border:.0625rem solid #2296f3;padding:.3125rem .75rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.dark-Combo-placeholder{color:#6c6c6c;padding-top:.4375rem}.dark-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#6c757d;padding:.125rem .3125rem;cursor:pointer}.dark-Combo-toolbarBtn:hover{color:#545b62}.dark-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.dark-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn>svg{width:.75rem;height:.75rem}.dark-Combo-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-Combo-addBtn>.pull-left{margin-right:.5rem}.dark-Combo-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Combo-addBtn>.pull-right{margin-left:.5rem}.dark-Combo-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-Combo-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn.is-disabled,.dark-Combo-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-Combo-addBtn:not(:disabled):not(.is-disabled):active,.dark-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-Combo-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-Combo-items{margin-bottom:.625rem}.dark-Combo-items:empty{display:none}.dark-Combo-items:empty+.dark-Combo-toolbar{padding-top:.25rem}.dark-Combo-item{background:transparent}.dark-Combo-itemDrager{cursor:move}.dark-Combo-itemDrager>a{color:#6c757d}.dark-Combo-itemDrager>a:hover{color:#212529}.dark-Combo-itemDrager svg{width:1rem;height:1rem}.dark-Combo--hor .dark-Combo-item{display:flex;flex-wrap:nowrap}.dark-Combo--hor .dark-Combo-item+.dark-Combo-item{margin-top:.3125rem}.dark-Combo--hor .dark-Combo-itemInner{flex-basis:0;flex-grow:1}.dark-Combo--hor .dark-Combo-itemTag{margin-right:.625rem}.dark-Combo--hor .dark-Combo-itemTag label{color:#2296f3;margin-right:.625rem}.dark-Combo--hor .dark-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.4375rem}.dark-Combo--hor .dark-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:.65}.dark-Combo--hor.is-draggable .dark-Combo-toolbar{padding-left:1.5rem}.dark-Combo--hor .dark-Combo-itemDrager{padding:.4375rem .375rem 0 0}.dark-Combo--ver:not(.dark-Combo--noBorder)::before,.dark-Combo--ver:not(.dark-Combo--noBorder)::after{display:table;content:''}.dark-Combo--ver:not(.dark-Combo--noBorder)::after{clear:both}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-placeholder{margin:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder) .dark-Combo-itemTag{text-align:right}.dark-Combo--ver:not(.dark-Combo--noBorder) .dark-Combo-itemTag label{color:#2296f3;margin-right:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item{border:.0625rem dashed #656565;padding:.625rem;position:relative}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item{margin:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#2296f3;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#0d8aef;border-width:.0625rem .0625rem 0}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn:hover,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn:hover{color:#fff}.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-item:hover,.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-items>.dark-Combo-item:hover{border-color:#2296f3}.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-item:hover>.dark-Combo-itemToolbar,.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-items>.dark-Combo-item:hover>.dark-Combo-itemToolbar{top:-1.5625rem;opacity:1}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemDrager{position:absolute;top:.4375rem;left:-1.875rem}.dark-Combo--ver:not(.dark-Combo--noBorder).is-draggable>.dark-Combo-items>.dark-Combo-item{margin-left:2.1875rem}.dark-Combo--ver:not(.dark-Combo--noBorder).is-draggable>.dark-Combo-toolbar{padding-left:1.5625rem}.dark-Combo-item--dragging{position:relative}.dark-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.dark-ComboTabs>.dark-Tabs-links::before,.dark-ComboTabs>.dark-Tabs-links::after{display:table;content:''}.dark-ComboTabs>.dark-Tabs-links::after{clear:both}.dark-ComboTabs-addLink{float:right}.dark-Combo-dragableTip{color:#6c6c6c;font-size:.75rem;margin-left:.3125rem}.dark-Combo-dragableTip:empty{display:none}.dark-ComboControl.is-inline .dark-Combo--hor .dark-Combo-itemInner{flex-grow:unset;flex-basis:unset}.dark-ComboControl.is-inline .dark-Combo--ver .dark-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.dark-Combo-form .dark-Form-item:last-child{margin-bottom:0}}.dark-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.375rem 0}.dark-SubForm-value{cursor:pointer;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.dark-SubForm-value:hover{background-color:#22201e}.dark-SubForm-value.is-disabled{pointer-events:none;opacity:.65}.dark-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-SubForm-valueIcon:hover{background-color:#22201e}.dark-SubForm-valueLabel{padding:0 .3125rem}.dark-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-SubForm-addBtn>.pull-left{margin-right:.5rem}.dark-SubForm-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-SubForm-addBtn>.pull-right{margin-left:.5rem}.dark-SubForm-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-SubForm-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn.is-disabled,.dark-SubForm-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.dark-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-SubForm-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-SubFormControl{padding-top:.25rem}.dark-ChainedSelectControl .dark-Select{margin-right:.3125rem}.dark-Picker{position:relative;max-width:100%;outline:0}.dark-Picker.is-inline{display:inline-block;width:12.5rem}.dark-Picker-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-Picker-input input::placeholder{color:#6c6c6c;user-select:none}.dark-Picker.is-error>.dark-Picker-input{border-color:#dc3545;background-color:#3c3c3c}.dark-Picker.is-focused>.dark-Picker-input{border-color:#2296f3;box-shadow:none}.dark-Picker.is-error.is-focused>.dark-Picker-input{border-color:#dc3545}.dark-Picker.is-disabled>.dark-Picker-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-Picker-spinner{line-height:1.25rem}.dark-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-Picker-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-Picker.dark-Form-control--sizeXs>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeSm>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeMd>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeLg>.dark-Picker-input{min-width:100%;display:inline-flex}}.dark-Picker.is-focus>.dark-Picker-input{border-color:#2296f3;box-shadow:none}.dark-Picker-placeholder{color:#6c6c6c;user-select:none;position:absolute;line-height:1.42857}.dark-Picker-input{min-height:2.125rem;height:auto}.dark-Picker .dark-Picker-values{display:inline}.dark-Picker-valueWrap{flex-grow:1;position:relative}.dark-Picker-valueWrap>input{width:1rem;display:inline-block}.dark-Picker .dark-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.dark-Picker .dark-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.dark-Picker .dark-Picker-value.is-disabled{pointer-events:none;opacity:.65}.dark-Picker .dark-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Picker .dark-Picker-valueIcon:hover{background-color:#22201e}.dark-Picker .dark-Picker-valueLabel{padding:0 .3125rem}.dark-Picker-btn{cursor:pointer;color:#6c757d}.dark-Picker-btn:hover{color:#212529}.dark-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-Picker-clear:hover svg{fill:#3d4246}.dark-PickerControl.is-inline .dark-Picker{display:inline-block;min-width:9.375rem}.dark-QrCode{min-height:2.125rem;padding:.4375rem 0}.dark-TagControl{position:relative}.dark-TagControl-input.is-focused{border-radius:0}.dark-TagControl-input.is-disabled{border-style:dashed;background:transparent}.dark-TagControl.is-inline{display:inline-block}.dark-TagControl>.dark-TagControl-popover{padding:0;border:0;width:100%;margin-top:-.0625rem}.dark-TagControl>.dark-TagControl-popover.dark-PopOver--leftBottomLeftTop{top:100%!important}.dark-TagControl>.dark-TagControl-popover.dark-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.dark-TagControl-sug{margin-top:.375rem}.dark-TagControl-sugTip{color:#2296f3;margin-bottom:.375rem}.dark-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.dark-TagControl-sugItem>.pull-left{margin-right:.5rem}.dark-TagControl-sugItem .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-TagControl-sugItem>.pull-right{margin-left:.5rem}.dark-TagControl-sugItem:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-TagControl-sugItem:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem.is-disabled,.dark-TagControl-sugItem:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.dark-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-TagControl-sugItem.is-disabled{pointer-events:none;opacity:.65}.dark-TagControl-popover.dark-PopOver--leftBottomLeftTop>.dark-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.dark-TagControl-popover.dark-PopOver--leftTopLeftBottom>.dark-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#1e1f22;cursor:pointer}.dark-Rating.is-active{color:#2296f3}.dark-Rating.is-disabled{cursor:not-allowed}.dark-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#2296f3}.dark-RatingControl{position:relative;overflow:hidden}.dark-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem}.dark-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.dark-Transfer-title{display:flex;align-items:center;background:#2f2f2f;height:1.875rem;line-height:1.42857;font-size:.875rem;padding:.3125rem .625rem;flex-direction:row}.dark-Transfer-title--light{background:transparent}.dark-Transfer-title>span{flex-grow:1}.dark-Transfer-select,.dark-Transfer-result{width:0;min-width:12.5rem;flex-grow:1;border:.0625rem solid #656565;display:flex;flex-direction:column}.dark-Transfer-select>.dark-Transfer-checkboxes,.dark-Transfer-result>.dark-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.dark-Transfer-search+.dark-Transfer-checkboxes{border-top:1px solid #656565}.dark-Transfer-checkboxes .dark-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.dark-Transfer-search{padding:.625rem}.dark-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.dark-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #656565;margin:0 10px;color:#6c757d}.dark-Transfer-arrow>svg{top:0;width:14px;height:14px}.dark-Transfer-checkAll,.dark-Transfer-clearAll{user-select:none;cursor:pointer}.dark-Transfer-checkAll.is-disabled,.dark-Transfer-clearAll.is-disabled{pointer-events:none;color:#6c6c6c}.dark-Transfer-tabs{display:flex;flex-direction:column;height:100%}.dark-Transfer-tabs>.dark-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.dark-Transfer-tabs>.dark-Tabs-links>.dark-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.dark-Transfer-tabs>.dark-Tabs-links .dark-TabsTransfer-tabsMid{flex-grow:1}.dark-Transfer-tabs>.dark-Tabs-links>.dark-SearchBox{margin:-5px 5px 0 10px}.dark-Transfer-tabs>.dark-Tabs-links>.dark-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.dark-Transfer-tabs>.dark-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane{position:relative;min-height:100%}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane.is-active{display:flex;flex-direction:column}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane.is-active>.dark-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.dark-TabsTransfer .dark-Transfer-title{height:40px}.dark-TabsTransfer-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-TransferControl{position:relative}.dark-TransferControl.is-inline{display:inline-block}.dark-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #656565;background:#333538;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#f3f1f1}.dark-NestedSelect.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-NestedSelect.is-focused,.dark-NestedSelect.is-opened{border-color:#2296f3}.dark-NestedSelect.is-opened .dark-Select-arrow>svg{transform:rotate(180deg)}.dark-NestedSelect:not(.is-disabled):hover{background:#191c22}.dark-NestedSelect--multi .dark-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-NestedSelect--multi .dark-Select-valueLabel{padding:0 .3125rem}.dark-NestedSelect-placeholder{color:#6c6c6c;line-height:1.42857}.dark-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.dark-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.dark-NestedSelect-clear svg{fill:#6c757d;width:.625rem;height:.625rem}.dark-NestedSelect-clear:hover svg{fill:#3d4246}.dark-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.dark-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#6c757d}.dark-NestedSelect-menuOuter{display:flex}.dark-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;box-shadow:none;overflow-y:auto;overflow-x:hidden}.dark-NestedSelect-menu:not(:first-child){border-left:0}.dark-NestedSelect-menu .dark-NestedSelect-option{position:relative;padding-left:.625rem;min-height:2.125rem;line-height:2.125rem;cursor:pointer;display:flex}.dark-NestedSelect-menu .dark-NestedSelect-option>.dark-NestedSelect-optionLabel{flex:1;cursor:pointer}.dark-NestedSelect-menu .dark-NestedSelect-option>.dark-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.dark-NestedSelect-menu .dark-NestedSelect-option.is-active{color:#2296f3;background-color:transparent}.dark-NestedSelect-menu .dark-NestedSelect-option:hover{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-NestedSelect-menu .dark-NestedSelect-option:hover>.dark-NestedSelect-childrenOuter{display:block}.dark-NestedSelect-menu .dark-NestedSelect-option .dark-Checkbox{display:inline-block;padding-top:0}.dark-NestedSelect-menu .dark-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.dark-Form-control--sizeXs>.dark-NestedSelect,.dark-Form-control--sizeSm>.dark-NestedSelect,.dark-Form-control--sizeMd>.dark-NestedSelect,.dark-Form-control--sizeLg>.dark-NestedSelect{display:inline-flex!important}}.dark-IconPickerControl{position:relative;max-width:100%}.dark-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.dark-IconPickerControl-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-IconPickerControl-input input::placeholder{color:#6c6c6c;user-select:none}.dark-IconPickerControl.is-error>.dark-IconPickerControl-input{border-color:#dc3545;background-color:#3c3c3c}.dark-IconPickerControl.is-focused>.dark-IconPickerControl-input{border-color:#2296f3;box-shadow:none}.dark-IconPickerControl.is-error.is-focused>.dark-IconPickerControl-input{border-color:#dc3545}.dark-IconPickerControl.is-disabled>.dark-IconPickerControl-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-IconPickerControl-spinner{line-height:1.25rem}.dark-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-IconPickerControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-IconPickerControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-IconPickerControl.dark-Form-control--sizeXs>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeSm>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeMd>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeLg>.dark-IconPickerControl-input{min-width:100%;display:inline-flex}}.dark-IconPickerControl-placeholder{color:#6c6c6c;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.dark-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.dark-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.dark-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.dark-IconPickerControl-input--withAC>input{width:auto}.dark-IconPickerControl-sugsPanel{position:absolute;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.dark-IconPickerControl-tabs{background:#f0f3f4}.dark-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.dark-IconPickerControl-tab.active{background:#333538}.dark-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.dark-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.dark-IconPickerControl-sugItem:hover{background-color:rgba(0,126,255,.08)}.dark-IconPickerControl-sugItem.is-active{color:#fff;background-color:#2296f3}.dark-IconPickerControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.dark-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.dark-Form{font-size:.875rem;position:relative}.dark-Form--quickEdit .dark-Form-item:last-child{margin-bottom:0}.dark-Form--inline>.dark-PlainField{display:inline-block;padding-top:.375rem}.dark-Form-static{min-height:2.125rem;padding-top:.4375rem;padding-bottom:.4375rem;margin-bottom:0}.dark-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.dark-Form-label>span{position:relative}.dark-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.dark-Form-feedback{color:#dc3545;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.dark-Form-description{display:block;color:#fff;margin:.375rem 0 0;font-size:.75rem}.dark-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.375rem;vertical-align:top}.dark-Form-item{margin-bottom:.9375rem}.dark-Grid-form>.dark-Form-item:last-child{margin-bottom:0}.dark-Form--inline>.dark-Form-item--inline{margin-bottom:.46875rem;margin-right:.46875rem}.dark-Form--inline>.dark-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.dark-Form-item .dark-Form-remark{padding-top:.4375rem;vertical-align:top}.dark-Form-item--horizontal>.dark-Form-label{text-align:right;white-space:"normal"}.dark-Form-item--normal>.dark-Form-label{display:block}.dark-Form-item--normal>.dark-Form-label .dark-Form-star{position:absolute;left:-.375rem;top:.1875rem}.dark-Form-item.is-error>.dark-Form-label{color:#dc3545}.dark-Form-placeholder{color:#6c6c6c}.dark-Form-caption{display:inline-block;line-height:2.125rem;height:2.125rem;margin-left:.625rem}@media (min-width:576px){.dark-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeXs.dark-NumberControl{width:5rem}.dark-Form-control--sizeXs.dark-TextareaControl{width:auto}.dark-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeSm.dark-NumberControl{width:10rem}.dark-Form-control--sizeSm.dark-TextareaControl{width:auto}.dark-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeMd.dark-TextareaControl{width:auto}.dark-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeLg.dark-NumberControl{width:20rem}.dark-Form-control--sizeLg.dark-TextareaControl{width:auto}.dark-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.dark-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-item--horizontal>.dark-Form-label,.dark-Form-item--horizontal>.dark-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.dark-Form-item--horizontal .dark-Form-itemColumn--xs,.dark-Form-item--horizontal .dark-Form-itemColumn--sm,.dark-Form-item--horizontal .dark-Form-itemColumn--normal,.dark-Form-item--horizontal .dark-Form-itemColumn--md,.dark-Form-item--horizontal .dark-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.dark-Form-item--horizontal>.dark-Form-label{padding-top:.4375rem;margin-bottom:0}.dark-Form-item--horizontal>.dark-Form-label .dark-Form-star{position:absolute;left:-.375rem;top:.1875rem}.dark-Form-item--horizontal .dark-Form-itemColumn--xs{width:3.75rem}.dark-Form-item--horizontal .dark-Form-itemColumn--sm{width:5.625rem}.dark-Form-item--horizontal .dark-Form-itemColumn--normal{width:7.5rem}.dark-Form-item--horizontal .dark-Form-itemColumn--md{width:10rem}.dark-Form-item--horizontal .dark-Form-itemColumn--lg{width:12.5rem}.dark-Form-item--horizontal .dark-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.dark-Form-item--inline{display:inline-block;vertical-align:top}.dark-Form-item--inline .dark-TextControl{width:12.5rem}.dark-Form-item--inline>.dark-Form-label{padding-top:.4375rem;margin-bottom:0;margin-right:.46875rem}.dark-Form-item--inline>.dark-Form-label .dark-Form-star{position:static}.dark-Form-item--inline>.dark-Form-value{display:inline}.dark-Form-item--inline>.dark-Form-value>.dark-Form-control{vertical-align:top;display:inline-block}.dark-Form-item--inline>.dark-Form-value>.dark-Form-control.dark-InputGroup{display:inline-flex}.dark-Form-item--inline>.dark-Form-value>.dark-TextControl--withAddOn{display:inline-flex;min-width:15rem}.dark-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.dark-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.dark-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.dark-Form-rowInner{display:flex;flex-wrap:nowrap}.dark-Form-rowInner>.dark-Form-label{display:inline-block;vertical-align:top;padding-top:.4375rem;padding-right:.625rem}.dark-Form-rowInner>.dark-Form-control{flex-basis:0;flex-grow:1}.dark-Form-rowInner>.dark-Form-control:not(.dark-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#3a3a3a;color:#f3f1f1}.bg-light.lt,.bg-light .lt{background-color:#3f3f3f}.bg-light.lter,.bg-light .lter{background-color:#424242}.bg-light.dk,.bg-light .dk{background-color:#343131}.bg-light.dker,.bg-light .dker{background-color:#302b2b}.bg-light.bg,.bg-light .bg{background-color:#3a3a3a}.bg-dark{background-color:#1e1f22;color:#868686}.bg-dark.lt,.bg-dark .lt{background-color:#2b2c2e}.bg-dark.lter,.bg-dark .lter{background-color:#39393a}.bg-dark.dk,.bg-dark .dk{background-color:#121215}.bg-dark.dker,.bg-dark .dker{background-color:#060607}.bg-dark.bg,.bg-dark .bg{background-color:#1e1f22}.bg-dark a,.bg-dark .dark-Button--link{color:#a0a0a0}.bg-dark a:hover,.bg-dark .dark-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#6d6d6d!important}.bg-dark .text-lt{color:#c6c6c6!important}.bg-black{background-color:#141316;color:#7b7b7b}.bg-black.lt,.bg-black .lt{background-color:#212023}.bg-black.lter,.bg-black .lter{background-color:#2e2d2f}.bg-black.dk,.bg-black .dk{background-color:#070709}.bg-black.dker,.bg-black .dker{background-color:#000}.bg-black.bg,.bg-black .bg{background-color:#141316}.bg-black a,.bg-black .dark-Button--link{color:#949494}.bg-black a:hover,.bg-black .dark-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#616161!important}.bg-black .text-lt{color:#bababa!important}.bg-primary{background-color:#0983ff;color:#d7eafd}.bg-primary.lt,.bg-primary .lt{background-color:#2590fc}.bg-primary.lter,.bg-primary .lter{background-color:#419dfa}.bg-primary.dk,.bg-primary .dk{background-color:#0076ef}.bg-primary.dker,.bg-primary .dker{background-color:#006ad5}.bg-primary.bg,.bg-primary .bg{background-color:#0983ff}.bg-primary a,.bg-primary .dark-Button--link{color:#fff}.bg-primary a:hover,.bg-primary .dark-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#a7d0fa!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#32d74b;color:#dff6e2}.bg-success.lt,.bg-success .lt{background-color:#4ad860}.bg-success.lter,.bg-success .lter{background-color:#62da74}.bg-success.dk,.bg-success .dk{background-color:#24cb3d}.bg-success.dker,.bg-success .dker{background-color:#1eb835}.bg-success.bg,.bg-success .bg{background-color:#32d74b}.bg-success a,.bg-success .dark-Button--link{color:#fff}.bg-success a:hover,.bg-success .dark-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#b7ebbf!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#2296f3;color:#e5f2fc}.bg-info.lt,.bg-info .lt{background-color:#3da1f2}.bg-info.lter,.bg-info .lter{background-color:#57acf1}.bg-info.dk,.bg-info .dk{background-color:#0a8bf2}.bg-info.dker,.bg-info .dker{background-color:#067ddc}.bg-info.bg,.bg-info .bg{background-color:#2296f3}.bg-info a,.bg-info .dark-Button--link{color:#fff}.bg-info a:hover,.bg-info .dark-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#b7dbf7!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#ff9f0b;color:#fdefd9}.bg-warning.lt,.bg-warning .lt{background-color:#fca827}.bg-warning.lter,.bg-warning .lter{background-color:#fab243}.bg-warning.dk,.bg-warning .dk{background-color:#f19200}.bg-warning.dker,.bg-warning .dker{background-color:#d78200}.bg-warning.bg,.bg-warning .bg{background-color:#ff9f0b}.bg-warning a,.bg-warning .dark-Button--link{color:#fff}.bg-warning a:hover,.bg-warning .dark-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#fadaa9!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#dc3545;color:#f8e5e6}.bg-danger.lt,.bg-danger .lt{background-color:#dd4d5b}.bg-danger.lter,.bg-danger .lter{background-color:#df6571}.bg-danger.dk,.bg-danger .dk{background-color:#d62133}.bg-danger.dker,.bg-danger .dker{background-color:#c31b2b}.bg-danger.bg,.bg-danger .bg{background-color:#dc3545}.bg-danger a,.bg-danger .dark-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .dark-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#eebcc0!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#f3f1f1}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#0076ef}a.text-primary:hover{color:#0076ef}.text-primary{color:#0983ff}.text-primary-lt{color:#0076ef}.text-primary-lter{color:#006ad5}.text-primary-dk{color:#0076ef}.text-primary-dker{color:#006ad5}a.bg-info:hover{background-color:#0d8aef}a.text-info:hover{color:#0d8aef}.text-info{color:#2296f3}.text-info-lt{color:#0d8aef}.text-info-lter{color:#0c7cd6}.text-info-dk{color:#0d8aef}.text-info-dker{color:#0c7cd6}a.bg-success:hover{background-color:#27c840}a.text-success:hover{color:#27c840}.text-success{color:#32d74b}.text-success-lt{color:#27c840}.text-success-lter{color:#23b339}.text-success-dk{color:#27c840}.text-success-dker{color:#23b339}a.bg-warning:hover{background-color:#f19200}a.text-warning:hover{color:#f19200}.text-warning{color:#ff9f0b}.text-warning-lt{color:#f19200}.text-warning-lter{color:#d78200}.text-warning-dk{color:#f19200}.text-warning-dker{color:#d78200}a.bg-danger:hover{background-color:#d32535}a.text-danger:hover{color:#d32535}.text-danger{color:#dc3545}.text-danger-lt{color:#d32535}.text-danger-lter{color:#bd2130}.text-danger-dk{color:#d32535}.text-danger-dker{color:#bd2130}a.bg-dark:hover{background-color:#121314}a.text-dark:hover{color:#121314}.text-dark{color:#1e1f22}.text-dark-lt{color:#121314}.text-dark-lter{color:#060607}.text-dark-dk{color:#121314}.text-dark-dker{color:#060607}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#080708}a.text-black:hover{color:#080708}.text-black{color:#141316}.text-black-lt{color:#080708}.text-black-lter{color:#000}.text-black-dk{color:#080708}.text-black-dker{color:#000}.text-muted{color:#6c6c6c}.text-loud{color:#fff}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #656565,0 2px 0 #7f7f7f,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #656565}.b-t{border-top:1px solid #656565}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #656565}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #656565}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #656565}.b-l-none{border-left-width:0}.b-light{border-color:#3a3a3a}.b-dark{border-color:#1e1f22}.b-black{border-color:#1e1f22}.b-primary{border-color:#0983ff}.b-success{border-color:#32d74b}.b-info{border-color:#2296f3}.b-warning{border-color:#ff9f0b}.b-danger{border-color:#dc3545}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#3a3a3a}.b-l-dark{border-left-color:#1e1f22}.b-l-black{border-left-color:#1e1f22}.b-l-primary{border-left-color:#0983ff}.b-l-success{border-left-color:#32d74b}.b-l-info{border-left-color:#2296f3}.b-l-warning{border-left-color:#ff9f0b}.b-l-danger{border-left-color:#dc3545}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#32d74b}.avatar i.off{background-color:#6c6c6c}.avatar i.busy{background-color:#dc3545}.avatar i.away{background-color:#ff9f0b}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.dark-Form-col.w,.dark-Form-col.w-xs,.dark-Form-col.w-sm,.dark-Form-col.w-md,.dark-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #656565}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#0983ff}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#006ad5}.label-success{background-color:#32d74b}.label-success[href]:hover,.label-success[href]:focus{background-color:#23b339}.label-info{background-color:#2296f3}.label-info[href]:hover,.label-info[href]:focus{background-color:#0c7cd6}.label-warning{background-color:#ff9f0b}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#d78200}.label-danger{background-color:#dc3545}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#bd2130}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file +@charset "UTF-8";button[disabled],html input[disabled]{cursor:not-allowed}input{color:#f3f1f1;background:#3c3c3c}pre{color:#f3f1f1;background:#333538}.rdtPicker{background:#333538}.rdtPicker th{border-bottom:0}.fr-toolbar{background:#333538}.markdown-body{color:#f3f1f1}html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#32d74b}svg.icon-fail{color:#dc3545}html{font-size:16px}body{color:#f3f1f1;background-color:#333538;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#2296f3;text-decoration:none}a:hover{color:#0a6ebe;text-decoration:underline}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#fff;line-height:1.1}.is-matched{color:#dc3545}html,body{width:100%;height:100%}body{overflow-x:hidden}.dark-Layout{height:100%;min-height:100%;width:100%;position:relative}.dark-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#333538;border:inherit;display:block}.dark-Layout--boxed{margin-right:auto;margin-left:auto}.dark-Layout .dark-Layout-header{background:#191c22;box-shadow:0 .125rem .125rem rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05);height:3.125rem}.dark-Layout--headerFixed{padding-top:3.125rem}.dark-Layout--headerFixed .dark-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.dark-Layout-brandBar{background:#1e1f22;color:#868686}.dark-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.dark-Layout-brand{color:#c6c6c6;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dark-Layout-brand:hover{text-decoration:none}.dark-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.dark-Layout-headerBar{border-bottom:0;min-height:3.125rem;padding:0 .625rem}.dark-Layout-aside{float:left;background:#191c22;color:#7d818a}.dark-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.dark-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:12.5rem}.dark-Layout-asideFooter~div{padding-bottom:3.125rem}.dark-Layout-content{height:100%}.dark-Layout-content::before,.dark-Layout-content::after{display:table;content:''}.dark-Layout-content::after{clear:both}.dark-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.dark-Layout--noFooter .dark-Layout-body{padding-bottom:0}.dark-Layout-content .dark-Layout-body{float:left}.dark-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.dark-Layout--sm .dark-Layout-asideFooter{max-width:9.375rem}.dark-Layout--sm .dark-AsideNav-item a{font-size:.75rem}.dark-Layout--md .dark-Layout-asideFooter{max-width:15.625rem}.dark-Layout--lg .dark-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.dark-Layout-content{transition:transform .2s ease}.dark-Layout-aside{display:none}.dark-Layout--offScreen .dark-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.dark-Layout-headerBar{display:none}.dark-Layout--offScreen .dark-Layout-content,.dark-Layout--offScreen .dark-Layout-footer{background-color:#333538;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.dark-Layout--boxed{width:47.5rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:47.5rem}.dark-Layout-brand,.dark-Layout-brandBar,.dark-Layout-aside{width:12.5rem}.dark-Layout-brandBar{float:left}.dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--withAside .dark-Layout-content,.dark-Layout--withAside .dark-Layout-footer{margin-left:12.5rem}.dark-Layout .visible-folded{display:none}.dark-Layout--folded .visible-folded{display:inherit}.dark-Layout--folded .hidden-folded{display:none!important}.dark-Layout--folded .text-center-folded{text-align:center}.dark-Layout--folded .pull-none-folded{float:none!important}.dark-Layout--folded .w-auto-folded{width:auto}.dark-Layout--folded .dark-Layout-aside,.dark-Layout--folded .dark-Layout-brandBar{width:3.75rem}.dark-Layout--folded.dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--folded.dark-Layout--withAside .dark-Layout-content,.dark-Layout--folded.dark-Layout--withAside .dark-Layout-footer{margin-left:3.75rem}.dark-Layout--folded .dark-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.dark-Layout--asideFixed .dark-Layout-aside{height:100%}.dark-Layout--asideFixed .dark-Layout-aside:before{position:fixed;z-index:15}.dark-Layout--asideFixed .dark-Layout-brandBar{position:fixed}.dark-Layout--asideFixed .dark-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:12.4375rem;z-index:1200}.dark-Layout--asideFixed .dark-Layout-asideInner{width:13.5625rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.dark-Layout--asideFixed .dark-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.dark-Layout--asideFixed .dark-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.dark-Layout--asideFixed .dark-Layout-asideInner>*{width:12.5rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-aside{position:static}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-brandBar{position:static}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideInner{overflow:visible;width:4.8125rem}.dark-Layout--asideFixed.dark-Layout--folded .dark-Layout-asideInner>*{width:3.75rem}.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--sm:not(.dark-Layout--folded) .dark-Layout-aside{width:9.375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:9.375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:9.3125rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:10.4375rem}.dark-Layout--sm:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:9.375rem}.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--md:not(.dark-Layout--folded) .dark-Layout-aside{width:15.625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:15.625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:15.5625rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:16.6875rem}.dark-Layout--md:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:15.625rem}.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-brand,.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-brandBar,.dark-Layout--lg:not(.dark-Layout--folded) .dark-Layout-aside{width:18.75rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-headerBar,.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-content,.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--withAside .dark-Layout-footer{margin-left:18.75rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideWrap{width:18.6875rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner{width:19.8125rem}.dark-Layout--lg:not(.dark-Layout--folded).dark-Layout--asideFixed .dark-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.dark-Layout--boxed{width:61.25rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:61.25rem}}@media (min-width:1200px){.dark-Layout--boxed{width:73.75rem}.dark-Layout--boxed.dark-Layout--headerFixed .dark-Layout-header{width:73.75rem}}.dark-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.dark-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.dark-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.dark-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.dark-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.dark-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.dark-AsideNav::before,.dark-AsideNav::after{display:table;content:''}.dark-AsideNav::after{clear:both}.dark-AsideNav-label{color:#646870;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.dark-AsideNav-list{list-style:none;padding:0;margin:0}.dark-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.dark-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.dark-AsideNav-item.is-open>a>.dark-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#fff}.dark-AsideNav-itemArrow>svg{color:#b4b6bd;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.dark-AsideNav-item.is-open>a>.dark-AsideNav-itemArrow>svg{transform:rotate(90deg)}.dark-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.dark-AsideNav-itemIcon{margin:-.59375rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:inherit;font-size:inherit}.dark-AsideNav-itemIcon:before{position:relative;z-index:2}.dark-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#131519}.is-open>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:hover>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:focus>.dark-AsideNav-subList,.dark-Layout--folded .dark-AsideNav-item:active>.dark-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.dark-Layout--folded .dark-AsideNav-item.is-open>.dark-AsideNav-subList{overflow:hidden}.dark-AsideNav-item{position:relative;display:block}.dark-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.875rem;padding:.59375rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#b4b6bd;text-decoration:none;user-select:none}.dark-AsideNav-item a:hover{color:#fff;text-decoration:none;background-color:#404040}.dark-AsideNav-item a:hover .dark-AsideNav-itemIcon{color:inherit}.dark-AsideNav-item.is-active>a{background-color:#302d2a;color:#fff}.dark-AsideNav-item.is-active>a:hover{background-color:#404040}.dark-AsideNav-item.is-lg>a{padding:.90625rem .9375rem}.dark-AsideNav-item .dark-AsideNav-item a{padding-left:2.8125rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item a{padding-left:4.6875rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-item a{padding-left:6.5625rem}.dark-AsideNav-item .dark-AsideNav-item .dark-AsideNav-subList{display:none}.dark-AsideNav-item .dark-AsideNav-item.is-open .dark-AsideNav-subList{display:block}.dark-AsideNav-subHeader{display:none}.dark-AsideNav-subHeader a{cursor:default;background:transparent;color:#646870;padding:.90625rem 1.25rem}.dark-AsideNav-subHeader a:hover{color:#646870;background:transparent}.dark-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.dark-AsideNav-divider{width:auto;height:.0625rem;margin:.625rem 0;overflow:hidden;font-size:0;background-color:#2e3344}@media (min-width:768px){.dark-Layout--folded .dark-AsideNav-label{display:none}.dark-Layout--folded .dark-AsideNav-subHeader{display:block}.dark-Layout--folded .dark-AsideNav-item:hover>.dark-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:3.125rem;border:0}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemArrow,.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemLabel{display:none}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:3.125rem;border:0!important}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item>a .dark-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item.is-lg>a{height:3.125rem}.dark-Layout--folded .dark-AsideNav-list>.dark-AsideNav-item.is-lg>a .dark-AsideNav-itemIcon{line-height:3.125rem}.dark-Layout--folded .dark-AsideNav-item .dark-AsideNav-item a{padding-left:1.25rem!important}.dark-Layout--folded .dark-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:12.5rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.dark-Layout--folded.dark-Layout--sm .dark-AsideNav-subList{width:9.375rem}.dark-Layout--folded.dark-Layout--md .dark-AsideNav-subList{width:15.625rem}.dark-Layout--folded.dark-Layout--lg .dark-AsideNav-subList{width:18.75rem}}.dark-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.dark-Hbox>.dark-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.dark-FormHbox{margin-left:-15px;margin-right:-15px}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col>.dark-Form-group{margin-left:0;margin-right:0}.dark-FormHbox>.dark-Hbox>.dark-Hbox-col>.dark-Form-group:last-child{margin-bottom:0}.dark-FormHbox.dark-Hbox--xs{margin-left:-5px;margin-right:-5px}.dark-FormHbox.dark-Hbox--xs>.dark-Hbox>.dark-Hbox-col{padding-left:5px;padding-right:5px}.dark-FormHbox.dark-Hbox--sm{margin-left:-10px;margin-right:-10px}.dark-FormHbox.dark-Hbox--sm>.dark-Hbox>.dark-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.dark-Hbox--autoSm{display:block}.dark-Hbox--autoSm>.dark-Hbox-col{width:auto;height:auto;display:block}.dark-Hbox--autoSm>.dark-Hbox-col.show{display:block!important}.dark-Hbox--autoSm .dark-Vbox{height:auto}.dark-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.dark-Hbox--autoXs{display:block}.dark-Hbox--autoXs>.dark-Hbox-col{width:auto;height:auto;display:block}.dark-Hbox--autoXs .dark-Vbox{height:auto}.dark-Hbox--autoXs .cell-inner{position:static!important}}.dark-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.dark-Vbox .row-row{display:table-row;height:100%}.dark-Vbox .row-row .dark-Vbox-cell{position:relative;height:100%;width:100%}.ie .dark-Vbox .row-row .dark-Vbox-cell{display:table-cell;overflow:auto}.ie .dark-Vbox .row-row .dark-Vbox-cell .cell-inner{overflow:visible!important}.dark-Vbox .row-row .dark-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.dark-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.dark-Button .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button>svg.icon:not(:last-child):not(.pull-right),.dark-Button>.pull-left{margin-right:.75rem}.dark-Button .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button>.pull-right{margin-left:.75rem}.dark-Button:hover:focus{color:#f3f1f1;text-decoration:none}.dark-Button:focus,.dark-Button.focus{outline:0;box-shadow:none}.dark-Button.is-disabled,.dark-Button:disabled{opacity:.65;box-shadow:none;pointer-events:none;border-color:#dee2e6}.dark-Button:not(:disabled):not(.is-disabled){cursor:pointer}.dark-Button:not(:disabled):not(.is-disabled):active,.dark-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:inset 0 3px 5px rgba(20,19,22,.125)}.dark-Button:not(:disabled):not(.is-disabled):active:focus,.dark-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:inset 0 3px 5px rgba(20,19,22,.125)}.dark-Button>.pull-left,.dark-Button>.pull-right{line-height:inherit}.dark-Button>.fa,.dark-Button>.iconfont,.dark-Button>.glyphicon{font-size:inherit}a.dark-Button.is-disabled,fieldset:disabled a.dark-Button{pointer-events:none}.dark-Button--primary{color:#fff;background-color:#0983ff;border-color:#0983ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary:hover{color:#fff;background-color:#0070e2;border-color:#006ad5}.dark-Button--primary:focus{color:#fff;background-color:#0983ff;border-color:#0983ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary:hover:focus{color:#fff;background-color:#0070e2;border-color:#006ad5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--primary.is-disabled,.dark-Button--primary:disabled{background-color:#0983ff;color:#fff;border-color:#dee2e6}.dark-Button--primary:not(:disabled):not(.is-disabled):active,.dark-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#006ad5;border-color:#0063c8}.dark-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.dark-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--secondary.is-disabled,.dark-Button--secondary:disabled{background-color:#6c757d;color:#fff;border-color:#dee2e6}.dark-Button--secondary:not(:disabled):not(.is-disabled):active,.dark-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.dark-Button--success{color:#fff;background-color:#32d74b;border-color:#32d74b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success:hover{color:#fff;background-color:#25be3c;border-color:#23b339}.dark-Button--success:focus{color:#fff;background-color:#32d74b;border-color:#32d74b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success:hover:focus{color:#fff;background-color:#25be3c;border-color:#23b339;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--success.is-disabled,.dark-Button--success:disabled{background-color:#32d74b;color:#fff;border-color:#dee2e6}.dark-Button--success:not(:disabled):not(.is-disabled):active,.dark-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#23b339;border-color:#21a835}.dark-Button--info{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-Button--info:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--info.is-disabled,.dark-Button--info:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-Button--info:not(:disabled):not(.is-disabled):active,.dark-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-Button--warning{color:#fff;background-color:#ff9f0b;border-color:#ff9f0b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning:hover{color:#fff;background-color:#e48a00;border-color:#d78200}.dark-Button--warning:focus{color:#fff;background-color:#ff9f0b;border-color:#ff9f0b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning:hover:focus{color:#fff;background-color:#e48a00;border-color:#d78200;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--warning.is-disabled,.dark-Button--warning:disabled{background-color:#ff9f0b;color:#fff;border-color:#dee2e6}.dark-Button--warning:not(:disabled):not(.is-disabled):active,.dark-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#d78200;border-color:#ca7b00}.dark-Button--danger{color:#fff;background-color:#dc3545;border-color:#dc3545;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.dark-Button--danger:focus{color:#fff;background-color:#dc3545;border-color:#dc3545;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger:hover:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--danger.is-disabled,.dark-Button--danger:disabled{background-color:#dc3545;color:#fff;border-color:#dee2e6}.dark-Button--danger:not(:disabled):not(.is-disabled):active,.dark-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#bd2130;border-color:#b21f2d}.dark-Button--light{color:#f3f1f1;background-color:#3a3a3a;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light:hover{color:#f3f1f1;background-color:#272727;border-color:#4c4c4c}.dark-Button--light:focus{color:#f3f1f1;background-color:#3a3a3a;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light:hover:focus{color:#f3f1f1;background-color:#272727;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--light.is-disabled,.dark-Button--light:disabled{background-color:#3a3a3a;color:#f3f1f1;border-color:#dee2e6}.dark-Button--light:not(:disabled):not(.is-disabled):active,.dark-Button--light:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#212121;border-color:#454545}.dark-Button--dark{color:#fff;background-color:#1e1f22;border-color:#1e1f22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark:hover{color:#fff;background-color:#0c0c0e;border-color:#060607}.dark-Button--dark:focus{color:#fff;background-color:#1e1f22;border-color:#1e1f22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark:hover:focus{color:#fff;background-color:#0c0c0e;border-color:#060607;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--dark.is-disabled,.dark-Button--dark:disabled{background-color:#1e1f22;color:#fff;border-color:#dee2e6}.dark-Button--dark:not(:disabled):not(.is-disabled):active,.dark-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#060607;border-color:#000}.dark-Button--default{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-Button--default:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Button--default.is-disabled,.dark-Button--default:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-Button--default:not(:disabled):not(.is-disabled):active,.dark-Button--default:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:.142rem;height:1.375rem}.dark-Button--xs .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--xs>svg.icon:not(:last-child):not(.pull-right),.dark-Button--xs>.pull-left{margin-right:.3125rem}.dark-Button--xs .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--xs>.pull-right{margin-left:.3125rem}.dark-Button--xs.dark-Button--iconOnly{min-width:1.83333rem}.dark-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem}.dark-Button--sm .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--sm>svg.icon:not(:last-child):not(.pull-right),.dark-Button--sm>.pull-left{margin-right:.5rem}.dark-Button--sm .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--sm>.pull-right{margin-left:.5rem}.dark-Button--sm.dark-Button--iconOnly{min-width:2.5rem}.dark-Button--md{padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.dark-Button--md .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--md>svg.icon:not(:last-child):not(.pull-right),.dark-Button--md>.pull-left{margin-right:.75rem}.dark-Button--md .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--md>.pull-right{margin-left:.75rem}.dark-Button--md.dark-Button--iconOnly{min-width:2.83333rem}.dark-Button--lg{padding:.625rem 1rem;font-size:1.25rem;line-height:1.2;border-radius:.142rem;height:2.875rem}.dark-Button--lg .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Button--lg>svg.icon:not(:last-child):not(.pull-right),.dark-Button--lg>.pull-left{margin-right:1rem}.dark-Button--lg .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Button--lg>.pull-right{margin-left:1rem}.dark-Button--lg.dark-Button--iconOnly{min-width:3.83333rem}.dark-Button--iconOnly{min-width:2.83333rem}.dark-Button--iconOnly:not(.dark-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.dark-Button--iconOnly:not(.dark-Button--link)>.fa,.dark-Button--iconOnly:not(.dark-Button--link)>.iconfont{font-size:1rem}.dark-Button--iconOnly:not(.dark-Button--link)>.iconfont{line-height:1}.dark-Button--link{width:auto;min-width:auto;font-weight:400;color:#f3f1f1;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.dark-Button--link:hover:focus{color:#fff;text-decoration:underline;box-shadow:none}.dark-Button--link:disabled,.dark-Button--link.is-disabled{color:#6c6c6c;pointer-events:none;background-color:transparent}.dark-Button--block{display:block;width:100%}.dark-Button--block+.dark-Button--block{margin-top:.9375rem}input[type=submit].dark-Button--block,input[type=reset].dark-Button--block,input[type=button].dark-Button--block{width:100%}.dark-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.dark-ButtonToolbar>.dark-Button{margin-left:.3125rem;margin-top:.3125rem}.dark-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .dark-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.dark-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.dark-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:unset;pointer-events:auto;background-color:#333538;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:.0625rem solid #656565;border-radius:.142rem}.dark-Modal-content.in,.dark-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.dark-Modal-content.in{animation-name:modalIn}.dark-Modal-content.out{animation-name:modalOut}.dark-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);pointer-events:none;opacity:0}.dark-Modal-overlay.in{opacity:1}.dark-Modal-overlay.out{opacity:0}.dark-Modal-header{padding:.59375rem 1.25rem;background-color:#2d2f31;border-bottom:.0625rem solid #727272;border-top-left-radius:.142rem;border-top-right-radius:.142rem}.dark-Modal-header::before,.dark-Modal-header::after{display:table;content:''}.dark-Modal-header::after{clear:both}.dark-Modal-title{font-size:.875rem;color:#fff}.dark-Modal-close{float:right;color:#6c6c6c;line-height:inherit;text-decoration:none;vertical-align:middle}.dark-Modal-close svg{width:.75rem;height:.75rem;fill:#6c6c6c}.dark-Modal-close:not(.is-disabled){cursor:pointer}.dark-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#f3f1f1}.dark-Modal-close:not(.is-disabled):hover svg{fill:#f3f1f1}.dark-Modal-content>.dark-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.dark-Modal-body{padding:.9375rem 1.25rem 1.25rem;flex-basis:0;flex-grow:1}.dark-Modal-header+.dark-Modal-body{padding-top:1.25rem}.dark-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.625rem;border-top:.0625rem solid #727272;margin:0;border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem}.dark-Modal-footer .dark-Button{margin-left:.625rem}.dark-Modal--2th .dark-Modal-content{margin-top:5.625rem}.dark-Modal--3th .dark-Modal-content{margin-top:7.5rem}.dark-Modal--4th .dark-Modal-content{margin-top:9.375rem}.dark-Modal--5th .dark-Modal-content{margin-top:11.25rem}.dark-Modal--6th .dark-Modal-content{margin-top:13.125rem}.dark-Modal--7th .dark-Modal-content{margin-top:15rem}.dark-Modal--8th .dark-Modal-content{margin-top:16.875rem}.dark-Modal--9th .dark-Modal-content{margin-top:18.75rem}.dark-Modal--10th .dark-Modal-content{margin-top:20.625rem}@media (min-width:576px){.dark-Modal-content{max-width:31.25rem}.dark-Modal--sm .dark-Modal-content{max-width:21.875rem}.dark-Modal--base .dark-Modal-content{max-width:31.25rem}.dark-Modal--md .dark-Modal-content{max-width:50rem}.dark-Modal--lg .dark-Modal-content{max-width:68.75rem}.dark-Modal--xl .dark-Modal-content{max-width:90%}}.dark-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.dark-Dialog-error{color:#dc3545}.dark-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.dark-Modal--full>.dark-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.dark-Modal--full>.dark-Modal-content>.dark-Modal-body{height:0;overflow:auto}.dark-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.dark-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#333538;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #656565;border-radius:0;transition:transform ease-in-out .3s}.dark-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.dark-Drawer-overlay.in{opacity:1}.dark-Drawer-header{padding:.9375rem;background-color:#2d2f31;border-bottom:.0625rem solid #727272;border-top-left-radius:0;border-top-right-radius:0}.dark-Drawer-header::before,.dark-Drawer-header::after{display:table;content:''}.dark-Drawer-header::after{clear:both}.dark-Drawer-title{font-size:1rem;color:#fff}.dark-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.dark-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.dark-Drawer-close:not(.is-disabled){cursor:pointer}.dark-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.dark-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.dark-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.dark-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #727272;border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-Drawer-footer .dark-Button{margin-left:.3125rem}.dark-Drawer-footer .dark-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.dark-Drawer-footer .dark-Drawer-error{color:#dc3545}.dark-Drawer.dark-Drawer--noOverlay{pointer-events:none}.dark-Drawer.dark-Drawer--noOverlay .dark-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.dark-Drawer .dark-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #656565;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.dark-Drawer .dark-Drawer-content{width:80%;height:80%}.dark-Drawer--xs .dark-Drawer-content{width:12.5rem;height:12.5rem}.dark-Drawer--sm .dark-Drawer-content{width:18.75rem;height:18.75rem}.dark-Drawer--md .dark-Drawer-content{width:31.25rem;height:31.25rem}.dark-Drawer--lg .dark-Drawer-content{width:50rem;height:50rem}.dark-Drawer--xl .dark-Drawer-content{width:90%;height:90%}}.dark-Drawer--top .dark-Drawer-content.in,.dark-Drawer--right .dark-Drawer-content.in,.dark-Drawer--bottom .dark-Drawer-content.in,.dark-Drawer--left .dark-Drawer-content.in{transform:translate3d(0,0,0)}.dark-Drawer--top .dark-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.dark-Drawer--top.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.dark-Drawer--top .dark-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.dark-Drawer--top .dark-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.dark-Drawer--right .dark-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.dark-Drawer--right.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.dark-Drawer--right .dark-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.dark-Drawer--right .dark-Drawer-footer{justify-content:flex-start}.dark-Drawer--right .dark-Drawer-footer .dark-Button{margin-left:0;margin-right:.3125rem}.dark-Drawer--right .dark-Drawer-footer .dark-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.dark-Drawer--right .dark-Drawer-footer .dark-Drawer-error{color:#dc3545}.dark-Drawer--right .dark-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.dark-Drawer--bottom .dark-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.dark-Drawer--bottom.dark-Drawer--noOverlay .dark-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.dark-Drawer--bottom .dark-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.dark-Drawer--bottom .dark-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.dark-Drawer--left .dark-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.dark-Drawer--left.dark-Drawer--noOverlay .dark-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.dark-Drawer--left .dark-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.dark-Drawer--left .dark-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.dark-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#333538;border:.0625rem solid #656565;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.dark-Tooltip-arrow::before,.dark-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.dark-Tooltip--top{margin-top:-.625rem}.dark-Tooltip--top .dark-Tooltip-arrow{bottom:-.5625rem}.dark-Tooltip--top .dark-Tooltip-arrow::before,.dark-Tooltip--top .dark-Tooltip-arrow::after{border-width:.5rem .5rem 0}.dark-Tooltip--top .dark-Tooltip-arrow::before{bottom:0;border-top-color:#656565}.dark-Tooltip--top .dark-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#333538}.dark-Tooltip--right{margin-left:.625rem}.dark-Tooltip--right .dark-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.dark-Tooltip--right .dark-Tooltip-arrow::before,.dark-Tooltip--right .dark-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.dark-Tooltip--right .dark-Tooltip-arrow::before{left:0;border-right-color:#656565}.dark-Tooltip--right .dark-Tooltip-arrow::after{left:.0625rem;border-right-color:#333538}.dark-Tooltip--bottom{margin-top:.625rem}.dark-Tooltip--bottom .dark-Tooltip-arrow{top:-.5625rem}.dark-Tooltip--bottom .dark-Tooltip-arrow::before,.dark-Tooltip--bottom .dark-Tooltip-arrow::after{border-width:0 .5rem .5rem}.dark-Tooltip--bottom .dark-Tooltip-arrow::before{top:0;border-bottom-color:#656565}.dark-Tooltip--bottom .dark-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#333538}.dark-Tooltip--bottom .dark-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #2c2d30}.dark-Tooltip--left{margin-left:-.625rem}.dark-Tooltip--left .dark-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.dark-Tooltip--left .dark-Tooltip-arrow::before,.dark-Tooltip--left .dark-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.dark-Tooltip--left .dark-Tooltip-arrow::before{right:0;border-left-color:#656565}.dark-Tooltip--left .dark-Tooltip-arrow::after{right:.0625rem;border-left-color:#333538}.dark-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#fff;background-color:#2c2d30;border-bottom:.0625rem solid #202123;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.dark-Tooltip-title:empty{display:none}.dark-Tooltip-body{color:#f3f1f1;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.dark-PopOver{position:absolute;background:#333538;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);border:.0625rem solid #656565;border-radius:.142rem}.dark-PopOver>*{position:relative;z-index:2}.dark-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.dark-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.9375rem .9375rem .9375rem 3.4375rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);border-radius:.428rem;border:0 solid;color:#fff;position:relative;opacity:.8;cursor:pointer;opacity:0;transform:translateZ(0)}.dark-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.dark-Toast.in,.dark-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.dark-Toast.in{animation-name:bounceIn}.dark-Toast.out{animation-name:bounceOut}.dark-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#fff;line-height:1;opacity:.8}.dark-Toast-close:hover{color:#fff;opacity:1}.dark-Toast-title{display:block;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.dark-Toast-body{display:block;vertical-align:middle}.dark-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;position:absolute;left:.9375rem;top:.9375rem;width:1.5625rem;height:1.5625rem;align-items:center;justify-content:center}.dark-Toast-icon>svg{top:0;width:1.875rem;height:1.875rem;color:inherit}.dark-Toast--error{color:#fff;border-color:#dc3545;background-color:#dc3545}.dark-Toast--warning{color:#fff;border-color:#ff9f0b;background-color:#ff9f0b}.dark-Toast--info{color:#fff;border-color:#2296f3;background-color:#2296f3}.dark-Toast--success{color:#fff;border-color:#32d74b;background-color:#32d74b}.dark-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.dark-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.dark-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.dark-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.dark-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.dark-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.dark-Alert{font-size:.875rem;box-shadow:none;padding:.9375rem;border:.0625rem solid transparent;border-radius:.285rem;margin-bottom:1.25rem}.dark-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.dark-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.dark-Alert--danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.dark-Alert--info{color:#31708f;background-color:#d9edf7;border-color:#c4ebf3}.dark-Alert--success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.dark-Alert--warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.dark-ArrayInput-placeholder{color:#6c6c6c;padding-top:.4375rem}.dark-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.dark-ArrayInput-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.dark-ArrayInput-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.dark-ArrayInput-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-ArrayInput-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ArrayInput-addBtn.is-disabled,.dark-ArrayInput-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.dark-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.dark-ArrayInput-toolbar--dnd{padding-left:29px}.dark-ArrayInput-sortTip{color:#6c6c6c}.dark-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.dark-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.dark-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.dark-ArrayInput-item--dragging{position:relative;opacity:.4}.dark-ArrayInput-itemRemove,.dark-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.4375rem .3125rem;cursor:pointer}.dark-ArrayInput-itemRemove>svg,.dark-ArrayInput-itemDrager>svg{color:#6c757d}.dark-ArrayInput-itemRemove:hover>svg,.dark-ArrayInput-itemDrager:hover>svg{color:#212529}.dark-ArrayInput-itemDrager{cursor:move}.dark-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #656565;list-style:none;user-select:none}.dark-Tabs-links::before,.dark-Tabs-links::after{display:table;content:''}.dark-Tabs-links::after{clear:both}.dark-Tabs-links>.dark-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.dark-Tabs-links>.dark-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#f3f1f1;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.dark-Tabs-links>.dark-Tabs-link>.dark-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.dark-Tabs-links>.dark-Tabs-link:hover>.dark-Combo-toolbarBtn{display:block}.dark-Tabs-links>.dark-Tabs-link:hover>a:first-child,.dark-Tabs-links>.dark-Tabs-link>a:first-child:focus{border-color:#656565;text-decoration:none}.dark-Tabs-links>.dark-Tabs-link.disabled,.dark-Tabs-links>.dark-Tabs-link.is-disabled{cursor:not-allowed}.dark-Tabs-links>.dark-Tabs-link.disabled>a:first-child,.dark-Tabs-links>.dark-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.dark-Tabs-links>.dark-Tabs-link.active>a:first-child,.dark-Tabs-links>.dark-Tabs-link.is-active>a:first-child{color:#fff;background-color:#302d2a;border-color:#656565;border-bottom-color:transparent}.dark-Tabs-content{background-color:#302d2a;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#656565}.dark-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.dark-Tabs-pane.is-active{display:block}.dark-Tabs-pane.in{opacity:1}.dark-Tabs--line>.dark-Tabs-links{border-bottom-color:#656565}.dark-Tabs--line>.dark-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.dark-Tabs--line>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--line>.dark-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.dark-Tabs--line>.dark-Tabs-links>li:last-child>a{margin:0}.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--line>.dark-Tabs-links>li.is-active>a:first-child:focus{border-color:#0983ff;color:#0983ff;background-color:transparent}.dark-Tabs--line>.dark-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.dark-Tabs--card>.dark-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#323639;border-top:.0625rem solid #333538}.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--card>.dark-Tabs-links>li.is-active>a:first-child:focus{border-color:#656565;color:#0983ff;border-bottom-color:#302d2a;background-color:#302d2a}.dark-Tabs--card>.dark-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.dark-Tabs--card>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--card>.dark-Tabs-links>li>a:first-child:focus{color:#666;background-color:#302d2a;border-bottom-color:transparent}.dark-Tabs--card>.dark-Tabs-content{border-width:0}.dark-Tabs--radio>.dark-Tabs-links{border:0;margin-bottom:.625rem}.dark-Tabs--radio>.dark-Tabs-links>li{margin:0}.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#656565;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#302d2a}.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--radio>.dark-Tabs-links>li>a:first-child:focus{color:#0983ff}.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--radio>.dark-Tabs-links>li.is-active>a:first-child:focus{color:#302d2a;background-color:#0983ff;border-color:#0983ff;position:relative;z-index:1}.dark-Tabs--radio>.dark-Tabs-links>li+li{margin-left:-1px}.dark-Tabs--radio>.dark-Tabs-content{border-top:.0625rem solid #656565}.dark-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #656565;border-radius:0}.dark-Tabs--vertical>.dark-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.dark-Tabs--vertical>.dark-Tabs-links>li{margin:0 0 0 -1px;display:block}.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child:hover,.dark-Tabs--vertical>.dark-Tabs-links>li>a:first-child:focus{color:#0983ff;border-color:transparent}.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child,.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child:hover,.dark-Tabs--vertical>.dark-Tabs-links>li.is-active>a:first-child:focus{color:#0983ff;border-color:#0983ff}.dark-Tabs--vertical>.dark-Tabs-content{border:0;flex-grow:1}.dark-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.dark-Nav{list-style:none;user-select:none;margin:0;padding:0}.dark-Nav .dark-Nav-itemIcon{margin-right:.3125rem}.dark-Nav--tabs{border-bottom:.0625rem solid #656565}.dark-Nav--tabs .dark-Nav-item{margin-bottom:-.0625rem;display:inline-block}.dark-Nav--tabs .dark-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#f3f1f1;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.dark-Nav--tabs .dark-Nav-item:hover>a,.dark-Nav--tabs .dark-Nav-item>a:focus{border-color:#656565;text-decoration:none}.dark-Nav--tabs .dark-Nav-item.disabled>a,.dark-Nav--tabs .dark-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.dark-Nav--tabs .dark-Nav-item.active>a,.dark-Nav--tabs .dark-Nav-item.is-active>a{color:#fff;background-color:#302d2a;border-color:#656565;border-bottom-color:#302d2a}.dark-Nav--stacked .dark-Nav-item{position:relative}.dark-Nav--stacked .dark-Nav-item>a{display:block;outline:0;color:#f3f1f1;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:.285rem}.dark-Nav--stacked .dark-Nav-item:hover>a,.dark-Nav--stacked .dark-Nav-item>a:focus{border-color:#fff;text-decoration:none;background-color:rgba(0,0,0,.05)}.dark-Nav--stacked .dark-Nav-item.disabled>a,.dark-Nav--stacked .dark-Nav-item.is-disabled>a{color:#6c6c6c;background-color:transparent;pointer-events:none}.dark-Nav--stacked .dark-Nav-item.active>a,.dark-Nav--stacked .dark-Nav-item.is-active>a{color:#fff;background-color:#2296f3;border-left:4px solid transparent;padding-left:.75rem}.dark-Nav--stacked .dark-Nav-item.is-unfolded .dark-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.dark-Nav--stacked .dark-Nav-item.is-unfolded .dark-Nav-subItems{display:block}.dark-Nav--stacked .dark-Nav-item .dark-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.dark-Nav--stacked .dark-Nav-item .dark-Nav-itemToggler>svg{width:10px;height:10px;top:0}.dark-Nav--stacked .dark-Nav-item .dark-Nav-subItems{display:none;padding-left:0;list-style:none}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item{font-size:.875rem}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.dark-Nav--stacked .dark-Nav-item .dark-Nav-item.active>a:before,.dark-Nav--stacked .dark-Nav-item .dark-Nav-item.is-active>a:before{background-color:#e5eaeb}.dark-Page{width:100%}.dark-Page-header{padding:.9375rem}.dark-Page-main{background:transparent;height:100%;display:flex;flex-direction:column}.dark-Page-content{padding:0}.dark-Page-main>.dark-Page-header{border-bottom:.0625rem solid #656565}.dark-Page-headerRow{border-bottom:.0625rem solid #656565;display:flex;flex-direction:row;align-items:center}.dark-Page-headerRow .dark-Page-header,.dark-Page-headerRow .dark-Page-toolbar{flex-grow:1}.dark-Page-headerRow .dark-Page-toolbar{text-align:right;padding-right:.9375rem}.dark-Page-title{margin:0;padding:0;color:#fff;line-height:1.1;font-size:1rem;font-weight:400}.dark-Page-body{padding:.9375rem;flex:1 auto}.dark-Page-asideTplWrapper{padding:.3125rem}.dark-Page-toolbar .dark-Button+.dark-Button{margin-left:.3125rem}.dark-Page-aside{background-color:#3c3c3c}@media (min-width:768px){.dark-Page-aside{width:12.5rem;max-width:18.75rem;border-right:.0625rem solid #656565}.dark-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.dark-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.dark-Page--withSidebar>.dark-Page-content{width:0;flex-grow:1}}.dark-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.dark-Remark-icon{color:#6c757d;font-size:.875rem;background-color:transparent;border:0 solid #656565;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.dark-Remark:hover>.dark-Remark-icon{color:#212529;background-color:transparent;border-color:#656565}.dark-Remark>svg{width:.875rem;height:.875rem;color:#6c757d}.dark-Remark:hover>svg{color:#212529}.dark-Chart{min-width:300px;min-height:300px;position:relative}.dark-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.dark-Video{min-width:200px}.dark-Video-cursor{position:absolute;border:2px solid #2296f3;transition:all .5s ease-out}.dark-Video-frameList .dark-Video-frameItem{cursor:pointer}.dark-Video-frameLabel{text-align:center}.dark-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.dark-Audio-original{display:none}.dark-Audio--inline{display:inline-block}.dark-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.dark-Audio-controls{display:flex;flex-direction:row;align-items:center}.dark-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.dark-Audio-rateControl{margin-right:.625rem}.dark-Audio-rateControl::after{clear:both;content:''}.dark-Audio-rateControl .dark-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.dark-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.dark-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.dark-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.dark-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.dark-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.dark-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.dark-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.dark-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.dark-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.dark-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.dark-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.dark-Audio-volumeControl .dark-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.dark-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.dark-Panel{margin-bottom:1.25rem;background-color:#302d2a;border:.0625rem solid transparent;border-radius:.142rem;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.dark-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -.5rem 1rem rgba(20,19,22,.15);border-top:0}.dark-Panel-fixedBottom.in{position:fixed;bottom:0}.dark-Panel--default{border-color:#656565}.dark-Panel--default>.dark-Panel-heading{background:linear-gradient(#524e48,#423e3a);color:#f3f1f1}.dark-Panel--default>.dark-Panel-heading .badge{color:#f5f5f5;background:#333}.dark-Panel--default>.dark-Panel-heading{border-color:#656565}.dark-Panel--primary{border-color:#0983ff}.dark-Panel--primary>.dark-Panel-heading{background:#0983ff;color:#fff}.dark-Panel--primary>.dark-Panel-heading .badge{color:#0983ff;background:#fff}.dark-Panel--primary>.dark-Panel-heading,.dark-Panel--primary>.dark-Panel-footer{border-color:#0983ff}.dark-Panel--success{border-color:#32d74b}.dark-Panel--success>.dark-Panel-heading{background:#32d74b;color:#fff}.dark-Panel--success>.dark-Panel-heading .badge{color:#32d74b;background:#fff}.dark-Panel--success>.dark-Panel-heading,.dark-Panel--success>.dark-Panel-footer{border-color:#32d74b}.dark-Panel--info{border-color:#2296f3}.dark-Panel--info>.dark-Panel-heading{background:#2296f3;color:#fff}.dark-Panel--info>.dark-Panel-heading .badge{color:#2296f3;background:#fff}.dark-Panel--info>.dark-Panel-heading,.dark-Panel--info>.dark-Panel-footer{border-color:#2296f3}.dark-Panel--warning{border-color:#ff9f0b}.dark-Panel--warning>.dark-Panel-heading{background:#ff9f0b;color:#fff}.dark-Panel--warning>.dark-Panel-heading .badge{color:#ff9f0b;background:#fff}.dark-Panel--warning>.dark-Panel-heading,.dark-Panel--warning>.dark-Panel-footer{border-color:#ff9f0b}.dark-Panel--danger{border-color:#dc3545}.dark-Panel--danger>.dark-Panel-heading{background:#dc3545;color:#fff}.dark-Panel--danger>.dark-Panel-heading .badge{color:#dc3545;background:#fff}.dark-Panel--danger>.dark-Panel-heading,.dark-Panel--danger>.dark-Panel-footer{border-color:#dc3545}.dark-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.dark-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.dark-Panel-body{padding:.9375rem}.dark-Panel-footer{border-color:#727272;border-radius:0 0 .125rem .125rem;background:linear-gradient(#524e48,#423e3a);padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.dark-Panel-footer .dark-Button+.dark-Button{margin-left:.625rem}.dark-Panel-btnToolbar{text-align:right}.dark-Panel-btnToolbar::before,.dark-Panel-btnToolbar::after{display:table;content:''}.dark-Panel-btnToolbar::after{clear:both}.dark-Panel-btnToolbar .dark-Button{margin-left:.625rem}.dark-Panel-btnToolbar:empty{display:none}.dark-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.dark-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.dark-Spinner-overlay.in{opacity:1}.dark-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwcHgiICBoZWlnaHQ9IjIwMHB4IiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiIGNsYXNzPSJsZHMtcm9sbGluZyIgc3R5bGU9ImJhY2tncm91bmQ6IG5vbmU7Ij48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzE3YTJiOCIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoMTI5Ljg5NCA1MCA1MCkiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiBjYWxjTW9kZT0ibGluZWFyIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIiBkdXI9IjEuMnMiIGJlZ2luPSIwcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZVRyYW5zZm9ybT48L2NpcmNsZT48L3N2Zz4=");background-size:100%;transition:ease-out all .3s}.dark-Spinner--lg{width:3.125rem;height:3.125rem}.dark-Spinner--sm{width:1rem;height:1rem}.dark-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.dark-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.dark-Spinner--overlay.dark-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.dark-Layout .dark-Page-body>.dark-Spinner-overlay{left:12.5rem}.dark-Layout--folded .dark-Page-body>.dark-Spinner-overlay{left:3.75rem}}.dark-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.dark-ButtonGroup>.dark-Button{position:relative;flex:0 1 auto}.dark-ButtonGroup>.dark-Button:hover{z-index:1}.dark-ButtonGroup>.dark-Button:focus,.dark-ButtonGroup>.dark-Button:active,.dark-ButtonGroup>.dark-Button.active,.dark-ButtonGroup>.dark-Button.is-active{z-index:1}.dark-ButtonGroup .dark-Button+.dark-Button,.dark-ButtonGroup .dark-Button+.dark-ButtonGroup,.dark-ButtonGroup .dark-ButtonGroup+.dark-Button,.dark-ButtonGroup .dark-ButtonGroup+.dark-ButtonGroup{margin-left:-.0625rem}.dark-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.dark-ButtonToolbar .dark-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.dark-ButtonGroup>.dark-Button:first-child{margin-left:0}.dark-ButtonGroup>.dark-Button:not(:last-child),.dark-ButtonGroup>.dark-ButtonGroup:not(:last-child)>.dark-Button{border-top-right-radius:0;border-bottom-right-radius:0}.dark-ButtonGroup>.dark-Button:not(:first-child),.dark-ButtonGroup>.dark-ButtonGroup:not(:first-child)>.dark-Button{border-top-left-radius:0;border-bottom-left-radius:0}.dark-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.dark-ButtonGroup--vertical .dark-Button,.dark-ButtonGroup--vertical .dark-ButtonGroup{width:100%}.dark-ButtonGroup--vertical>.dark-Button+.dark-Button,.dark-ButtonGroup--vertical>.dark-Button+.dark-ButtonGroup,.dark-ButtonGroup--vertical>.dark-ButtonGroup+.dark-Button,.dark-ButtonGroup--vertical>.dark-ButtonGroup+.dark-ButtonGroup{margin-top:-.0625rem;margin-left:0}.dark-ButtonGroup--vertical>.dark-Button:not(:last-child),.dark-ButtonGroup--vertical>.dark-ButtonGroup:not(:last-child)>.dark-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-ButtonGroup--vertical>.dark-Button:not(:first-child),.dark-ButtonGroup--vertical>.dark-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.dark-ButtonGroupControl{display:inline-block}.dark-ButtonGroupControl>.dark-ButtonGroup--sm{margin-top:.125rem}.dark-ButtonGroupControl>.dark-ButtonGroup--xs{margin-top:.375rem}.dark-DropDown{position:relative;display:inline-block}.dark-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.dark-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.dark-DropDown.is-opened .dark-DropDown-caret{transform:rotate(180deg)}.dark-DropDown--block{display:block}.dark-DropDown--block .dark-Button{display:block}.dark-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#333538;list-style:none;padding:.3125rem 0;border:.0625rem solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);min-width:10rem;text-align:left}.dark-DropDown--alignRight .dark-DropDown-menu{left:auto;right:0}.dark-DropDown-menuItem,.dark-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.dark-DropDown-menuItem:hover,.dark-DropDown-menu>li:hover{background-color:rgba(0,126,255,.08);color:inherit}.dark-DropDown-menuItem:not(.is-disabled),.dark-DropDown-menuItem:not(.disabled),.dark-DropDown-menu>li:not(.is-disabled),.dark-DropDown-menu>li:not(.disabled){cursor:pointer}.dark-DropDown-menuItem.dark-DropDown-divider,.dark-DropDown-menu>li.dark-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#656565;padding:0}.dark-DropDown-menu>li a{display:block;text-decoration:none}.dark-DropDown-popover{border:0;box-shadow:none}.dark-DropDown>.dark-Button{min-width:unset}.dark-Collapse{border:0;padding:0;margin-bottom:.9375rem}.dark-Collapse-header{font-size:1rem;font-weight:400;color:#fff;padding:.3125rem 0;border-bottom:.0625rem solid #727272}.dark-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.dark-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#f3f1f1;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.dark-Collapse.is-collapsed .dark-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.dark-Collapse--collapsable .dark-Collapse-header{user-select:none}.dark-Collapse-content{transition:height .35s ease}.dark-Collapse-content.in,.dark-Collapse-content.out{height:0;overflow:hidden}.dark-ColorField{display:inline-block}.dark-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(20,19,22,.075);background-color:#ccc}.dark-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.dark-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.dark-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.dark-ContextMenu-menu.in,.dark-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.dark-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.dark-ContextMenu-menu.out{animation-name:contextMenuOut}.dark-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.dark-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.dark-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.dark-ContextMenu-item{position:relative}.dark-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.dark-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.dark-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.dark-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.dark-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.dark-ContextMenu-itemIcon{margin-right:5px}.dark-ContextMenu-subList{display:none;list-style:none}.dark-ContextMenu-item:hover>.dark-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.dark-ContextMenu-item:hover>.dark-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.dark-ContextMenu--left .dark-ContextMenu-item:hover>.dark-ContextMenu-subList{left:auto;right:100%}.dark-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.dark-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.dark-Wizard{position:relative}.dark-Wizard::before,.dark-Wizard::after{display:table;content:''}.dark-Wizard::after{clear:both}.dark-Wizard,.dark-Wizard-tabs{padding:0}.dark-Wizard .dark-Badge,.dark-Wizard-tabs .dark-Badge{display:inline-block;width:1.25rem;height:1.25rem;font-size:.75rem;line-height:1.25rem;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#ced4da;border-radius:.625rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.25rem;border:0;box-sizing:content-box}.dark-Wizard .dark-Badge.is-active,.dark-Wizard-tabs .dark-Badge.is-active{color:#fff;background-color:#2296f3}.dark-Wizard ul li.active,.dark-Wizard-tabs ul li.active{color:#2296f3}.dark-Wizard .dark-Panel-footer>.dark-Form-group,.dark-Wizard .dark-Panel-footer>.btn,.dark-Wizard-tabs .dark-Panel-footer>.dark-Form-group,.dark-Wizard-tabs .dark-Panel-footer>.btn{margin-left:.3125rem}.dark-Wizard>ul.nav,.dark-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #656565}.dark-Wizard>ul.nav li,.dark-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:2.5rem;line-height:2.5rem}.dark-Wizard>ul.nav li a,.dark-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.dark-Wizard>ul.nav li a div,.dark-Wizard-tabs>ul.nav li a div{display:inline}.dark-Wizard>ul.nav li:first-child,.dark-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.dark-Wizard>ul.nav li:before,.dark-Wizard>ul.nav li:after,.dark-Wizard-tabs>ul.nav li:before,.dark-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #656565;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.dark-Wizard>ul.nav li:after,.dark-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#191c22;z-index:2}.dark-Wizard>ul.nav li.is-active,.dark-Wizard-tabs>ul.nav li.is-active{color:#2296f3;background:#fff}.dark-Wizard>ul.nav li.is-active:after,.dark-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.dark-Wizard-steps{font-size:.875rem;padding:0;background-color:#191c22;border-bottom:.0625rem solid #656565;text-align:left}.dark-Wizard-steps::before,.dark-Wizard-steps::after{display:table;content:''}.dark-Wizard-steps::after{clear:both}.dark-Wizard-steps ul{display:block;padding:0;margin:0;list-style:none outside none}.dark-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:2.5rem;line-height:2.5rem}.dark-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.dark-Wizard-steps ul li:before,.dark-Wizard-steps ul li:after{font-family:"";content:"";position:absolute;bottom:0;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #656565;border-left-color:rgba(0,0,0,.05);z-index:2}.dark-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#191c22;z-index:2}.dark-Wizard-steps ul li.is-active{color:#2296f3;background:#302d2a}.dark-Wizard-steps ul li.is-active:after{border-left-color:#302d2a}.dark-Wizard-steps ul li.is-complete,.dark-Wizard-steps ul li.is-complete:hover{color:#2296f3;cursor:pointer;background:#f1f5f9}.dark-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.dark-Wizard-stepContent{padding:.9375rem}.dark-Wizard-stepContent .Step-pane{display:none}.dark-Wizard-stepContent .Step-pane.is-active{display:inherit}.dark-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.dark-Wizard--vertical.dark-Wizard-steps{height:auto}.dark-Wizard--vertical+.dark-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.dark-Wizard--vertical li{background-color:#191c22}.dark-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #656565;padding-left:.9375rem}.dark-Wizard--vertical+.dark-Wizard-stepContent+.dark-Panel-footer{clear:both}.dark-Crud{position:relative}.dark-Crud-selection{margin-bottom:.9375rem}.dark-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.dark-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.dark-Crud-value:hover{background-color:#22201e}.dark-Crud-value.is-disabled{pointer-events:none;opacity:.65}.dark-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Crud-valueIcon:hover{background-color:#22201e}.dark-Crud-valueLabel{padding:0 .3125rem}.dark-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.dark-Crud-toolbar-item{margin-left:.3125rem;margin-top:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.dark-Crud-toolbar-item--left{float:left}.dark-Crud-toolbar-item--right{float:right}.dark-Crud-actions>*+.dark-Button,.dark-Crud-actions>*+.dark-ButtonGroup,.dark-Crud-actions>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Crud-statistics{line-height:1.875rem;vertical-align:middle}.dark-Crud-pageSwitch .dark-Select{margin-left:.3125rem}.dark-Crud-pager{align-self:flex-start}@media (min-width:576px){.dark-Crud-toolbar{margin-left:-.3125rem;margin-top:-.3125rem;flex-basis:0;flex-grow:1}.dark-Crud-toolbar::before,.dark-Crud-toolbar::after{display:table;content:''}.dark-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.dark-Button+.dark-Button{margin-left:.3125rem}}.dark-Table{position:relative;background:#333538;border:.0625rem solid #656565;border-radius:.142rem;margin-bottom:1.25rem}.dark-Form-control>.dark-Table{margin-bottom:.625rem}.dark-Table-fixedLeft,.dark-Table-fixedRight{position:absolute;background:#333538;z-index:5;top:-999999px}.dark-Table-fixedLeft.in,.dark-Table-fixedRight.in{top:auto}.dark-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(20,19,22,.15);left:0}.dark-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(20,19,22,.15);right:0}.dark-Table-fixedRight .dark-Table-table>thead>tr>th:first-child,.dark-Table-fixedRight .dark-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.dark-Table-fixedTop{position:absolute;background:#333538;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-Table-fixedTop>.dark-Table-fixedLeft,.dark-Table-fixedTop>.dark-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #656565}.dark-Table-fixedTop>.dark-Table-fixedLeft>table,.dark-Table-fixedTop>.dark-Table-fixedRight>table{margin-bottom:.3125rem}.dark-Table-fixedTop>.dark-Table-heading{border-bottom:0}.dark-Table-fixedTop>.dark-Table-wrapper{border-top:.0625rem solid #656565}.dark-Table-fixedTop.is-fakeHide>.dark-Table-fixedLeft,.dark-Table-fixedTop.is-fakeHide>.dark-Table-fixedRight,.dark-Table-fixedTop.is-fakeHide>.dark-Table-wrapper{visibility:hidden;position:absolute}.dark-Table-heading{background:#fff;border-bottom:.0625rem solid #656565;padding:.59375rem .625rem}.dark-Table--unsaved .dark-Table-heading{background:#e8f0fe;color:#4285f4}.dark-Table-wrapper{overflow:hidden}.dark-Table-placeholder{color:#6c6c6c;text-align:center;height:6.25rem;background-color:transparent!important}.dark-Table-placeholder:hover{color:#6c6c6c;background-color:transparent!important}.dark-Table-placeholder>td{vertical-align:middle!important;text-align:center}.dark-Table-header{padding:.625rem}.dark-Table-header>*+.dark-Button,.dark-Table-header>*+.dark-ButtonGroup,.dark-Table-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.dark-Table-toolbar::before,.dark-Table-toolbar::after{display:table;content:''}.dark-Table-toolbar::after{clear:both}.dark-Table-toolbar .dark-DropDown-menuItem{height:auto}.dark-Table-toolbar .dark-DropDown-menuItem .dark-Checkbox{display:flex;align-items:center}.dark-Table-header+.dark-Table-toolbar{padding-top:0}.dark-Table-contentWrap{position:relative}.dark-Table-header+.dark-Table-contentWrap,.dark-Table-toolbar+.dark-Table-contentWrap{border-top:.0625rem solid #656565}.dark-Table-footToolbar{border-top:.0625rem solid #656565}.dark-Table-actions{display:inline-block}.dark-Table-actions>*{margin-right:.3125rem}.dark-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.dark-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.875rem;color:#f3f1f1;background-color:#333538;border-spacing:0;border-collapse:collapse}.dark-Table-table--withCombine>thead>tr>th:first-child,.dark-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.dark-Table-table--withCombine>thead>tr>th:last-child,.dark-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.dark-Table-table--withCombine>tbody>tr.dark-Table-tr--odd{background-color:transparent}.dark-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.dark-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.dark-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #656565}.dark-Table-table>thead>tr>th{background-color:#2f2f2f;padding:.59375rem .625rem;border-bottom:.0625rem solid #656565;font-size:.875rem;color:#fff;font-weight:400;white-space:nowrap}.dark-Table-table>thead>tr>th[colspan]{text-align:center}.dark-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.dark-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.dark-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #656565}.dark-Table-table>thead>tr>th .dark-TableCell--title{display:flex;align-items:center}.dark-Table-table>thead>tr>th .dark-Remark{margin-left:.3125rem}.dark-Table-table>thead>tr+tr{border-top:.0625rem solid #656565}.dark-Table-table>thead>tr{border-bottom:.0625rem solid #656565}.dark-Table-table>tbody>tr{background-color:transparent}.dark-Table-table>tbody>tr+tr{border-top:.0625rem solid #656565}.dark-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #656565}.dark-Table-table>tbody>tr>th{background-color:#2f2f2f;color:#fff;font-weight:400;white-space:nowrap;border-right:.0625rem solid #656565}.dark-Table-table>tbody>tr>td,.dark-Table-table>tbody>tr>th{padding:.59375rem .625rem;vertical-align:top}.dark-Table-table>tbody>tr>td:first-child,.dark-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.dark-Table-table>tbody>tr>td:last-child,.dark-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.dark-Table-table>tbody>tr.dark-Table-tr--odd{background-color:#302d2a}.dark-Table-table>tbody>tr:hover,.dark-Table-table>tbody>tr.is-hovered{background-color:#1e1f22;border-color:#060607;color:#f3f1f1}.dark-Table-table>tbody>tr:hover+tr,.dark-Table-table>tbody>tr.is-hovered+tr{border-color:#060607}.dark-Table-table>tbody>tr.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-Table-table>tbody>tr.is-checked+tr{border-color:#000}.dark-Table-table>tbody>tr.is-moved,.dark-Table-table>tbody>tr.is-modified{background-color:#141316;border-color:#080708;color:#f3f1f1}.dark-Table-table>tbody>tr.is-moved+tr,.dark-Table-table>tbody>tr.is-modified+tr{border-color:#080708}.dark-Table-table>tbody>tr.bg-light{background-color:#3a3a3a;color:#f3f1f1}.dark-Table-table>tbody>tr.bg-light.lt,.dark-Table-table>tbody>tr.bg-light .lt{background-color:#3f3f3f}.dark-Table-table>tbody>tr.bg-light.lter,.dark-Table-table>tbody>tr.bg-light .lter{background-color:#424242}.dark-Table-table>tbody>tr.bg-light.dk,.dark-Table-table>tbody>tr.bg-light .dk{background-color:#343131}.dark-Table-table>tbody>tr.bg-light.dker,.dark-Table-table>tbody>tr.bg-light .dker{background-color:#302b2b}.dark-Table-table>tbody>tr.bg-light.bg,.dark-Table-table>tbody>tr.bg-light .bg{background-color:#3a3a3a}.dark-Table-table>tbody>tr.bg-dark{background-color:#1e1f22;color:#868686}.dark-Table-table>tbody>tr.bg-dark.lt,.dark-Table-table>tbody>tr.bg-dark .lt{background-color:#2b2c2e}.dark-Table-table>tbody>tr.bg-dark.lter,.dark-Table-table>tbody>tr.bg-dark .lter{background-color:#39393a}.dark-Table-table>tbody>tr.bg-dark.dk,.dark-Table-table>tbody>tr.bg-dark .dk{background-color:#121215}.dark-Table-table>tbody>tr.bg-dark.dker,.dark-Table-table>tbody>tr.bg-dark .dker{background-color:#060607}.dark-Table-table>tbody>tr.bg-dark.bg,.dark-Table-table>tbody>tr.bg-dark .bg{background-color:#1e1f22}.dark-Table-table>tbody>tr.bg-dark a,.dark-Table-table>tbody>tr.bg-dark .dark-Button--link{color:#a0a0a0}.dark-Table-table>tbody>tr.bg-dark a:hover,.dark-Table-table>tbody>tr.bg-dark .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-dark .open>a,.dark-Table-table>tbody>tr.bg-dark .open>a:hover,.dark-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-dark .text-muted{color:#6d6d6d!important}.dark-Table-table>tbody>tr.bg-dark .text-lt{color:#c6c6c6!important}.dark-Table-table>tbody>tr.bg-black{background-color:#141316;color:#7b7b7b}.dark-Table-table>tbody>tr.bg-black.lt,.dark-Table-table>tbody>tr.bg-black .lt{background-color:#212023}.dark-Table-table>tbody>tr.bg-black.lter,.dark-Table-table>tbody>tr.bg-black .lter{background-color:#2e2d2f}.dark-Table-table>tbody>tr.bg-black.dk,.dark-Table-table>tbody>tr.bg-black .dk{background-color:#070709}.dark-Table-table>tbody>tr.bg-black.dker,.dark-Table-table>tbody>tr.bg-black .dker{background-color:#000}.dark-Table-table>tbody>tr.bg-black.bg,.dark-Table-table>tbody>tr.bg-black .bg{background-color:#141316}.dark-Table-table>tbody>tr.bg-black a,.dark-Table-table>tbody>tr.bg-black .dark-Button--link{color:#949494}.dark-Table-table>tbody>tr.bg-black a:hover,.dark-Table-table>tbody>tr.bg-black .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-black .open>a,.dark-Table-table>tbody>tr.bg-black .open>a:hover,.dark-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-black .text-muted{color:#616161!important}.dark-Table-table>tbody>tr.bg-black .text-lt{color:#bababa!important}.dark-Table-table>tbody>tr.bg-primary{background-color:#0983ff;color:#d7eafd}.dark-Table-table>tbody>tr.bg-primary.lt,.dark-Table-table>tbody>tr.bg-primary .lt{background-color:#2590fc}.dark-Table-table>tbody>tr.bg-primary.lter,.dark-Table-table>tbody>tr.bg-primary .lter{background-color:#419dfa}.dark-Table-table>tbody>tr.bg-primary.dk,.dark-Table-table>tbody>tr.bg-primary .dk{background-color:#0076ef}.dark-Table-table>tbody>tr.bg-primary.dker,.dark-Table-table>tbody>tr.bg-primary .dker{background-color:#006ad5}.dark-Table-table>tbody>tr.bg-primary.bg,.dark-Table-table>tbody>tr.bg-primary .bg{background-color:#0983ff}.dark-Table-table>tbody>tr.bg-primary a,.dark-Table-table>tbody>tr.bg-primary .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-primary a:hover,.dark-Table-table>tbody>tr.bg-primary .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-primary .open>a,.dark-Table-table>tbody>tr.bg-primary .open>a:hover,.dark-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-primary .text-muted{color:#a7d0fa!important}.dark-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-success{background-color:#32d74b;color:#dff6e2}.dark-Table-table>tbody>tr.bg-success.lt,.dark-Table-table>tbody>tr.bg-success .lt{background-color:#4ad860}.dark-Table-table>tbody>tr.bg-success.lter,.dark-Table-table>tbody>tr.bg-success .lter{background-color:#62da74}.dark-Table-table>tbody>tr.bg-success.dk,.dark-Table-table>tbody>tr.bg-success .dk{background-color:#24cb3d}.dark-Table-table>tbody>tr.bg-success.dker,.dark-Table-table>tbody>tr.bg-success .dker{background-color:#1eb835}.dark-Table-table>tbody>tr.bg-success.bg,.dark-Table-table>tbody>tr.bg-success .bg{background-color:#32d74b}.dark-Table-table>tbody>tr.bg-success a,.dark-Table-table>tbody>tr.bg-success .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-success a:hover,.dark-Table-table>tbody>tr.bg-success .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-success .open>a,.dark-Table-table>tbody>tr.bg-success .open>a:hover,.dark-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-success .text-muted{color:#b7ebbf!important}.dark-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-info{background-color:#2296f3;color:#e5f2fc}.dark-Table-table>tbody>tr.bg-info.lt,.dark-Table-table>tbody>tr.bg-info .lt{background-color:#3da1f2}.dark-Table-table>tbody>tr.bg-info.lter,.dark-Table-table>tbody>tr.bg-info .lter{background-color:#57acf1}.dark-Table-table>tbody>tr.bg-info.dk,.dark-Table-table>tbody>tr.bg-info .dk{background-color:#0a8bf2}.dark-Table-table>tbody>tr.bg-info.dker,.dark-Table-table>tbody>tr.bg-info .dker{background-color:#067ddc}.dark-Table-table>tbody>tr.bg-info.bg,.dark-Table-table>tbody>tr.bg-info .bg{background-color:#2296f3}.dark-Table-table>tbody>tr.bg-info a,.dark-Table-table>tbody>tr.bg-info .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-info a:hover,.dark-Table-table>tbody>tr.bg-info .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-info .open>a,.dark-Table-table>tbody>tr.bg-info .open>a:hover,.dark-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-info .text-muted{color:#b7dbf7!important}.dark-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-warning{background-color:#ff9f0b;color:#fdefd9}.dark-Table-table>tbody>tr.bg-warning.lt,.dark-Table-table>tbody>tr.bg-warning .lt{background-color:#fca827}.dark-Table-table>tbody>tr.bg-warning.lter,.dark-Table-table>tbody>tr.bg-warning .lter{background-color:#fab243}.dark-Table-table>tbody>tr.bg-warning.dk,.dark-Table-table>tbody>tr.bg-warning .dk{background-color:#f19200}.dark-Table-table>tbody>tr.bg-warning.dker,.dark-Table-table>tbody>tr.bg-warning .dker{background-color:#d78200}.dark-Table-table>tbody>tr.bg-warning.bg,.dark-Table-table>tbody>tr.bg-warning .bg{background-color:#ff9f0b}.dark-Table-table>tbody>tr.bg-warning a,.dark-Table-table>tbody>tr.bg-warning .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-warning a:hover,.dark-Table-table>tbody>tr.bg-warning .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-warning .open>a,.dark-Table-table>tbody>tr.bg-warning .open>a:hover,.dark-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-warning .text-muted{color:#fadaa9!important}.dark-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.bg-danger{background-color:#dc3545;color:#f8e5e6}.dark-Table-table>tbody>tr.bg-danger.lt,.dark-Table-table>tbody>tr.bg-danger .lt{background-color:#dd4d5b}.dark-Table-table>tbody>tr.bg-danger.lter,.dark-Table-table>tbody>tr.bg-danger .lter{background-color:#df6571}.dark-Table-table>tbody>tr.bg-danger.dk,.dark-Table-table>tbody>tr.bg-danger .dk{background-color:#d62133}.dark-Table-table>tbody>tr.bg-danger.dker,.dark-Table-table>tbody>tr.bg-danger .dker{background-color:#c31b2b}.dark-Table-table>tbody>tr.bg-danger.bg,.dark-Table-table>tbody>tr.bg-danger .bg{background-color:#dc3545}.dark-Table-table>tbody>tr.bg-danger a,.dark-Table-table>tbody>tr.bg-danger .dark-Button--link{color:#fff}.dark-Table-table>tbody>tr.bg-danger a:hover,.dark-Table-table>tbody>tr.bg-danger .dark-Button--link:hover{color:#fff}.dark-Table-table>tbody>tr.bg-danger .open>a,.dark-Table-table>tbody>tr.bg-danger .open>a:hover,.dark-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.dark-Table-table>tbody>tr.bg-danger .text-muted{color:#eebcc0!important}.dark-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.dark-Table-table>tbody>tr.is-dragging{opacity:.1}.dark-Table-table tr.dark-Table-tr--2th.is-expanded .dark-Table-expandCell:before{right:-.8125rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandBtn{position:relative;right:-1.25rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td{position:relative;padding-left:1.25rem}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--2th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--2th.is-expandable .dark-Table-expandCell+td{padding-left:1.25rem}.dark-Table-table tr.dark-Table-tr--2th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--3th.is-expanded .dark-Table-expandCell:before{right:-2.0625rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandBtn{position:relative;right:-2.5rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td{position:relative;padding-left:2.5rem}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--3th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--3th.is-expandable .dark-Table-expandCell+td{padding-left:2.5rem}.dark-Table-table tr.dark-Table-tr--3th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--4th.is-expanded .dark-Table-expandCell:before{right:-3.3125rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandBtn{position:relative;right:-3.75rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td{position:relative;padding-left:3.75rem}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--4th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--4th.is-expandable .dark-Table-expandCell+td{padding-left:3.75rem}.dark-Table-table tr.dark-Table-tr--4th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--5th.is-expanded .dark-Table-expandCell:before{right:-4.5625rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandBtn{position:relative;right:-5rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td{position:relative;padding-left:5rem}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--5th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--5th.is-expandable .dark-Table-expandCell+td{padding-left:5rem}.dark-Table-table tr.dark-Table-tr--5th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--6th.is-expanded .dark-Table-expandCell:before{right:-5.8125rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandBtn{position:relative;right:-6.25rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td{position:relative;padding-left:6.25rem}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--6th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--6th.is-expandable .dark-Table-expandCell+td{padding-left:6.25rem}.dark-Table-table tr.dark-Table-tr--6th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--7th.is-expanded .dark-Table-expandCell:before{right:-7.0625rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandBtn{position:relative;right:-7.5rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td{position:relative;padding-left:7.5rem}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--7th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--7th.is-expandable .dark-Table-expandCell+td{padding-left:7.5rem}.dark-Table-table tr.dark-Table-tr--7th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--8th.is-expanded .dark-Table-expandCell:before{right:-8.3125rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandBtn{position:relative;right:-8.75rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td{position:relative;padding-left:8.75rem}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--8th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--8th.is-expandable .dark-Table-expandCell+td{padding-left:8.75rem}.dark-Table-table tr.dark-Table-tr--8th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--9th.is-expanded .dark-Table-expandCell:before{right:-9.5625rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandBtn{position:relative;right:-10rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td{position:relative;padding-left:10rem}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--9th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--9th.is-expandable .dark-Table-expandCell+td{padding-left:10rem}.dark-Table-table tr.dark-Table-tr--9th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table tr.dark-Table-tr--10th.is-expanded .dark-Table-expandCell:before{right:-10.8125rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandBtn{position:relative;right:-11.25rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td{position:relative;padding-left:11.25rem}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#656565}.dark-Table-table tr.dark-Table-tr--10th .dark-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#656565}.dark-Table-table tr.dark-Table-tr--10th.is-expandable .dark-Table-expandCell+td{padding-left:11.25rem}.dark-Table-table tr.dark-Table-tr--10th.is-last:not(.is-expanded) .dark-Table-expandCell+td::before{height:1.125rem;bottom:auto}.dark-Table-table>thead>tr>th.dark-Table-checkCell,.dark-Table-table>tbody>tr>td.dark-Table-checkCell{border-right:0;width:.0625rem}.dark-Table-table>thead>tr>th.dark-Table-checkCell .dark-Checkbox,.dark-Table-table>tbody>tr>td.dark-Table-checkCell .dark-Checkbox{margin:0}.dark-Table-table>thead>tr>th.dark-Table-expandCell,.dark-Table-table>tbody>tr>td.dark-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.dark-Table-table>thead>tr>th.dark-Table-dragCell,.dark-Table-table>tbody>tr>td.dark-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.dark-Table-table>tbody>tr>td.dark-Table-expandCell{position:relative}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:.4375rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-.8125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-2.0625rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-3.3125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-4.5625rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-5.8125rem}.dark-Table-table>tbody>tr>td.dark-Table-expandCell .dark-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#656565;right:-7.0625rem}.dark-Table-table>tbody>tr.is-expanded>td.dark-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#656565}.dark-Table-table>thead>tr>th.dark-TableCell--sortable{padding-right:1.125rem;position:relative}.dark-Table-table>thead>tr>th.dark-TableCell--searchable{padding-right:1.625rem;position:relative}.dark-Table-table>thead>tr>th.dark-TableCell--filterable{padding-right:1.625rem;position:relative}.dark-TableCell-sortBtn{cursor:pointer;width:.5rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.375rem;top:50%;transform:translateY(-50%);color:#6c757d}.dark-TableCell-sortBtn:hover{color:#212529}.dark-TableCell-sortBtn--up>svg,.dark-TableCell-sortBtn--down>svg,.dark-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.dark-TableCell-sortBtn--up,.dark-TableCell-sortBtn--down,.dark-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.dark-TableCell-sortBtn--up.is-active,.dark-TableCell-sortBtn--down.is-active,.dark-TableCell-sortBtn--default.is-active{display:inline-block}.dark-TableCell-sortBtn--default.is-active{color:#6c6c6c}.dark-TableCell-sortBtn--default.is-active:hover{color:#f3f1f1}.dark-TableCell-sortBtn--up.is-active,.dark-TableCell-sortBtn--down.is-active{color:#0983ff}.dark-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#6c6c6c}.dark-TableCell-searchBtn svg.icon{width:12px;height:12px}.dark-TableCell-searchBtn:hover{color:#f3f1f1}.dark-TableCell-searchBtn.is-active{color:#0983ff}.dark-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.dark-TableCell-searchPopOver .dark-Panel{margin:0}.dark-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#6c6c6c}.dark-TableCell-filterBtn svg.icon{width:12px;height:12px}.dark-TableCell-filterBtn:hover{color:#f3f1f1}.dark-TableCell-filterBtn.is-active{color:#0983ff}.dark-TableCell-filterBtn .dark-Remark{display:inline}.dark-TableCell-filterPopOver{border:0;width:10rem}.dark-TableCell-filterPopOver .dark-DropDown-menu{margin:0;padding:0;border-radius:0}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider{height:2.125rem;line-height:2.125rem;padding:0 .75rem;background-color:#fff;margin:0}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider:hover{background-color:#3a3a3a;color:#0983ff}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider.is-selected{background-color:#3a3a3a;color:#0983ff}.dark-TableCell-filterPopOver .dark-DropDown-menu .dark-DropDown-divider .dark-Checkbox{width:100%;margin:0}.dark-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(20,19,22,.15)}.dark-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(30,31,34,0) 0,#1e1f22 20%,#1e1f22 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.dark-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#2296f3;text-decoration:none}.dark-Table-itemActions a:hover{color:#0a6ebe;text-decoration:underline}.dark-Table-itemActions a.is-disabled{pointer-events:none;opacity:.65;color:#6c6c6c}.dark-Table-dragTip{color:#fff;clear:both;margin-top:.3125rem;width:100%;color:#2296f3}.dark-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.dark-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.59375rem .625rem}.dark-Table-footTable>tbody>tr>td{word-break:break-all;padding:.59375rem .625rem}.dark-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #6b6b6b}.dark-Table-expandBtn{position:relative;z-index:1;color:#2296f3;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.dark-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.dark-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.dark-Table-expandBtn:hover{text-decoration:none}.dark-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#6c757d}.dark-Table-dragBtn:hover{text-decoration:none;color:#212529}.dark-Table-table>tbody>tr:hover .dark-Table-dragBtn,.dark-Table-table>tbody>tr.is-dragging .dark-Table-dragBtn,.dark-Table-table>tbody>tr.is-drop-allowed .dark-Table-dragBtn{visibility:visible}.dark-Table .fake-hide{visibility:hidden;position:absolute}.dark-OperationField{margin:-.1875rem}.dark-OperationField>.dark-Button,.dark-OperationField>.dark-Button--disabled-wrap>.dark-Button{margin:.1875rem}.dark-OperationField>.dark-Button--link{padding:0;margin-right:.625rem}.dark-List{border:.0625rem solid #656565;border-radius:.142rem;background-color:#302d2a;margin-bottom:1.25rem;position:relative}.dark-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.dark-List-toolbar::before,.dark-List-toolbar::after{display:table;content:''}.dark-List-toolbar::after{clear:both}.dark-List-actions{display:inline-block}.dark-List-actions>*{margin-right:.3125rem}.dark-List-header{padding:.625rem}.dark-List-header>*+.dark-Button,.dark-List-header>*+.dark-ButtonGroup,.dark-List-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-List-header+.dark-List-toolbar{padding-top:0}.dark-List-heading{padding:.3125rem 0}.dark-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);padding:.625rem}.dark-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-List-fixedTop .dark-Cards-toolbar{margin-bottom:0}.dark-List-fixedTop:empty{display:none}.dark-List--unsaved .dark-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.dark-List-dragTip{width:100%;color:#2296f3;clear:both;margin-top:.3125rem}.dark-List-placeholder{color:#6c6c6c;text-align:center;min-height:1.875rem;line-height:1.875rem}.dark-ListGroup{max-width:25rem;display:flex;flex-direction:column}.dark-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #656565}.dark-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.dark-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.dark-ListGroup-item:hover{z-index:1}.dark-ListGroup-item.is-active{z-index:2}.dark-ListGroup-item.is-disabled{color:#6c6c6c}.dark-ListGroup--expanded .dark-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.dark-ListGroup--expanded .dark-ListGroup-item:last-child{margin-bottom:0}.dark-ListItem{position:relative;display:block;padding:.625rem .9375rem}.dark-ListItem::before,.dark-ListItem::after{display:table;content:''}.dark-ListItem::after{clear:both}.dark-ListItem+.dark-ListItem{border-top:.0625rem solid #727272}.dark-ListItem:nth-child(even){background-color:#333538}.dark-ListItem-checkBtn{float:left;margin-right:.625rem}.dark-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.dark-ListItem-actions{float:right}.dark-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#fff;font-weight:400}.dark-ListItem-content{overflow:hidden}.dark-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.dark-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.dark-ListItem-fieldLabel{width:9.375rem;color:#6c6c6c}.dark-ListItem.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-ListItem.is-checked+.dark-ListItem{border-color:#000}.dark-ListItem.is-checked .dark-ListItem-fieldLabel{color:#fff}.dark-ListItem.is-modified,.dark-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#f3f1f1}.dark-ListItem.is-modified+.dark-ListItem,.dark-ListItem.is-moved+.dark-ListItem{border-color:#b7d0fc}.dark-ListItem.is-modified .dark-ListItem-fieldLabel,.dark-ListItem.is-moved .dark-ListItem-fieldLabel{color:#fff}.dark-ListItem.is-dragging{opacity:.1}.dark-Cards-toolbar{padding:0;margin-bottom:.9375rem}.dark-Cards-toolbar::before,.dark-Cards-toolbar::after{display:table;content:''}.dark-Cards-toolbar::after{clear:both}.dark-Cards-actions{display:inline-block}.dark-Cards-actions>*{margin-right:.3125rem}.dark-Cards-heading{padding:.3125rem 0}.dark-Cards-header{padding:0}.dark-Cards-header>*+.dark-Button,.dark-Cards-header>*+.dark-ButtonGroup,.dark-Cards-header>*+.dark-ButtonToolbar{margin-left:.3125rem}.dark-Cards-header+.dark-Cards-toolbar{padding-top:0}.dark-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);padding:.625rem}.dark-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.dark-Cards-fixedTop .dark-Cards-toolbar{margin-bottom:0}.dark-Cards-fixedTop:empty{display:none}.dark-Cards--unsaved .dark-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.dark-Cards-dragTip{width:100%;color:#2296f3;clear:both;margin-top:.3125rem}.dark-Cards-placeholder{background:#fff;color:#6c6c6c;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #656565;border-radius:.142rem}.dark-Cards-body>div{display:flex}.dark-Cards--masonry{display:block;column-gap:0;column-fill:initial}.dark-Cards--masonry:after{content:none}.dark-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.dark-Cards--masonrySm1{column-count:12}.dark-Cards--masonrySm2{column-count:6}.dark-Cards--masonrySm3{column-count:4}.dark-Cards--masonrySm4{column-count:3}.dark-Cards--masonrySm6{column-count:2}.dark-Cards--masonrySm12{column-count:1}.dark-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.dark-Cards--masonryMd1{column-count:12}.dark-Cards--masonryMd2{column-count:6}.dark-Cards--masonryMd3{column-count:4}.dark-Cards--masonryMd4{column-count:3}.dark-Cards--masonryMd6{column-count:2}.dark-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.dark-Cards--masonryLg1{column-count:12}.dark-Cards--masonryLg2{column-count:6}.dark-Cards--masonryLg3{column-count:4}.dark-Cards--masonryLg4{column-count:3}.dark-Cards--masonryLg6{column-count:2}.dark-Cards--masonryLg12{column-count:1}}.dark-Card{background-color:#302d2a;border:.0625rem solid #656565;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.dark-Card-title{color:#fff;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dark-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#6c6c6c;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.dark-Card-title+.dark-Card-subTitle{margin-top:.3125rem}.dark-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.dark-Card-checkBtn .dark-Checkbox{margin-right:0}.dark-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.dark-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.dark-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.dark-Card-avtar img{max-width:100%}.dark-Card-avtarText{background-color:#0983ff;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.dark-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.dark-Card-highlight{background-color:#32d74b;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.dark-Card-body{padding:.9375rem;flex:1 0 auto}.dark-Card-heading+.dark-Card-body{padding-top:.3125rem}.dark-Card-field{position:relative;display:flex;flex-wrap:nowrap}.dark-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.dark-Card-fieldLabel{width:3.75rem;color:#6c6c6c}.dark-Card-actions{border-top:.0625rem solid #727272;display:flex;flex-direction:row;width:100%;table-layout:fixed}.dark-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#727272;border-style:solid;border-width:0 .0625rem 0 0;color:#f3f1f1;text-align:center;line-height:2.5rem;font-size:.875rem}.dark-Card-actions>a:not(.is-disabled){cursor:pointer}.dark-Card-actions>a:not(.is-disabled):hover{background-color:#1e1f22;color:#f3f1f1;text-decoration:none}.dark-Card-actions>a:last-child{border:0}.dark-Card-actions>a.is-disabled{color:#6c6c6c}.dark-Card-actions>a.is-disabled:hover{text-decoration:none}.dark-Card.is-checked{background-color:#141316;border-color:#000;color:#f3f1f1}.dark-Card.is-checked .dark-Card-actions,.dark-Card.is-checked .dark-Card-actions>a{border-color:#000;color:#f3f1f1}.dark-Card.is-checked .dark-Card-fieldLabel{color:#fff}.dark-Card.is-checked .dark-Card-actions>a:hover{background-color:#c2ecf9;color:#dbd6d6}.dark-Card.is-modified,.dark-Card.is-moved{background-color:#1e1f22;border-color:#060607;color:#f3f1f1}.dark-Card.is-modified .dark-Card-actions,.dark-Card.is-modified .dark-Card-actions>a,.dark-Card.is-moved .dark-Card-actions,.dark-Card.is-moved .dark-Card-actions>a{border-color:#060607;color:#f3f1f1}.dark-Card.is-modified .dark-Card-fieldLabel,.dark-Card.is-moved .dark-Card-fieldLabel{color:#fff}.dark-Card.is-modified .dark-Card-actions>a:hover,.dark-Card.is-moved .dark-Card-actions>a:hover{background-color:#121314;color:#dbd6d6}.is-dragging>.dark-Card{opacity:.1}.dark-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.dark-Field-quickEditBtn:hover{color:inherit;opacity:1}.dark-Field--quickEditable{outline:0;position:relative}.dark-Field--quickEditable:focus{position:relative}.dark-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #2296f3}.dark-Field--quickEditable:hover .dark-Field-quickEditBtn{visibility:visible}.dark-QuickEdit-popover{min-width:20rem;max-width:40rem}.dark-QuickEdit-popover .dark-Panel{margin-bottom:0;border:0}.dark-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.dark-Field-popOverBtn:hover{color:inherit;opacity:1}.dark-Field--popOverAble{outline:0;position:relative}.dark-Field--popOverAble:hover .dark-Field-popOverBtn{visibility:visible}.dark-PopOverAble-popover{min-width:20rem;max-width:40rem}.dark-PopOverAble-popover .dark-Panel{margin-bottom:0;border:0}.dark-Field-copyBtn{color:#6c757d;margin-left:.3125rem;display:inline-block;cursor:pointer}.dark-Field-copyBtn:hover{color:#212529}.dark-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #656565;height:.125rem;font-size:0}.dark-Divider--solid{border-bottom-style:solid}.dark-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.dark-Pagination>li{display:inline}.dark-Pagination>li>a,.dark-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.875rem}.dark-Pagination>li>a:hover,.dark-Pagination>li>span:hover,.dark-Pagination>li>a:focus,.dark-Pagination>li>span:focus{background-color:transparent;color:#0983ff}.dark-Pagination>li.is-disabled>span,.dark-Pagination>li.is-disabled>a{cursor:not-allowed}.dark-Pagination>li.is-disabled>a,.dark-Pagination>li.is-disabled>span,.dark-Pagination>li.is-disabled>a:hover,.dark-Pagination>li.is-disabled>span:hover,.dark-Pagination>li.is-disabled>a:focus,.dark-Pagination>li.is-disabled>span:focus{color:#ccc}.dark-Pagination>li.is-active>a,.dark-Pagination>li.is-active>span,.dark-Pagination>li.is-active>a:hover,.dark-Pagination>li.is-active>span:hover,.dark-Pagination>li.is-active>a:focus,.dark-Pagination>li.is-active>span:focus{background-color:#0983ff;color:#fff;border:0}.dark-Pagination-prev>span{cursor:pointer}.dark-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.dark-Pagination-next>span{cursor:pointer}.dark-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.dark-Pagination-inputGroup .dark-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #656565;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.dark-Pagination-inputGroup .dark-Pagination-input:focus{outline:0;border:.0625rem solid #0983ff}.dark-Pagination-inputGroup .dark-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.dark-Wrapper{padding:.9375rem}.dark-Wrapper--xs{padding:.3125rem}.dark-Wrapper--sm{padding:.625rem}.dark-Wrapper--md{padding:1.25rem}.dark-Wrapper--lg{padding:1.875rem}.dark-Wrapper--xl{padding:3.125rem}.dark-Wrapper--none{padding:0}.dark-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.dark-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.dark-StatusField svg.dark-Status-icon{width:1.25rem;height:1.25rem;top:0}.dark-StatusField .dark-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.dark-StatusField .dark-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #dc3545;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.dark-StatusField .dark-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #0983ff;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.dark-StatusField .dark-Status-icon.icon-warning{color:#ff9f0b}.dark-Status-icon.rolling+.dark-StatusField-label{color:#ff9f0b}.dark-Status-icon.icon-success+.dark-StatusField-label{color:#32d74b}.dark-Status-icon.icon-fail+.dark-StatusField-label{color:#dc3545}.dark-Status-icon.icon-warning+.dark-StatusField-label{color:#ff9f0b}.dark-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.dark-Carousel.dark-Carousel--light .dark-Carousel-dot{background-color:#fff}.dark-Carousel.dark-Carousel--light svg{fill:#fff}.dark-Carousel.dark-Carousel--light .dark-Carousel-item .title,.dark-Carousel.dark-Carousel--light .dark-Carousel-item .description{color:#fff}.dark-Carousel.dark-Carousel--dark .dark-Carousel-dot{background-color:#000}.dark-Carousel.dark-Carousel--dark svg{fill:#000}.dark-Carousel.dark-Carousel--dark .dark-Carousel-item .title,.dark-Carousel.dark-Carousel--dark .dark-Carousel-item .description{color:#000}.dark-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.dark-Carousel-container .dark-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.dark-Carousel-container .dark-Carousel-item.fade{opacity:0}.dark-Carousel-container .dark-Carousel-item.fade.in{opacity:1}.dark-Carousel-container .dark-Carousel-item.slide{transform:translateX(100%)}.dark-Carousel-container .dark-Carousel-item.slide.in{transform:translateX(0)}.dark-Carousel-container .dark-Carousel-item.slide.out{transform:translateX(-100%)}.dark-Carousel-container .dark-Carousel-item.slideRight{transform:translateX(-100%)}.dark-Carousel-container .dark-Carousel-item.slideRight.in{transform:translateX(0)}.dark-Carousel-container .dark-Carousel-item.slideRight.out{transform:translateX(100%)}.dark-Carousel-container .dark-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.dark-Carousel-container .dark-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.dark-Carousel-container .dark-Carousel-item .image{width:100%;height:100%;background-size:cover}.dark-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.dark-Carousel-dotsControl .dark-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.dark-Carousel-dotsControl .dark-Carousel-dot.is-active{opacity:1}.dark-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.dark-Carousel-arrowsControl .dark-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.dark-Carousel-arrowsControl .dark-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.dark-Carousel-arrowsControl .dark-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.dark-Carousel-arrowsControl .dark-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.dark-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.dark-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.dark-ImageGallery-close:hover{color:#fff}.dark-ImageGallery-close>svg{width:1rem;height:1rem}.dark-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.dark-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.dark-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.dark-ImageGallery-prevBtn,.dark-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.dark-ImageGallery-prevBtn>svg,.dark-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.dark-ImageGallery-prevBtn:hover,.dark-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.dark-ImageGallery-prevBtn.is-disabled,.dark-ImageGallery-nextBtn.is-disabled{pointer-events:none}.dark-ImageGallery-main:hover .dark-ImageGallery-prevBtn,.dark-ImageGallery-main:hover .dark-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.dark-ImageGallery-prevBtn{left:1.25rem}.dark-ImageGallery-nextBtn{right:1.25rem}.dark-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.dark-ImageGallery-prevList,.dark-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.dark-ImageGallery-prevList.is-disabled,.dark-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.dark-ImageGallery-prevList:hover,.dark-ImageGallery-nextList:hover{background:#000;color:#fff}.dark-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.dark-ImageGallery-items{display:inline-block;white-space:nowrap}.dark-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.dark-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.dark-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.dark-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.dark-ImageGallery-item:hover{border:1px solid #e5e5e5}.dark-ImageGallery-item:hover:after{display:none}.dark-ImageGallery-item.is-active{border:1px solid #108cee}.dark-ImageGallery-item.is-active:after{display:none}.dark-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.dark-Images-item{display:flex;margin:.3125rem}.dark-Image{display:inline-block;width:7.5rem;border:.0625rem solid #656565;padding:.3125rem}.dark-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.dark-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.dark-Image-thumb--4-3{height:5.0625rem}.dark-Image-thumb--16-9{height:3.79688rem}.dark-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.dark-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.dark-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.dark-Image-caption{font-size:.75rem}.dark-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.dark-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.dark-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.dark-Image-thumb:hover .dark-Image-overlay{display:flex}.dark-ImageField{display:inline-block;position:relative}.dark-InputBox{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-InputBox input::placeholder{color:#6c6c6c;user-select:none}.dark-InputBox--inline{display:inline-flex}.dark-InputBox>input[readonly]{cursor:inherit}.dark-InputBox.is-error{border-color:#dc3545;background-color:#3c3c3c}.dark-InputBox.is-focused{border-color:#2296f3;box-shadow:none}.dark-InputBox.is-clickable:hover{border-color:#2296f3;box-shadow:none;cursor:pointer}.dark-InputBox.is-error.is-focused{border-color:#dc3545}.dark-InputBox.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-InputBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-InputBox-clear:hover svg{fill:#3d4246}.dark-InputBox>svg{display:inline-block;width:14px;color:#6c757d}.dark-InputBox>a{cursor:pointer}.dark-ResultBox{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:2.125rem;align-items:center}.dark-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-ResultBox input::placeholder{color:#6c6c6c;user-select:none}.dark-ResultBox.is-error{border-color:#dc3545;background-color:#3c3c3c}.dark-ResultBox.is-focused,.dark-ResultBox:focus{outline:0;border-color:#2296f3;box-shadow:none}.dark-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.dark-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#2296f3;box-shadow:none}.dark-ResultBox.is-error.is-focused{border-color:#dc3545}.dark-ResultBox.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-ResultBox-singleValue{padding:0 .5625rem}.dark-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.dark-ResultBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-ResultBox-clear:hover svg{fill:#3d4246}.dark-ResultBox-clear:hover{background:#f5f5f5}.dark-ResultBox-clear>svg{width:.75rem;height:.75rem}.dark-ResultBox>svg{display:inline-block;width:.875rem;color:#6c757d}.dark-ResultBox>a{cursor:pointer}.dark-ResultBox-value{background:#f5f5f5;color:#000;font-size:.875rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.dark-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.dark-ResultBox-value>a:hover{color:#666}.dark-ResultBox-value>a>svg{width:.625rem;height:.625rem}.dark-ResultBox-value:hover{background:#ebebeb}.dark-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.dark-ResultBox-value.is-disabled>a{color:#ebebeb}.dark-ResultBox-placeholder{color:#6c6c6c;user-select:none;margin-left:8px}.dark-ResultBox>input{padding-left:8px;min-height:24px}.dark-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.875rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:.142rem;height:30px}.dark-SearchBox:hover{background-color:rgba(60,60,60,.6)}.dark-SearchBox.is-active{background-color:#3c3c3c;border:.0625rem solid #656565;width:150px}.dark-SearchBox.is-active>input{flex-grow:1}.dark-SearchBox-activeBtn,.dark-SearchBox-cancelBtn{cursor:pointer;color:#6c757d}.dark-SearchBox-activeBtn:hover,.dark-SearchBox-cancelBtn:hover{color:#212529}.dark-SearchBox>input{outline:0;border:0;background:transparent;color:#f3f1f1;width:0;height:1.25rem}.dark-SearchBox>input::placeholder{color:#6c6c6c;user-select:none}.dark-ListMenu{background:#fff;min-width:12.5rem;border:.0625rem solid #656565;border-radius:.125rem}.dark-ListMenu-groupLabel{font-size:.6875rem;color:#6c6c6c;padding:.125rem 0 0 .4375rem}.dark-ListMenu-group:not(:first-child)>.dark-ListMenu-groupLabel{border-top:.0625rem solid #6b6b6b}.dark-ListMenu-item{display:flex;min-height:2.125rem;color:#f3f1f1;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.dark-ListMenu-item.is-active{color:#2296f3;background-color:transparent}.dark-ListMenu-item.is-highlight{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-ListMenu-item.is-disabled{color:#6c6c6c;background-color:transparent}.dark-ListMenu-placeholder{display:block;min-height:2.125rem;color:#6c6c6c;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.dark-PopOver>.dark-ListMenu{border-color:#2296f3}.dark-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.dark-Collapse--xs,fieldset.dark-Collapse--sm,fieldset.dark-Collapse--base,fieldset.dark-Collapse--md,fieldset.dark-Collapse--lg{position:relative}fieldset.dark-Collapse--xs:after,fieldset.dark-Collapse--sm:after,fieldset.dark-Collapse--base:after,fieldset.dark-Collapse--md:after,fieldset.dark-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #656565;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.dark-Collapse--xs>legend,fieldset.dark-Collapse--sm>legend,fieldset.dark-Collapse--base>legend,fieldset.dark-Collapse--md>legend,fieldset.dark-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#333538;border-left:0!important}fieldset.dark-Collapse--xs .collapse,fieldset.dark-Collapse--sm .collapse,fieldset.dark-Collapse--base .collapse,fieldset.dark-Collapse--md .collapse,fieldset.dark-Collapse--lg .collapse{position:relative}fieldset.dark-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#fff;border-left:#0983ff .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.dark-Collapse--xs{padding:20px 5px 5px}fieldset.dark-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.dark-Collapse--xs:after{top:6px}fieldset.dark-Collapse--sm{padding:25px 10px 10px}fieldset.dark-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.dark-Collapse--sm:after{top:6px}fieldset.dark-Collapse--base{padding:30px 15px 15px}fieldset.dark-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.dark-Collapse--base:after{top:7px}fieldset.dark-Collapse--md{padding:30px 20px 20px}fieldset.dark-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.dark-Collapse--md:after{top:7px}fieldset.dark-Collapse--lg{padding:40px 30px 30px}fieldset.dark-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.dark-Collapse--lg:after{top:9px}.dark-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.dark-Form-group{margin-bottom:.9375rem}.dark-Form-value>.dark-Form-group{margin-bottom:.375rem}.dark-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.dark-Form-group--hor.v-middle{align-items:center}.dark-Form-group--hor.v-bottom{align-items:flex-end}.dark-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-group--hor>.dark-Form-item--inline{margin-right:0}.dark-Form-group--hor>.dark-Form-item,.dark-Form-group--hor>div>.dark-Form-item{margin-bottom:0}.dark-Form-group--hor .dark-Form-input>.dark-Form-group{margin-bottom:0}.dark-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.dark-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.dark-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.dark-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.dark-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.dark-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.dark-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.dark-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.dark-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.dark-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.dark-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.dark-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.dark-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.dark-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.dark-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.dark-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.dark-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.dark-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.dark-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.dark-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.dark-InputGroup{display:inline-flex;flex-wrap:nowrap}.dark-InputGroup.dark-Form-control--sizeXs,.dark-InputGroup.dark-Form-control--sizeSm,.dark-InputGroup.dark-Form-control--sizeMd,.dark-InputGroup.dark-Form-control--sizeLg{display:inline-flex}.dark-InputGroup-addOn,.dark-InputGroup .dark-Form-control{display:inline-block;white-space:nowrap}.dark-InputGroup-addOn{background:#3c3c3c;border:.0625rem solid #656565;line-height:1.25rem;height:2.125rem;box-sizing:border-box;padding:.375rem .625rem}.dark-InputGroup-addOn:not(:last-child){border-right:0}.dark-InputGroup-addOn:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup-addOn:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup-btn .dark-Button{border-radius:0;border:.0625rem solid #656565}.dark-InputGroup-btn:not(:last-child) .dark-Button{border-right:0}.dark-InputGroup-btn:first-child .dark-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup-btn:last-child .dark-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup .dark-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.dark-InputGroup .dark-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dark-InputGroup .dark-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.dark-InputGroup .dark-SelectControl .dark-Select{background-color:#333538;border:.0625rem solid #656565}.dark-InputGroup .dark-SelectControl:not(:last-child) .dark-Select{border-right:0}.dark-InputGroup .dark-SelectControl:first-child .dark-Select{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-InputGroup .dark-SelectControl:last-child .dark-Select{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-InputGroup .dark-SelectControl:not(:first-child) .dark-Select{border-top-left-radius:0;border-bottom-left-radius:0}.dark-InputGroup .dark-SelectControl:not(:last-child) .dark-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.dark-InputGroup.is-focused .dark-InputGroup-addOn,.dark-InputGroup.is-focused .dark-TextControl-input,.dark-InputGroup.is-focused .dark-Select,.dark-InputGroup.is-focused .dark-InputGroup-btn .dark-Button{border-color:#2296f3}.dark-InputGroup.is-focused .dark-Select{background-color:#302d2a}.dark-InputGroup.is-focused .dark-Select-arrow{color:#212529}.dark-InputGroup.is-focused .dark-InputGroup-addOn{color:#0983ff}.dark-InputGroup:not(.is-inline){display:flex}.dark-TextControl{position:relative;max-width:100%}.dark-TextControl.is-inline{display:inline-block;width:12.5rem}.dark-TextControl-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-TextControl-input input::placeholder{color:#6c6c6c;user-select:none}.dark-TextControl.is-error>.dark-TextControl-input{border-color:#dc3545;background-color:#3c3c3c}.dark-TextControl.is-focused>.dark-TextControl-input{border-color:#2296f3;box-shadow:none}.dark-TextControl.is-error.is-focused>.dark-TextControl-input{border-color:#dc3545}.dark-TextControl.is-disabled>.dark-TextControl-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-TextControl-spinner{line-height:1.25rem}.dark-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-TextControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-TextControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-TextControl.dark-Form-control--sizeXs>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeSm>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeMd>.dark-TextControl-input,.dark-TextControl.dark-Form-control--sizeLg>.dark-TextControl-input{min-width:100%;display:inline-flex}}.dark-TextControl-placeholder{color:#6c6c6c;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.dark-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.dark-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.dark-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.dark-TextControl--withAddOn.dark-Form-control--sizeXs,.dark-TextControl--withAddOn.dark-Form-control--sizeSm,.dark-TextControl--withAddOn.dark-Form-control--sizeMd,.dark-TextControl--withAddOn.dark-Form-control--sizeLg{display:inline-flex}.dark-TextControl--withAddOn.dark-Form-control--sizeXs>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeSm>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeMd>.dark-TextControl-input,.dark-TextControl--withAddOn.dark-Form-control--sizeLg>.dark-TextControl-input{min-width:unset}}.dark-TextControl--withAddOn>.dark-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.dark-TextControl--withAddOn>.dark-TextControl-input:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-input:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#3c3c3c;color:#f3f1f1;border-color:#656565;border-style:solid;border-width:.0625rem 0}.dark-TextControl--withAddOn>.dark-TextControl-addOn:first-child{border-left-width:.0625rem}.dark-TextControl--withAddOn>.dark-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-button>.dark-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #656565}.dark-TextControl--withAddOn>.dark-TextControl-button:not(:last-child) .dark-Button{border-right:0}.dark-TextControl--withAddOn>.dark-TextControl-button:first-child .dark-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.dark-TextControl--withAddOn>.dark-TextControl-button:last-child .dark-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.dark-TextControl--withAddOn.is-focused>.dark-TextControl-button .dark-Button{border-color:#2296f3}.dark-TextControl--withAddOn.is-error>.dark-TextControl-addOn{border-color:#dc3545}.dark-TextControl--withAddOn.is-focused>.dark-TextControl-addOn{border-color:#2296f3;color:#0983ff;box-shadow:none}.dark-TextControl--withAddOn.is-disabled>.dark-TextControl-addOn{color:#6c6c6c}.dark-TextControl-input--withAC{position:relative;flex-wrap:wrap}.dark-TextControl-input--withAC input{width:auto;color:#6c6c6c}.dark-TextControl-sugs{position:absolute;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.dark-TextControl-sugItem{padding:.375rem .75rem}.dark-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#3d4246}.dark-TextControl-sugItem:not(.is-disabled){cursor:pointer}.dark-TextControl-sugItem.is-highlight{color:#2296f3;background:rgba(0,126,255,.08)}.dark-TextControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.dark-TextControl-input--multiple{height:auto;min-height:2.125rem}.dark-TextControl-input--multiple .dark-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.dark-TextControl-input--multiple .dark-TextControl-valueWrap>input{margin-bottom:.3125rem}.dark-TextControl-input--multiple .dark-TextControl-value{line-height:1.125rem;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-TextControl-valueIcon:hover{background-color:#22201e}.dark-TextControl-input--multiple .dark-TextControl-valueLabel{padding:0 .3125rem}.dark-TextareaControl{border:1px solid #656565;border-radius:.142rem;line-height:1.42857;background:#3c3c3c;padding:.375rem .75rem;font-size:.875rem;outline:0;resize:none;display:block;width:100%}.dark-TextareaControl.is-error{border-color:#dc3545}.dark-TextareaControl:focus,.dark-TextareaControl.is-focused{border-color:#2296f3;box-shadow:none}.dark-TextareaControl.is-disabled,.dark-TextareaControl[disabled]{background:#e9ecef;color:#6c6c6c}.dark-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.dark-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.dark-Checkbox:hover input:not(:disabled)+i{border-color:#0983ff}.dark-Checkbox>i{cursor:pointer;line-height:1;background:linear-gradient(#515151,#4b4b4b);display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.dark-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.dark-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.dark-Checkbox>i+span:empty{display:none}.dark-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.dark-Checkbox:hover>i+span>a{display:inline-block}.dark-Checkbox--checkbox{padding-left:1.25rem}.dark-Checkbox--checkbox input{margin-left:-1.25rem}.dark-Checkbox--checkbox input:checked+i{border-color:#0983ff}.dark-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.625rem;background:#0983ff}.dark-Checkbox--checkbox input[disabled]+i{border-color:#727272;cursor:not-allowed}.dark-Checkbox--checkbox input[disabled]+i:before{background-color:#727272;border-color:#fff}.dark-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#6c6c6c}.dark-Checkbox--checkbox>i{width:1.25rem;height:1.25rem;border:.0625rem solid #656565;border-radius:.142rem;margin-left:-1.25rem;margin-top:-.1875rem}.dark-Checkbox--full.dark-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#656565}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked+i{border-color:#0983ff;background:#0983ff}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked+i:before{width:.75rem;height:.375rem;border-color:#fff}.dark-Checkbox--full.dark-Checkbox--checkbox input:checked[disabled]+i{border-color:#727272;background-color:#727272}.dark-Checkbox--full.dark-Checkbox--checkbox>i{position:relative;cursor:pointer}.dark-Checkbox--full.dark-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.dark-Checkbox--radio{padding-left:1.25rem}.dark-Checkbox--radio input{margin-left:-1.25rem}.dark-Checkbox--radio input:checked+i{border-color:#0983ff}.dark-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#0983ff;border-radius:50%}.dark-Checkbox--radio input[disabled]+i{border-color:#727272;cursor:not-allowed}.dark-Checkbox--radio input[disabled]+i:before{background-color:#727272}.dark-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#6c6c6c}.dark-Checkbox--radio>i{cursor:pointer;width:1.25rem;height:1.25rem;border:.0625rem solid #656565;margin-left:-1.25rem;margin-top:-.125rem;border-radius:50%}.dark-Checkbox--sm{padding-left:1rem}.dark-Checkbox--sm input{margin-left:-1rem}.dark-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.dark-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.dark-Checkbox--sm>i+span{margin-left:.3125rem}.dark-Checkbox--sm.dark-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.dark-Checkbox-desc{color:#6c6c6c;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.dark-CheckboxControl,.dark-RadiosControl,.dark-CheckboxesControl{padding-top:.4375rem}.dark-RadiosControl .dark-Checkbox,.dark-CheckboxesControl .dark-Checkbox{display:block;margin-bottom:.4375rem}.dark-RadiosControl.is-inline .dark-Checkbox,.dark-CheckboxesControl.is-inline .dark-Checkbox{display:inline-block;margin-right:1.25rem}.dark-RadiosControl-group .dark-RadiosControl-group,.dark-RadiosControl-group .dark-CheckboxesControl-group,.dark-CheckboxesControl-group .dark-RadiosControl-group,.dark-CheckboxesControl-group .dark-CheckboxesControl-group{padding-left:5rem}.dark-RadiosControl-group .dark-RadiosControl-group::before,.dark-RadiosControl-group .dark-RadiosControl-group::after,.dark-RadiosControl-group .dark-CheckboxesControl-group::before,.dark-RadiosControl-group .dark-CheckboxesControl-group::after,.dark-CheckboxesControl-group .dark-RadiosControl-group::before,.dark-CheckboxesControl-group .dark-RadiosControl-group::after,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::before,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::after{display:table;content:''}.dark-RadiosControl-group .dark-RadiosControl-group::after,.dark-RadiosControl-group .dark-CheckboxesControl-group::after,.dark-CheckboxesControl-group .dark-RadiosControl-group::after,.dark-CheckboxesControl-group .dark-CheckboxesControl-group::after{clear:both}.dark-RadiosControl-group .dark-RadiosControl-group>.dark-RadiosControl-groupLabel,.dark-RadiosControl-group .dark-RadiosControl-group>.dark-CheckboxesControl-groupLabel,.dark-RadiosControl-group .dark-CheckboxesControl-group>.dark-RadiosControl-groupLabel,.dark-RadiosControl-group .dark-CheckboxesControl-group>.dark-CheckboxesControl-groupLabel,.dark-CheckboxesControl-group .dark-RadiosControl-group>.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-group .dark-RadiosControl-group>.dark-CheckboxesControl-groupLabel,.dark-CheckboxesControl-group .dark-CheckboxesControl-group>.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-group .dark-CheckboxesControl-group>.dark-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.dark-RadiosControl-groupLabel,.dark-CheckboxesControl-groupLabel{display:block}.dark-Checkboxes>.dark-Checkbox{display:block;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem .4375rem 1.875rem}.dark-Checkboxes--inline>.dark-Checkbox{display:inline-block}.dark-Checkboxes-addBtn{display:block;cursor:pointer}.dark-Checkboxes-addBtn:hover{text-decoration:none}.dark-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.dark-ListCheckboxes-group:not(:first-child)>.dark-ListCheckboxes-itemLabel,.dark-ListRadios-group:not(:first-child)>.dark-ListCheckboxes-itemLabel,.dark-ListCheckboxes-group:not(:first-child)>.dark-ListRadios-itemLabel,.dark-ListRadios-group:not(:first-child)>.dark-ListRadios-itemLabel{border-top:.0625rem solid #6b6b6b}.dark-ListCheckboxes-group>.dark-ListCheckboxes-itemLabel,.dark-ListRadios-group>.dark-ListCheckboxes-itemLabel,.dark-ListCheckboxes-group>.dark-ListRadios-itemLabel,.dark-ListRadios-group>.dark-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#6c6c6c}.dark-ListCheckboxes-item,.dark-ListRadios-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-ListCheckboxes-item>.dark-Checkbox,.dark-ListRadios-item>.dark-Checkbox{margin-right:0}.dark-ListCheckboxes-item.is-active,.dark-ListRadios-item.is-active{color:#2296f3;background-color:transparent}.dark-ListCheckboxes-item:hover,.dark-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.dark-ListCheckboxes-item.is-disabled,.dark-ListRadios-item.is-disabled{pointer-events:none;color:#6c6c6c}.dark-ListCheckboxes-group>.dark-ListCheckboxes-items>.dark-ListCheckboxes-item,.dark-ListRadios-group>.dark-ListCheckboxes-items>.dark-ListCheckboxes-item,.dark-ListCheckboxes-group>.dark-ListRadios-items>.dark-ListCheckboxes-item,.dark-ListRadios-group>.dark-ListRadios-items>.dark-ListCheckboxes-item,.dark-ListCheckboxes-group>.dark-ListCheckboxes-items>.dark-ListRadios-item,.dark-ListRadios-group>.dark-ListCheckboxes-items>.dark-ListRadios-item,.dark-ListCheckboxes-group>.dark-ListRadios-items>.dark-ListRadios-item,.dark-ListRadios-group>.dark-ListRadios-items>.dark-ListRadios-item{padding-left:.9375rem}.dark-ListCheckboxes-itemLabel,.dark-ListRadios-itemLabel{flex-grow:1}.dark-ListCheckboxes-placeholder,.dark-ListRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-TableCheckboxes .dark-Table-content{border-top:.0625rem solid #656565}.dark-TableCheckboxes .dark-Table-table>thead>tr>th,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.dark-TableCheckboxes .dark-Table-table>thead>tr>th{padding-top:.375rem}.dark-TableCheckboxes .dark-Table-table>thead>tr>th:first-child,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.dark-TableCheckboxes .dark-Table-table>thead>tr>th:last-child,.dark-TableCheckboxes .dark-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.dark-TableCheckboxes .dark-Table-table>tbody>tr{cursor:pointer}.dark-TreeCheckboxes .dark-Table-expandBtn,.dark-TreeRadios .dark-Table-expandBtn{color:#6c757d;margin-right:5px}.dark-TreeCheckboxes-sublist,.dark-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.dark-TreeCheckboxes-sublist:before,.dark-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:1.0625rem;left:-19px;border-left:dashed 1px #6c757d}.dark-TreeCheckboxes-item,.dark-TreeRadios-item{position:relative}.dark-TreeCheckboxes-item.is-expanded>.dark-TreeCheckboxes-sublist,.dark-TreeRadios-item.is-expanded>.dark-TreeCheckboxes-sublist,.dark-TreeCheckboxes-item.is-expanded>.dark-TreeRadios-sublist,.dark-TreeRadios-item.is-expanded>.dark-TreeRadios-sublist{display:block}.dark-TreeCheckboxes-item:not(:last-child)>.dark-TreeCheckboxes-sublist:before,.dark-TreeRadios-item:not(:last-child)>.dark-TreeCheckboxes-sublist:before,.dark-TreeCheckboxes-item:not(:last-child)>.dark-TreeRadios-sublist:before,.dark-TreeRadios-item:not(:last-child)>.dark-TreeRadios-sublist:before{bottom:0}.dark-TreeCheckboxes-sublist .dark-TreeCheckboxes-item:before,.dark-TreeRadios-sublist .dark-TreeCheckboxes-item:before,.dark-TreeCheckboxes-sublist .dark-TreeRadios-item:before,.dark-TreeRadios-sublist .dark-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:1.0625rem;width:19px;left:-19px;border-top:dashed 1px #6c757d}.dark-TreeCheckboxes-itemInner,.dark-TreeRadios-itemInner{display:flex;align-items:center;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-TreeCheckboxes-itemInner>.dark-Checkbox,.dark-TreeRadios-itemInner>.dark-Checkbox{margin-right:0;margin-left:.625rem}.dark-TreeCheckboxes-itemInner.is-active,.dark-TreeRadios-itemInner.is-active{color:#2296f3;background-color:transparent}.dark-TreeCheckboxes-itemInner:hover,.dark-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.dark-TreeCheckboxes-itemInner.is-disabled,.dark-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#6c6c6c}.dark-TreeCheckboxes-itemLabel,.dark-TreeRadios-itemLabel{flex-grow:1}.dark-TreeCheckboxes-placeholder,.dark-TreeRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-ChainedCheckboxes{display:flex;flex-direction:row}.dark-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.dark-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #656565}.dark-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#6c6c6c}.dark-ChainedCheckboxes-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.dark-ChainedCheckboxes-item>.dark-Checkbox{margin-right:0}.dark-ChainedCheckboxes-item.is-active{color:#2296f3;background-color:transparent}.dark-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.dark-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#6c6c6c}.dark-ChainedCheckboxes-itemLabel{flex-grow:1}.dark-ChainedCheckboxes-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-AssociatedCheckboxes{display:flex;flex-direction:row}.dark-AssociatedCheckboxes-left,.dark-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.dark-AssociatedCheckboxes-left{border-right:1px solid #656565}.dark-AssociatedCheckboxes-reload{text-align:center;color:#2296f3;margin:20px 0 0}.dark-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.dark-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#6c6c6c;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.dark-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#6c6c6c}.dark-CityPicker .dark-Select{margin-right:.3125rem;margin-bottom:.3125rem}.dark-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem}.dark-CityPicker-input::placeholder{color:#6c6c6c;user-select:none}.dark-CityPicker-input:focus{border-color:#2296f3;box-shadow:none}.dark-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#2296f3;margin:0;vertical-align:middle;text-align:left}.dark-Switch.is-disabled{background-color:#ccc}.dark-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#6c757d;border:.0625rem solid #545b62;border-radius:1.875rem;transition:all .2s}.dark-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.dark-Switch input{position:absolute;opacity:0}.dark-Switch input:disabled+i:before,.dark-Switch input:disabled:checked+i:before{color:#fff;background-color:#ccc;cursor:not-allowed}.dark-Switch input:disabled+i:after,.dark-Switch input:disabled:checked+i:after{background-color:#fff;color:#fff}.dark-Switch input:checked+i:before{left:100%;border-width:0}.dark-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.dark-Switch-option{vertical-align:middle;margin-left:.625rem}.dark-Switch-option:first-child{margin-left:0;margin-right:.625rem}.dark-Switch-option:empty{display:none}.dark-SwitchControl{padding-top:.375rem}.dark-SwitchControl.is-inline{display:inline-block}.dark-Number{margin:0;padding:0;line-height:2.125rem;font-size:.875rem;height:2.125rem;display:inline-block;vertical-align:middle;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem}.dark-Number-focused{border-color:#2296f3;box-shadow:none}.dark-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.dark-Number-handler-active{background:#ddd}.dark-Number-handler-up-inner,.dark-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.dark-Number:hover{border-color:#2296f3}.dark-Number:hover .dark-Number-handler-up,.dark-Number:hover .dark-Number-handler-wrap{border-color:#2296f3}.dark-Number-disabled:hover{border-color:#656565}.dark-Number-disabled:hover .dark-Number-handler-up,.dark-Number-disabled:hover .dark-Number-handler-wrap{border-color:#656565}.dark-Number-input-wrap{overflow:hidden;height:100%}.dark-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:2rem;height:100%;transition:all .3s ease;border:0;border-radius:.142rem;padding:0 .75rem}.dark-Number-handler{background-color:#333538;color:#f3f1f1;font-family:inherit;font-size:.875rem}.dark-Number-handler:hover{background-color:#27282b;color:#f3f1f1}.dark-Number-handler:hover:active{background-color:#27282b}.dark-Number-handler-up-inner{transform:none}.dark-Number-handler-up-inner:after{content:"+"}.dark-Number-handler-down-inner:after{content:"-"}.dark-Number-handler-wrap{float:right;border-left:.0625rem solid #656565;width:1.25rem;height:100%}.dark-Number-handler{line-height:.875rem;height:1rem}.dark-Number-handler-up{border-bottom:.0625rem solid #656565;padding-top:.0625rem}.dark-Number-handler-down-disabled,.dark-Number-handler-up-disabled{background-color:#302d2a;pointer-events:none;color:#6c6c6c}.dark-Number-disabled .dark-Number-input{opacity:.72;cursor:not-allowed;background-color:#3c3c3c}.dark-Number-disabled .dark-Number-handler{opacity:.72}.dark-Number-disabled .dark-Number-handler:hover{color:#6c6c6c;border-color:#656565}.dark-NumberControl:not(.is-inline)>.dark-Number{display:block}.dark-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.875rem;border:.0625rem solid #656565;background:#333538;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#f3f1f1}.dark-Select:hover{background:#191c22;border-color:#656565}.dark-Select:hover .dark-Select-arrow:before{color:#212529}.dark-Select.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.dark-Select-placeholder{color:#6c6c6c;line-height:1.42857;user-select:none;white-space:nowrap}.dark-Select-value{line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.dark-Select--multi{height:auto;min-height:2.125rem}.dark-Select--multi .dark-Select-valueWrap{margin-bottom:-.3125rem}.dark-Select--multi .dark-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.dark-Select--multi .dark-Select-values+.dark-Select-input{transform:translateY(0)}.dark-Select--multi .dark-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-Select--multi .dark-Select-valueLabel{padding:0 .3125rem}.dark-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Select-valueIcon:hover{background-color:#22201e}.dark-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#3e3a36;background:#3e3a36}.dark-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.dark-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#6c757d;width:10px;height:10px;top:0}.dark-Select.is-opened .dark-Select-arrow>svg{transform:rotate(180deg)}.dark-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.dark-Select-input{cursor:pointer;outline:0;border:0;margin:0 .75rem;height:2.125rem;font-size:.75rem;border-bottom:1px solid #656565;display:flex;align-items:center}.dark-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.dark-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.dark-Select-option{cursor:pointer;min-width:7.5rem;padding:.4375rem .75rem}.dark-Select-option.is-active{color:#2296f3;background-color:transparent}.dark-Select-option.is-highlight{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-Select-option.is-disabled{color:#6c6c6c;background-color:transparent}.dark-Select-option--placeholder{color:#6c6c6c}.dark-Select-option>label{display:block}.dark-Select-option>a{float:right;margin-left:.3125rem;display:none}.dark-Select-option.is-highlight>a{display:block}.dark-Select-noResult{color:#6c6c6c;line-height:1.42857;font-size:.75rem;user-select:none;padding:.4375rem .75rem}.dark-Select-option-hl{color:#dc3545}.dark-Select-addBtn{display:block;cursor:pointer;padding:.4375rem .75rem}.dark-Select-addBtn:hover{text-decoration:none}.dark-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.dark-Select.is-focused,.dark-Select.is-opened{border-color:#2296f3}.dark-Select-spinner{line-height:1.25rem}.dark-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.dark-Select-clear svg{fill:#6c757d;width:.625rem;height:.625rem;top:0}.dark-Select-clear:hover svg{fill:#3d4246}.dark-Select-popover{margin-top:-.0625rem;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;box-shadow:none;border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.dark-Select-popover.dark-PopOver--leftTopLeftBottom{margin-top:.0625rem}.dark-SelectControl:not(.is-inline)>.dark-Select{display:flex}@media (min-width:576px){.dark-Form-control--sizeXs>.dark-Select,.dark-Form-control--sizeSm>.dark-Select,.dark-Form-control--sizeMd>.dark-Select,.dark-Form-control--sizeLg>.dark-Select{min-width:100%;max-width:100%;display:inline-flex!important}.dark-Form-control--sizeXs>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeSm>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeMd>.dark-Select .dark-Select-valueWrap,.dark-Form-control--sizeLg>.dark-Select .dark-Select-valueWrap{width:0}}.dark-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.dark-Selections-title{height:2.125rem;background:#2f2f2f;font-size:.875rem;padding:.4375rem .625rem}.dark-Selections-placeholder{color:#6c6c6c;text-align:center;width:100%;flex-basis:2.125rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.875rem}.dark-Selections-items{flex-grow:1}.dark-Selections-item{display:flex;flex-direction:row;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem}.dark-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.dark-Selections-item>.dark-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#6c757d;cursor:move}.dark-Selections-item--dragging>*{opacity:.2}.dark-Selections-delBtn{color:#6c757d;cursor:pointer}.dark-Selections-delBtn:hover{color:#212529}.dark-Selections-delBtn>svg{width:12px;height:12px}.dark-ListControl-items{display:block;margin:-.3125rem}.dark-ListControl-items:empty{display:none}.dark-ListControl-item{position:relative;user-select:none;font-size:.875rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #656565;background-color:#333538;padding:.375rem .75rem;color:#f3f1f1;transition:none;max-width:14rem}.dark-ListControl-item:not(.is-disabled){cursor:pointer}.dark-ListControl-item .b-inherit{border-color:#f3f1f1}.dark-ListControl-item:hover{background-color:#212224;border-color:#4c4c4c;color:#f3f1f1}.dark-ListControl-item:hover .b-inherit{border-color:#4c4c4c}.dark-ListControl-item:hover:active,.dark-ListControl-item.is-active{background-color:#0983ff;border-color:#006ad5;color:#fff}.dark-ListControl-item:hover:active .b-inherit,.dark-ListControl-item.is-active .b-inherit{border-color:#fff}.dark-ListControl-item:hover:active:before,.dark-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#333538;right:0;bottom:0}.dark-ListControl-item:hover:active:after,.dark-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#0983ff;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.dark-ListControl-item.is-disabled{pointer-events:none;opacity:.6;border-color:#727272;background-color:#333538;color:#f3f1f1}.dark-ListControl-item.is-disabled:before{background-color:#f3f1f1}.dark-ListControl-item.is-disabled .b-inherit{border-color:#727272}.dark-ListControl-itemImage{margin:-.375rem -.75rem}.dark-ListControl-itemImage img{display:block;max-width:100%}.dark-ListControl-itemLabel{text-align:center}.dark-ListControl-itemImage+.dark-ListControl-itemLabel{margin-top:.375rem}.dark-ListControl-placeholder{color:#6c6c6c}.dark-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#f3f1f1;background-color:#333538;border-radius:.142rem}.dark-LocationPicker:not(.is-disabled){cursor:pointer}.dark-LocationPicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-LocationPicker:not(.is-disabled):hover .dark-DatePicker-toggler:before{color:#212529}.dark-LocationPicker.is-focused,.dark-LocationPicker.is-active{border-color:#2296f3;box-shadow:none}.dark-LocationPicker.is-disabled{background:#e9ecef}>.dark-LocationPicker.is-disabled-input{color:#6c6c6c}.dark-LocationPicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-LocationPicker-toggler{cursor:pointer;color:#6c757d}.dark-LocationPicker-toggler:hover{color:#212529}.dark-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-LocationPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-LocationPicker-clear:hover svg{fill:#3d4246}.dark-LocationControl{position:relative;width:100%}.dark-LocationControl:not(.is-inline)>.dark-LocationPicker{display:flex}.dark-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#2296f3}.dark-MapPicker-search{padding:5px 10px}.dark-MapPicker-map{display:block;width:100%;height:200px}.dark-MapPicker-item{padding:10px;position:relative;border-top:1px solid #656565}.dark-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.dark-MapPicker-itemTitle{font-size:.875rem}.dark-MapPicker-itemDesc{font-size:.75rem}.dark-MapPicker-sugItem{cursor:pointer;padding:.4375rem .75rem}.dark-MapPicker-sugItem:hover{color:#2296f3;background-color:transparent}.tangram-suggestion-main{display:none!important}.dark-MatrixControl-error{margin-bottom:0}.dark-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;background-color:#333538;color:#f3f1f1}.dark-ColorPicker:not(.is-disabled){cursor:pointer}.dark-ColorPicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.25rem}.dark-ColorPicker-input::placeholder{color:#6c6c6c}.dark-ColorPicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-ColorPicker.is-disabled{background:#e9ecef;color:#6c6c6c;pointer-events:none}.dark-ColorPicker.is-disabled>.dark-ColorPicker-input{color:#6c6c6c}.dark-ColorPicker.is-disabled>.dark-ColorPicker-input::placeholder{color:#6c6c6c}.dark-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.dark-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(20,19,22,.075)}.dark-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.dark-ColorPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-ColorPicker-clear:hover svg{fill:#3d4246}.dark-ColorControl:not(.is-inline)>.dark-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.dark-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#f3f1f1;background-color:#333538;border-radius:.142rem}.dark-DatePicker:not(.is-disabled){cursor:pointer}.dark-DatePicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-DatePicker:not(.is-disabled):hover .dark-DatePicker-toggler:before{color:#212529}.dark-DatePicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-DatePicker.is-disabled{background:#e9ecef}>.dark-DatePicker.is-disabled-input{color:#6c6c6c}.dark-DatePicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.dark-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DatePicker-toggler{cursor:pointer;color:#6c757d}.dark-DatePicker-toggler:hover{color:#212529}.dark-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-DatePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-DatePicker-clear:hover svg{fill:#3d4246}.dark-DateControl:not(.is-inline)>.dark-DatePicker{display:flex}.dark-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.dark-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.dark-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.dark-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#2296f3;text-decoration:none}.dark-DatePicker-shortcut a:hover{color:#0a6ebe;text-decoration:none}.dark-DatePicker-popover{margin:.125rem 0 0}.dark-DatePicker-popover.dark-PopOver--leftTopLeftBottom,.dark-DatePicker-popover.dark-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#f3f1f1}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#302d2a}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#1d1b19}.rdt .rdtPicker td.rdtBetween{background:rgba(34,150,243,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#2296f3}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#302d2a}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#2296f3}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#3a3a3a}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#2296f3;border:1px solid #656565;border-radius:.142rem;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#2296f3;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075);border-radius:.142rem}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.rdtBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#f3f1f1;background-color:#191c22;border-color:#191c22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel:hover{color:#f3f1f1;background-color:#090a0c;border-color:#030405}.rdtBtnCancel:focus{color:#f3f1f1;background-color:#191c22;border-color:#191c22;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel:hover:focus{color:#f3f1f1;background-color:#090a0c;border-color:#030405;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#191c22;color:#f3f1f1;border-color:#dee2e6}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#030405;border-color:#000}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#0a6ebe;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#2296f3;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.dark-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #656565;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;border-radius:.142rem;color:#f3f1f1;background-color:#333538}.dark-DateRangePicker:not(.is-disabled){cursor:pointer}.dark-DateRangePicker:not(.is-disabled):hover{background-color:#27282b;border-color:#656565}.dark-DateRangePicker:not(.is-disabled):hover .dark-DateRangePicker-toggler{color:#212529}.dark-DateRangePicker.is-focused{border-color:#2296f3;box-shadow:none}.dark-DateRangePicker.is-disabled{background:#e9ecef}>.dark-DateRangePicker.is-disabled-input{color:#6c6c6c}.dark-DateRangePicker-placeholder{color:#6c6c6c;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.dark-DateRangePicker-toggler{cursor:pointer;color:#6c757d}.dark-DateRangePicker-toggler:hover{color:#212529}.dark-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.dark-DateRangePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-DateRangePicker-clear:hover svg{fill:#3d4246}.dark-DateRangePicker-wrap{width:auto;padding:.625rem}.dark-DateRangePicker-start,.dark-DateRangePicker-end{display:inline-block;vertical-align:top}.dark-DateRangePicker-start .rdtPicker,.dark-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.dark-DateRangePicker-end{margin-top:20px}.dark-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.dark-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.dark-DateRangePicker-ranger a{cursor:pointer}.dark-DateRangePicker-actions{text-align:right;margin-top:.625rem}.dark-DateRangeControl:not(.is-inline)>.dark-DateRangePicker{display:flex}.dark-DateRangePicker-popover{margin:.125rem 0 0}.dark-DateRangePicker-popover.dark-PopOver--leftTopLeftBottom,.dark-DateRangePicker-popover.dark-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.dark-DateRangePicker-wrap{white-space:nowrap}.dark-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.dark-ImageControl{position:relative}.dark-ImageControl-dropzone{outline:0}.dark-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #656565;cursor:pointer;margin-right:.9375rem;color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-ImageControl-addBtn:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-ImageControl-addBtn.is-disabled,.dark-ImageControl-addBtn:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.dark-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.dark-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #656565;background:#302d2a;color:#6c6c6c}.dark-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #656565;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(20,19,22,.15);left:100%;color:#f3f1f1;padding:.125rem .625rem;margin:30px 0 0 .625rem}.dark-ImageControl-dropzone:focus .dark-ImageControl-addBtn{border-color:#4c4c4c;background:#010101;color:#f3f1f1}.dark-ImageControl-item{border:.0625rem solid #656565;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.dark-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.dark-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.dark-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.dark-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.dark-ImageControl-item:hover .dark-ImageControl-itemOverlay{display:flex}.dark-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.dark-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.dark-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.dark-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.dark-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.dark-ImageControl-progressValue{height:5px;display:block;background:#2296f3;min-width:10%;transition:ease-out width .3s}.dark-ImageControl-item.is-invalid .dark-ImageControl-itemClear{display:none}.dark-ImageControl-item.is-invalid:hover .dark-ImageControl-itemClear{display:block}.dark-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.dark-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.dark-ImageControl-retryBtn>p{width:100%;text-align:center;color:#dc3545;margin:10px 0 0}.dark-ImageControl-errorMsg{color:#dc3545;margin:5px 0 0}.dark-ImageControl-uploadBtn{margin-top:5px}.dark-ImageControl-cropperWrapper{position:relative}.dark-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.dark-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.dark-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.dark-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #656565;border-color:#2296f3;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.dark-FileControl-dropzone{outline:0}.dark-FileControl-selectBtn{width:7.5rem}.dark-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.dark-FileControl-description{margin-left:10px;color:#999;font-size:12px}.dark-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.dark-FileControl-list>li{color:#333;font-size:12px}.dark-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.dark-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.dark-FileControl-itemInfo.is-invalid{color:#999}.dark-FileControl-itemInfo>svg:first-child{margin-right:10px}.dark-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.dark-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.dark-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.dark-FileControl-clear:hover{color:#333}.dark-FileControl-list:empty{display:none}.dark-FileControl-list>li:hover .dark-FileControl-clear{display:block}.dark-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.dark-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.dark-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.dark-FileControl-progress{height:5px;flex:1;background:#ebebeb}.dark-FileControl-progress>span{display:block;background:#2296f3;height:100%;min-width:10%;transition:ease-out width .3s}.dark-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #2296f3;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.dark-FileControl-sum{font-size:.75rem}.dark-FileControl-sum>a{cursor:pointer}.dark-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #656565;max-width:100%;box-sizing:content-box}.dark-EditorControl>.dark-MonacoEditor,.dark-EditorControl>.dark-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.dark-EditorControl.is-error{border-color:#dc3545}.dark-EditorControl.is-focused{border-color:#2296f3}.dark-EditorControl--sm{min-height:100px}.dark-EditorControl--sm>.dark-MonacoEditor{min-height:100px}.dark-EditorControl--md{min-height:250px}.dark-EditorControl--md>.dark-MonacoEditor{min-height:250px}.dark-EditorControl--lg{min-height:300px}.dark-EditorControl--lg>.dark-MonacoEditor{min-height:300px}.dark-EditorControl--xl{min-height:400px}.dark-EditorControl--xl>.dark-MonacoEditor{min-height:400px}.dark-EditorControl--xxl{min-height:500px}.dark-EditorControl--xxl>.dark-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.dark-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #656565;width:100%}.dark-RichTextControl>.tox-tinymce{border:0}.dark-RichTextControl>textarea{width:100%}.dark-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.dark-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #656565}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn,.dark-RichTextControl .fr-popup .fr-command.fr-btn{color:#f3f1f1}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.dark-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#2296f3;background-color:#191c22}.dark-RichTextControl .fr-desktop .fr-command:hover,.dark-RichTextControl .fr-desktop .fr-command:focus{background-color:#191c22}.dark-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.dark-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#191c22}.dark-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#2296f3;color:#fff}.dark-RichTextControl.is-focused{border:.0625rem solid #2296f3}.dark-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #2296f3}.dark-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.dark-RichTextControl .fr-sticky-dummy{position:absolute}.dark-RichTextControl.is-disabled{border-color:#656565;pointer-events:none;opacity:.6}.dark-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#656565}.dark-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.dark-RangeControl::before,.dark-RangeControl::after{display:table;content:''}.dark-RangeControl::after{clear:both}.dark-RangeControl--withInput .dark-InputRange{width:calc(100% - 120px)}.dark-RangeControl--withInput .dark-InputRange-label--mid{left:calc(50% - 60px)}.dark-RangeControl--withInput.is-multiple .dark-InputRange{width:calc(100% - 210px)}.dark-RangeControl .dark-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.dark-RangeControl .dark-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.dark-RangeControl .dark-InputRange-input input:focus{outline:0;border:.0625rem solid #2296f3}.dark-RangeControl .dark-InputRange-input-separator{display:inline-block;padding:0 5px}.dark-RangeControl .dark-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.dark-RangeControl .dark-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.dark-RangeControl .dark-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.dark-InputRange{height:1.5rem;position:relative;width:100%}.dark-InputRange-slider{appearance:none;background:#2296f3;border:.0625rem solid #2296f3;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.dark-InputRange-slider:active{transform:scale(1.3)}.dark-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(34,150,243,.2)}.input-range--disabled .dark-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.dark-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.dark-InputRange-sliderContainer{transition:left .3s ease-out}.dark-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.dark-InputRange-label--min,.dark-InputRange-label--max,.dark-InputRange-label--mid{bottom:-1.4rem;position:absolute}.dark-InputRange-label--mid{left:50%;bottom:-.3125rem}.dark-InputRange-label--max{right:0}.dark-InputRange-label--value{position:absolute;display:block;top:-2.5rem}.dark-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.dark-InputRange.is-disabled .dark-InputRange-track{background:#eee}.dark-InputRange-track.is-active{background:#2296f3}.dark-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.dark-InputRange-track--background::before,.dark-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.dark-InputRange-track--background::before{left:-.5rem}.dark-InputRange-track--background::after{right:-.5rem}.dark-InputRange-track--active{background:#2296f3}.dark-RepeatControl .repeat-btn{width:5rem}.dark-RepeatControl .Select{display:inline-block;min-width:100px}.dark-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.dark-TreeControl{border:1px solid #656565;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.dark-TreeControl.h-full{max-height:none;overflow:visible}.dark-TreeControl.no-border{border:0}.dark-Tree-list,.dark-Tree-sublist{list-style:none;padding:0;margin:0}.dark-Tree-sublist.is-folded{display:none}.dark-Tree-item{line-height:1.875rem;position:relative}.dark-Tree-item>div:hover{text-decoration:none}.dark-Tree-item>div:hover>.dark-Tree-item-icons{visibility:visible}.dark-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.dark-Tree-rootItem{line-height:1.875rem}.dark-Tree-item>div:hover>.dark-Tree-item-icons,.dark-Tree-rootItem>div:hover>.dark-Tree-item-icons{visibility:visible}.dark-Tree-itemLabel{display:flex;align-items:center}.dark-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.dark-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.dark-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.dark-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.dark-Tree-itemInput{padding-left:.625rem}.dark-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#6c757d}.dark-Tree-itemInput>a:hover{color:#212529;text-decoration:none}.dark-Tree-itemInput>input{outline:0;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.21562rem .75rem;font-size:.875rem}.dark-Tree-itemInput>input::placeholder{color:#6c6c6c;user-select:none}.dark-Tree-itemInput>input:focus{border-color:#2296f3;box-shadow:none}.dark-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.dark-Tree-addTopBtn:hover{text-decoration:none}.dark-Tree-addTopBtn.is-disabled{pointer-events:none;color:#6c6c6c}.dark-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.dark-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.dark-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.dark-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.dark-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.dark-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.dark-Tree-rootIcon>svg,.dark-Tree-folderIcon>svg,.dark-Tree-leafIcon>svg{width:.875rem;height:.875rem}.dark-Tree-itemLabel{user-select:none}.dark-Tree-itemLabel.is-checked,.dark-Tree-itemLabel.is-children-checked{color:#f3f1f1}.dark-Tree-itemLabel.is-disabled{color:#6c6c6c}.dark-Tree-itemLabel>.dark-Checkbox{line-height:1;display:inline-block}.dark-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.dark-Tree-placeholder{color:#6c6c6c}.dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel,.dark-Tree-item .dark-Tree-item>.dark-Tree-placeholder{padding-left:1.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel,.dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-placeholder{padding-left:2.5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:3.75rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:6.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:7.5rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:8.75rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:10rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:11.25rem}.dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item .dark-Tree-item>.dark-Tree-itemLabel{padding-left:12.5rem}.dark-TreeSelectControl{position:relative}.dark-TreeSelectControl>.dark-TreeSelect-popover{width:100%}.dark-TreeSelect{position:relative;max-width:100%;outline:0}.dark-TreeSelect.is-inline{display:inline-block;width:12.5rem}.dark-TreeSelect-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-TreeSelect-input input::placeholder{color:#6c6c6c;user-select:none}.dark-TreeSelect.is-error>.dark-TreeSelect-input{border-color:#dc3545;background-color:#3c3c3c}.dark-TreeSelect.is-focused>.dark-TreeSelect-input{border-color:#2296f3;box-shadow:none}.dark-TreeSelect.is-error.is-focused>.dark-TreeSelect-input{border-color:#dc3545}.dark-TreeSelect.is-disabled>.dark-TreeSelect-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-TreeSelect-spinner{line-height:1.25rem}.dark-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-TreeSelect-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-TreeSelect-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-TreeSelect.dark-Form-control--sizeXs>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeSm>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeMd>.dark-TreeSelect-input,.dark-TreeSelect.dark-Form-control--sizeLg>.dark-TreeSelect-input{min-width:100%;display:inline-flex}}.dark-TreeSelect.is-opened{border-color:#2296f3;box-shadow:none}.dark-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.dark-TreeSelect-popover>.dark-Tree{background:#302d2a;border:.0625rem solid #2296f3;padding:.3125rem .75rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.dark-Combo-placeholder{color:#6c6c6c;padding-top:.4375rem}.dark-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#6c757d;padding:.125rem .3125rem;cursor:pointer}.dark-Combo-toolbarBtn:hover{color:#545b62}.dark-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.dark-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn>svg{width:.75rem;height:.75rem}.dark-Combo-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-Combo-addBtn>.pull-left{margin-right:.5rem}.dark-Combo-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-Combo-addBtn>.pull-right{margin-left:.5rem}.dark-Combo-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-Combo-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-Combo-addBtn.is-disabled,.dark-Combo-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-Combo-addBtn:not(:disabled):not(.is-disabled):active,.dark-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-Combo-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-Combo-items{margin-bottom:.625rem}.dark-Combo-items:empty{display:none}.dark-Combo-items:empty+.dark-Combo-toolbar{padding-top:.25rem}.dark-Combo-item{background:transparent}.dark-Combo-itemDrager{cursor:move}.dark-Combo-itemDrager>a{color:#6c757d}.dark-Combo-itemDrager>a:hover{color:#212529}.dark-Combo-itemDrager svg{width:1rem;height:1rem}.dark-Combo--hor .dark-Combo-item{display:flex;flex-wrap:nowrap}.dark-Combo--hor .dark-Combo-item+.dark-Combo-item{margin-top:.3125rem}.dark-Combo--hor .dark-Combo-itemInner{flex-basis:0;flex-grow:1}.dark-Combo--hor .dark-Combo-itemTag{margin-right:.625rem}.dark-Combo--hor .dark-Combo-itemTag label{color:#2296f3;margin-right:.625rem}.dark-Combo--hor .dark-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.4375rem}.dark-Combo--hor .dark-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:.65}.dark-Combo--hor.is-draggable .dark-Combo-toolbar{padding-left:1.5rem}.dark-Combo--hor .dark-Combo-itemDrager{padding:.4375rem .375rem 0 0}.dark-Combo--ver:not(.dark-Combo--noBorder)::before,.dark-Combo--ver:not(.dark-Combo--noBorder)::after{display:table;content:''}.dark-Combo--ver:not(.dark-Combo--noBorder)::after{clear:both}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-placeholder{margin:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder) .dark-Combo-itemTag{text-align:right}.dark-Combo--ver:not(.dark-Combo--noBorder) .dark-Combo-itemTag label{color:#2296f3;margin-right:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item{border:.0625rem dashed #656565;padding:.625rem;position:relative}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item{margin:.625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#2296f3;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#0d8aef;border-width:.0625rem .0625rem 0}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn:hover,.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemToolbar .dark-Combo-toolbarBtn:hover{color:#fff}.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-item:hover,.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-items>.dark-Combo-item:hover{border-color:#2296f3}.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-item:hover>.dark-Combo-itemToolbar,.dark-Combo--ver:not(.dark-Combo--noBorder):not(.is-disabled)>.dark-Combo-items>.dark-Combo-item:hover>.dark-Combo-itemToolbar{top:-1.5625rem;opacity:1}.dark-Combo--ver:not(.dark-Combo--noBorder)>.dark-Combo-items>.dark-Combo-item>.dark-Combo-itemDrager{position:absolute;top:.4375rem;left:-1.875rem}.dark-Combo--ver:not(.dark-Combo--noBorder).is-draggable>.dark-Combo-items>.dark-Combo-item{margin-left:2.1875rem}.dark-Combo--ver:not(.dark-Combo--noBorder).is-draggable>.dark-Combo-toolbar{padding-left:1.5625rem}.dark-Combo-item--dragging{position:relative}.dark-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.dark-ComboTabs>.dark-Tabs-links::before,.dark-ComboTabs>.dark-Tabs-links::after{display:table;content:''}.dark-ComboTabs>.dark-Tabs-links::after{clear:both}.dark-ComboTabs-addLink{float:right}.dark-Combo-dragableTip{color:#6c6c6c;font-size:.75rem;margin-left:.3125rem}.dark-Combo-dragableTip:empty{display:none}.dark-ComboControl.is-inline .dark-Combo--hor .dark-Combo-itemInner{flex-grow:unset;flex-basis:unset}.dark-ComboControl.is-inline .dark-Combo--ver .dark-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.dark-Combo-form .dark-Form-item:last-child{margin-bottom:0}}.dark-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.375rem 0}.dark-SubForm-value{cursor:pointer;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.dark-SubForm-value:hover{background-color:#22201e}.dark-SubForm-value.is-disabled{pointer-events:none;opacity:.65}.dark-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-SubForm-valueIcon:hover{background-color:#22201e}.dark-SubForm-valueLabel{padding:0 .3125rem}.dark-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.dark-SubForm-addBtn>.pull-left{margin-right:.5rem}.dark-SubForm-addBtn .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-SubForm-addBtn>.pull-right{margin-left:.5rem}.dark-SubForm-addBtn:hover{color:#fff;background-color:#0c83e2;border-color:#0c7cd6}.dark-SubForm-addBtn:focus{color:#fff;background-color:#2296f3;border-color:#2296f3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn:hover:focus{color:#fff;background-color:#0c83e2;border-color:#0c7cd6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-SubForm-addBtn.is-disabled,.dark-SubForm-addBtn:disabled{background-color:#2296f3;color:#fff;border-color:#dee2e6}.dark-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.dark-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#0c7cd6;border-color:#0b75ca}.dark-SubForm-addBtn.is-disabled{pointer-events:none;opacity:.65}.dark-SubFormControl{padding-top:.25rem}.dark-ChainedSelectControl .dark-Select{margin-right:.3125rem}.dark-Picker{position:relative;max-width:100%;outline:0}.dark-Picker.is-inline{display:inline-block;width:12.5rem}.dark-Picker-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-Picker-input input::placeholder{color:#6c6c6c;user-select:none}.dark-Picker.is-error>.dark-Picker-input{border-color:#dc3545;background-color:#3c3c3c}.dark-Picker.is-focused>.dark-Picker-input{border-color:#2296f3;box-shadow:none}.dark-Picker.is-error.is-focused>.dark-Picker-input{border-color:#dc3545}.dark-Picker.is-disabled>.dark-Picker-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-Picker-spinner{line-height:1.25rem}.dark-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-Picker-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-Picker.dark-Form-control--sizeXs>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeSm>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeMd>.dark-Picker-input,.dark-Picker.dark-Form-control--sizeLg>.dark-Picker-input{min-width:100%;display:inline-flex}}.dark-Picker.is-focus>.dark-Picker-input{border-color:#2296f3;box-shadow:none}.dark-Picker-placeholder{color:#6c6c6c;user-select:none;position:absolute;line-height:1.42857}.dark-Picker-input{min-height:2.125rem;height:auto}.dark-Picker .dark-Picker-values{display:inline}.dark-Picker-valueWrap{flex-grow:1;position:relative}.dark-Picker-valueWrap>input{width:1rem;display:inline-block}.dark-Picker .dark-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.dark-Picker .dark-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.dark-Picker .dark-Picker-value.is-disabled{pointer-events:none;opacity:.65}.dark-Picker .dark-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #fff;padding:1px 5px}.dark-Picker .dark-Picker-valueIcon:hover{background-color:#22201e}.dark-Picker .dark-Picker-valueLabel{padding:0 .3125rem}.dark-Picker-btn{cursor:pointer;color:#6c757d}.dark-Picker-btn:hover{color:#212529}.dark-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.dark-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-Picker-clear:hover svg{fill:#3d4246}.dark-PickerControl.is-inline .dark-Picker{display:inline-block;min-width:9.375rem}.dark-QrCode{min-height:2.125rem;padding:.4375rem 0}.dark-TagControl{position:relative}.dark-TagControl-input.is-focused{border-radius:0}.dark-TagControl-input.is-disabled{border-style:dashed;background:transparent}.dark-TagControl.is-inline{display:inline-block}.dark-TagControl>.dark-TagControl-popover{padding:0;border:0;width:100%;margin-top:-.0625rem}.dark-TagControl>.dark-TagControl-popover.dark-PopOver--leftBottomLeftTop{top:100%!important}.dark-TagControl>.dark-TagControl-popover.dark-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.dark-TagControl-sug{margin-top:.375rem}.dark-TagControl-sugTip{color:#2296f3;margin-bottom:.375rem}.dark-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem .dark-Button-icon:first-child:not(:last-child):not(.pull-right),.dark-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.dark-TagControl-sugItem>.pull-left{margin-right:.5rem}.dark-TagControl-sugItem .dark-Button-icon:last-child:not(:first-child):not(.pull-left),.dark-TagControl-sugItem>.pull-right{margin-left:.5rem}.dark-TagControl-sugItem:hover{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c}.dark-TagControl-sugItem:focus{color:#f3f1f1;background-color:#141316;border-color:#656565;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem:hover:focus{color:#f3f1f1;background-color:#010101;border-color:#4c4c4c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(20,19,22,.075)}.dark-TagControl-sugItem.is-disabled,.dark-TagControl-sugItem:disabled{background-color:#141316;color:#f3f1f1;border-color:#dee2e6}.dark-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.dark-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#f3f1f1;background-color:#000;border-color:#454545}.dark-TagControl-sugItem.is-disabled{pointer-events:none;opacity:.65}.dark-TagControl-popover.dark-PopOver--leftBottomLeftTop>.dark-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.dark-TagControl-popover.dark-PopOver--leftTopLeftBottom>.dark-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.dark-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#1e1f22;cursor:pointer}.dark-Rating.is-active{color:#2296f3}.dark-Rating.is-disabled{cursor:not-allowed}.dark-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#2296f3}.dark-RatingControl{position:relative;overflow:hidden}.dark-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem;position:relative}.dark-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.dark-Transfer-title{display:flex;align-items:center;background:#2f2f2f;height:1.875rem;line-height:1.42857;font-size:.875rem;padding:.3125rem .625rem;flex-direction:row}.dark-Transfer-title--light{background:transparent}.dark-Transfer-title>span{flex-grow:1}.dark-Transfer-select,.dark-Transfer-result{width:0;min-width:12.5rem;max-height:25rem;flex-grow:1;border:.0625rem solid #656565;display:flex;flex-direction:column}.dark-Transfer-select>.dark-Transfer-checkboxes,.dark-Transfer-result>.dark-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.dark-Transfer-search+.dark-Transfer-checkboxes{border-top:1px solid #656565}.dark-Transfer-checkboxes .dark-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.dark-Transfer-search{padding:.625rem}.dark-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.dark-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #656565;margin:0 10px;color:#6c757d}.dark-Transfer-arrow>svg{top:0;width:14px;height:14px}.dark-Transfer-checkAll,.dark-Transfer-clearAll{user-select:none;cursor:pointer}.dark-Transfer-checkAll.is-disabled,.dark-Transfer-clearAll.is-disabled{pointer-events:none;color:#6c6c6c}.dark-Transfer-tabs{display:flex;flex-direction:column;height:100%}.dark-Transfer-tabs>.dark-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.dark-Transfer-tabs>.dark-Tabs-links>.dark-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.dark-Transfer-tabs>.dark-Tabs-links .dark-TabsTransfer-tabsMid{flex-grow:1}.dark-Transfer-tabs>.dark-Tabs-links>.dark-SearchBox{margin:-5px 5px 0 10px}.dark-Transfer-tabs>.dark-Tabs-links>.dark-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.dark-Transfer-tabs>.dark-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane{position:relative;min-height:100%}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane.is-active{display:flex;flex-direction:column}.dark-Transfer-tabs>.dark-Tabs-content>.dark-Tabs-pane.is-active>.dark-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.dark-TabsTransfer .dark-Transfer-title{height:40px}.dark-TabsTransfer-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#6c6c6c}.dark-TransferControl{position:relative}.dark-TransferControl.is-inline{display:inline-block}.dark-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #656565;background:#333538;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#f3f1f1}.dark-NestedSelect.is-disabled{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-NestedSelect.is-focused,.dark-NestedSelect.is-opened{border-color:#2296f3}.dark-NestedSelect.is-opened .dark-Select-arrow>svg{transform:rotate(180deg)}.dark-NestedSelect:not(.is-disabled):hover{background:#191c22}.dark-NestedSelect--multi .dark-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#f3f1f1;background:#302d2a;border:.0625rem solid #fff;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.dark-NestedSelect--multi .dark-Select-valueLabel{padding:0 .3125rem}.dark-NestedSelect-placeholder{color:#6c6c6c;line-height:1.42857}.dark-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.dark-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.dark-NestedSelect-clear svg{fill:#6c757d;width:.625rem;height:.625rem}.dark-NestedSelect-clear:hover svg{fill:#3d4246}.dark-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.dark-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#6c757d}.dark-NestedSelect-menuOuter{display:flex}.dark-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;box-shadow:none;overflow-y:auto;overflow-x:hidden}.dark-NestedSelect-menu:not(:first-child){border-left:0}.dark-NestedSelect-menu .dark-NestedSelect-option{position:relative;padding-left:.625rem;min-height:2.125rem;line-height:2.125rem;cursor:pointer;display:flex}.dark-NestedSelect-menu .dark-NestedSelect-option>.dark-NestedSelect-optionLabel{flex:1;cursor:pointer}.dark-NestedSelect-menu .dark-NestedSelect-option>.dark-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.dark-NestedSelect-menu .dark-NestedSelect-option.is-active{color:#2296f3;background-color:transparent}.dark-NestedSelect-menu .dark-NestedSelect-option:hover{color:#2296f3;background-color:rgba(0,126,255,.08)}.dark-NestedSelect-menu .dark-NestedSelect-option:hover>.dark-NestedSelect-childrenOuter{display:block}.dark-NestedSelect-menu .dark-NestedSelect-option .dark-Checkbox{display:inline-block;padding-top:0}.dark-NestedSelect-menu .dark-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.dark-Form-control--sizeXs>.dark-NestedSelect,.dark-Form-control--sizeSm>.dark-NestedSelect,.dark-Form-control--sizeMd>.dark-NestedSelect,.dark-Form-control--sizeLg>.dark-NestedSelect{display:inline-flex!important}}.dark-IconPickerControl{position:relative;max-width:100%}.dark-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.dark-IconPickerControl-input{display:flex;background-color:#3c3c3c;border:.0625rem solid #656565;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.dark-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#f3f1f1;width:100%;height:1.25rem}.dark-IconPickerControl-input input::placeholder{color:#6c6c6c;user-select:none}.dark-IconPickerControl.is-error>.dark-IconPickerControl-input{border-color:#dc3545;background-color:#3c3c3c}.dark-IconPickerControl.is-focused>.dark-IconPickerControl-input{border-color:#2296f3;box-shadow:none}.dark-IconPickerControl.is-error.is-focused>.dark-IconPickerControl-input{border-color:#dc3545}.dark-IconPickerControl.is-disabled>.dark-IconPickerControl-input{color:#6c6c6c;background:#302d2a;border-color:#656565}.dark-IconPickerControl-spinner{line-height:1.25rem}.dark-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.dark-IconPickerControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.dark-IconPickerControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.dark-IconPickerControl.dark-Form-control--sizeXs>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeSm>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeMd>.dark-IconPickerControl-input,.dark-IconPickerControl.dark-Form-control--sizeLg>.dark-IconPickerControl-input{min-width:100%;display:inline-flex}}.dark-IconPickerControl-placeholder{color:#6c6c6c;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.dark-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.dark-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.dark-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.dark-IconPickerControl-input--withAC>input{width:auto}.dark-IconPickerControl-sugsPanel{position:absolute;background:#333538;color:#f3f1f1;border:.0625rem solid #2296f3;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.dark-IconPickerControl-tabs{background:#f0f3f4}.dark-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.dark-IconPickerControl-tab.active{background:#333538}.dark-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.dark-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.dark-IconPickerControl-sugItem:hover{background-color:rgba(0,126,255,.08)}.dark-IconPickerControl-sugItem.is-active{color:#fff;background-color:#2296f3}.dark-IconPickerControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.dark-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.dark-Form{font-size:.875rem;position:relative}.dark-Form--quickEdit .dark-Form-item:last-child{margin-bottom:0}.dark-Form--inline>.dark-PlainField{display:inline-block;padding-top:.375rem}.dark-Form-static{min-height:2.125rem;padding-top:.4375rem;padding-bottom:.4375rem;margin-bottom:0}.dark-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.dark-Form-label>span{position:relative}.dark-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.dark-Form-feedback{color:#dc3545;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.dark-Form-description{display:block;color:#fff;margin:.375rem 0 0;font-size:.75rem}.dark-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.375rem;vertical-align:top}.dark-Form-item{margin-bottom:.9375rem}.dark-Grid-form>.dark-Form-item:last-child{margin-bottom:0}.dark-Form--inline>.dark-Form-item--inline{margin-bottom:.46875rem;margin-right:.46875rem}.dark-Form--inline>.dark-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.dark-Form-item .dark-Form-remark{padding-top:.4375rem;vertical-align:top}.dark-Form-item--horizontal>.dark-Form-label{text-align:right;white-space:"normal"}.dark-Form-item--normal>.dark-Form-label{display:block}.dark-Form-item--normal>.dark-Form-label .dark-Form-star{position:absolute;left:-.375rem;top:.1875rem}.dark-Form-item.is-error>.dark-Form-label{color:#dc3545}.dark-Form-placeholder{color:#6c6c6c}.dark-Form-caption{display:inline-block;line-height:2.125rem;height:2.125rem;margin-left:.625rem}@media (min-width:576px){.dark-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeXs.dark-NumberControl{width:5rem}.dark-Form-control--sizeXs.dark-TextareaControl{width:auto}.dark-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeSm.dark-NumberControl{width:10rem}.dark-Form-control--sizeSm.dark-TextareaControl{width:auto}.dark-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeMd.dark-TextareaControl{width:auto}.dark-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.dark-Form-control--sizeLg.dark-NumberControl{width:20rem}.dark-Form-control--sizeLg.dark-TextareaControl{width:auto}.dark-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.dark-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.dark-Form-item--horizontal>.dark-Form-label,.dark-Form-item--horizontal>.dark-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.dark-Form-item--horizontal .dark-Form-itemColumn--xs,.dark-Form-item--horizontal .dark-Form-itemColumn--sm,.dark-Form-item--horizontal .dark-Form-itemColumn--normal,.dark-Form-item--horizontal .dark-Form-itemColumn--md,.dark-Form-item--horizontal .dark-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.dark-Form-item--horizontal>.dark-Form-label{padding-top:.4375rem;margin-bottom:0}.dark-Form-item--horizontal>.dark-Form-label .dark-Form-star{position:absolute;left:-.375rem;top:.1875rem}.dark-Form-item--horizontal .dark-Form-itemColumn--xs{width:3.75rem}.dark-Form-item--horizontal .dark-Form-itemColumn--sm{width:5.625rem}.dark-Form-item--horizontal .dark-Form-itemColumn--normal{width:7.5rem}.dark-Form-item--horizontal .dark-Form-itemColumn--md{width:10rem}.dark-Form-item--horizontal .dark-Form-itemColumn--lg{width:12.5rem}.dark-Form-item--horizontal .dark-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.dark-Form-item--horizontal .dark-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.dark-Form-item--inline{display:inline-block;vertical-align:top}.dark-Form-item--inline .dark-TextControl{width:12.5rem}.dark-Form-item--inline>.dark-Form-label{padding-top:.4375rem;margin-bottom:0;margin-right:.46875rem}.dark-Form-item--inline>.dark-Form-label .dark-Form-star{position:static}.dark-Form-item--inline>.dark-Form-value{display:inline}.dark-Form-item--inline>.dark-Form-value>.dark-Form-control{vertical-align:top;display:inline-block}.dark-Form-item--inline>.dark-Form-value>.dark-Form-control.dark-InputGroup{display:inline-flex}.dark-Form-item--inline>.dark-Form-value>.dark-TextControl--withAddOn{display:inline-flex;min-width:15rem}.dark-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.dark-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.dark-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.dark-Form-rowInner{display:flex;flex-wrap:nowrap}.dark-Form-rowInner>.dark-Form-label{display:inline-block;vertical-align:top;padding-top:.4375rem;padding-right:.625rem}.dark-Form-rowInner>.dark-Form-control{flex-basis:0;flex-grow:1}.dark-Form-rowInner>.dark-Form-control:not(.dark-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#3a3a3a;color:#f3f1f1}.bg-light.lt,.bg-light .lt{background-color:#3f3f3f}.bg-light.lter,.bg-light .lter{background-color:#424242}.bg-light.dk,.bg-light .dk{background-color:#343131}.bg-light.dker,.bg-light .dker{background-color:#302b2b}.bg-light.bg,.bg-light .bg{background-color:#3a3a3a}.bg-dark{background-color:#1e1f22;color:#868686}.bg-dark.lt,.bg-dark .lt{background-color:#2b2c2e}.bg-dark.lter,.bg-dark .lter{background-color:#39393a}.bg-dark.dk,.bg-dark .dk{background-color:#121215}.bg-dark.dker,.bg-dark .dker{background-color:#060607}.bg-dark.bg,.bg-dark .bg{background-color:#1e1f22}.bg-dark a,.bg-dark .dark-Button--link{color:#a0a0a0}.bg-dark a:hover,.bg-dark .dark-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#6d6d6d!important}.bg-dark .text-lt{color:#c6c6c6!important}.bg-black{background-color:#141316;color:#7b7b7b}.bg-black.lt,.bg-black .lt{background-color:#212023}.bg-black.lter,.bg-black .lter{background-color:#2e2d2f}.bg-black.dk,.bg-black .dk{background-color:#070709}.bg-black.dker,.bg-black .dker{background-color:#000}.bg-black.bg,.bg-black .bg{background-color:#141316}.bg-black a,.bg-black .dark-Button--link{color:#949494}.bg-black a:hover,.bg-black .dark-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#616161!important}.bg-black .text-lt{color:#bababa!important}.bg-primary{background-color:#0983ff;color:#d7eafd}.bg-primary.lt,.bg-primary .lt{background-color:#2590fc}.bg-primary.lter,.bg-primary .lter{background-color:#419dfa}.bg-primary.dk,.bg-primary .dk{background-color:#0076ef}.bg-primary.dker,.bg-primary .dker{background-color:#006ad5}.bg-primary.bg,.bg-primary .bg{background-color:#0983ff}.bg-primary a,.bg-primary .dark-Button--link{color:#fff}.bg-primary a:hover,.bg-primary .dark-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#a7d0fa!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#32d74b;color:#dff6e2}.bg-success.lt,.bg-success .lt{background-color:#4ad860}.bg-success.lter,.bg-success .lter{background-color:#62da74}.bg-success.dk,.bg-success .dk{background-color:#24cb3d}.bg-success.dker,.bg-success .dker{background-color:#1eb835}.bg-success.bg,.bg-success .bg{background-color:#32d74b}.bg-success a,.bg-success .dark-Button--link{color:#fff}.bg-success a:hover,.bg-success .dark-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#b7ebbf!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#2296f3;color:#e5f2fc}.bg-info.lt,.bg-info .lt{background-color:#3da1f2}.bg-info.lter,.bg-info .lter{background-color:#57acf1}.bg-info.dk,.bg-info .dk{background-color:#0a8bf2}.bg-info.dker,.bg-info .dker{background-color:#067ddc}.bg-info.bg,.bg-info .bg{background-color:#2296f3}.bg-info a,.bg-info .dark-Button--link{color:#fff}.bg-info a:hover,.bg-info .dark-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#b7dbf7!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#ff9f0b;color:#fdefd9}.bg-warning.lt,.bg-warning .lt{background-color:#fca827}.bg-warning.lter,.bg-warning .lter{background-color:#fab243}.bg-warning.dk,.bg-warning .dk{background-color:#f19200}.bg-warning.dker,.bg-warning .dker{background-color:#d78200}.bg-warning.bg,.bg-warning .bg{background-color:#ff9f0b}.bg-warning a,.bg-warning .dark-Button--link{color:#fff}.bg-warning a:hover,.bg-warning .dark-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#fadaa9!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#dc3545;color:#f8e5e6}.bg-danger.lt,.bg-danger .lt{background-color:#dd4d5b}.bg-danger.lter,.bg-danger .lter{background-color:#df6571}.bg-danger.dk,.bg-danger .dk{background-color:#d62133}.bg-danger.dker,.bg-danger .dker{background-color:#c31b2b}.bg-danger.bg,.bg-danger .bg{background-color:#dc3545}.bg-danger a,.bg-danger .dark-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .dark-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#eebcc0!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#f3f1f1}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#0076ef}a.text-primary:hover{color:#0076ef}.text-primary{color:#0983ff}.text-primary-lt{color:#0076ef}.text-primary-lter{color:#006ad5}.text-primary-dk{color:#0076ef}.text-primary-dker{color:#006ad5}a.bg-info:hover{background-color:#0d8aef}a.text-info:hover{color:#0d8aef}.text-info{color:#2296f3}.text-info-lt{color:#0d8aef}.text-info-lter{color:#0c7cd6}.text-info-dk{color:#0d8aef}.text-info-dker{color:#0c7cd6}a.bg-success:hover{background-color:#27c840}a.text-success:hover{color:#27c840}.text-success{color:#32d74b}.text-success-lt{color:#27c840}.text-success-lter{color:#23b339}.text-success-dk{color:#27c840}.text-success-dker{color:#23b339}a.bg-warning:hover{background-color:#f19200}a.text-warning:hover{color:#f19200}.text-warning{color:#ff9f0b}.text-warning-lt{color:#f19200}.text-warning-lter{color:#d78200}.text-warning-dk{color:#f19200}.text-warning-dker{color:#d78200}a.bg-danger:hover{background-color:#d32535}a.text-danger:hover{color:#d32535}.text-danger{color:#dc3545}.text-danger-lt{color:#d32535}.text-danger-lter{color:#bd2130}.text-danger-dk{color:#d32535}.text-danger-dker{color:#bd2130}a.bg-dark:hover{background-color:#121314}a.text-dark:hover{color:#121314}.text-dark{color:#1e1f22}.text-dark-lt{color:#121314}.text-dark-lter{color:#060607}.text-dark-dk{color:#121314}.text-dark-dker{color:#060607}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#080708}a.text-black:hover{color:#080708}.text-black{color:#141316}.text-black-lt{color:#080708}.text-black-lter{color:#000}.text-black-dk{color:#080708}.text-black-dker{color:#000}.text-muted{color:#6c6c6c}.text-loud{color:#fff}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #656565,0 2px 0 #7f7f7f,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #656565}.b-t{border-top:1px solid #656565}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #656565}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #656565}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #656565}.b-l-none{border-left-width:0}.b-light{border-color:#3a3a3a}.b-dark{border-color:#1e1f22}.b-black{border-color:#1e1f22}.b-primary{border-color:#0983ff}.b-success{border-color:#32d74b}.b-info{border-color:#2296f3}.b-warning{border-color:#ff9f0b}.b-danger{border-color:#dc3545}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#3a3a3a}.b-l-dark{border-left-color:#1e1f22}.b-l-black{border-left-color:#1e1f22}.b-l-primary{border-left-color:#0983ff}.b-l-success{border-left-color:#32d74b}.b-l-info{border-left-color:#2296f3}.b-l-warning{border-left-color:#ff9f0b}.b-l-danger{border-left-color:#dc3545}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#32d74b}.avatar i.off{background-color:#6c6c6c}.avatar i.busy{background-color:#dc3545}.avatar i.away{background-color:#ff9f0b}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.dark-Form-col.w,.dark-Form-col.w-xs,.dark-Form-col.w-sm,.dark-Form-col.w-md,.dark-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #656565}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#0983ff}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#006ad5}.label-success{background-color:#32d74b}.label-success[href]:hover,.label-success[href]:focus{background-color:#23b339}.label-info{background-color:#2296f3}.label-info[href]:hover,.label-info[href]:focus{background-color:#0c7cd6}.label-warning{background-color:#ff9f0b}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#d78200}.label-danger{background-color:#dc3545}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#bd2130}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file diff --git a/gh-pages/scss/themes/default_a0692c3.css b/gh-pages/scss/themes/default_a0692c3.css index 47850413..3f363959 100644 --- a/gh-pages/scss/themes/default_a0692c3.css +++ b/gh-pages/scss/themes/default_a0692c3.css @@ -1 +1 @@ -@charset "UTF-8";html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#27c24c}svg.icon-fail{color:#f05050}html{font-size:16px}body{color:#58666e;background-color:#f0f3f4;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#23b7e5;text-decoration:none}a:hover{color:#1485a8;text-decoration:underline}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#414c52;line-height:1.1}.is-matched{color:#f05050}html,body{width:100%;height:100%}body{overflow-x:hidden}.a-Layout{height:100%;min-height:100%;width:100%;position:relative}.a-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#f0f3f4;border:inherit;display:block}.a-Layout--boxed{margin-right:auto;margin-left:auto}.a-Layout .a-Layout-header{background:#fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05);height:3.125rem}.a-Layout--headerFixed{padding-top:3.125rem}.a-Layout--headerFixed .a-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.a-Layout-brandBar{background:#3a3f51;color:#a6a8b1}.a-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.a-Layout-brand{color:#eaebed;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.a-Layout-brand:hover{text-decoration:none}.a-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.a-Layout-headerBar{border-bottom:0;min-height:3.125rem;padding:0 .625rem}.a-Layout-aside{float:left;background:#3a3f51;color:#a6a8b1}.a-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.a-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:12.5rem}.a-Layout-asideFooter~div{padding-bottom:3.125rem}.a-Layout-content{height:100%}.a-Layout-content::before,.a-Layout-content::after{display:table;content:''}.a-Layout-content::after{clear:both}.a-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.a-Layout--noFooter .a-Layout-body{padding-bottom:0}.a-Layout-content .a-Layout-body{float:left}.a-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.a-Layout--sm .a-Layout-asideFooter{max-width:9.375rem}.a-Layout--sm .a-AsideNav-item a{font-size:.75rem}.a-Layout--md .a-Layout-asideFooter{max-width:15.625rem}.a-Layout--lg .a-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.a-Layout-content{transition:transform .2s ease}.a-Layout-aside{display:none}.a-Layout--offScreen .a-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.a-Layout-headerBar{display:none}.a-Layout--offScreen .a-Layout-content,.a-Layout--offScreen .a-Layout-footer{background-color:#f0f3f4;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.a-Layout--boxed{width:47.5rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:47.5rem}.a-Layout-brand,.a-Layout-brandBar,.a-Layout-aside{width:12.5rem}.a-Layout-brandBar{float:left}.a-Layout--withAside .a-Layout-headerBar,.a-Layout--withAside .a-Layout-content,.a-Layout--withAside .a-Layout-footer{margin-left:12.5rem}.a-Layout .visible-folded{display:none}.a-Layout--folded .visible-folded{display:inherit}.a-Layout--folded .hidden-folded{display:none!important}.a-Layout--folded .text-center-folded{text-align:center}.a-Layout--folded .pull-none-folded{float:none!important}.a-Layout--folded .w-auto-folded{width:auto}.a-Layout--folded .a-Layout-aside,.a-Layout--folded .a-Layout-brandBar{width:3.75rem}.a-Layout--folded.a-Layout--withAside .a-Layout-headerBar,.a-Layout--folded.a-Layout--withAside .a-Layout-content,.a-Layout--folded.a-Layout--withAside .a-Layout-footer{margin-left:3.75rem}.a-Layout--folded .a-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.a-Layout--asideFixed .a-Layout-aside{height:100%}.a-Layout--asideFixed .a-Layout-aside:before{position:fixed;z-index:15}.a-Layout--asideFixed .a-Layout-brandBar{position:fixed}.a-Layout--asideFixed .a-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:12.4375rem;z-index:1200}.a-Layout--asideFixed .a-Layout-asideInner{width:13.5625rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.a-Layout--asideFixed .a-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.a-Layout--asideFixed .a-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.a-Layout--asideFixed .a-Layout-asideInner>*{width:12.5rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-aside{position:static}.a-Layout--asideFixed.a-Layout--folded .a-Layout-brandBar{position:static}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideInner{overflow:visible;width:4.8125rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideInner>*{width:3.75rem}.a-Layout--sm:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--sm:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--sm:not(.a-Layout--folded) .a-Layout-aside{width:9.375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:9.375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:9.3125rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:10.4375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:9.375rem}.a-Layout--md:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--md:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--md:not(.a-Layout--folded) .a-Layout-aside{width:15.625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:15.625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:15.5625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:16.6875rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:15.625rem}.a-Layout--lg:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--lg:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--lg:not(.a-Layout--folded) .a-Layout-aside{width:18.75rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:18.75rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:18.6875rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:19.8125rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.a-Layout--boxed{width:61.25rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:61.25rem}}@media (min-width:1200px){.a-Layout--boxed{width:73.75rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:73.75rem}}.a-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.a-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.a-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.a-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.a-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.a-AsideNav::before,.a-AsideNav::after{display:table;content:''}.a-AsideNav::after{clear:both}.a-AsideNav-label{color:#8b8e99;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.a-AsideNav-list{list-style:none;padding:0;margin:0}.a-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.a-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.a-AsideNav-item.is-open>a>.a-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#fff}.a-AsideNav-itemArrow>svg{color:#b4b6bd;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.a-AsideNav-item.is-open>a>.a-AsideNav-itemArrow>svg{transform:rotate(90deg)}.a-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.a-AsideNav-itemIcon{margin:-.59375rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:inherit;font-size:inherit}.a-AsideNav-itemIcon:before{position:relative;z-index:2}.a-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#242734}.is-open>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:hover>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:focus>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:active>.a-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.a-Layout--folded .a-AsideNav-item.is-open>.a-AsideNav-subList{overflow:hidden}.a-AsideNav-item{position:relative;display:block}.a-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.875rem;padding:.59375rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#b4b6bd;text-decoration:none;user-select:none}.a-AsideNav-item a:hover{color:#fff;text-decoration:none;background-color:#32374a}.a-AsideNav-item a:hover .a-AsideNav-itemIcon{color:inherit}.a-AsideNav-item.is-active>a{background-color:#2e3344;color:#fff}.a-AsideNav-item.is-active>a:hover{background-color:#32374a}.a-AsideNav-item.is-lg>a{padding:.90625rem .9375rem}.a-AsideNav-item .a-AsideNav-item a{padding-left:2.8125rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-item a{padding-left:4.6875rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-item .a-AsideNav-item a{padding-left:6.5625rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-subList{display:none}.a-AsideNav-item .a-AsideNav-item.is-open .a-AsideNav-subList{display:block}.a-AsideNav-subHeader{display:none}.a-AsideNav-subHeader a{cursor:default;background:transparent;color:#8b8e99;padding:.90625rem 1.25rem}.a-AsideNav-subHeader a:hover{color:#8b8e99;background:transparent}.a-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.a-AsideNav-divider{width:auto;height:.0625rem;margin:.625rem 0;overflow:hidden;font-size:0;background-color:#2e3344}@media (min-width:768px){.a-Layout--folded .a-AsideNav-label{display:none}.a-Layout--folded .a-AsideNav-subHeader{display:block}.a-Layout--folded .a-AsideNav-item:hover>.a-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:3.125rem;border:0}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemArrow,.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemLabel{display:none}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:3.125rem;border:0!important}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item.is-lg>a{height:3.125rem}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item.is-lg>a .a-AsideNav-itemIcon{line-height:3.125rem}.a-Layout--folded .a-AsideNav-item .a-AsideNav-item a{padding-left:1.25rem!important}.a-Layout--folded .a-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:12.5rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.a-Layout--folded.a-Layout--sm .a-AsideNav-subList{width:9.375rem}.a-Layout--folded.a-Layout--md .a-AsideNav-subList{width:15.625rem}.a-Layout--folded.a-Layout--lg .a-AsideNav-subList{width:18.75rem}}.a-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.a-Hbox>.a-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.a-FormHbox{margin-left:-15px;margin-right:-15px}.a-FormHbox>.a-Hbox>.a-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.a-FormHbox>.a-Hbox>.a-Hbox-col>.a-Form-group{margin-left:0;margin-right:0}.a-FormHbox>.a-Hbox>.a-Hbox-col>.a-Form-group:last-child{margin-bottom:0}.a-FormHbox.a-Hbox--xs{margin-left:-5px;margin-right:-5px}.a-FormHbox.a-Hbox--xs>.a-Hbox>.a-Hbox-col{padding-left:5px;padding-right:5px}.a-FormHbox.a-Hbox--sm{margin-left:-10px;margin-right:-10px}.a-FormHbox.a-Hbox--sm>.a-Hbox>.a-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.a-Hbox--autoSm{display:block}.a-Hbox--autoSm>.a-Hbox-col{width:auto;height:auto;display:block}.a-Hbox--autoSm>.a-Hbox-col.show{display:block!important}.a-Hbox--autoSm .a-Vbox{height:auto}.a-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.a-Hbox--autoXs{display:block}.a-Hbox--autoXs>.a-Hbox-col{width:auto;height:auto;display:block}.a-Hbox--autoXs .a-Vbox{height:auto}.a-Hbox--autoXs .cell-inner{position:static!important}}.a-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.a-Vbox .row-row{display:table-row;height:100%}.a-Vbox .row-row .a-Vbox-cell{position:relative;height:100%;width:100%}.ie .a-Vbox .row-row .a-Vbox-cell{display:table-cell;overflow:auto}.ie .a-Vbox .row-row .a-Vbox-cell .cell-inner{overflow:visible!important}.a-Vbox .row-row .a-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.a-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.a-Button .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button>svg.icon:not(:last-child):not(.pull-right),.a-Button>.pull-left{margin-right:.75rem}.a-Button .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button>.pull-right{margin-left:.75rem}.a-Button:hover:focus{color:#58666e;text-decoration:none}.a-Button:focus,.a-Button.focus{outline:0;box-shadow:none}.a-Button.is-disabled,.a-Button:disabled{opacity:.65;box-shadow:none;pointer-events:none;border-color:#dee2e6}.a-Button:not(:disabled):not(.is-disabled){cursor:pointer}.a-Button:not(:disabled):not(.is-disabled):active,.a-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:inset 0 3px 5px rgba(28,43,54,.125)}.a-Button:not(:disabled):not(.is-disabled):active:focus,.a-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:inset 0 3px 5px rgba(28,43,54,.125)}.a-Button>.pull-left,.a-Button>.pull-right{line-height:inherit}.a-Button>.fa,.a-Button>.iconfont,.a-Button>.glyphicon{font-size:inherit}a.a-Button.is-disabled,fieldset:disabled a.a-Button{pointer-events:none}.a-Button--primary{color:#fff;background-color:#7266ba;border-color:#7266ba;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary:hover{color:#fff;background-color:#5b4eac;border-color:#564aa3}.a-Button--primary:focus{color:#fff;background-color:#7266ba;border-color:#7266ba;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary:hover:focus{color:#fff;background-color:#5b4eac;border-color:#564aa3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary.is-disabled,.a-Button--primary:disabled{background-color:#7266ba;color:#fff;border-color:#dee2e6}.a-Button--primary:not(:disabled):not(.is-disabled):active,.a-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#564aa3;border-color:#52469b}.a-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.a-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary.is-disabled,.a-Button--secondary:disabled{background-color:#6c757d;color:#fff;border-color:#dee2e6}.a-Button--secondary:not(:disabled):not(.is-disabled):active,.a-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.a-Button--success{color:#fff;background-color:#27c24c;border-color:#27c24c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success:hover{color:#fff;background-color:#21a240;border-color:#1e983b}.a-Button--success:focus{color:#fff;background-color:#27c24c;border-color:#27c24c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success:hover:focus{color:#fff;background-color:#21a240;border-color:#1e983b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success.is-disabled,.a-Button--success:disabled{background-color:#27c24c;color:#fff;border-color:#dee2e6}.a-Button--success:not(:disabled):not(.is-disabled):active,.a-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1e983b;border-color:#1c8d37}.a-Button--info{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-Button--info:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info.is-disabled,.a-Button--info:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-Button--info:not(:disabled):not(.is-disabled):active,.a-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-Button--warning{color:#fff;background-color:#fad733;border-color:#fad733;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning:hover{color:#fff;background-color:#f9d00e;border-color:#f4ca06}.a-Button--warning:focus{color:#fff;background-color:#fad733;border-color:#fad733;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning:hover:focus{color:#fff;background-color:#f9d00e;border-color:#f4ca06;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning.is-disabled,.a-Button--warning:disabled{background-color:#fad733;color:#fff;border-color:#dee2e6}.a-Button--warning:not(:disabled):not(.is-disabled):active,.a-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#f4ca06;border-color:#e8c006}.a-Button--danger{color:#fff;background-color:#f05050;border-color:#f05050;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger:hover{color:#fff;background-color:#ed2d2d;border-color:#ec2121}.a-Button--danger:focus{color:#fff;background-color:#f05050;border-color:#f05050;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger:hover:focus{color:#fff;background-color:#ed2d2d;border-color:#ec2121;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger.is-disabled,.a-Button--danger:disabled{background-color:#f05050;color:#fff;border-color:#dee2e6}.a-Button--danger:not(:disabled):not(.is-disabled):active,.a-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#ec2121;border-color:#eb1515}.a-Button--light{color:#58666e;background-color:#edf1f2;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light:hover{color:#58666e;background-color:#d7e0e2;border-color:#c1c9d0}.a-Button--light:focus{color:#58666e;background-color:#edf1f2;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light:hover:focus{color:#58666e;background-color:#d7e0e2;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light.is-disabled,.a-Button--light:disabled{background-color:#edf1f2;color:#58666e;border-color:#dee2e6}.a-Button--light:not(:disabled):not(.is-disabled):active,.a-Button--light:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#cfdadd;border-color:#bac2cb}.a-Button--dark{color:#fff;background-color:#3a3f51;border-color:#3a3f51;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark:hover{color:#fff;background-color:#2a2e3b;border-color:#252833}.a-Button--dark:focus{color:#fff;background-color:#3a3f51;border-color:#3a3f51;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark:hover:focus{color:#fff;background-color:#2a2e3b;border-color:#252833;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark.is-disabled,.a-Button--dark:disabled{background-color:#3a3f51;color:#fff;border-color:#dee2e6}.a-Button--dark:not(:disabled):not(.is-disabled):active,.a-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#252833;border-color:#1f222c}.a-Button--default{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-Button--default:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default.is-disabled,.a-Button--default:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-Button--default:not(:disabled):not(.is-disabled):active,.a-Button--default:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:.142rem;height:1.375rem}.a-Button--xs .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--xs>svg.icon:not(:last-child):not(.pull-right),.a-Button--xs>.pull-left{margin-right:.3125rem}.a-Button--xs .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--xs>.pull-right{margin-left:.3125rem}.a-Button--xs.a-Button--iconOnly{min-width:1.83333rem}.a-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem}.a-Button--sm .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--sm>svg.icon:not(:last-child):not(.pull-right),.a-Button--sm>.pull-left{margin-right:.5rem}.a-Button--sm .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--sm>.pull-right{margin-left:.5rem}.a-Button--sm.a-Button--iconOnly{min-width:2.5rem}.a-Button--md{padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.a-Button--md .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--md>svg.icon:not(:last-child):not(.pull-right),.a-Button--md>.pull-left{margin-right:.75rem}.a-Button--md .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--md>.pull-right{margin-left:.75rem}.a-Button--md.a-Button--iconOnly{min-width:2.83333rem}.a-Button--lg{padding:.625rem 1rem;font-size:1.25rem;line-height:1.2;border-radius:.142rem;height:2.875rem}.a-Button--lg .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--lg>svg.icon:not(:last-child):not(.pull-right),.a-Button--lg>.pull-left{margin-right:1rem}.a-Button--lg .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--lg>.pull-right{margin-left:1rem}.a-Button--lg.a-Button--iconOnly{min-width:3.83333rem}.a-Button--iconOnly{min-width:2.83333rem}.a-Button--iconOnly:not(.a-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.a-Button--iconOnly:not(.a-Button--link)>.fa,.a-Button--iconOnly:not(.a-Button--link)>.iconfont{font-size:1rem}.a-Button--iconOnly:not(.a-Button--link)>.iconfont{line-height:1}.a-Button--link{width:auto;min-width:auto;font-weight:400;color:#58666e;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.a-Button--link:hover:focus{color:#414c52;text-decoration:underline;box-shadow:none}.a-Button--link:disabled,.a-Button--link.is-disabled{color:#99a6ad;pointer-events:none;background-color:transparent}.a-Button--block{display:block;width:100%}.a-Button--block+.a-Button--block{margin-top:.9375rem}input[type=submit].a-Button--block,input[type=reset].a-Button--block,input[type=button].a-Button--block{width:100%}.a-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.a-ButtonToolbar>.a-Button{margin-left:.3125rem;margin-top:.3125rem}.a-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .a-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.a-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.a-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:unset;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:.0625rem solid #dee2e6;border-radius:.142rem}.a-Modal-content.in,.a-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.a-Modal-content.in{animation-name:modalIn}.a-Modal-content.out{animation-name:modalOut}.a-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);pointer-events:none;opacity:0}.a-Modal-overlay.in{opacity:1}.a-Modal-overlay.out{opacity:0}.a-Modal-header{padding:.59375rem 1.25rem;background-color:#f9f9f9;border-bottom:.0625rem solid #edeff1;border-top-left-radius:.142rem;border-top-right-radius:.142rem}.a-Modal-header::before,.a-Modal-header::after{display:table;content:''}.a-Modal-header::after{clear:both}.a-Modal-title{font-size:.875rem;color:#414c52}.a-Modal-close{float:right;color:#99a6ad;line-height:inherit;text-decoration:none;vertical-align:middle}.a-Modal-close svg{width:.75rem;height:.75rem;fill:#99a6ad}.a-Modal-close:not(.is-disabled){cursor:pointer}.a-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#58666e}.a-Modal-close:not(.is-disabled):hover svg{fill:#58666e}.a-Modal-content>.a-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.a-Modal-body{padding:.9375rem 1.25rem 1.25rem;flex-basis:0;flex-grow:1}.a-Modal-header+.a-Modal-body{padding-top:1.25rem}.a-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.625rem;border-top:.0625rem solid #edeff1;margin:0;border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem}.a-Modal-footer .a-Button{margin-left:.625rem}.a-Modal--2th .a-Modal-content{margin-top:5.625rem}.a-Modal--3th .a-Modal-content{margin-top:7.5rem}.a-Modal--4th .a-Modal-content{margin-top:9.375rem}.a-Modal--5th .a-Modal-content{margin-top:11.25rem}.a-Modal--6th .a-Modal-content{margin-top:13.125rem}.a-Modal--7th .a-Modal-content{margin-top:15rem}.a-Modal--8th .a-Modal-content{margin-top:16.875rem}.a-Modal--9th .a-Modal-content{margin-top:18.75rem}.a-Modal--10th .a-Modal-content{margin-top:20.625rem}@media (min-width:576px){.a-Modal-content{max-width:31.25rem}.a-Modal--sm .a-Modal-content{max-width:21.875rem}.a-Modal--base .a-Modal-content{max-width:31.25rem}.a-Modal--md .a-Modal-content{max-width:50rem}.a-Modal--lg .a-Modal-content{max-width:68.75rem}.a-Modal--xl .a-Modal-content{max-width:90%}}.a-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.a-Dialog-error{color:#f05050}.a-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.a-Modal--full>.a-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.a-Modal--full>.a-Modal-content>.a-Modal-body{height:0;overflow:auto}.a-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.a-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #dee2e6;border-radius:0;transition:transform ease-in-out .3s}.a-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.a-Drawer-overlay.in{opacity:1}.a-Drawer-header{padding:.9375rem;background-color:#f9f9f9;border-bottom:.0625rem solid #edeff1;border-top-left-radius:0;border-top-right-radius:0}.a-Drawer-header::before,.a-Drawer-header::after{display:table;content:''}.a-Drawer-header::after{clear:both}.a-Drawer-title{font-size:1rem;color:#414c52}.a-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.a-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.a-Drawer-close:not(.is-disabled){cursor:pointer}.a-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.a-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.a-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.a-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #edeff1;border-bottom-left-radius:0;border-bottom-right-radius:0}.a-Drawer-footer .a-Button{margin-left:.3125rem}.a-Drawer-footer .a-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.a-Drawer-footer .a-Drawer-error{color:#f05050}.a-Drawer.a-Drawer--noOverlay{pointer-events:none}.a-Drawer.a-Drawer--noOverlay .a-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.a-Drawer .a-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #dee2e6;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.a-Drawer .a-Drawer-content{width:80%;height:80%}.a-Drawer--xs .a-Drawer-content{width:12.5rem;height:12.5rem}.a-Drawer--sm .a-Drawer-content{width:18.75rem;height:18.75rem}.a-Drawer--md .a-Drawer-content{width:31.25rem;height:31.25rem}.a-Drawer--lg .a-Drawer-content{width:50rem;height:50rem}.a-Drawer--xl .a-Drawer-content{width:90%;height:90%}}.a-Drawer--top .a-Drawer-content.in,.a-Drawer--right .a-Drawer-content.in,.a-Drawer--bottom .a-Drawer-content.in,.a-Drawer--left .a-Drawer-content.in{transform:translate3d(0,0,0)}.a-Drawer--top .a-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.a-Drawer--top.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.a-Drawer--top .a-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.a-Drawer--top .a-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.a-Drawer--right .a-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.a-Drawer--right.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.a-Drawer--right .a-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.a-Drawer--right .a-Drawer-footer{justify-content:flex-start}.a-Drawer--right .a-Drawer-footer .a-Button{margin-left:0;margin-right:.3125rem}.a-Drawer--right .a-Drawer-footer .a-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.a-Drawer--right .a-Drawer-footer .a-Drawer-error{color:#f05050}.a-Drawer--right .a-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.a-Drawer--bottom .a-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.a-Drawer--bottom.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.a-Drawer--bottom .a-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.a-Drawer--bottom .a-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.a-Drawer--left .a-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.a-Drawer--left.a-Drawer--noOverlay .a-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.a-Drawer--left .a-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.a-Drawer--left .a-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.a-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#fff;border:.0625rem solid #dee2e6;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.a-Tooltip-arrow::before,.a-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.a-Tooltip--top{margin-top:-.625rem}.a-Tooltip--top .a-Tooltip-arrow{bottom:-.5625rem}.a-Tooltip--top .a-Tooltip-arrow::before,.a-Tooltip--top .a-Tooltip-arrow::after{border-width:.5rem .5rem 0}.a-Tooltip--top .a-Tooltip-arrow::before{bottom:0;border-top-color:#dee2e6}.a-Tooltip--top .a-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#fff}.a-Tooltip--right{margin-left:.625rem}.a-Tooltip--right .a-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.a-Tooltip--right .a-Tooltip-arrow::before,.a-Tooltip--right .a-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.a-Tooltip--right .a-Tooltip-arrow::before{left:0;border-right-color:#dee2e6}.a-Tooltip--right .a-Tooltip-arrow::after{left:.0625rem;border-right-color:#fff}.a-Tooltip--bottom{margin-top:.625rem}.a-Tooltip--bottom .a-Tooltip-arrow{top:-.5625rem}.a-Tooltip--bottom .a-Tooltip-arrow::before,.a-Tooltip--bottom .a-Tooltip-arrow::after{border-width:0 .5rem .5rem}.a-Tooltip--bottom .a-Tooltip-arrow::before{top:0;border-bottom-color:#dee2e6}.a-Tooltip--bottom .a-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#fff}.a-Tooltip--bottom .a-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #f7f7f7}.a-Tooltip--left{margin-left:-.625rem}.a-Tooltip--left .a-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.a-Tooltip--left .a-Tooltip-arrow::before,.a-Tooltip--left .a-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.a-Tooltip--left .a-Tooltip-arrow::before{right:0;border-left-color:#dee2e6}.a-Tooltip--left .a-Tooltip-arrow::after{right:.0625rem;border-left-color:#fff}.a-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#414c52;background-color:#f7f7f7;border-bottom:.0625rem solid #ebebeb;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.a-Tooltip-title:empty{display:none}.a-Tooltip-body{color:#58666e;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.a-PopOver{position:absolute;background:#fff;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);border:.0625rem solid #dee2e6;border-radius:.142rem}.a-PopOver>*{position:relative;z-index:2}.a-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.a-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.9375rem .9375rem .9375rem 3.4375rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);border-radius:.428rem;border:0 solid;color:#fff;position:relative;opacity:.8;cursor:pointer;opacity:0;transform:translateZ(0)}.a-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.a-Toast.in,.a-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.a-Toast.in{animation-name:bounceIn}.a-Toast.out{animation-name:bounceOut}.a-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#fff;line-height:1;opacity:.8}.a-Toast-close:hover{color:#fff;opacity:1}.a-Toast-title{display:block;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.a-Toast-body{display:block;vertical-align:middle}.a-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;position:absolute;left:.9375rem;top:.9375rem;width:1.5625rem;height:1.5625rem;align-items:center;justify-content:center}.a-Toast-icon>svg{top:0;width:1.875rem;height:1.875rem;color:inherit}.a-Toast--error{color:#fff;border-color:#dc3545;background-color:#dc3545}.a-Toast--warning{color:#fff;border-color:#fad733;background-color:#fad733}.a-Toast--info{color:#fff;border-color:#23b7e5;background-color:#23b7e5}.a-Toast--success{color:#fff;border-color:#27c24c;background-color:#27c24c}.a-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.a-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.a-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.a-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.a-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.a-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.a-Alert{font-size:.875rem;box-shadow:none;padding:.9375rem;border:.0625rem solid transparent;border-radius:.285rem;margin-bottom:1.25rem}.a-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.a-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.a-Alert--danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.a-Alert--info{color:#31708f;background-color:#d9edf7;border-color:#c4ebf3}.a-Alert--success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.a-Alert--warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.a-ArrayInput-placeholder{color:#99a6ad;padding-top:.4375rem}.a-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.a-ArrayInput-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.a-ArrayInput-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.a-ArrayInput-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-ArrayInput-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn.is-disabled,.a-ArrayInput-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.a-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.a-ArrayInput-toolbar--dnd{padding-left:29px}.a-ArrayInput-sortTip{color:#99a6ad}.a-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.a-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.a-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.a-ArrayInput-item--dragging{position:relative;opacity:.4}.a-ArrayInput-itemRemove,.a-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.4375rem .3125rem;cursor:pointer}.a-ArrayInput-itemRemove>svg,.a-ArrayInput-itemDrager>svg{color:#6c757d}.a-ArrayInput-itemRemove:hover>svg,.a-ArrayInput-itemDrager:hover>svg{color:#212529}.a-ArrayInput-itemDrager{cursor:move}.a-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #dee2e6;list-style:none;user-select:none}.a-Tabs-links::before,.a-Tabs-links::after{display:table;content:''}.a-Tabs-links::after{clear:both}.a-Tabs-links>.a-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.a-Tabs-links>.a-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#58666e;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.a-Tabs-links>.a-Tabs-link>.a-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.a-Tabs-links>.a-Tabs-link:hover>.a-Combo-toolbarBtn{display:block}.a-Tabs-links>.a-Tabs-link:hover>a:first-child,.a-Tabs-links>.a-Tabs-link>a:first-child:focus{border-color:#e9ecef;text-decoration:none}.a-Tabs-links>.a-Tabs-link.disabled,.a-Tabs-links>.a-Tabs-link.is-disabled{cursor:not-allowed}.a-Tabs-links>.a-Tabs-link.disabled>a:first-child,.a-Tabs-links>.a-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.a-Tabs-links>.a-Tabs-link.active>a:first-child,.a-Tabs-links>.a-Tabs-link.is-active>a:first-child{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:transparent}.a-Tabs-content{background-color:#fff;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#dee2e6}.a-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.a-Tabs-pane.is-active{display:block}.a-Tabs-pane.in{opacity:1}.a-Tabs--line>.a-Tabs-links{border-bottom-color:#dee2e6}.a-Tabs--line>.a-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.a-Tabs--line>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--line>.a-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.a-Tabs--line>.a-Tabs-links>li:last-child>a{margin:0}.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child:focus{border-color:#7266ba;color:#7266ba;background-color:transparent}.a-Tabs--line>.a-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.a-Tabs--card>.a-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#f6f8f8;border-top:.0625rem solid #dee2e6}.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child:focus{border-color:#dee2e6;color:#7266ba;border-bottom-color:#fff;background-color:#fff}.a-Tabs--card>.a-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.a-Tabs--card>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--card>.a-Tabs-links>li>a:first-child:focus{color:#666;background-color:#fff;border-bottom-color:transparent}.a-Tabs--card>.a-Tabs-content{border-width:0}.a-Tabs--radio>.a-Tabs-links{border:0;margin-bottom:.625rem}.a-Tabs--radio>.a-Tabs-links>li{margin:0}.a-Tabs--radio>.a-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#dee2e6;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#eaf6fe}.a-Tabs--radio>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--radio>.a-Tabs-links>li>a:first-child:focus{color:#7266ba}.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child:focus{color:#eaf6fe;background-color:#7266ba;border-color:#7266ba;position:relative;z-index:1}.a-Tabs--radio>.a-Tabs-links>li+li{margin-left:-1px}.a-Tabs--radio>.a-Tabs-content{border-top:.0625rem solid #dee2e6}.a-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #dee2e6;border-radius:0}.a-Tabs--vertical>.a-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.a-Tabs--vertical>.a-Tabs-links>li{margin:0 0 0 -1px;display:block}.a-Tabs--vertical>.a-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.a-Tabs--vertical>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--vertical>.a-Tabs-links>li>a:first-child:focus{color:#7266ba;border-color:transparent}.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child:focus{color:#7266ba;border-color:#7266ba}.a-Tabs--vertical>.a-Tabs-content{border:0;flex-grow:1}.a-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.a-Nav{list-style:none;user-select:none;margin:0;padding:0}.a-Nav .a-Nav-itemIcon{margin-right:.3125rem}.a-Nav--tabs{border-bottom:.0625rem solid #dee2e6}.a-Nav--tabs .a-Nav-item{margin-bottom:-.0625rem;display:inline-block}.a-Nav--tabs .a-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#58666e;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.a-Nav--tabs .a-Nav-item:hover>a,.a-Nav--tabs .a-Nav-item>a:focus{border-color:#e9ecef;text-decoration:none}.a-Nav--tabs .a-Nav-item.disabled>a,.a-Nav--tabs .a-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.a-Nav--tabs .a-Nav-item.active>a,.a-Nav--tabs .a-Nav-item.is-active>a{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:#fff}.a-Nav--stacked .a-Nav-item{position:relative}.a-Nav--stacked .a-Nav-item>a{display:block;outline:0;color:#58666e;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:.285rem}.a-Nav--stacked .a-Nav-item:hover>a,.a-Nav--stacked .a-Nav-item>a:focus{border-color:#414c52;text-decoration:none;background-color:rgba(0,0,0,.05)}.a-Nav--stacked .a-Nav-item.disabled>a,.a-Nav--stacked .a-Nav-item.is-disabled>a{color:#99a6ad;background-color:transparent;pointer-events:none}.a-Nav--stacked .a-Nav-item.active>a,.a-Nav--stacked .a-Nav-item.is-active>a{color:#fff;background-color:#23b7e5;border-left:4px solid transparent;padding-left:.75rem}.a-Nav--stacked .a-Nav-item.is-unfolded .a-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.a-Nav--stacked .a-Nav-item.is-unfolded .a-Nav-subItems{display:block}.a-Nav--stacked .a-Nav-item .a-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.a-Nav--stacked .a-Nav-item .a-Nav-itemToggler>svg{width:10px;height:10px;top:0}.a-Nav--stacked .a-Nav-item .a-Nav-subItems{display:none;padding-left:0;list-style:none}.a-Nav--stacked .a-Nav-item .a-Nav-item{font-size:.875rem}.a-Nav--stacked .a-Nav-item .a-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.a-Nav--stacked .a-Nav-item .a-Nav-item.active>a:before,.a-Nav--stacked .a-Nav-item .a-Nav-item.is-active>a:before{background-color:#e5eaeb}.a-Page{width:100%;min-height:100%}.a-Page-header{padding:.9375rem}.a-Page-main{background:transparent;height:100%;display:flex;flex-direction:column}.a-Page-content{padding:0}.a-Page-main>.a-Page-header{border-bottom:.0625rem solid #dee2e6}.a-Page-headerRow{border-bottom:.0625rem solid #dee2e6;display:flex;flex-direction:row;align-items:center}.a-Page-headerRow .a-Page-header,.a-Page-headerRow .a-Page-toolbar{flex-grow:1}.a-Page-headerRow .a-Page-toolbar{text-align:right;padding-right:.9375rem}.a-Page-title{margin:0;padding:0;color:#414c52;line-height:1.1;font-size:1rem;font-weight:400}.a-Page-body{padding:.9375rem;flex:1 auto}.a-Page-asideTplWrapper{padding:.3125rem}.a-Page-toolbar .a-Button+.a-Button{margin-left:.3125rem}.a-Page-aside{background-color:#e5eaeb}@media (min-width:768px){.a-Page-aside{width:12.5rem;max-width:18.75rem;border-right:.0625rem solid #dee2e6}.a-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.a-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.a-Page--withSidebar>.a-Page-content{width:0;flex-grow:1}}.a-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.a-Remark-icon{color:#6c757d;font-size:.875rem;background-color:transparent;border:0 solid #dee2e6;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.a-Remark:hover>.a-Remark-icon{color:#212529;background-color:transparent;border-color:#dee2e6}.a-Remark>svg{width:.875rem;height:.875rem;color:#6c757d}.a-Remark:hover>svg{color:#212529}.a-Chart{min-width:300px;min-height:300px;position:relative}.a-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.a-Video{min-width:200px}.a-Video-cursor{position:absolute;border:2px solid #23b7e5;transition:all .5s ease-out}.a-Video-frameList .a-Video-frameItem{cursor:pointer}.a-Video-frameLabel{text-align:center}.a-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.a-Audio-original{display:none}.a-Audio--inline{display:inline-block}.a-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.a-Audio-controls{display:flex;flex-direction:row;align-items:center}.a-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.a-Audio-rateControl{margin-right:.625rem}.a-Audio-rateControl::after{clear:both;content:''}.a-Audio-rateControl .a-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.a-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.a-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.a-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.a-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.a-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.a-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.a-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.a-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.a-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.a-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.a-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.a-Audio-volumeControl .a-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.a-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Panel{margin-bottom:1.25rem;background-color:#fff;border:.0625rem solid transparent;border-radius:.142rem;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.a-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -.5rem 1rem rgba(28,43,54,.15);border-top:0}.a-Panel-fixedBottom.in{position:fixed;bottom:0}.a-Panel--default{border-color:#dee2e6}.a-Panel--default>.a-Panel-heading{background:#f6f8f8;color:#58666e}.a-Panel--default>.a-Panel-heading .badge{color:#f5f5f5;background:#333}.a-Panel--default>.a-Panel-heading{border-color:#dee2e6}.a-Panel--primary{border-color:#7266ba}.a-Panel--primary>.a-Panel-heading{background:#7266ba;color:#fff}.a-Panel--primary>.a-Panel-heading .badge{color:#7266ba;background:#fff}.a-Panel--primary>.a-Panel-heading,.a-Panel--primary>.a-Panel-footer{border-color:#7266ba}.a-Panel--success{border-color:#27c24c}.a-Panel--success>.a-Panel-heading{background:#27c24c;color:#fff}.a-Panel--success>.a-Panel-heading .badge{color:#27c24c;background:#fff}.a-Panel--success>.a-Panel-heading,.a-Panel--success>.a-Panel-footer{border-color:#27c24c}.a-Panel--info{border-color:#23b7e5}.a-Panel--info>.a-Panel-heading{background:#23b7e5;color:#fff}.a-Panel--info>.a-Panel-heading .badge{color:#23b7e5;background:#fff}.a-Panel--info>.a-Panel-heading,.a-Panel--info>.a-Panel-footer{border-color:#23b7e5}.a-Panel--warning{border-color:#fad733}.a-Panel--warning>.a-Panel-heading{background:#fad733;color:#fff}.a-Panel--warning>.a-Panel-heading .badge{color:#fad733;background:#fff}.a-Panel--warning>.a-Panel-heading,.a-Panel--warning>.a-Panel-footer{border-color:#fad733}.a-Panel--danger{border-color:#f05050}.a-Panel--danger>.a-Panel-heading{background:#f05050;color:#fff}.a-Panel--danger>.a-Panel-heading .badge{color:#f05050;background:#fff}.a-Panel--danger>.a-Panel-heading,.a-Panel--danger>.a-Panel-footer{border-color:#f05050}.a-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.a-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.a-Panel-body{padding:.9375rem}.a-Panel-footer{border-color:#edeff1;border-radius:0 0 .125rem .125rem;background:#fff;padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.a-Panel-footer .a-Button+.a-Button{margin-left:.625rem}.a-Panel-btnToolbar{text-align:right}.a-Panel-btnToolbar::before,.a-Panel-btnToolbar::after{display:table;content:''}.a-Panel-btnToolbar::after{clear:both}.a-Panel-btnToolbar .a-Button{margin-left:.625rem}.a-Panel-btnToolbar:empty{display:none}.a-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.a-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.a-Spinner-overlay.in{opacity:1}.a-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwcHgiICBoZWlnaHQ9IjIwMHB4IiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiIGNsYXNzPSJsZHMtcm9sbGluZyIgc3R5bGU9ImJhY2tncm91bmQ6IG5vbmU7Ij48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzE3YTJiOCIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoMTI5Ljg5NCA1MCA1MCkiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiBjYWxjTW9kZT0ibGluZWFyIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIiBkdXI9IjEuMnMiIGJlZ2luPSIwcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZVRyYW5zZm9ybT48L2NpcmNsZT48L3N2Zz4=");background-size:100%;transition:ease-out all .3s}.a-Spinner--lg{width:3.125rem;height:3.125rem}.a-Spinner--sm{width:1rem;height:1rem}.a-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.a-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.a-Spinner--overlay.a-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.a-Layout .a-Page-body>.a-Spinner-overlay{left:12.5rem}.a-Layout--folded .a-Page-body>.a-Spinner-overlay{left:3.75rem}}.a-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.a-ButtonGroup>.a-Button{position:relative;flex:0 1 auto}.a-ButtonGroup>.a-Button:hover{z-index:1}.a-ButtonGroup>.a-Button:focus,.a-ButtonGroup>.a-Button:active,.a-ButtonGroup>.a-Button.active,.a-ButtonGroup>.a-Button.is-active{z-index:1}.a-ButtonGroup .a-Button+.a-Button,.a-ButtonGroup .a-Button+.a-ButtonGroup,.a-ButtonGroup .a-ButtonGroup+.a-Button,.a-ButtonGroup .a-ButtonGroup+.a-ButtonGroup{margin-left:-.0625rem}.a-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.a-ButtonToolbar .a-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.a-ButtonGroup>.a-Button:first-child{margin-left:0}.a-ButtonGroup>.a-Button:not(:last-child),.a-ButtonGroup>.a-ButtonGroup:not(:last-child)>.a-Button{border-top-right-radius:0;border-bottom-right-radius:0}.a-ButtonGroup>.a-Button:not(:first-child),.a-ButtonGroup>.a-ButtonGroup:not(:first-child)>.a-Button{border-top-left-radius:0;border-bottom-left-radius:0}.a-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.a-ButtonGroup--vertical .a-Button,.a-ButtonGroup--vertical .a-ButtonGroup{width:100%}.a-ButtonGroup--vertical>.a-Button+.a-Button,.a-ButtonGroup--vertical>.a-Button+.a-ButtonGroup,.a-ButtonGroup--vertical>.a-ButtonGroup+.a-Button,.a-ButtonGroup--vertical>.a-ButtonGroup+.a-ButtonGroup{margin-top:-.0625rem;margin-left:0}.a-ButtonGroup--vertical>.a-Button:not(:last-child),.a-ButtonGroup--vertical>.a-ButtonGroup:not(:last-child)>.a-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.a-ButtonGroup--vertical>.a-Button:not(:first-child),.a-ButtonGroup--vertical>.a-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.a-ButtonGroupControl{display:inline-block}.a-ButtonGroupControl>.a-ButtonGroup--sm{margin-top:.125rem}.a-ButtonGroupControl>.a-ButtonGroup--xs{margin-top:.375rem}.a-DropDown{position:relative;display:inline-block}.a-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.a-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.a-DropDown.is-opened .a-DropDown-caret{transform:rotate(180deg)}.a-DropDown--block{display:block}.a-DropDown--block .a-Button{display:block}.a-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#fff;list-style:none;padding:.3125rem 0;border:.0625rem solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);min-width:10rem;text-align:left}.a-DropDown--alignRight .a-DropDown-menu{left:auto;right:0}.a-DropDown-menuItem,.a-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.a-DropDown-menuItem:hover,.a-DropDown-menu>li:hover{background-color:rgba(0,126,255,.08);color:inherit}.a-DropDown-menuItem:not(.is-disabled),.a-DropDown-menuItem:not(.disabled),.a-DropDown-menu>li:not(.is-disabled),.a-DropDown-menu>li:not(.disabled){cursor:pointer}.a-DropDown-menuItem.a-DropDown-divider,.a-DropDown-menu>li.a-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#dee2e6;padding:0}.a-DropDown-menu>li a{display:block;text-decoration:none}.a-DropDown-popover{border:0;box-shadow:none}.a-DropDown>.a-Button{min-width:unset}.a-Collapse{border:0;padding:0;margin-bottom:.9375rem}.a-Collapse-header{font-size:1rem;font-weight:400;color:#414c52;padding:.3125rem 0;border-bottom:.0625rem solid #edeff1}.a-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.a-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#58666e;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.a-Collapse.is-collapsed .a-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.a-Collapse--collapsable .a-Collapse-header{user-select:none}.a-Collapse-content{transition:height .35s ease}.a-Collapse-content.in,.a-Collapse-content.out{height:0;overflow:hidden}.a-ColorField{display:inline-block}.a-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(28,43,54,.075);background-color:#ccc}.a-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.a-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.a-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.a-ContextMenu-menu.in,.a-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.a-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.a-ContextMenu-menu.out{animation-name:contextMenuOut}.a-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.a-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.a-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.a-ContextMenu-item{position:relative}.a-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.a-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.a-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.a-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.a-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.a-ContextMenu-itemIcon{margin-right:5px}.a-ContextMenu-subList{display:none;list-style:none}.a-ContextMenu-item:hover>.a-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.a-ContextMenu-item:hover>.a-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.a-ContextMenu--left .a-ContextMenu-item:hover>.a-ContextMenu-subList{left:auto;right:100%}.a-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.a-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.a-Wizard{position:relative}.a-Wizard::before,.a-Wizard::after{display:table;content:''}.a-Wizard::after{clear:both}.a-Wizard,.a-Wizard-tabs{padding:0}.a-Wizard .a-Badge,.a-Wizard-tabs .a-Badge{display:inline-block;width:1.25rem;height:1.25rem;font-size:.75rem;line-height:1.25rem;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#ced4da;border-radius:.625rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.25rem;border:0;box-sizing:content-box}.a-Wizard .a-Badge.is-active,.a-Wizard-tabs .a-Badge.is-active{color:#fff;background-color:#23b7e5}.a-Wizard ul li.active,.a-Wizard-tabs ul li.active{color:#23b7e5}.a-Wizard .a-Panel-footer>.a-Form-group,.a-Wizard .a-Panel-footer>.btn,.a-Wizard-tabs .a-Panel-footer>.a-Form-group,.a-Wizard-tabs .a-Panel-footer>.btn{margin-left:.3125rem}.a-Wizard>ul.nav,.a-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #dee2e6}.a-Wizard>ul.nav li,.a-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:2.5rem;line-height:2.5rem}.a-Wizard>ul.nav li a,.a-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.a-Wizard>ul.nav li a div,.a-Wizard-tabs>ul.nav li a div{display:inline}.a-Wizard>ul.nav li:first-child,.a-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.a-Wizard>ul.nav li:before,.a-Wizard>ul.nav li:after,.a-Wizard-tabs>ul.nav li:before,.a-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #dee2e6;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.a-Wizard>ul.nav li:after,.a-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#f8f9fa;z-index:2}.a-Wizard>ul.nav li.is-active,.a-Wizard-tabs>ul.nav li.is-active{color:#23b7e5;background:#fff}.a-Wizard>ul.nav li.is-active:after,.a-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.a-Wizard-steps{font-size:.875rem;padding:0;background-color:#f8f9fa;border-bottom:.0625rem solid #dee2e6;text-align:left}.a-Wizard-steps::before,.a-Wizard-steps::after{display:table;content:''}.a-Wizard-steps::after{clear:both}.a-Wizard-steps ul{display:block;padding:0;margin:0;list-style:none outside none}.a-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:2.5rem;line-height:2.5rem}.a-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.a-Wizard-steps ul li:before,.a-Wizard-steps ul li:after{font-family:"";content:"";position:absolute;bottom:0;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #dee2e6;border-left-color:rgba(0,0,0,.05);z-index:2}.a-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#f8f9fa;z-index:2}.a-Wizard-steps ul li.is-active{color:#23b7e5;background:#fff}.a-Wizard-steps ul li.is-active:after{border-left-color:#fff}.a-Wizard-steps ul li.is-complete,.a-Wizard-steps ul li.is-complete:hover{color:#23b7e5;cursor:pointer;background:#f1f5f9}.a-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.a-Wizard-stepContent{padding:.9375rem}.a-Wizard-stepContent .Step-pane{display:none}.a-Wizard-stepContent .Step-pane.is-active{display:inherit}.a-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.a-Wizard--vertical.a-Wizard-steps{height:auto}.a-Wizard--vertical+.a-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.a-Wizard--vertical li{background-color:#f8f9fa}.a-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #dee2e6;padding-left:.9375rem}.a-Wizard--vertical+.a-Wizard-stepContent+.a-Panel-footer{clear:both}.a-Crud{position:relative}.a-Crud-selection{margin-bottom:.9375rem}.a-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.a-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.a-Crud-value:hover{background-color:#c2ecf9}.a-Crud-value.is-disabled{pointer-events:none;opacity:.65}.a-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Crud-valueIcon:hover{background-color:#c2ecf9}.a-Crud-valueLabel{padding:0 .3125rem}.a-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.a-Crud-toolbar-item{margin-left:.3125rem;margin-top:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.a-Crud-toolbar-item--left{float:left}.a-Crud-toolbar-item--right{float:right}.a-Crud-actions>*+.a-Button,.a-Crud-actions>*+.a-ButtonGroup,.a-Crud-actions>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Crud-statistics{line-height:1.875rem;vertical-align:middle}.a-Crud-pageSwitch .a-Select{margin-left:.3125rem}.a-Crud-pager{align-self:flex-start}@media (min-width:576px){.a-Crud-toolbar{margin-left:-.3125rem;margin-top:-.3125rem;flex-basis:0;flex-grow:1}.a-Crud-toolbar::before,.a-Crud-toolbar::after{display:table;content:''}.a-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.a-Button+.a-Button{margin-left:.3125rem}}.a-Table{position:relative;background:#fff;border:.0625rem solid #dee2e6;border-radius:.142rem;margin-bottom:1.25rem}.a-Form-control>.a-Table{margin-bottom:.625rem}.a-Table-fixedLeft,.a-Table-fixedRight{position:absolute;background:#fff;z-index:5;top:-999999px}.a-Table-fixedLeft.in,.a-Table-fixedRight.in{top:auto}.a-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(28,43,54,.15);left:0}.a-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(28,43,54,.15);right:0}.a-Table-fixedRight .a-Table-table>thead>tr>th:first-child,.a-Table-fixedRight .a-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.a-Table-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-Table-fixedTop>.a-Table-fixedLeft,.a-Table-fixedTop>.a-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #dee2e6}.a-Table-fixedTop>.a-Table-fixedLeft>table,.a-Table-fixedTop>.a-Table-fixedRight>table{margin-bottom:.3125rem}.a-Table-fixedTop>.a-Table-heading{border-bottom:0}.a-Table-fixedTop>.a-Table-wrapper{border-top:.0625rem solid #dee2e6}.a-Table-fixedTop.is-fakeHide>.a-Table-fixedLeft,.a-Table-fixedTop.is-fakeHide>.a-Table-fixedRight,.a-Table-fixedTop.is-fakeHide>.a-Table-wrapper{visibility:hidden;position:absolute}.a-Table-heading{background:#fff;border-bottom:.0625rem solid #dee2e6;padding:.59375rem .625rem}.a-Table--unsaved .a-Table-heading{background:#e8f0fe;color:#4285f4}.a-Table-wrapper{overflow:hidden}.a-Table-placeholder{color:#99a6ad;text-align:center;height:6.25rem;background-color:transparent!important}.a-Table-placeholder:hover{color:#99a6ad;background-color:transparent!important}.a-Table-placeholder>td{vertical-align:middle!important;text-align:center}.a-Table-header{padding:.625rem}.a-Table-header>*+.a-Button,.a-Table-header>*+.a-ButtonGroup,.a-Table-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.a-Table-toolbar::before,.a-Table-toolbar::after{display:table;content:''}.a-Table-toolbar::after{clear:both}.a-Table-toolbar .a-DropDown-menuItem{height:auto}.a-Table-toolbar .a-DropDown-menuItem .a-Checkbox{display:flex;align-items:center}.a-Table-header+.a-Table-toolbar{padding-top:0}.a-Table-contentWrap{position:relative}.a-Table-header+.a-Table-contentWrap,.a-Table-toolbar+.a-Table-contentWrap{border-top:.0625rem solid #dee2e6}.a-Table-footToolbar{border-top:.0625rem solid #dee2e6}.a-Table-actions{display:inline-block}.a-Table-actions>*{margin-right:.3125rem}.a-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.a-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.875rem;color:#58666e;background-color:#fff;border-spacing:0;border-collapse:collapse}.a-Table-table--withCombine>thead>tr>th:first-child,.a-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.a-Table-table--withCombine>thead>tr>th:last-child,.a-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.a-Table-table--withCombine>tbody>tr.a-Table-tr--odd{background-color:transparent}.a-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.a-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.a-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #dee2e6}.a-Table-table>thead>tr>th{background-color:#f6f8f8;padding:.59375rem .625rem;border-bottom:.0625rem solid #dee2e6;font-size:.875rem;color:#414c52;font-weight:400;white-space:nowrap}.a-Table-table>thead>tr>th[colspan]{text-align:center}.a-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.a-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.a-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #dee2e6}.a-Table-table>thead>tr>th .a-TableCell--title{display:flex;align-items:center}.a-Table-table>thead>tr>th .a-Remark{margin-left:.3125rem}.a-Table-table>thead>tr+tr{border-top:.0625rem solid #dee2e6}.a-Table-table>thead>tr{border-bottom:.0625rem solid #dee2e6}.a-Table-table>tbody>tr{background-color:transparent}.a-Table-table>tbody>tr+tr{border-top:.0625rem solid #dee2e6}.a-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #dee2e6}.a-Table-table>tbody>tr>th{background-color:#f6f8f8;color:#414c52;font-weight:400;white-space:nowrap;border-right:.0625rem solid #dee2e6}.a-Table-table>tbody>tr>td,.a-Table-table>tbody>tr>th{padding:.59375rem .625rem;vertical-align:top}.a-Table-table>tbody>tr>td:first-child,.a-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.a-Table-table>tbody>tr>td:last-child,.a-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.a-Table-table>tbody>tr.a-Table-tr--odd{background-color:#f9fafa}.a-Table-table>tbody>tr:hover,.a-Table-table>tbody>tr.is-hovered{background-color:#f3f6f6;border-color:#d6dfdf;color:#58666e}.a-Table-table>tbody>tr:hover+tr,.a-Table-table>tbody>tr.is-hovered+tr{border-color:#d6dfdf}.a-Table-table>tbody>tr.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-Table-table>tbody>tr.is-checked+tr{border-color:#abe4f6}.a-Table-table>tbody>tr.is-moved,.a-Table-table>tbody>tr.is-modified{background-color:#e8f0fe;border-color:#d0e0fd;color:#4285f4}.a-Table-table>tbody>tr.is-moved+tr,.a-Table-table>tbody>tr.is-modified+tr{border-color:#d0e0fd}.a-Table-table>tbody>tr.bg-light{background-color:#edf1f2;color:#58666e}.a-Table-table>tbody>tr.bg-light.lt,.a-Table-table>tbody>tr.bg-light .lt{background-color:#f3f5f6}.a-Table-table>tbody>tr.bg-light.lter,.a-Table-table>tbody>tr.bg-light .lter{background-color:#f6f8f8}.a-Table-table>tbody>tr.bg-light.dk,.a-Table-table>tbody>tr.bg-light .dk{background-color:#e4eaec}.a-Table-table>tbody>tr.bg-light.dker,.a-Table-table>tbody>tr.bg-light .dker{background-color:#dde6e9}.a-Table-table>tbody>tr.bg-light.bg,.a-Table-table>tbody>tr.bg-light .bg{background-color:#edf1f2}.a-Table-table>tbody>tr.bg-dark{background-color:#3a3f51;color:#a6a8b1}.a-Table-table>tbody>tr.bg-dark.lt,.a-Table-table>tbody>tr.bg-dark .lt{background-color:#474c5e}.a-Table-table>tbody>tr.bg-dark.lter,.a-Table-table>tbody>tr.bg-dark .lter{background-color:#54596a}.a-Table-table>tbody>tr.bg-dark.dk,.a-Table-table>tbody>tr.bg-dark .dk{background-color:#2e3344}.a-Table-table>tbody>tr.bg-dark.dker,.a-Table-table>tbody>tr.bg-dark .dker{background-color:#232735}.a-Table-table>tbody>tr.bg-dark.bg,.a-Table-table>tbody>tr.bg-dark .bg{background-color:#3a3f51}.a-Table-table>tbody>tr.bg-dark a,.a-Table-table>tbody>tr.bg-dark .a-Button--link{color:#c1c3c9}.a-Table-table>tbody>tr.bg-dark a:hover,.a-Table-table>tbody>tr.bg-dark .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-dark .open>a,.a-Table-table>tbody>tr.bg-dark .open>a:hover,.a-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-dark .text-muted{color:#8b8e99!important}.a-Table-table>tbody>tr.bg-dark .text-lt{color:#eaebed!important}.a-Table-table>tbody>tr.bg-black{background-color:#1c2b36;color:#7793a7}.a-Table-table>tbody>tr.bg-black.lt,.a-Table-table>tbody>tr.bg-black .lt{background-color:#263845}.a-Table-table>tbody>tr.bg-black.lter,.a-Table-table>tbody>tr.bg-black .lter{background-color:#314554}.a-Table-table>tbody>tr.bg-black.dk,.a-Table-table>tbody>tr.bg-black .dk{background-color:#131e26}.a-Table-table>tbody>tr.bg-black.dker,.a-Table-table>tbody>tr.bg-black .dker{background-color:#0a1015}.a-Table-table>tbody>tr.bg-black.bg,.a-Table-table>tbody>tr.bg-black .bg{background-color:#1c2b36}.a-Table-table>tbody>tr.bg-black a,.a-Table-table>tbody>tr.bg-black .a-Button--link{color:#96abbb}.a-Table-table>tbody>tr.bg-black a:hover,.a-Table-table>tbody>tr.bg-black .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-black .open>a,.a-Table-table>tbody>tr.bg-black .open>a:hover,.a-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-black .text-muted{color:#5c798f!important}.a-Table-table>tbody>tr.bg-black .text-lt{color:#c4d0d9!important}.a-Table-table>tbody>tr.bg-primary{background-color:#7266ba;color:#f4f3f9}.a-Table-table>tbody>tr.bg-primary.lt,.a-Table-table>tbody>tr.bg-primary .lt{background-color:#847abf}.a-Table-table>tbody>tr.bg-primary.lter,.a-Table-table>tbody>tr.bg-primary .lter{background-color:#958dc6}.a-Table-table>tbody>tr.bg-primary.dk,.a-Table-table>tbody>tr.bg-primary .dk{background-color:#6051b5}.a-Table-table>tbody>tr.bg-primary.dker,.a-Table-table>tbody>tr.bg-primary .dker{background-color:#5244a9}.a-Table-table>tbody>tr.bg-primary.bg,.a-Table-table>tbody>tr.bg-primary .bg{background-color:#7266ba}.a-Table-table>tbody>tr.bg-primary a,.a-Table-table>tbody>tr.bg-primary .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-primary a:hover,.a-Table-table>tbody>tr.bg-primary .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-primary .open>a,.a-Table-table>tbody>tr.bg-primary .open>a:hover,.a-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-primary .text-muted{color:#d6d3e6!important}.a-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-success{background-color:#27c24c;color:#c6efd0}.a-Table-table>tbody>tr.bg-success.lt,.a-Table-table>tbody>tr.bg-success .lt{background-color:#31d257}.a-Table-table>tbody>tr.bg-success.lter,.a-Table-table>tbody>tr.bg-success .lter{background-color:#48d46a}.a-Table-table>tbody>tr.bg-success.dk,.a-Table-table>tbody>tr.bg-success .dk{background-color:#20af42}.a-Table-table>tbody>tr.bg-success.dker,.a-Table-table>tbody>tr.bg-success .dker{background-color:#1a9c39}.a-Table-table>tbody>tr.bg-success.bg,.a-Table-table>tbody>tr.bg-success .bg{background-color:#27c24c}.a-Table-table>tbody>tr.bg-success a,.a-Table-table>tbody>tr.bg-success .a-Button--link{color:#eefaf1}.a-Table-table>tbody>tr.bg-success a:hover,.a-Table-table>tbody>tr.bg-success .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-success .open>a,.a-Table-table>tbody>tr.bg-success .open>a:hover,.a-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-success .text-muted{color:#9ee4af!important}.a-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-info{background-color:#23b7e5;color:#dcf2f8}.a-Table-table>tbody>tr.bg-info.lt,.a-Table-table>tbody>tr.bg-info .lt{background-color:#3dbde5}.a-Table-table>tbody>tr.bg-info.lter,.a-Table-table>tbody>tr.bg-info .lter{background-color:#55c3e6}.a-Table-table>tbody>tr.bg-info.dk,.a-Table-table>tbody>tr.bg-info .dk{background-color:#16aad8}.a-Table-table>tbody>tr.bg-info.dker,.a-Table-table>tbody>tr.bg-info .dker{background-color:#1199c4}.a-Table-table>tbody>tr.bg-info.bg,.a-Table-table>tbody>tr.bg-info .bg{background-color:#23b7e5}.a-Table-table>tbody>tr.bg-info a,.a-Table-table>tbody>tr.bg-info .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-info a:hover,.a-Table-table>tbody>tr.bg-info .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-info .open>a,.a-Table-table>tbody>tr.bg-info .open>a:hover,.a-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-info .text-muted{color:#b0e1f1!important}.a-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-warning{background-color:#fad733;color:#fffefa}.a-Table-table>tbody>tr.bg-warning.lt,.a-Table-table>tbody>tr.bg-warning .lt{background-color:#f8da4e}.a-Table-table>tbody>tr.bg-warning.lter,.a-Table-table>tbody>tr.bg-warning .lter{background-color:#f7de69}.a-Table-table>tbody>tr.bg-warning.dk,.a-Table-table>tbody>tr.bg-warning .dk{background-color:#fcd417}.a-Table-table>tbody>tr.bg-warning.dker,.a-Table-table>tbody>tr.bg-warning .dker{background-color:#face00}.a-Table-table>tbody>tr.bg-warning.bg,.a-Table-table>tbody>tr.bg-warning .bg{background-color:#fad733}.a-Table-table>tbody>tr.bg-warning a,.a-Table-table>tbody>tr.bg-warning .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-warning a:hover,.a-Table-table>tbody>tr.bg-warning .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-warning .open>a,.a-Table-table>tbody>tr.bg-warning .open>a:hover,.a-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-warning .text-muted{color:#fbf2cb!important}.a-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-danger{background-color:#f05050;color:#fff}.a-Table-table>tbody>tr.bg-danger.lt,.a-Table-table>tbody>tr.bg-danger .lt{background-color:#f06a6a}.a-Table-table>tbody>tr.bg-danger.lter,.a-Table-table>tbody>tr.bg-danger .lter{background-color:#f18282}.a-Table-table>tbody>tr.bg-danger.dk,.a-Table-table>tbody>tr.bg-danger .dk{background-color:#f13636}.a-Table-table>tbody>tr.bg-danger.dker,.a-Table-table>tbody>tr.bg-danger .dker{background-color:#f21b1b}.a-Table-table>tbody>tr.bg-danger.bg,.a-Table-table>tbody>tr.bg-danger .bg{background-color:#f05050}.a-Table-table>tbody>tr.bg-danger a,.a-Table-table>tbody>tr.bg-danger .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-danger a:hover,.a-Table-table>tbody>tr.bg-danger .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-danger .open>a,.a-Table-table>tbody>tr.bg-danger .open>a:hover,.a-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-danger .text-muted{color:#e6e6e6!important}.a-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.a-Table-table>tbody>tr.is-dragging{opacity:.1}.a-Table-table tr.a-Table-tr--2th.is-expanded .a-Table-expandCell:before{right:-.8125rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandBtn{position:relative;right:-1.25rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td{position:relative;padding-left:1.25rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--2th.is-expandable .a-Table-expandCell+td{padding-left:1.25rem}.a-Table-table tr.a-Table-tr--2th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--3th.is-expanded .a-Table-expandCell:before{right:-2.0625rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandBtn{position:relative;right:-2.5rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td{position:relative;padding-left:2.5rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--3th.is-expandable .a-Table-expandCell+td{padding-left:2.5rem}.a-Table-table tr.a-Table-tr--3th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--4th.is-expanded .a-Table-expandCell:before{right:-3.3125rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandBtn{position:relative;right:-3.75rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td{position:relative;padding-left:3.75rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--4th.is-expandable .a-Table-expandCell+td{padding-left:3.75rem}.a-Table-table tr.a-Table-tr--4th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--5th.is-expanded .a-Table-expandCell:before{right:-4.5625rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandBtn{position:relative;right:-5rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td{position:relative;padding-left:5rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--5th.is-expandable .a-Table-expandCell+td{padding-left:5rem}.a-Table-table tr.a-Table-tr--5th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--6th.is-expanded .a-Table-expandCell:before{right:-5.8125rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandBtn{position:relative;right:-6.25rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td{position:relative;padding-left:6.25rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--6th.is-expandable .a-Table-expandCell+td{padding-left:6.25rem}.a-Table-table tr.a-Table-tr--6th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--7th.is-expanded .a-Table-expandCell:before{right:-7.0625rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandBtn{position:relative;right:-7.5rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td{position:relative;padding-left:7.5rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--7th.is-expandable .a-Table-expandCell+td{padding-left:7.5rem}.a-Table-table tr.a-Table-tr--7th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--8th.is-expanded .a-Table-expandCell:before{right:-8.3125rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandBtn{position:relative;right:-8.75rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td{position:relative;padding-left:8.75rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--8th.is-expandable .a-Table-expandCell+td{padding-left:8.75rem}.a-Table-table tr.a-Table-tr--8th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--9th.is-expanded .a-Table-expandCell:before{right:-9.5625rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandBtn{position:relative;right:-10rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td{position:relative;padding-left:10rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--9th.is-expandable .a-Table-expandCell+td{padding-left:10rem}.a-Table-table tr.a-Table-tr--9th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--10th.is-expanded .a-Table-expandCell:before{right:-10.8125rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandBtn{position:relative;right:-11.25rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td{position:relative;padding-left:11.25rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--10th.is-expandable .a-Table-expandCell+td{padding-left:11.25rem}.a-Table-table tr.a-Table-tr--10th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table>thead>tr>th.a-Table-checkCell,.a-Table-table>tbody>tr>td.a-Table-checkCell{border-right:0;width:.0625rem}.a-Table-table>thead>tr>th.a-Table-checkCell .a-Checkbox,.a-Table-table>tbody>tr>td.a-Table-checkCell .a-Checkbox{margin:0}.a-Table-table>thead>tr>th.a-Table-expandCell,.a-Table-table>tbody>tr>td.a-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.a-Table-table>thead>tr>th.a-Table-dragCell,.a-Table-table>tbody>tr>td.a-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.a-Table-table>tbody>tr>td.a-Table-expandCell{position:relative}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:.4375rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-.8125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-2.0625rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-3.3125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-4.5625rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-5.8125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-7.0625rem}.a-Table-table>tbody>tr.is-expanded>td.a-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#dee2e6}.a-Table-table>thead>tr>th.a-TableCell--sortable{padding-right:1.125rem;position:relative}.a-Table-table>thead>tr>th.a-TableCell--searchable{padding-right:1.625rem;position:relative}.a-Table-table>thead>tr>th.a-TableCell--filterable{padding-right:1.625rem;position:relative}.a-TableCell-sortBtn{cursor:pointer;width:.5rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.375rem;top:50%;transform:translateY(-50%);color:#6c757d}.a-TableCell-sortBtn:hover{color:#212529}.a-TableCell-sortBtn--up>svg,.a-TableCell-sortBtn--down>svg,.a-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.a-TableCell-sortBtn--up,.a-TableCell-sortBtn--down,.a-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.a-TableCell-sortBtn--up.is-active,.a-TableCell-sortBtn--down.is-active,.a-TableCell-sortBtn--default.is-active{display:inline-block}.a-TableCell-sortBtn--default.is-active{color:#99a6ad}.a-TableCell-sortBtn--default.is-active:hover{color:#58666e}.a-TableCell-sortBtn--up.is-active,.a-TableCell-sortBtn--down.is-active{color:#7266ba}.a-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#99a6ad}.a-TableCell-searchBtn svg.icon{width:12px;height:12px}.a-TableCell-searchBtn:hover{color:#58666e}.a-TableCell-searchBtn.is-active{color:#7266ba}.a-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.a-TableCell-searchPopOver .a-Panel{margin:0}.a-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#99a6ad}.a-TableCell-filterBtn svg.icon{width:12px;height:12px}.a-TableCell-filterBtn:hover{color:#58666e}.a-TableCell-filterBtn.is-active{color:#7266ba}.a-TableCell-filterBtn .a-Remark{display:inline}.a-TableCell-filterPopOver{border:0;width:10rem}.a-TableCell-filterPopOver .a-DropDown-menu{margin:0;padding:0;border-radius:0}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider{height:2.125rem;line-height:2.125rem;padding:0 .75rem;background-color:#fff;margin:0}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider:hover{background-color:#edf1f2;color:#7266ba}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider.is-selected{background-color:#edf1f2;color:#7266ba}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider .a-Checkbox{width:100%;margin:0}.a-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(243,246,246,0) 0,#f3f6f6 20%,#f3f6f6 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.a-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#23b7e5;text-decoration:none}.a-Table-itemActions a:hover{color:#1485a8;text-decoration:underline}.a-Table-itemActions a.is-disabled{pointer-events:none;opacity:.65;color:#99a6ad}.a-Table-dragTip{color:#414c52;clear:both;margin-top:.3125rem;width:100%;color:#23b7e5}.a-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.a-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.59375rem .625rem}.a-Table-footTable>tbody>tr>td{word-break:break-all;padding:.59375rem .625rem}.a-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #e5e8eb}.a-Table-expandBtn{position:relative;z-index:1;color:#23b7e5;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.a-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.a-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.a-Table-expandBtn:hover{text-decoration:none}.a-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#6c757d}.a-Table-dragBtn:hover{text-decoration:none;color:#212529}.a-Table-table>tbody>tr:hover .a-Table-dragBtn,.a-Table-table>tbody>tr.is-dragging .a-Table-dragBtn,.a-Table-table>tbody>tr.is-drop-allowed .a-Table-dragBtn{visibility:visible}.a-Table .fake-hide{visibility:hidden;position:absolute}.a-OperationField{margin:-.1875rem}.a-OperationField>.a-Button,.a-OperationField>.a-Button--disabled-wrap>.a-Button{margin:.1875rem}.a-OperationField>.a-Button--link{padding:0;margin-right:.625rem}.a-List{border:.0625rem solid #dee2e6;border-radius:.142rem;background-color:#fff;margin-bottom:1.25rem;position:relative}.a-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.a-List-toolbar::before,.a-List-toolbar::after{display:table;content:''}.a-List-toolbar::after{clear:both}.a-List-actions{display:inline-block}.a-List-actions>*{margin-right:.3125rem}.a-List-header{padding:.625rem}.a-List-header>*+.a-Button,.a-List-header>*+.a-ButtonGroup,.a-List-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-List-header+.a-List-toolbar{padding-top:0}.a-List-heading{padding:.3125rem 0}.a-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);padding:.625rem}.a-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-List-fixedTop .a-Cards-toolbar{margin-bottom:0}.a-List-fixedTop:empty{display:none}.a-List--unsaved .a-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.a-List-dragTip{width:100%;color:#23b7e5;clear:both;margin-top:.3125rem}.a-List-placeholder{color:#99a6ad;text-align:center;min-height:1.875rem;line-height:1.875rem}.a-ListGroup{max-width:25rem;display:flex;flex-direction:column}.a-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #dee2e6}.a-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.a-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.a-ListGroup-item:hover{z-index:1}.a-ListGroup-item.is-active{z-index:2}.a-ListGroup-item.is-disabled{color:#99a6ad}.a-ListGroup--expanded .a-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.a-ListGroup--expanded .a-ListGroup-item:last-child{margin-bottom:0}.a-ListItem{position:relative;display:block;padding:.625rem .9375rem}.a-ListItem::before,.a-ListItem::after{display:table;content:''}.a-ListItem::after{clear:both}.a-ListItem+.a-ListItem{border-top:.0625rem solid #edeff1}.a-ListItem:nth-child(even){background-color:#f6f8f8}.a-ListItem-checkBtn{float:left;margin-right:.625rem}.a-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.a-ListItem-actions{float:right}.a-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#414c52;font-weight:400}.a-ListItem-content{overflow:hidden}.a-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.a-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.a-ListItem-fieldLabel{width:9.375rem;color:#99a6ad}.a-ListItem.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-ListItem.is-checked+.a-ListItem{border-color:#abe4f6}.a-ListItem.is-checked .a-ListItem-fieldLabel{color:#7dd6f1}.a-ListItem.is-modified,.a-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.a-ListItem.is-modified+.a-ListItem,.a-ListItem.is-moved+.a-ListItem{border-color:#b7d0fc}.a-ListItem.is-modified .a-ListItem-fieldLabel,.a-ListItem.is-moved .a-ListItem-fieldLabel{color:#a2c3fa}.a-ListItem.is-dragging{opacity:.1}.a-Cards-toolbar{padding:0;margin-bottom:.9375rem}.a-Cards-toolbar::before,.a-Cards-toolbar::after{display:table;content:''}.a-Cards-toolbar::after{clear:both}.a-Cards-actions{display:inline-block}.a-Cards-actions>*{margin-right:.3125rem}.a-Cards-heading{padding:.3125rem 0}.a-Cards-header{padding:0}.a-Cards-header>*+.a-Button,.a-Cards-header>*+.a-ButtonGroup,.a-Cards-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Cards-header+.a-Cards-toolbar{padding-top:0}.a-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);padding:.625rem}.a-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-Cards-fixedTop .a-Cards-toolbar{margin-bottom:0}.a-Cards-fixedTop:empty{display:none}.a-Cards--unsaved .a-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.a-Cards-dragTip{width:100%;color:#23b7e5;clear:both;margin-top:.3125rem}.a-Cards-placeholder{background:#fff;color:#99a6ad;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #dee2e6;border-radius:.142rem}.a-Cards-body>div{display:flex}.a-Cards--masonry{display:block;column-gap:0;column-fill:initial}.a-Cards--masonry:after{content:none}.a-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.a-Cards--masonrySm1{column-count:12}.a-Cards--masonrySm2{column-count:6}.a-Cards--masonrySm3{column-count:4}.a-Cards--masonrySm4{column-count:3}.a-Cards--masonrySm6{column-count:2}.a-Cards--masonrySm12{column-count:1}.a-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.a-Cards--masonryMd1{column-count:12}.a-Cards--masonryMd2{column-count:6}.a-Cards--masonryMd3{column-count:4}.a-Cards--masonryMd4{column-count:3}.a-Cards--masonryMd6{column-count:2}.a-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.a-Cards--masonryLg1{column-count:12}.a-Cards--masonryLg2{column-count:6}.a-Cards--masonryLg3{column-count:4}.a-Cards--masonryLg4{column-count:3}.a-Cards--masonryLg6{column-count:2}.a-Cards--masonryLg12{column-count:1}}.a-Card{background-color:#fff;border:.0625rem solid #dee2e6;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.a-Card-title{color:#414c52;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.a-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#99a6ad;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.a-Card-title+.a-Card-subTitle{margin-top:.3125rem}.a-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.a-Card-checkBtn .a-Checkbox{margin-right:0}.a-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.a-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.a-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.a-Card-avtar img{max-width:100%}.a-Card-avtarText{background-color:#7266ba;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.a-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.a-Card-highlight{background-color:#27c24c;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.a-Card-body{padding:.9375rem;flex:1 0 auto}.a-Card-heading+.a-Card-body{padding-top:.3125rem}.a-Card-field{position:relative;display:flex;flex-wrap:nowrap}.a-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.a-Card-fieldLabel{width:3.75rem;color:#99a6ad}.a-Card-actions{border-top:.0625rem solid #edeff1;display:flex;flex-direction:row;width:100%;table-layout:fixed}.a-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#edeff1;border-style:solid;border-width:0 .0625rem 0 0;color:#58666e;text-align:center;line-height:2.5rem;font-size:.875rem}.a-Card-actions>a:not(.is-disabled){cursor:pointer}.a-Card-actions>a:not(.is-disabled):hover{background-color:#f2f2f2;color:#4d5960;text-decoration:none}.a-Card-actions>a:last-child{border:0}.a-Card-actions>a.is-disabled{color:#99a6ad}.a-Card-actions>a.is-disabled:hover{text-decoration:none}.a-Card.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-Card.is-checked .a-Card-actions,.a-Card.is-checked .a-Card-actions>a{border-color:#abe4f6;color:#20b9e8}.a-Card.is-checked .a-Card-fieldLabel{color:#7dd6f1}.a-Card.is-checked .a-Card-actions>a:hover{background-color:#c2ecf9;color:#1498c1}.a-Card.is-modified,.a-Card.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.a-Card.is-modified .a-Card-actions,.a-Card.is-modified .a-Card-actions>a,.a-Card.is-moved .a-Card-actions,.a-Card.is-moved .a-Card-actions>a{border-color:#b7d0fc;color:#4285f4}.a-Card.is-modified .a-Card-fieldLabel,.a-Card.is-moved .a-Card-fieldLabel{color:#a2c3fa}.a-Card.is-modified .a-Card-actions>a:hover,.a-Card.is-moved .a-Card-actions>a:hover{background-color:#d0e0fd;color:#1266f1}.is-dragging>.a-Card{opacity:.1}.a-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.a-Field-quickEditBtn:hover{color:inherit;opacity:1}.a-Field--quickEditable{outline:0;position:relative}.a-Field--quickEditable:focus{position:relative}.a-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #23b7e5}.a-Field--quickEditable:hover .a-Field-quickEditBtn{visibility:visible}.a-QuickEdit-popover{min-width:20rem;max-width:40rem}.a-QuickEdit-popover .a-Panel{margin-bottom:0;border:0}.a-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.a-Field-popOverBtn:hover{color:inherit;opacity:1}.a-Field--popOverAble{outline:0;position:relative}.a-Field--popOverAble:hover .a-Field-popOverBtn{visibility:visible}.a-PopOverAble-popover{min-width:20rem;max-width:40rem}.a-PopOverAble-popover .a-Panel{margin-bottom:0;border:0}.a-Field-copyBtn{color:#6c757d;margin-left:.3125rem;display:inline-block;cursor:pointer}.a-Field-copyBtn:hover{color:#212529}.a-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #dee2e6;height:.125rem;font-size:0}.a-Divider--solid{border-bottom-style:solid}.a-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.a-Pagination>li{display:inline}.a-Pagination>li>a,.a-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.875rem}.a-Pagination>li>a:hover,.a-Pagination>li>span:hover,.a-Pagination>li>a:focus,.a-Pagination>li>span:focus{background-color:transparent;color:#7266ba}.a-Pagination>li.is-disabled>span,.a-Pagination>li.is-disabled>a{cursor:not-allowed}.a-Pagination>li.is-disabled>a,.a-Pagination>li.is-disabled>span,.a-Pagination>li.is-disabled>a:hover,.a-Pagination>li.is-disabled>span:hover,.a-Pagination>li.is-disabled>a:focus,.a-Pagination>li.is-disabled>span:focus{color:#ccc}.a-Pagination>li.is-active>a,.a-Pagination>li.is-active>span,.a-Pagination>li.is-active>a:hover,.a-Pagination>li.is-active>span:hover,.a-Pagination>li.is-active>a:focus,.a-Pagination>li.is-active>span:focus{background-color:#7266ba;color:#fff;border:0}.a-Pagination-prev>span{cursor:pointer}.a-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.a-Pagination-next>span{cursor:pointer}.a-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.a-Pagination-inputGroup .a-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #dee2e6;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.a-Pagination-inputGroup .a-Pagination-input:focus{outline:0;border:.0625rem solid #7266ba}.a-Pagination-inputGroup .a-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.a-Wrapper{padding:.9375rem}.a-Wrapper--xs{padding:.3125rem}.a-Wrapper--sm{padding:.625rem}.a-Wrapper--md{padding:1.25rem}.a-Wrapper--lg{padding:1.875rem}.a-Wrapper--xl{padding:3.125rem}.a-Wrapper--none{padding:0}.a-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.a-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.a-StatusField svg.a-Status-icon{width:1.25rem;height:1.25rem;top:0}.a-StatusField .a-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.a-StatusField .a-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #f05050;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.a-StatusField .a-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #7266ba;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.a-StatusField .a-Status-icon.icon-warning{color:#fad733}.a-Status-icon.rolling+.a-StatusField-label{color:#fad733}.a-Status-icon.icon-success+.a-StatusField-label{color:#27c24c}.a-Status-icon.icon-fail+.a-StatusField-label{color:#f05050}.a-Status-icon.icon-warning+.a-StatusField-label{color:#fad733}.a-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.a-Carousel.a-Carousel--light .a-Carousel-dot{background-color:#fff}.a-Carousel.a-Carousel--light svg{fill:#fff}.a-Carousel.a-Carousel--light .a-Carousel-item .title,.a-Carousel.a-Carousel--light .a-Carousel-item .description{color:#fff}.a-Carousel.a-Carousel--dark .a-Carousel-dot{background-color:#000}.a-Carousel.a-Carousel--dark svg{fill:#000}.a-Carousel.a-Carousel--dark .a-Carousel-item .title,.a-Carousel.a-Carousel--dark .a-Carousel-item .description{color:#000}.a-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.a-Carousel-container .a-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.a-Carousel-container .a-Carousel-item.fade{opacity:0}.a-Carousel-container .a-Carousel-item.fade.in{opacity:1}.a-Carousel-container .a-Carousel-item.slide{transform:translateX(100%)}.a-Carousel-container .a-Carousel-item.slide.in{transform:translateX(0)}.a-Carousel-container .a-Carousel-item.slide.out{transform:translateX(-100%)}.a-Carousel-container .a-Carousel-item.slideRight{transform:translateX(-100%)}.a-Carousel-container .a-Carousel-item.slideRight.in{transform:translateX(0)}.a-Carousel-container .a-Carousel-item.slideRight.out{transform:translateX(100%)}.a-Carousel-container .a-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.a-Carousel-container .a-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.a-Carousel-container .a-Carousel-item .image{width:100%;height:100%;background-size:cover}.a-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.a-Carousel-dotsControl .a-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.a-Carousel-dotsControl .a-Carousel-dot.is-active{opacity:1}.a-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.a-Carousel-arrowsControl .a-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.a-Carousel-arrowsControl .a-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.a-Carousel-arrowsControl .a-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.a-Carousel-arrowsControl .a-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.a-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.a-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.a-ImageGallery-close:hover{color:#fff}.a-ImageGallery-close>svg{width:1rem;height:1rem}.a-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.a-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.a-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.a-ImageGallery-prevBtn,.a-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.a-ImageGallery-prevBtn>svg,.a-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.a-ImageGallery-prevBtn:hover,.a-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.a-ImageGallery-prevBtn.is-disabled,.a-ImageGallery-nextBtn.is-disabled{pointer-events:none}.a-ImageGallery-main:hover .a-ImageGallery-prevBtn,.a-ImageGallery-main:hover .a-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.a-ImageGallery-prevBtn{left:1.25rem}.a-ImageGallery-nextBtn{right:1.25rem}.a-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.a-ImageGallery-prevList,.a-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.a-ImageGallery-prevList.is-disabled,.a-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.a-ImageGallery-prevList:hover,.a-ImageGallery-nextList:hover{background:#000;color:#fff}.a-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.a-ImageGallery-items{display:inline-block;white-space:nowrap}.a-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.a-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.a-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.a-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.a-ImageGallery-item:hover{border:1px solid #e5e5e5}.a-ImageGallery-item:hover:after{display:none}.a-ImageGallery-item.is-active{border:1px solid #108cee}.a-ImageGallery-item.is-active:after{display:none}.a-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.a-Images-item{display:flex;margin:.3125rem}.a-Image{display:inline-block;width:7.5rem;border:.0625rem solid #dee2e6;padding:.3125rem}.a-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.a-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.a-Image-thumb--4-3{height:5.0625rem}.a-Image-thumb--16-9{height:3.79688rem}.a-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.a-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.a-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.a-Image-caption{font-size:.75rem}.a-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.a-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.a-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.a-Image-thumb:hover .a-Image-overlay{display:flex}.a-ImageField{display:inline-block;position:relative}.a-InputBox{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-InputBox input::placeholder{color:#99a6ad;user-select:none}.a-InputBox--inline{display:inline-flex}.a-InputBox>input[readonly]{cursor:inherit}.a-InputBox.is-error{border-color:#f05050;background-color:#fff}.a-InputBox.is-focused{border-color:#23b7e5;box-shadow:none}.a-InputBox.is-clickable:hover{border-color:#23b7e5;box-shadow:none;cursor:pointer}.a-InputBox.is-error.is-focused{border-color:#f05050}.a-InputBox.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-InputBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-InputBox-clear:hover svg{fill:#3d4246}.a-InputBox>svg{display:inline-block;width:14px;color:#6c757d}.a-InputBox>a{cursor:pointer}.a-ResultBox{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:2.125rem;align-items:center}.a-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-ResultBox input::placeholder{color:#99a6ad;user-select:none}.a-ResultBox.is-error{border-color:#f05050;background-color:#fff}.a-ResultBox.is-focused,.a-ResultBox:focus{outline:0;border-color:#23b7e5;box-shadow:none}.a-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.a-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#23b7e5;box-shadow:none}.a-ResultBox.is-error.is-focused{border-color:#f05050}.a-ResultBox.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-ResultBox-singleValue{padding:0 .5625rem}.a-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.a-ResultBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-ResultBox-clear:hover svg{fill:#3d4246}.a-ResultBox-clear:hover{background:#f5f5f5}.a-ResultBox-clear>svg{width:.75rem;height:.75rem}.a-ResultBox>svg{display:inline-block;width:.875rem;color:#6c757d}.a-ResultBox>a{cursor:pointer}.a-ResultBox-value{background:#f5f5f5;color:#000;font-size:.875rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.a-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.a-ResultBox-value>a:hover{color:#666}.a-ResultBox-value>a>svg{width:.625rem;height:.625rem}.a-ResultBox-value:hover{background:#ebebeb}.a-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.a-ResultBox-value.is-disabled>a{color:#ebebeb}.a-ResultBox-placeholder{color:#99a6ad;user-select:none;margin-left:8px}.a-ResultBox>input{padding-left:8px;min-height:24px}.a-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.875rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:.142rem;height:30px}.a-SearchBox:hover{background-color:rgba(255,255,255,.6)}.a-SearchBox.is-active{background-color:#fff;border:.0625rem solid #cfdadd;width:150px}.a-SearchBox.is-active>input{flex-grow:1}.a-SearchBox-activeBtn,.a-SearchBox-cancelBtn{cursor:pointer;color:#6c757d}.a-SearchBox-activeBtn:hover,.a-SearchBox-cancelBtn:hover{color:#212529}.a-SearchBox>input{outline:0;border:0;background:transparent;color:#58666e;width:0;height:1.25rem}.a-SearchBox>input::placeholder{color:#99a6ad;user-select:none}.a-ListMenu{background:#fff;min-width:12.5rem;border:.0625rem solid #dee2e6;border-radius:.125rem}.a-ListMenu-groupLabel{font-size:.6875rem;color:#99a6ad;padding:.125rem 0 0 .4375rem}.a-ListMenu-group:not(:first-child)>.a-ListMenu-groupLabel{border-top:.0625rem solid #e5e8eb}.a-ListMenu-item{display:flex;min-height:2.125rem;color:#58666e;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.a-ListMenu-item.is-active{color:#23b7e5;background-color:transparent}.a-ListMenu-item.is-highlight{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-ListMenu-item.is-disabled{color:#99a6ad;background-color:transparent}.a-ListMenu-placeholder{display:block;min-height:2.125rem;color:#99a6ad;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.a-PopOver>.a-ListMenu{border-color:#23b7e5}.a-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.a-Collapse--xs,fieldset.a-Collapse--sm,fieldset.a-Collapse--base,fieldset.a-Collapse--md,fieldset.a-Collapse--lg{position:relative}fieldset.a-Collapse--xs:after,fieldset.a-Collapse--sm:after,fieldset.a-Collapse--base:after,fieldset.a-Collapse--md:after,fieldset.a-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #dee2e6;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.a-Collapse--xs>legend,fieldset.a-Collapse--sm>legend,fieldset.a-Collapse--base>legend,fieldset.a-Collapse--md>legend,fieldset.a-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#fff;border-left:0!important}fieldset.a-Collapse--xs .collapse,fieldset.a-Collapse--sm .collapse,fieldset.a-Collapse--base .collapse,fieldset.a-Collapse--md .collapse,fieldset.a-Collapse--lg .collapse{position:relative}fieldset.a-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#414c52;border-left:#7266ba .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.a-Collapse--xs{padding:20px 5px 5px}fieldset.a-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.a-Collapse--xs:after{top:6px}fieldset.a-Collapse--sm{padding:25px 10px 10px}fieldset.a-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.a-Collapse--sm:after{top:6px}fieldset.a-Collapse--base{padding:30px 15px 15px}fieldset.a-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.a-Collapse--base:after{top:7px}fieldset.a-Collapse--md{padding:30px 20px 20px}fieldset.a-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.a-Collapse--md:after{top:7px}fieldset.a-Collapse--lg{padding:40px 30px 30px}fieldset.a-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.a-Collapse--lg:after{top:9px}.a-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.a-Form-group{margin-bottom:.9375rem}.a-Form-value>.a-Form-group{margin-bottom:.375rem}.a-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.a-Form-group--hor.v-middle{align-items:center}.a-Form-group--hor.v-bottom{align-items:flex-end}.a-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.a-Form-group--hor>.a-Form-item--inline{margin-right:0}.a-Form-group--hor>.a-Form-item,.a-Form-group--hor>div>.a-Form-item{margin-bottom:0}.a-Form-group--hor .a-Form-input>.a-Form-group{margin-bottom:0}.a-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.a-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.a-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.a-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.a-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.a-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.a-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.a-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.a-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.a-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.a-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.a-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.a-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.a-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.a-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.a-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.a-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.a-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.a-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.a-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.a-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.a-InputGroup{display:inline-flex;flex-wrap:nowrap}.a-InputGroup.a-Form-control--sizeXs,.a-InputGroup.a-Form-control--sizeSm,.a-InputGroup.a-Form-control--sizeMd,.a-InputGroup.a-Form-control--sizeLg{display:inline-flex}.a-InputGroup-addOn,.a-InputGroup .a-Form-control{display:inline-block;white-space:nowrap}.a-InputGroup-addOn{background:#edf1f2;border:.0625rem solid #cfdadd;line-height:1.25rem;height:2.125rem;box-sizing:border-box;padding:.375rem .625rem}.a-InputGroup-addOn:not(:last-child){border-right:0}.a-InputGroup-addOn:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup-addOn:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup-btn .a-Button{border-radius:0;border:.0625rem solid #cfdadd}.a-InputGroup-btn:not(:last-child) .a-Button{border-right:0}.a-InputGroup-btn:first-child .a-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup-btn:last-child .a-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup .a-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.a-InputGroup .a-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.a-InputGroup .a-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.a-InputGroup .a-SelectControl .a-Select{background-color:#fff;border:.0625rem solid #cfdadd}.a-InputGroup .a-SelectControl:not(:last-child) .a-Select{border-right:0}.a-InputGroup .a-SelectControl:first-child .a-Select{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup .a-SelectControl:last-child .a-Select{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup .a-SelectControl:not(:first-child) .a-Select{border-top-left-radius:0;border-bottom-left-radius:0}.a-InputGroup .a-SelectControl:not(:last-child) .a-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.a-InputGroup.is-focused .a-InputGroup-addOn,.a-InputGroup.is-focused .a-TextControl-input,.a-InputGroup.is-focused .a-Select,.a-InputGroup.is-focused .a-InputGroup-btn .a-Button{border-color:#23b7e5}.a-InputGroup.is-focused .a-Select-arrow{color:#212529}.a-InputGroup.is-focused .a-InputGroup-addOn{color:#7266ba}.a-InputGroup:not(.is-inline){display:flex}.a-TextControl{position:relative;max-width:100%}.a-TextControl.is-inline{display:inline-block;width:12.5rem}.a-TextControl-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-TextControl-input input::placeholder{color:#99a6ad;user-select:none}.a-TextControl.is-error>.a-TextControl-input{border-color:#f05050;background-color:#fff}.a-TextControl.is-focused>.a-TextControl-input{border-color:#23b7e5;box-shadow:none}.a-TextControl.is-error.is-focused>.a-TextControl-input{border-color:#f05050}.a-TextControl.is-disabled>.a-TextControl-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-TextControl-spinner{line-height:1.25rem}.a-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-TextControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-TextControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-TextControl.a-Form-control--sizeXs>.a-TextControl-input,.a-TextControl.a-Form-control--sizeSm>.a-TextControl-input,.a-TextControl.a-Form-control--sizeMd>.a-TextControl-input,.a-TextControl.a-Form-control--sizeLg>.a-TextControl-input{min-width:100%;display:inline-flex}}.a-TextControl-placeholder{color:#99a6ad;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.a-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.a-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.a-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.a-TextControl--withAddOn.a-Form-control--sizeXs,.a-TextControl--withAddOn.a-Form-control--sizeSm,.a-TextControl--withAddOn.a-Form-control--sizeMd,.a-TextControl--withAddOn.a-Form-control--sizeLg{display:inline-flex}.a-TextControl--withAddOn.a-Form-control--sizeXs>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeSm>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeMd>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeLg>.a-TextControl-input{min-width:unset}}.a-TextControl--withAddOn>.a-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.a-TextControl--withAddOn>.a-TextControl-input:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-input:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#edf1f2;color:#58666e;border-color:#cfdadd;border-style:solid;border-width:.0625rem 0}.a-TextControl--withAddOn>.a-TextControl-addOn:first-child{border-left-width:.0625rem}.a-TextControl--withAddOn>.a-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-button>.a-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #cfdadd}.a-TextControl--withAddOn>.a-TextControl-button:not(:last-child) .a-Button{border-right:0}.a-TextControl--withAddOn>.a-TextControl-button:first-child .a-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-button:last-child .a-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn.is-focused>.a-TextControl-button .a-Button{border-color:#23b7e5}.a-TextControl--withAddOn.is-error>.a-TextControl-addOn{border-color:#f05050}.a-TextControl--withAddOn.is-focused>.a-TextControl-addOn{border-color:#23b7e5;color:#7266ba;box-shadow:none}.a-TextControl--withAddOn.is-disabled>.a-TextControl-addOn{color:#99a6ad}.a-TextControl-input--withAC{position:relative;flex-wrap:wrap}.a-TextControl-input--withAC input{width:auto;color:#99a6ad}.a-TextControl-sugs{position:absolute;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.a-TextControl-sugItem{padding:.375rem .75rem}.a-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#3d4246}.a-TextControl-sugItem:not(.is-disabled){cursor:pointer}.a-TextControl-sugItem.is-highlight{color:#23b7e5;background:rgba(0,126,255,.08)}.a-TextControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.a-TextControl-input--multiple{height:auto;min-height:2.125rem}.a-TextControl-input--multiple .a-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.a-TextControl-input--multiple .a-TextControl-valueWrap>input{margin-bottom:.3125rem}.a-TextControl-input--multiple .a-TextControl-value{line-height:1.125rem;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-TextControl-valueIcon:hover{background-color:#c2ecf9}.a-TextControl-input--multiple .a-TextControl-valueLabel{padding:0 .3125rem}.a-TextareaControl{border:1px solid #cfdadd;border-radius:.142rem;line-height:1.42857;background:#fff;padding:.375rem .75rem;font-size:.875rem;outline:0;resize:none;display:block;width:100%}.a-TextareaControl.is-error{border-color:#f05050}.a-TextareaControl:focus,.a-TextareaControl.is-focused{border-color:#23b7e5;box-shadow:none}.a-TextareaControl.is-disabled,.a-TextareaControl[disabled]{background:#e9ecef;color:#99a6ad}.a-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.a-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.a-Checkbox:hover input:not(:disabled)+i{border-color:#23b7e5}.a-Checkbox>i{cursor:pointer;line-height:1;background:#fff;display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.a-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.a-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.a-Checkbox>i+span:empty{display:none}.a-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.a-Checkbox:hover>i+span>a{display:inline-block}.a-Checkbox--checkbox{padding-left:1.25rem}.a-Checkbox--checkbox input{margin-left:-1.25rem}.a-Checkbox--checkbox input:checked+i{border-color:#23b7e5}.a-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.625rem;background:#23b7e5}.a-Checkbox--checkbox input[disabled]+i{border-color:#dee6e8;cursor:not-allowed}.a-Checkbox--checkbox input[disabled]+i:before{background-color:#dee6e8;border-color:#fff}.a-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#99a6ad}.a-Checkbox--checkbox>i{width:1.25rem;height:1.25rem;border:.0625rem solid #cfdadd;border-radius:.142rem;margin-left:-1.25rem;margin-top:-.1875rem}.a-Checkbox--full.a-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#cfdadd}.a-Checkbox--full.a-Checkbox--checkbox input:checked+i{border-color:#23b7e5;background:#23b7e5}.a-Checkbox--full.a-Checkbox--checkbox input:checked+i:before{width:.75rem;height:.375rem;border-color:#fff}.a-Checkbox--full.a-Checkbox--checkbox input:checked[disabled]+i{border-color:#dee6e8;background-color:#dee6e8}.a-Checkbox--full.a-Checkbox--checkbox>i{position:relative;cursor:pointer}.a-Checkbox--full.a-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.a-Checkbox--radio{padding-left:1.25rem}.a-Checkbox--radio input{margin-left:-1.25rem}.a-Checkbox--radio input:checked+i{border-color:#23b7e5}.a-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#23b7e5;border-radius:50%}.a-Checkbox--radio input[disabled]+i{border-color:#dee6e8;cursor:not-allowed}.a-Checkbox--radio input[disabled]+i:before{background-color:#dee6e8}.a-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#99a6ad}.a-Checkbox--radio>i{cursor:pointer;width:1.25rem;height:1.25rem;border:.0625rem solid #cfdadd;margin-left:-1.25rem;margin-top:-.125rem;border-radius:50%}.a-Checkbox--sm{padding-left:1rem}.a-Checkbox--sm input{margin-left:-1rem}.a-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.a-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.a-Checkbox--sm>i+span{margin-left:.3125rem}.a-Checkbox--sm.a-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.a-Checkbox-desc{color:#99a6ad;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.a-CheckboxControl,.a-RadiosControl,.a-CheckboxesControl{padding-top:.4375rem}.a-RadiosControl .a-Checkbox,.a-CheckboxesControl .a-Checkbox{display:block;margin-bottom:.4375rem}.a-RadiosControl.is-inline .a-Checkbox,.a-CheckboxesControl.is-inline .a-Checkbox{display:inline-block;margin-right:1.25rem}.a-RadiosControl-group .a-RadiosControl-group,.a-RadiosControl-group .a-CheckboxesControl-group,.a-CheckboxesControl-group .a-RadiosControl-group,.a-CheckboxesControl-group .a-CheckboxesControl-group{padding-left:5rem}.a-RadiosControl-group .a-RadiosControl-group::before,.a-RadiosControl-group .a-RadiosControl-group::after,.a-RadiosControl-group .a-CheckboxesControl-group::before,.a-RadiosControl-group .a-CheckboxesControl-group::after,.a-CheckboxesControl-group .a-RadiosControl-group::before,.a-CheckboxesControl-group .a-RadiosControl-group::after,.a-CheckboxesControl-group .a-CheckboxesControl-group::before,.a-CheckboxesControl-group .a-CheckboxesControl-group::after{display:table;content:''}.a-RadiosControl-group .a-RadiosControl-group::after,.a-RadiosControl-group .a-CheckboxesControl-group::after,.a-CheckboxesControl-group .a-RadiosControl-group::after,.a-CheckboxesControl-group .a-CheckboxesControl-group::after{clear:both}.a-RadiosControl-group .a-RadiosControl-group>.a-RadiosControl-groupLabel,.a-RadiosControl-group .a-RadiosControl-group>.a-CheckboxesControl-groupLabel,.a-RadiosControl-group .a-CheckboxesControl-group>.a-RadiosControl-groupLabel,.a-RadiosControl-group .a-CheckboxesControl-group>.a-CheckboxesControl-groupLabel,.a-CheckboxesControl-group .a-RadiosControl-group>.a-RadiosControl-groupLabel,.a-CheckboxesControl-group .a-RadiosControl-group>.a-CheckboxesControl-groupLabel,.a-CheckboxesControl-group .a-CheckboxesControl-group>.a-RadiosControl-groupLabel,.a-CheckboxesControl-group .a-CheckboxesControl-group>.a-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.a-RadiosControl-groupLabel,.a-CheckboxesControl-groupLabel{display:block}.a-Checkboxes>.a-Checkbox{display:block;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem .4375rem 1.875rem}.a-Checkboxes--inline>.a-Checkbox{display:inline-block}.a-Checkboxes-addBtn{display:block;cursor:pointer}.a-Checkboxes-addBtn:hover{text-decoration:none}.a-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.a-ListCheckboxes-group:not(:first-child)>.a-ListCheckboxes-itemLabel,.a-ListRadios-group:not(:first-child)>.a-ListCheckboxes-itemLabel,.a-ListCheckboxes-group:not(:first-child)>.a-ListRadios-itemLabel,.a-ListRadios-group:not(:first-child)>.a-ListRadios-itemLabel{border-top:.0625rem solid #e5e8eb}.a-ListCheckboxes-group>.a-ListCheckboxes-itemLabel,.a-ListRadios-group>.a-ListCheckboxes-itemLabel,.a-ListCheckboxes-group>.a-ListRadios-itemLabel,.a-ListRadios-group>.a-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#99a6ad}.a-ListCheckboxes-item,.a-ListRadios-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-ListCheckboxes-item>.a-Checkbox,.a-ListRadios-item>.a-Checkbox{margin-right:0}.a-ListCheckboxes-item.is-active,.a-ListRadios-item.is-active{color:#23b7e5;background-color:transparent}.a-ListCheckboxes-item:hover,.a-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.a-ListCheckboxes-item.is-disabled,.a-ListRadios-item.is-disabled{pointer-events:none;color:#99a6ad}.a-ListCheckboxes-group>.a-ListCheckboxes-items>.a-ListCheckboxes-item,.a-ListRadios-group>.a-ListCheckboxes-items>.a-ListCheckboxes-item,.a-ListCheckboxes-group>.a-ListRadios-items>.a-ListCheckboxes-item,.a-ListRadios-group>.a-ListRadios-items>.a-ListCheckboxes-item,.a-ListCheckboxes-group>.a-ListCheckboxes-items>.a-ListRadios-item,.a-ListRadios-group>.a-ListCheckboxes-items>.a-ListRadios-item,.a-ListCheckboxes-group>.a-ListRadios-items>.a-ListRadios-item,.a-ListRadios-group>.a-ListRadios-items>.a-ListRadios-item{padding-left:.9375rem}.a-ListCheckboxes-itemLabel,.a-ListRadios-itemLabel{flex-grow:1}.a-ListCheckboxes-placeholder,.a-ListRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-TableCheckboxes .a-Table-content{border-top:.0625rem solid #dee2e6}.a-TableCheckboxes .a-Table-table>thead>tr>th,.a-TableCheckboxes .a-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.a-TableCheckboxes .a-Table-table>thead>tr>th{padding-top:.375rem}.a-TableCheckboxes .a-Table-table>thead>tr>th:first-child,.a-TableCheckboxes .a-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.a-TableCheckboxes .a-Table-table>thead>tr>th:last-child,.a-TableCheckboxes .a-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.a-TableCheckboxes .a-Table-table>tbody>tr{cursor:pointer}.a-TreeCheckboxes .a-Table-expandBtn,.a-TreeRadios .a-Table-expandBtn{color:#6c757d;margin-right:5px}.a-TreeCheckboxes-sublist,.a-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.a-TreeCheckboxes-sublist:before,.a-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:1.0625rem;left:-19px;border-left:dashed 1px #6c757d}.a-TreeCheckboxes-item,.a-TreeRadios-item{position:relative}.a-TreeCheckboxes-item.is-expanded>.a-TreeCheckboxes-sublist,.a-TreeRadios-item.is-expanded>.a-TreeCheckboxes-sublist,.a-TreeCheckboxes-item.is-expanded>.a-TreeRadios-sublist,.a-TreeRadios-item.is-expanded>.a-TreeRadios-sublist{display:block}.a-TreeCheckboxes-item:not(:last-child)>.a-TreeCheckboxes-sublist:before,.a-TreeRadios-item:not(:last-child)>.a-TreeCheckboxes-sublist:before,.a-TreeCheckboxes-item:not(:last-child)>.a-TreeRadios-sublist:before,.a-TreeRadios-item:not(:last-child)>.a-TreeRadios-sublist:before{bottom:0}.a-TreeCheckboxes-sublist .a-TreeCheckboxes-item:before,.a-TreeRadios-sublist .a-TreeCheckboxes-item:before,.a-TreeCheckboxes-sublist .a-TreeRadios-item:before,.a-TreeRadios-sublist .a-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:1.0625rem;width:19px;left:-19px;border-top:dashed 1px #6c757d}.a-TreeCheckboxes-itemInner,.a-TreeRadios-itemInner{display:flex;align-items:center;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-TreeCheckboxes-itemInner>.a-Checkbox,.a-TreeRadios-itemInner>.a-Checkbox{margin-right:0;margin-left:.625rem}.a-TreeCheckboxes-itemInner.is-active,.a-TreeRadios-itemInner.is-active{color:#23b7e5;background-color:transparent}.a-TreeCheckboxes-itemInner:hover,.a-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.a-TreeCheckboxes-itemInner.is-disabled,.a-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#99a6ad}.a-TreeCheckboxes-itemLabel,.a-TreeRadios-itemLabel{flex-grow:1}.a-TreeCheckboxes-placeholder,.a-TreeRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-ChainedCheckboxes{display:flex;flex-direction:row}.a-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.a-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #dee2e6}.a-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#99a6ad}.a-ChainedCheckboxes-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-ChainedCheckboxes-item>.a-Checkbox{margin-right:0}.a-ChainedCheckboxes-item.is-active{color:#23b7e5;background-color:transparent}.a-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.a-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#99a6ad}.a-ChainedCheckboxes-itemLabel{flex-grow:1}.a-ChainedCheckboxes-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-AssociatedCheckboxes{display:flex;flex-direction:row}.a-AssociatedCheckboxes-left,.a-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.a-AssociatedCheckboxes-left{border-right:1px solid #dee2e6}.a-AssociatedCheckboxes-reload{text-align:center;color:#23b7e5;margin:20px 0 0}.a-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.a-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#99a6ad;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.a-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#99a6ad}.a-CityPicker .a-Select{margin-right:.3125rem;margin-bottom:.3125rem}.a-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem}.a-CityPicker-input::placeholder{color:#99a6ad;user-select:none}.a-CityPicker-input:focus{border-color:#23b7e5;box-shadow:none}.a-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#23b7e5;margin:0;vertical-align:middle;text-align:left}.a-Switch.is-disabled{background-color:#ccc}.a-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#6c757d;border:.0625rem solid #545b62;border-radius:1.875rem;transition:all .2s}.a-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.a-Switch input{position:absolute;opacity:0}.a-Switch input:disabled+i:before,.a-Switch input:disabled:checked+i:before{color:#fff;background-color:#ccc;cursor:not-allowed}.a-Switch input:disabled+i:after,.a-Switch input:disabled:checked+i:after{background-color:#fff;color:#fff}.a-Switch input:checked+i:before{left:100%;border-width:0}.a-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.a-Switch-option{vertical-align:middle;margin-left:.625rem}.a-Switch-option:first-child{margin-left:0;margin-right:.625rem}.a-Switch-option:empty{display:none}.a-SwitchControl{padding-top:.375rem}.a-SwitchControl.is-inline{display:inline-block}.a-Number{margin:0;padding:0;line-height:2.125rem;font-size:.875rem;height:2.125rem;display:inline-block;vertical-align:middle;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem}.a-Number-focused{border-color:#23b7e5;box-shadow:none}.a-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.a-Number-handler-active{background:#ddd}.a-Number-handler-up-inner,.a-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.a-Number:hover{border-color:#23b7e5}.a-Number:hover .a-Number-handler-up,.a-Number:hover .a-Number-handler-wrap{border-color:#23b7e5}.a-Number-disabled:hover{border-color:#cfdadd}.a-Number-disabled:hover .a-Number-handler-up,.a-Number-disabled:hover .a-Number-handler-wrap{border-color:#cfdadd}.a-Number-input-wrap{overflow:hidden;height:100%}.a-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:2rem;height:100%;transition:all .3s ease;border:0;border-radius:.142rem;padding:0 .75rem}.a-Number-handler{background-color:#fff;color:#58666e;font-family:inherit;font-size:.875rem}.a-Number-handler:hover{background-color:#f2f2f2;color:#58666e}.a-Number-handler:hover:active{background-color:#f2f2f2}.a-Number-handler-up-inner{transform:none}.a-Number-handler-up-inner:after{content:"+"}.a-Number-handler-down-inner:after{content:"-"}.a-Number-handler-wrap{float:right;border-left:.0625rem solid #cfdadd;width:1.25rem;height:100%}.a-Number-handler{line-height:.875rem;height:1rem}.a-Number-handler-up{border-bottom:.0625rem solid #cfdadd;padding-top:.0625rem}.a-Number-handler-down-disabled,.a-Number-handler-up-disabled{background-color:#e9ecef;pointer-events:none;color:#99a6ad}.a-Number-disabled .a-Number-input{opacity:.72;cursor:not-allowed;background-color:#fff}.a-Number-disabled .a-Number-handler{opacity:.72}.a-Number-disabled .a-Number-handler:hover{color:#99a6ad;border-color:#cfdadd}.a-NumberControl:not(.is-inline)>.a-Number{display:block}.a-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.875rem;border:.0625rem solid #cfdadd;background:#fff;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#58666e}.a-Select:hover{background:#f2f2f2;border-color:#cfdadd}.a-Select:hover .a-Select-arrow:before{color:#212529}.a-Select.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.a-Select-placeholder{color:#99a6ad;line-height:1.42857;user-select:none;white-space:nowrap}.a-Select-value{line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.a-Select--multi{height:auto;min-height:2.125rem}.a-Select--multi .a-Select-valueWrap{margin-bottom:-.3125rem}.a-Select--multi .a-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.a-Select--multi .a-Select-values+.a-Select-input{transform:translateY(0)}.a-Select--multi .a-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-Select--multi .a-Select-valueLabel{padding:0 .3125rem}.a-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Select-valueIcon:hover{background-color:#c2ecf9}.a-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#f0fafd;background:#f0fafd}.a-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.a-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#6c757d;width:10px;height:10px;top:0}.a-Select.is-opened .a-Select-arrow>svg{transform:rotate(180deg)}.a-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.a-Select-input{cursor:pointer;outline:0;border:0;margin:0 .75rem;height:2.125rem;font-size:.75rem;border-bottom:1px solid #dee2e6;display:flex;align-items:center}.a-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.a-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.a-Select-option{cursor:pointer;min-width:7.5rem;padding:.4375rem .75rem}.a-Select-option.is-active{color:#23b7e5;background-color:transparent}.a-Select-option.is-highlight{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-Select-option.is-disabled{color:#99a6ad;background-color:transparent}.a-Select-option--placeholder{color:#99a6ad}.a-Select-option>label{display:block}.a-Select-option>a{float:right;margin-left:.3125rem;display:none}.a-Select-option.is-highlight>a{display:block}.a-Select-noResult{color:#99a6ad;line-height:1.42857;font-size:.75rem;user-select:none;padding:.4375rem .75rem}.a-Select-option-hl{color:#dc3545}.a-Select-addBtn{display:block;cursor:pointer;padding:.4375rem .75rem}.a-Select-addBtn:hover{text-decoration:none}.a-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.a-Select.is-focused,.a-Select.is-opened{border-color:#23b7e5}.a-Select-spinner{line-height:1.25rem}.a-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.a-Select-clear svg{fill:#6c757d;width:.625rem;height:.625rem;top:0}.a-Select-clear:hover svg{fill:#3d4246}.a-Select-popover{margin-top:-.0625rem;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;box-shadow:none;border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.a-Select-popover.a-PopOver--leftTopLeftBottom{margin-top:.0625rem}.a-SelectControl:not(.is-inline)>.a-Select{display:flex}@media (min-width:576px){.a-Form-control--sizeXs>.a-Select,.a-Form-control--sizeSm>.a-Select,.a-Form-control--sizeMd>.a-Select,.a-Form-control--sizeLg>.a-Select{min-width:100%;max-width:100%;display:inline-flex!important}.a-Form-control--sizeXs>.a-Select .a-Select-valueWrap,.a-Form-control--sizeSm>.a-Select .a-Select-valueWrap,.a-Form-control--sizeMd>.a-Select .a-Select-valueWrap,.a-Form-control--sizeLg>.a-Select .a-Select-valueWrap{width:0}}.a-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.a-Selections-title{height:2.125rem;background:#f6f8f8;font-size:.875rem;padding:.4375rem .625rem}.a-Selections-placeholder{color:#99a6ad;text-align:center;width:100%;flex-basis:2.125rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.875rem}.a-Selections-items{flex-grow:1}.a-Selections-item{display:flex;flex-direction:row;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem}.a-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.a-Selections-item>.a-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#6c757d;cursor:move}.a-Selections-item--dragging>*{opacity:.2}.a-Selections-delBtn{color:#6c757d;cursor:pointer}.a-Selections-delBtn:hover{color:#212529}.a-Selections-delBtn>svg{width:12px;height:12px}.a-ListControl-items{display:block;margin:-.3125rem}.a-ListControl-items:empty{display:none}.a-ListControl-item{position:relative;user-select:none;font-size:.875rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #dee2e6;background-color:#fff;padding:.375rem .75rem;color:#58666e;transition:none;max-width:14rem}.a-ListControl-item:not(.is-disabled){cursor:pointer}.a-ListControl-item .b-inherit{border-color:#58666e}.a-ListControl-item:hover{background-color:#ececec;border-color:#c1c9d0;color:#58666e}.a-ListControl-item:hover .b-inherit{border-color:#c1c9d0}.a-ListControl-item:hover:active,.a-ListControl-item.is-active{background-color:#7266ba;border-color:#564aa3;color:#fff}.a-ListControl-item:hover:active .b-inherit,.a-ListControl-item.is-active .b-inherit{border-color:#fff}.a-ListControl-item:hover:active:before,.a-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#fff;right:0;bottom:0}.a-ListControl-item:hover:active:after,.a-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#7266ba;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.a-ListControl-item.is-disabled{pointer-events:none;opacity:.6;border-color:#edeff1;background-color:#fff;color:#58666e}.a-ListControl-item.is-disabled:before{background-color:#58666e}.a-ListControl-item.is-disabled .b-inherit{border-color:#edeff1}.a-ListControl-itemImage{margin:-.375rem -.75rem}.a-ListControl-itemImage img{display:block;max-width:100%}.a-ListControl-itemLabel{text-align:center}.a-ListControl-itemImage+.a-ListControl-itemLabel{margin-top:.375rem}.a-ListControl-placeholder{color:#99a6ad}.a-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#58666e;background-color:#fff;border-radius:.142rem}.a-LocationPicker:not(.is-disabled){cursor:pointer}.a-LocationPicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-LocationPicker:not(.is-disabled):hover .a-DatePicker-toggler:before{color:#212529}.a-LocationPicker.is-focused,.a-LocationPicker.is-active{border-color:#23b7e5;box-shadow:none}.a-LocationPicker.is-disabled{background:#e9ecef}>.a-LocationPicker.is-disabled-input{color:#99a6ad}.a-LocationPicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-LocationPicker-toggler{cursor:pointer;color:#6c757d}.a-LocationPicker-toggler:hover{color:#212529}.a-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-LocationPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-LocationPicker-clear:hover svg{fill:#3d4246}.a-LocationControl{position:relative;width:100%}.a-LocationControl:not(.is-inline)>.a-LocationPicker{display:flex}.a-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#23b7e5}.a-MapPicker-search{padding:5px 10px}.a-MapPicker-map{display:block;width:100%;height:200px}.a-MapPicker-item{padding:10px;position:relative;border-top:1px solid #dee2e6}.a-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.a-MapPicker-itemTitle{font-size:.875rem}.a-MapPicker-itemDesc{font-size:.75rem}.a-MapPicker-sugItem{cursor:pointer;padding:.4375rem .75rem}.a-MapPicker-sugItem:hover{color:#23b7e5;background-color:transparent}.tangram-suggestion-main{display:none!important}.a-MatrixControl-error{margin-bottom:0}.a-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;background-color:#fff;color:#58666e}.a-ColorPicker:not(.is-disabled){cursor:pointer}.a-ColorPicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#dee2e6}.a-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.25rem}.a-ColorPicker-input::placeholder{color:#99a6ad}.a-ColorPicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-ColorPicker.is-disabled{background:#e9ecef;color:#99a6ad;pointer-events:none}.a-ColorPicker.is-disabled>.a-ColorPicker-input{color:#99a6ad}.a-ColorPicker.is-disabled>.a-ColorPicker-input::placeholder{color:#99a6ad}.a-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.a-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(28,43,54,.075)}.a-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.a-ColorPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-ColorPicker-clear:hover svg{fill:#3d4246}.a-ColorControl:not(.is-inline)>.a-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.a-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#58666e;background-color:#fff;border-radius:.142rem}.a-DatePicker:not(.is-disabled){cursor:pointer}.a-DatePicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-DatePicker:not(.is-disabled):hover .a-DatePicker-toggler:before{color:#212529}.a-DatePicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-DatePicker.is-disabled{background:#e9ecef}>.a-DatePicker.is-disabled-input{color:#99a6ad}.a-DatePicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.a-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DatePicker-toggler{cursor:pointer;color:#6c757d}.a-DatePicker-toggler:hover{color:#212529}.a-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-DatePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-DatePicker-clear:hover svg{fill:#3d4246}.a-DateControl:not(.is-inline)>.a-DatePicker{display:flex}.a-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.a-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.a-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.a-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#23b7e5;text-decoration:none}.a-DatePicker-shortcut a:hover{color:#1485a8;text-decoration:none}.a-DatePicker-popover{margin:.125rem 0 0}.a-DatePicker-popover.a-PopOver--leftTopLeftBottom,.a-DatePicker-popover.a-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#58666e}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#fff}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#ededed}.rdt .rdtPicker td.rdtBetween{background:rgba(35,183,229,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#23b7e5}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#fff}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#23b7e5}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#edf1f2}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#23b7e5;border:1px solid #dee2e6;border-radius:.142rem;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#23b7e5;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075);border-radius:.142rem}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.rdtBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#58666e;background-color:#edf1f2;border-color:#edf1f2;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel:hover{color:#58666e;background-color:#d7e0e2;border-color:#cfdadd}.rdtBtnCancel:focus{color:#58666e;background-color:#edf1f2;border-color:#edf1f2;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel:hover:focus{color:#58666e;background-color:#d7e0e2;border-color:#cfdadd;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#edf1f2;color:#58666e;border-color:#dee2e6}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#cfdadd;border-color:#c8d4d7}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#1485a8;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#23b7e5;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.a-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;border-radius:.142rem;color:#58666e;background-color:#fff}.a-DateRangePicker:not(.is-disabled){cursor:pointer}.a-DateRangePicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-DateRangePicker:not(.is-disabled):hover .a-DateRangePicker-toggler{color:#212529}.a-DateRangePicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-DateRangePicker.is-disabled{background:#e9ecef}>.a-DateRangePicker.is-disabled-input{color:#99a6ad}.a-DateRangePicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DateRangePicker-toggler{cursor:pointer;color:#6c757d}.a-DateRangePicker-toggler:hover{color:#212529}.a-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.a-DateRangePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-DateRangePicker-clear:hover svg{fill:#3d4246}.a-DateRangePicker-wrap{width:auto;padding:.625rem}.a-DateRangePicker-start,.a-DateRangePicker-end{display:inline-block;vertical-align:top}.a-DateRangePicker-start .rdtPicker,.a-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.a-DateRangePicker-end{margin-top:20px}.a-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.a-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.a-DateRangePicker-ranger a{cursor:pointer}.a-DateRangePicker-actions{text-align:right;margin-top:.625rem}.a-DateRangeControl:not(.is-inline)>.a-DateRangePicker{display:flex}.a-DateRangePicker-popover{margin:.125rem 0 0}.a-DateRangePicker-popover.a-PopOver--leftTopLeftBottom,.a-DateRangePicker-popover.a-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.a-DateRangePicker-wrap{white-space:nowrap}.a-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.a-ImageControl{position:relative}.a-ImageControl-dropzone{outline:0}.a-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #dee2e6;cursor:pointer;margin-right:.9375rem;color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-ImageControl-addBtn:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn.is-disabled,.a-ImageControl-addBtn:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.a-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.a-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #cfdadd;background:#e9ecef;color:#99a6ad}.a-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;margin:30px 0 0 .625rem}.a-ImageControl-dropzone:focus .a-ImageControl-addBtn{border-color:#c1c9d0;background:#ececec;color:#58666e}.a-ImageControl-item{border:.0625rem solid #dee2e6;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.a-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.a-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.a-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.a-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.a-ImageControl-item:hover .a-ImageControl-itemOverlay{display:flex}.a-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.a-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.a-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.a-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.a-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.a-ImageControl-progressValue{height:5px;display:block;background:#23b7e5;min-width:10%;transition:ease-out width .3s}.a-ImageControl-item.is-invalid .a-ImageControl-itemClear{display:none}.a-ImageControl-item.is-invalid:hover .a-ImageControl-itemClear{display:block}.a-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.a-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.a-ImageControl-retryBtn>p{width:100%;text-align:center;color:#f05050;margin:10px 0 0}.a-ImageControl-errorMsg{color:#f05050;margin:5px 0 0}.a-ImageControl-uploadBtn{margin-top:5px}.a-ImageControl-cropperWrapper{position:relative}.a-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.a-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.a-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.a-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #dee2e6;border-color:#23b7e5;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.a-FileControl-dropzone{outline:0}.a-FileControl-selectBtn{width:7.5rem}.a-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.a-FileControl-description{margin-left:10px;color:#999;font-size:12px}.a-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.a-FileControl-list>li{color:#333;font-size:12px}.a-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.a-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.a-FileControl-itemInfo.is-invalid{color:#999}.a-FileControl-itemInfo>svg:first-child{margin-right:10px}.a-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.a-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.a-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.a-FileControl-clear:hover{color:#333}.a-FileControl-list:empty{display:none}.a-FileControl-list>li:hover .a-FileControl-clear{display:block}.a-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.a-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.a-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.a-FileControl-progress{height:5px;flex:1;background:#ebebeb}.a-FileControl-progress>span{display:block;background:#23b7e5;height:100%;min-width:10%;transition:ease-out width .3s}.a-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #23b7e5;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.a-FileControl-sum{font-size:.75rem}.a-FileControl-sum>a{cursor:pointer}.a-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #cfdadd;max-width:100%;box-sizing:content-box}.a-EditorControl>.a-MonacoEditor,.a-EditorControl>.a-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.a-EditorControl.is-error{border-color:#f05050}.a-EditorControl.is-focused{border-color:#23b7e5}.a-EditorControl--sm{min-height:100px}.a-EditorControl--sm>.a-MonacoEditor{min-height:100px}.a-EditorControl--md{min-height:250px}.a-EditorControl--md>.a-MonacoEditor{min-height:250px}.a-EditorControl--lg{min-height:300px}.a-EditorControl--lg>.a-MonacoEditor{min-height:300px}.a-EditorControl--xl{min-height:400px}.a-EditorControl--xl>.a-MonacoEditor{min-height:400px}.a-EditorControl--xxl{min-height:500px}.a-EditorControl--xxl>.a-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.a-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #cfdadd;width:100%}.a-RichTextControl>.tox-tinymce{border:0}.a-RichTextControl>textarea{width:100%}.a-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.a-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #cfdadd}.a-RichTextControl .fr-toolbar .fr-command.fr-btn,.a-RichTextControl .fr-popup .fr-command.fr-btn{color:#58666e}.a-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.a-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#23b7e5;background-color:#f2f2f2}.a-RichTextControl .fr-desktop .fr-command:hover,.a-RichTextControl .fr-desktop .fr-command:focus{background-color:#f2f2f2}.a-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.a-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#f2f2f2}.a-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#23b7e5;color:#fff}.a-RichTextControl.is-focused{border:.0625rem solid #23b7e5}.a-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #23b7e5}.a-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.a-RichTextControl .fr-sticky-dummy{position:absolute}.a-RichTextControl.is-disabled{border-color:#cfdadd;pointer-events:none;opacity:.6}.a-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#cfdadd}.a-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.a-RangeControl::before,.a-RangeControl::after{display:table;content:''}.a-RangeControl::after{clear:both}.a-RangeControl--withInput .a-InputRange{width:calc(100% - 120px)}.a-RangeControl--withInput .a-InputRange-label--mid{left:calc(50% - 60px)}.a-RangeControl--withInput.is-multiple .a-InputRange{width:calc(100% - 210px)}.a-RangeControl .a-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.a-RangeControl .a-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.a-RangeControl .a-InputRange-input input:focus{outline:0;border:.0625rem solid #23b7e5}.a-RangeControl .a-InputRange-input-separator{display:inline-block;padding:0 5px}.a-RangeControl .a-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.a-RangeControl .a-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.a-RangeControl .a-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.a-InputRange{height:1.5rem;position:relative;width:100%}.a-InputRange-slider{appearance:none;background:#23b7e5;border:.0625rem solid #23b7e5;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.a-InputRange-slider:active{transform:scale(1.3)}.a-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(35,183,229,.2)}.input-range--disabled .a-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.a-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.a-InputRange-sliderContainer{transition:left .3s ease-out}.a-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.a-InputRange-label--min,.a-InputRange-label--max,.a-InputRange-label--mid{bottom:-1.4rem;position:absolute}.a-InputRange-label--mid{left:50%;bottom:-.3125rem}.a-InputRange-label--max{right:0}.a-InputRange-label--value{position:absolute;display:block;top:-2.5rem}.a-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.a-InputRange.is-disabled .a-InputRange-track{background:#eee}.a-InputRange-track.is-active{background:#23b7e5}.a-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.a-InputRange-track--background::before,.a-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.a-InputRange-track--background::before{left:-.5rem}.a-InputRange-track--background::after{right:-.5rem}.a-InputRange-track--active{background:#23b7e5}.a-RepeatControl .repeat-btn{width:5rem}.a-RepeatControl .Select{display:inline-block;min-width:100px}.a-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.a-TreeControl{border:1px solid #cfdadd;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.a-TreeControl.h-full{max-height:none;overflow:visible}.a-TreeControl.no-border{border:0}.a-Tree-list,.a-Tree-sublist{list-style:none;padding:0;margin:0}.a-Tree-sublist.is-folded{display:none}.a-Tree-item{line-height:1.875rem;position:relative}.a-Tree-item>div:hover{text-decoration:none}.a-Tree-item>div:hover>.a-Tree-item-icons{visibility:visible}.a-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.a-Tree-rootItem{line-height:1.875rem}.a-Tree-item>div:hover>.a-Tree-item-icons,.a-Tree-rootItem>div:hover>.a-Tree-item-icons{visibility:visible}.a-Tree-itemLabel{display:flex}.a-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.a-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.a-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.a-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.a-Tree-itemInput{padding-left:.625rem}.a-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#6c757d}.a-Tree-itemInput>a:hover{color:#212529;text-decoration:none}.a-Tree-itemInput>input{outline:0;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.21562rem .75rem;font-size:.875rem}.a-Tree-itemInput>input::placeholder{color:#99a6ad;user-select:none}.a-Tree-itemInput>input:focus{border-color:#23b7e5;box-shadow:none}.a-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.a-Tree-addTopBtn:hover{text-decoration:none}.a-Tree-addTopBtn.is-disabled{pointer-events:none;color:#99a6ad}.a-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.a-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.a-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.a-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.a-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.a-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.a-Tree-rootIcon>svg,.a-Tree-folderIcon>svg,.a-Tree-leafIcon>svg{width:.875rem;height:.875rem}.a-Tree-itemLabel{user-select:none}.a-Tree-itemLabel.is-checked,.a-Tree-itemLabel.is-children-checked{color:#23b7e5}.a-Tree-itemLabel.is-disabled{color:#99a6ad}.a-Tree-itemLabel>.a-Checkbox{line-height:1;display:inline-block;padding-top:.375rem}.a-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.a-Tree-placeholder{color:#99a6ad}.a-Tree-item .a-Tree-item>.a-Tree-itemLabel,.a-Tree-item .a-Tree-item>.a-Tree-placeholder{padding-left:1.25rem}.a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel,.a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-placeholder{padding-left:2.5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:3.75rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:6.25rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:7.5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:8.75rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:10rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:11.25rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:12.5rem}.a-TreeSelectControl{position:relative}.a-TreeSelectControl>.a-TreeSelect-popover{width:100%}.a-TreeSelect{position:relative;max-width:100%;outline:0}.a-TreeSelect.is-inline{display:inline-block;width:12.5rem}.a-TreeSelect-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-TreeSelect-input input::placeholder{color:#99a6ad;user-select:none}.a-TreeSelect.is-error>.a-TreeSelect-input{border-color:#f05050;background-color:#fff}.a-TreeSelect.is-focused>.a-TreeSelect-input{border-color:#23b7e5;box-shadow:none}.a-TreeSelect.is-error.is-focused>.a-TreeSelect-input{border-color:#f05050}.a-TreeSelect.is-disabled>.a-TreeSelect-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-TreeSelect-spinner{line-height:1.25rem}.a-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-TreeSelect-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-TreeSelect-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-TreeSelect.a-Form-control--sizeXs>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeSm>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeMd>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeLg>.a-TreeSelect-input{min-width:100%;display:inline-flex}}.a-TreeSelect.is-opened{border-color:#23b7e5;box-shadow:none}.a-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.a-TreeSelect-popover>.a-Tree{background:#fff;border:.0625rem solid #23b7e5;padding:.3125rem .75rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.a-Combo-placeholder{color:#99a6ad;padding-top:.4375rem}.a-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#6c757d;padding:.125rem .3125rem;cursor:pointer}.a-Combo-toolbarBtn:hover{color:#545b62}.a-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.a-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn>svg{width:.75rem;height:.75rem}.a-Combo-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-Combo-addBtn>.pull-left{margin-right:.5rem}.a-Combo-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Combo-addBtn>.pull-right{margin-left:.5rem}.a-Combo-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-Combo-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn.is-disabled,.a-Combo-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-Combo-addBtn:not(:disabled):not(.is-disabled):active,.a-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-Combo-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-Combo-items{margin-bottom:.625rem}.a-Combo-items:empty{display:none}.a-Combo-items:empty+.a-Combo-toolbar{padding-top:.25rem}.a-Combo-item{background:transparent}.a-Combo-itemDrager{cursor:move}.a-Combo-itemDrager>a{color:#6c757d}.a-Combo-itemDrager>a:hover{color:#212529}.a-Combo-itemDrager svg{width:1rem;height:1rem}.a-Combo--hor .a-Combo-item{display:flex;flex-wrap:nowrap}.a-Combo--hor .a-Combo-item+.a-Combo-item{margin-top:.3125rem}.a-Combo--hor .a-Combo-itemInner{flex-basis:0;flex-grow:1}.a-Combo--hor .a-Combo-itemTag{margin-right:.625rem}.a-Combo--hor .a-Combo-itemTag label{color:#23b7e5;margin-right:.625rem}.a-Combo--hor .a-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.4375rem}.a-Combo--hor .a-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:.65}.a-Combo--hor.is-draggable .a-Combo-toolbar{padding-left:1.5rem}.a-Combo--hor .a-Combo-itemDrager{padding:.4375rem .375rem 0 0}.a-Combo--ver:not(.a-Combo--noBorder)::before,.a-Combo--ver:not(.a-Combo--noBorder)::after{display:table;content:''}.a-Combo--ver:not(.a-Combo--noBorder)::after{clear:both}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-placeholder{margin:.625rem}.a-Combo--ver:not(.a-Combo--noBorder) .a-Combo-itemTag{text-align:right}.a-Combo--ver:not(.a-Combo--noBorder) .a-Combo-itemTag label{color:#23b7e5;margin-right:.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item{border:.0625rem dashed #dee2e6;padding:.625rem;position:relative}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item{margin:.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#23b7e5;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#19a9d5;border-width:.0625rem .0625rem 0}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn:hover,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn:hover{color:#fff}.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-item:hover,.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-items>.a-Combo-item:hover{border-color:#23b7e5}.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-item:hover>.a-Combo-itemToolbar,.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-items>.a-Combo-item:hover>.a-Combo-itemToolbar{top:-1.5625rem;opacity:1}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemDrager{position:absolute;top:.4375rem;left:-1.875rem}.a-Combo--ver:not(.a-Combo--noBorder).is-draggable>.a-Combo-items>.a-Combo-item{margin-left:2.1875rem}.a-Combo--ver:not(.a-Combo--noBorder).is-draggable>.a-Combo-toolbar{padding-left:1.5625rem}.a-Combo-item--dragging{position:relative}.a-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.a-ComboTabs>.a-Tabs-links::before,.a-ComboTabs>.a-Tabs-links::after{display:table;content:''}.a-ComboTabs>.a-Tabs-links::after{clear:both}.a-ComboTabs-addLink{float:right}.a-Combo-dragableTip{color:#99a6ad;font-size:.75rem;margin-left:.3125rem}.a-Combo-dragableTip:empty{display:none}.a-ComboControl.is-inline .a-Combo--hor .a-Combo-itemInner{flex-grow:unset;flex-basis:unset}.a-ComboControl.is-inline .a-Combo--ver .a-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.a-Combo-form .a-Form-item:last-child{margin-bottom:0}}.a-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.375rem 0}.a-SubForm-value{cursor:pointer;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.a-SubForm-value:hover{background-color:#c2ecf9}.a-SubForm-value.is-disabled{pointer-events:none;opacity:.65}.a-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-SubForm-valueIcon:hover{background-color:#c2ecf9}.a-SubForm-valueLabel{padding:0 .3125rem}.a-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-SubForm-addBtn>.pull-left{margin-right:.5rem}.a-SubForm-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-SubForm-addBtn>.pull-right{margin-left:.5rem}.a-SubForm-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-SubForm-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn.is-disabled,.a-SubForm-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.a-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-SubForm-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-SubFormControl{padding-top:.25rem}.a-ChainedSelectControl .a-Select{margin-right:.3125rem}.a-Picker{position:relative;max-width:100%;outline:0}.a-Picker.is-inline{display:inline-block;width:12.5rem}.a-Picker-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-Picker-input input::placeholder{color:#99a6ad;user-select:none}.a-Picker.is-error>.a-Picker-input{border-color:#f05050;background-color:#fff}.a-Picker.is-focused>.a-Picker-input{border-color:#23b7e5;box-shadow:none}.a-Picker.is-error.is-focused>.a-Picker-input{border-color:#f05050}.a-Picker.is-disabled>.a-Picker-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-Picker-spinner{line-height:1.25rem}.a-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-Picker-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-Picker.a-Form-control--sizeXs>.a-Picker-input,.a-Picker.a-Form-control--sizeSm>.a-Picker-input,.a-Picker.a-Form-control--sizeMd>.a-Picker-input,.a-Picker.a-Form-control--sizeLg>.a-Picker-input{min-width:100%;display:inline-flex}}.a-Picker.is-focus>.a-Picker-input{border-color:#23b7e5;box-shadow:none}.a-Picker-placeholder{color:#99a6ad;user-select:none;position:absolute;line-height:1.42857}.a-Picker-input{min-height:2.125rem;height:auto}.a-Picker .a-Picker-values{display:inline}.a-Picker-valueWrap{flex-grow:1;position:relative}.a-Picker-valueWrap>input{width:1rem;display:inline-block}.a-Picker .a-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.a-Picker .a-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.a-Picker .a-Picker-value.is-disabled{pointer-events:none;opacity:.65}.a-Picker .a-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Picker .a-Picker-valueIcon:hover{background-color:#c2ecf9}.a-Picker .a-Picker-valueLabel{padding:0 .3125rem}.a-Picker-btn{cursor:pointer;color:#6c757d}.a-Picker-btn:hover{color:#212529}.a-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-Picker-clear:hover svg{fill:#3d4246}.a-PickerControl.is-inline .a-Picker{display:inline-block;min-width:9.375rem}.a-QrCode{min-height:2.125rem;padding:.4375rem 0}.a-TagControl{position:relative}.a-TagControl-input.is-focused{border-radius:0}.a-TagControl-input.is-disabled{border-style:dashed;background:transparent}.a-TagControl.is-inline{display:inline-block}.a-TagControl>.a-TagControl-popover{padding:0;border:0;width:100%;margin-top:-.0625rem}.a-TagControl>.a-TagControl-popover.a-PopOver--leftBottomLeftTop{top:100%!important}.a-TagControl>.a-TagControl-popover.a-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.a-TagControl-sug{margin-top:.375rem}.a-TagControl-sugTip{color:#23b7e5;margin-bottom:.375rem}.a-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.a-TagControl-sugItem>.pull-left{margin-right:.5rem}.a-TagControl-sugItem .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-TagControl-sugItem>.pull-right{margin-left:.5rem}.a-TagControl-sugItem:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-TagControl-sugItem:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem.is-disabled,.a-TagControl-sugItem:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.a-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-TagControl-sugItem.is-disabled{pointer-events:none;opacity:.65}.a-TagControl-popover.a-PopOver--leftBottomLeftTop>.a-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.a-TagControl-popover.a-PopOver--leftTopLeftBottom>.a-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.a-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#3a3f51;cursor:pointer}.a-Rating.is-active{color:#23b7e5}.a-Rating.is-disabled{cursor:not-allowed}.a-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#23b7e5}.a-RatingControl{position:relative;overflow:hidden}.a-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem}.a-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.a-Transfer-title{display:flex;align-items:center;background:#f6f8f8;height:1.875rem;line-height:1.42857;font-size:.875rem;padding:.3125rem .625rem;flex-direction:row}.a-Transfer-title--light{background:transparent}.a-Transfer-title>span{flex-grow:1}.a-Transfer-select,.a-Transfer-result{width:0;min-width:12.5rem;flex-grow:1;border:.0625rem solid #cfdadd;display:flex;flex-direction:column}.a-Transfer-select>.a-Transfer-checkboxes,.a-Transfer-result>.a-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.a-Transfer-search+.a-Transfer-checkboxes{border-top:1px solid #dee2e6}.a-Transfer-checkboxes .a-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.a-Transfer-search{padding:.625rem}.a-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.a-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #dee2e6;margin:0 10px;color:#6c757d}.a-Transfer-arrow>svg{top:0;width:14px;height:14px}.a-Transfer-checkAll,.a-Transfer-clearAll{user-select:none;cursor:pointer}.a-Transfer-checkAll.is-disabled,.a-Transfer-clearAll.is-disabled{pointer-events:none;color:#99a6ad}.a-Transfer-tabs{display:flex;flex-direction:column;height:100%}.a-Transfer-tabs>.a-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.a-Transfer-tabs>.a-Tabs-links>.a-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.a-Transfer-tabs>.a-Tabs-links .a-TabsTransfer-tabsMid{flex-grow:1}.a-Transfer-tabs>.a-Tabs-links>.a-SearchBox{margin:-5px 5px 0 10px}.a-Transfer-tabs>.a-Tabs-links>.a-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.a-Transfer-tabs>.a-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane{position:relative;min-height:100%}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane.is-active{display:flex;flex-direction:column}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane.is-active>.a-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.a-TabsTransfer .a-Transfer-title{height:40px}.a-TabsTransfer-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-TransferControl{position:relative}.a-TransferControl.is-inline{display:inline-block}.a-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #cfdadd;background:#fff;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#58666e}.a-NestedSelect.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-NestedSelect.is-focused,.a-NestedSelect.is-opened{border-color:#23b7e5}.a-NestedSelect.is-opened .a-Select-arrow>svg{transform:rotate(180deg)}.a-NestedSelect:not(.is-disabled):hover{background:#f2f2f2}.a-NestedSelect--multi .a-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-NestedSelect--multi .a-Select-valueLabel{padding:0 .3125rem}.a-NestedSelect-placeholder{color:#99a6ad;line-height:1.42857}.a-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.a-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.a-NestedSelect-clear svg{fill:#6c757d;width:.625rem;height:.625rem}.a-NestedSelect-clear:hover svg{fill:#3d4246}.a-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.a-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#6c757d}.a-NestedSelect-menuOuter{display:flex}.a-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;box-shadow:none;overflow-y:auto;overflow-x:hidden}.a-NestedSelect-menu:not(:first-child){border-left:0}.a-NestedSelect-menu .a-NestedSelect-option{position:relative;padding-left:.625rem;min-height:2.125rem;line-height:2.125rem;cursor:pointer;display:flex}.a-NestedSelect-menu .a-NestedSelect-option>.a-NestedSelect-optionLabel{flex:1;cursor:pointer}.a-NestedSelect-menu .a-NestedSelect-option>.a-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.a-NestedSelect-menu .a-NestedSelect-option.is-active{color:#23b7e5;background-color:transparent}.a-NestedSelect-menu .a-NestedSelect-option:hover{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-NestedSelect-menu .a-NestedSelect-option:hover>.a-NestedSelect-childrenOuter{display:block}.a-NestedSelect-menu .a-NestedSelect-option .a-Checkbox{display:inline-block;padding-top:0}.a-NestedSelect-menu .a-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.a-Form-control--sizeXs>.a-NestedSelect,.a-Form-control--sizeSm>.a-NestedSelect,.a-Form-control--sizeMd>.a-NestedSelect,.a-Form-control--sizeLg>.a-NestedSelect{display:inline-flex!important}}.a-IconPickerControl{position:relative;max-width:100%}.a-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.a-IconPickerControl-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-IconPickerControl-input input::placeholder{color:#99a6ad;user-select:none}.a-IconPickerControl.is-error>.a-IconPickerControl-input{border-color:#f05050;background-color:#fff}.a-IconPickerControl.is-focused>.a-IconPickerControl-input{border-color:#23b7e5;box-shadow:none}.a-IconPickerControl.is-error.is-focused>.a-IconPickerControl-input{border-color:#f05050}.a-IconPickerControl.is-disabled>.a-IconPickerControl-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-IconPickerControl-spinner{line-height:1.25rem}.a-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-IconPickerControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-IconPickerControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-IconPickerControl.a-Form-control--sizeXs>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeSm>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeMd>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeLg>.a-IconPickerControl-input{min-width:100%;display:inline-flex}}.a-IconPickerControl-placeholder{color:#99a6ad;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.a-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.a-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.a-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.a-IconPickerControl-input--withAC>input{width:auto}.a-IconPickerControl-sugsPanel{position:absolute;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.a-IconPickerControl-tabs{background:#f0f3f4}.a-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.a-IconPickerControl-tab.active{background:#fff}.a-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.a-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.a-IconPickerControl-sugItem:hover{background-color:rgba(0,126,255,.08)}.a-IconPickerControl-sugItem.is-active{color:#fff;background-color:#23b7e5}.a-IconPickerControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.a-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.a-Form{font-size:.875rem;position:relative}.a-Form--quickEdit .a-Form-item:last-child{margin-bottom:0}.a-Form--inline>.a-PlainField{display:inline-block;padding-top:.375rem}.a-Form-static{min-height:2.125rem;padding-top:.4375rem;padding-bottom:.4375rem;margin-bottom:0}.a-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.a-Form-label>span{position:relative}.a-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.a-Form-feedback{color:#f05050;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.a-Form-description{display:block;color:#6f808a;margin:.375rem 0 0;font-size:.75rem}.a-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.375rem;vertical-align:top}.a-Form-item{margin-bottom:.9375rem}.a-Grid-form>.a-Form-item:last-child{margin-bottom:0}.a-Form--inline>.a-Form-item--inline{margin-bottom:.46875rem;margin-right:.46875rem}.a-Form--inline>.a-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.a-Form-item .a-Form-remark{padding-top:.4375rem;vertical-align:top}.a-Form-item--horizontal>.a-Form-label{text-align:right;white-space:"normal"}.a-Form-item--normal>.a-Form-label{display:block}.a-Form-item--normal>.a-Form-label .a-Form-star{position:absolute;left:-.375rem;top:.1875rem}.a-Form-item.is-error>.a-Form-label{color:#f05050}.a-Form-placeholder{color:#99a6ad}.a-Form-caption{display:inline-block;line-height:2.125rem;height:2.125rem;margin-left:.625rem}@media (min-width:576px){.a-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeXs.a-NumberControl{width:5rem}.a-Form-control--sizeXs.a-TextareaControl{width:auto}.a-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeSm.a-NumberControl{width:10rem}.a-Form-control--sizeSm.a-TextareaControl{width:auto}.a-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeMd.a-TextareaControl{width:auto}.a-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeLg.a-NumberControl{width:20rem}.a-Form-control--sizeLg.a-TextareaControl{width:auto}.a-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.a-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.a-Form-item--horizontal>.a-Form-label,.a-Form-item--horizontal>.a-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.a-Form-item--horizontal .a-Form-itemColumn--xs,.a-Form-item--horizontal .a-Form-itemColumn--sm,.a-Form-item--horizontal .a-Form-itemColumn--normal,.a-Form-item--horizontal .a-Form-itemColumn--md,.a-Form-item--horizontal .a-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.a-Form-item--horizontal>.a-Form-label{padding-top:.4375rem;margin-bottom:0}.a-Form-item--horizontal>.a-Form-label .a-Form-star{position:absolute;left:-.375rem;top:.1875rem}.a-Form-item--horizontal .a-Form-itemColumn--xs{width:3.75rem}.a-Form-item--horizontal .a-Form-itemColumn--sm{width:5.625rem}.a-Form-item--horizontal .a-Form-itemColumn--normal{width:7.5rem}.a-Form-item--horizontal .a-Form-itemColumn--md{width:10rem}.a-Form-item--horizontal .a-Form-itemColumn--lg{width:12.5rem}.a-Form-item--horizontal .a-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.a-Form-item--inline{display:inline-block;vertical-align:top}.a-Form-item--inline .a-TextControl{width:12.5rem}.a-Form-item--inline>.a-Form-label{padding-top:.4375rem;margin-bottom:0;margin-right:.46875rem}.a-Form-item--inline>.a-Form-label .a-Form-star{position:static}.a-Form-item--inline>.a-Form-value{display:inline}.a-Form-item--inline>.a-Form-value>.a-Form-control{vertical-align:top;display:inline-block}.a-Form-item--inline>.a-Form-value>.a-Form-control.a-InputGroup{display:inline-flex}.a-Form-item--inline>.a-Form-value>.a-TextControl--withAddOn{display:inline-flex;min-width:15rem}.a-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.a-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.a-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.a-Form-rowInner{display:flex;flex-wrap:nowrap}.a-Form-rowInner>.a-Form-label{display:inline-block;vertical-align:top;padding-top:.4375rem;padding-right:.625rem}.a-Form-rowInner>.a-Form-control{flex-basis:0;flex-grow:1}.a-Form-rowInner>.a-Form-control:not(.a-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#edf1f2;color:#58666e}.bg-light.lt,.bg-light .lt{background-color:#f3f5f6}.bg-light.lter,.bg-light .lter{background-color:#f6f8f8}.bg-light.dk,.bg-light .dk{background-color:#e4eaec}.bg-light.dker,.bg-light .dker{background-color:#dde6e9}.bg-light.bg,.bg-light .bg{background-color:#edf1f2}.bg-dark{background-color:#3a3f51;color:#a6a8b1}.bg-dark.lt,.bg-dark .lt{background-color:#474c5e}.bg-dark.lter,.bg-dark .lter{background-color:#54596a}.bg-dark.dk,.bg-dark .dk{background-color:#2e3344}.bg-dark.dker,.bg-dark .dker{background-color:#232735}.bg-dark.bg,.bg-dark .bg{background-color:#3a3f51}.bg-dark a,.bg-dark .a-Button--link{color:#c1c3c9}.bg-dark a:hover,.bg-dark .a-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#8b8e99!important}.bg-dark .text-lt{color:#eaebed!important}.bg-black{background-color:#1c2b36;color:#7793a7}.bg-black.lt,.bg-black .lt{background-color:#263845}.bg-black.lter,.bg-black .lter{background-color:#314554}.bg-black.dk,.bg-black .dk{background-color:#131e26}.bg-black.dker,.bg-black .dker{background-color:#0a1015}.bg-black.bg,.bg-black .bg{background-color:#1c2b36}.bg-black a,.bg-black .a-Button--link{color:#96abbb}.bg-black a:hover,.bg-black .a-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#5c798f!important}.bg-black .text-lt{color:#c4d0d9!important}.bg-primary{background-color:#7266ba;color:#f4f3f9}.bg-primary.lt,.bg-primary .lt{background-color:#847abf}.bg-primary.lter,.bg-primary .lter{background-color:#958dc6}.bg-primary.dk,.bg-primary .dk{background-color:#6051b5}.bg-primary.dker,.bg-primary .dker{background-color:#5244a9}.bg-primary.bg,.bg-primary .bg{background-color:#7266ba}.bg-primary a,.bg-primary .a-Button--link{color:#fff}.bg-primary a:hover,.bg-primary .a-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#d6d3e6!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#27c24c;color:#c6efd0}.bg-success.lt,.bg-success .lt{background-color:#31d257}.bg-success.lter,.bg-success .lter{background-color:#48d46a}.bg-success.dk,.bg-success .dk{background-color:#20af42}.bg-success.dker,.bg-success .dker{background-color:#1a9c39}.bg-success.bg,.bg-success .bg{background-color:#27c24c}.bg-success a,.bg-success .a-Button--link{color:#eefaf1}.bg-success a:hover,.bg-success .a-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#9ee4af!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#23b7e5;color:#dcf2f8}.bg-info.lt,.bg-info .lt{background-color:#3dbde5}.bg-info.lter,.bg-info .lter{background-color:#55c3e6}.bg-info.dk,.bg-info .dk{background-color:#16aad8}.bg-info.dker,.bg-info .dker{background-color:#1199c4}.bg-info.bg,.bg-info .bg{background-color:#23b7e5}.bg-info a,.bg-info .a-Button--link{color:#fff}.bg-info a:hover,.bg-info .a-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#b0e1f1!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#fad733;color:#fffefa}.bg-warning.lt,.bg-warning .lt{background-color:#f8da4e}.bg-warning.lter,.bg-warning .lter{background-color:#f7de69}.bg-warning.dk,.bg-warning .dk{background-color:#fcd417}.bg-warning.dker,.bg-warning .dker{background-color:#face00}.bg-warning.bg,.bg-warning .bg{background-color:#fad733}.bg-warning a,.bg-warning .a-Button--link{color:#fff}.bg-warning a:hover,.bg-warning .a-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#fbf2cb!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#f05050;color:#fff}.bg-danger.lt,.bg-danger .lt{background-color:#f06a6a}.bg-danger.lter,.bg-danger .lter{background-color:#f18282}.bg-danger.dk,.bg-danger .dk{background-color:#f13636}.bg-danger.dker,.bg-danger .dker{background-color:#f21b1b}.bg-danger.bg,.bg-danger .bg{background-color:#f05050}.bg-danger a,.bg-danger .a-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .a-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#e6e6e6!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#58666e}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#6254b2}a.text-primary:hover{color:#6254b2}.text-primary{color:#7266ba}.text-primary-lt{color:#6254b2}.text-primary-lter{color:#564aa3}.text-primary-dk{color:#6254b2}.text-primary-dker{color:#564aa3}a.bg-info:hover{background-color:#19a9d5}a.text-info:hover{color:#19a9d5}.text-info{color:#23b7e5}.text-info-lt{color:#19a9d5}.text-info-lter{color:#1797be}.text-info-dk{color:#19a9d5}.text-info-dker{color:#1797be}a.bg-success:hover{background-color:#23ad44}a.text-success:hover{color:#23ad44}.text-success{color:#27c24c}.text-success-lt{color:#23ad44}.text-success-lter{color:#1e983b}.text-success-dk{color:#23ad44}.text-success-dker{color:#1e983b}a.bg-warning:hover{background-color:#f9d21a}a.text-warning:hover{color:#f9d21a}.text-warning{color:#fad733}.text-warning-lt{color:#f9d21a}.text-warning-lter{color:#f4ca06}.text-warning-dk{color:#f9d21a}.text-warning-dker{color:#f4ca06}a.bg-danger:hover{background-color:#ee3939}a.text-danger:hover{color:#ee3939}.text-danger{color:#f05050}.text-danger-lt{color:#ee3939}.text-danger-lter{color:#ec2121}.text-danger-dk{color:#ee3939}.text-danger-dker{color:#ec2121}a.bg-dark:hover{background-color:#2f3342}a.text-dark:hover{color:#2f3342}.text-dark{color:#3a3f51}.text-dark-lt{color:#2f3342}.text-dark-lter{color:#252833}.text-dark-dk{color:#2f3342}.text-dark-dker{color:#252833}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#131e25}a.text-black:hover{color:#131e25}.text-black{color:#1c2b36}.text-black-lt{color:#131e25}.text-black-lter{color:#0b1014}.text-black-dk{color:#131e25}.text-black-dker{color:#0b1014}.text-muted{color:#99a6ad}.text-loud{color:#414c52}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #dee2e6,0 2px 0 #fbfcfc,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #dee2e6}.b-t{border-top:1px solid #dee2e6}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #dee2e6}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #dee2e6}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #dee2e6}.b-l-none{border-left-width:0}.b-light{border-color:#edf1f2}.b-dark{border-color:#3a3f51}.b-black{border-color:#3a3f51}.b-primary{border-color:#7266ba}.b-success{border-color:#27c24c}.b-info{border-color:#23b7e5}.b-warning{border-color:#fad733}.b-danger{border-color:#f05050}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#edf1f2}.b-l-dark{border-left-color:#3a3f51}.b-l-black{border-left-color:#3a3f51}.b-l-primary{border-left-color:#7266ba}.b-l-success{border-left-color:#27c24c}.b-l-info{border-left-color:#23b7e5}.b-l-warning{border-left-color:#fad733}.b-l-danger{border-left-color:#f05050}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#27c24c}.avatar i.off{background-color:#99a6ad}.avatar i.busy{background-color:#f05050}.avatar i.away{background-color:#fad733}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.a-Form-col.w,.a-Form-col.w-xs,.a-Form-col.w-sm,.a-Form-col.w-md,.a-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #dee2e6}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#7266ba}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#564aa3}.label-success{background-color:#27c24c}.label-success[href]:hover,.label-success[href]:focus{background-color:#1e983b}.label-info{background-color:#23b7e5}.label-info[href]:hover,.label-info[href]:focus{background-color:#1797be}.label-warning{background-color:#fad733}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#f4ca06}.label-danger{background-color:#f05050}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#ec2121}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file +@charset "UTF-8";html{box-sizing:border-box}*,::before,::after{box-sizing:inherit}figure{margin:0}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg.icon{width:1em;height:1em;top:.125em;position:relative;fill:currentColor}svg.r90{transform:rotate(90deg)}svg.icon-success{color:#27c24c}svg.icon-fail{color:#f05050}html{font-size:16px}body{color:#58666e;background-color:#f0f3f4;font-size:.875rem;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{color:#23b7e5;text-decoration:none}a:hover{color:#1485a8;text-decoration:underline}label{font-weight:400}h1,h2,h3,h4,h5,h6{font-weight:400;color:#414c52;line-height:1.1}.is-matched{color:#f05050}html,body{width:100%;height:100%}body{overflow-x:hidden}.a-Layout{height:100%;min-height:100%;width:100%;position:relative}.a-Layout:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:#f0f3f4;border:inherit;display:block}.a-Layout--boxed{margin-right:auto;margin-left:auto}.a-Layout .a-Layout-header{background:#fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05);height:3.125rem}.a-Layout--headerFixed{padding-top:3.125rem}.a-Layout--headerFixed .a-Layout-header{position:fixed;top:0;width:100%;z-index:1200}.a-Layout-brandBar{background:#3a3f51;color:#a6a8b1}.a-Layout-brandBar>button{padding:.625rem 1.0625rem;font-size:1rem;line-height:1.875rem;text-decoration:none;background-color:transparent;border:0}.a-Layout-brand{color:#eaebed;text-align:left;font-size:1rem;font-weight:400;max-width:100%;height:auto;line-height:3.125rem;display:inline-block;vertical-align:middle;padding:0 1.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.a-Layout-brand:hover{text-decoration:none}.a-Layout-brand img{max-height:1.5625rem;vertical-align:middle;display:inline}.a-Layout-headerBar{border-bottom:0;min-height:3.125rem;padding:0 .625rem}.a-Layout-aside{float:left;background:#3a3f51;color:#a6a8b1}.a-Layout-aside:before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.a-Layout-asideFooter{position:absolute;bottom:0;width:100%;z-index:1200;max-width:12.5rem}.a-Layout-asideFooter~div{padding-bottom:3.125rem}.a-Layout-content{height:100%}.a-Layout-content::before,.a-Layout-content::after{display:table;content:''}.a-Layout-content::after{clear:both}.a-Layout-body{padding-bottom:3.125rem;width:100%;height:100%}.a-Layout--noFooter .a-Layout-body{padding-bottom:0}.a-Layout-content .a-Layout-body{float:left}.a-Layout-footer{position:absolute;bottom:0;left:0;right:0;z-index:0}.a-Layout--sm .a-Layout-asideFooter{max-width:9.375rem}.a-Layout--sm .a-AsideNav-item a{font-size:.75rem}.a-Layout--md .a-Layout-asideFooter{max-width:15.625rem}.a-Layout--lg .a-Layout-asideFooter{max-width:18.75rem}@media (max-width:767px){.a-Layout-content{transition:transform .2s ease}.a-Layout-aside{display:none}.a-Layout--offScreen .a-Layout-aside{position:fixed;top:3.125rem;bottom:0;width:75%;display:block!important;visibility:visible;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:1010}.a-Layout-headerBar{display:none}.a-Layout--offScreen .a-Layout-content,.a-Layout--offScreen .a-Layout-footer{background-color:#f0f3f4;transition:transform .2s ease;backface-visibility:hidden;transform:translate3d(75%,0,0);overflow:hidden;position:fixed;width:100%;top:0;bottom:0;left:0;right:0;z-index:1015;padding-top:3.125rem}}@media (min-width:768px){.a-Layout--boxed{width:47.5rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:47.5rem}.a-Layout-brand,.a-Layout-brandBar,.a-Layout-aside{width:12.5rem}.a-Layout-brandBar{float:left}.a-Layout--withAside .a-Layout-headerBar,.a-Layout--withAside .a-Layout-content,.a-Layout--withAside .a-Layout-footer{margin-left:12.5rem}.a-Layout .visible-folded{display:none}.a-Layout--folded .visible-folded{display:inherit}.a-Layout--folded .hidden-folded{display:none!important}.a-Layout--folded .text-center-folded{text-align:center}.a-Layout--folded .pull-none-folded{float:none!important}.a-Layout--folded .w-auto-folded{width:auto}.a-Layout--folded .a-Layout-aside,.a-Layout--folded .a-Layout-brandBar{width:3.75rem}.a-Layout--folded.a-Layout--withAside .a-Layout-headerBar,.a-Layout--folded.a-Layout--withAside .a-Layout-content,.a-Layout--folded.a-Layout--withAside .a-Layout-footer{margin-left:3.75rem}.a-Layout--folded .a-Layout-brand{display:block;padding:0;font-size:1.25rem;text-align:center}.a-Layout--asideFixed .a-Layout-aside{height:100%}.a-Layout--asideFixed .a-Layout-aside:before{position:fixed;z-index:15}.a-Layout--asideFixed .a-Layout-brandBar{position:fixed}.a-Layout--asideFixed .a-Layout-asideWrap{position:fixed;overflow:hidden;top:3.125rem;bottom:0;left:0;width:12.4375rem;z-index:1200}.a-Layout--asideFixed .a-Layout-asideInner{width:13.5625rem;position:relative;height:100%;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.a-Layout--asideFixed .a-Layout-asideInner::-webkit-scrollbar{-webkit-appearance:none}.a-Layout--asideFixed .a-Layout-asideInner::-webkit-scrollbar:vertical{width:1.0625rem}.a-Layout--asideFixed .a-Layout-asideInner>*{width:12.5rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-aside{position:static}.a-Layout--asideFixed.a-Layout--folded .a-Layout-brandBar{position:static}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideWrap{overflow:visible;position:relative;top:0;z-index:15;width:3.6875rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideInner{overflow:visible;width:4.8125rem}.a-Layout--asideFixed.a-Layout--folded .a-Layout-asideInner>*{width:3.75rem}.a-Layout--sm:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--sm:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--sm:not(.a-Layout--folded) .a-Layout-aside{width:9.375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--sm:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:9.375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:9.3125rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:10.4375rem}.a-Layout--sm:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:9.375rem}.a-Layout--md:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--md:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--md:not(.a-Layout--folded) .a-Layout-aside{width:15.625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--md:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:15.625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:15.5625rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:16.6875rem}.a-Layout--md:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:15.625rem}.a-Layout--lg:not(.a-Layout--folded) .a-Layout-brand,.a-Layout--lg:not(.a-Layout--folded) .a-Layout-brandBar,.a-Layout--lg:not(.a-Layout--folded) .a-Layout-aside{width:18.75rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-headerBar,.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-content,.a-Layout--lg:not(.a-Layout--folded).a-Layout--withAside .a-Layout-footer{margin-left:18.75rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideWrap{width:18.6875rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner{width:19.8125rem}.a-Layout--lg:not(.a-Layout--folded).a-Layout--asideFixed .a-Layout-asideInner>*{width:18.75rem}}@media (min-width:992px){.a-Layout--boxed{width:61.25rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:61.25rem}}@media (min-width:1200px){.a-Layout--boxed{width:73.75rem}.a-Layout--boxed.a-Layout--headerFixed .a-Layout-header{width:73.75rem}}.a-Grid-col--xs1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--xs{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}@media (min-width:576px){.a-Grid{margin-left:-.9375rem;margin-right:-.9375rem;display:flex;flex-wrap:wrap}.a-Grid-col--sm1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--sm{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:768px){.a-Grid-col--md1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--md{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}@media (min-width:992px){.a-Grid-col--lg1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg3{flex:0 0 25%;max-width:25%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg6{flex:0 0 50%;max-width:50%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg9{flex:0 0 75%;max-width:75%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg12{flex:0 0 100%;max-width:100%;min-height:1px;padding-left:.9375rem;padding-right:.9375rem}.a-Grid-col--lg{flex-basis:0;flex-grow:1;min-height:1px;max-width:100%;width:0;padding-left:.9375rem;padding-right:.9375rem}}.a-AsideNav::before,.a-AsideNav::after{display:table;content:''}.a-AsideNav::after{clear:both}.a-AsideNav-label{color:#8b8e99;margin-top:.9375rem;margin-bottom:.625rem;font-size:.6875rem;padding-left:.9375rem;padding-right:.9375rem}.a-AsideNav-list{list-style:none;padding:0;margin:0}.a-AsideNav-itemArrow{float:right;display:block;width:1.25rem;text-align:center;line-height:1.0625rem;margin-top:.125rem}.a-AsideNav-itemArrow:empty:before{content:'';display:inline-block;transform-origin:center;transition:transform .2s ease;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);width:.625rem;height:.625rem;background-position:center center;background-repeat:no-repeat}.a-AsideNav-item.is-open>a>.a-AsideNav-itemArrow:empty:before{transform:rotate(90deg);color:#fff}.a-AsideNav-itemArrow>svg{color:#b4b6bd;width:.625rem;height:.625rem;transform-origin:center;transition:transform .2s ease}.a-AsideNav-item.is-open>a>.a-AsideNav-itemArrow>svg{transform:rotate(90deg)}.a-AsideNav-itemBadge{padding:.125rem .3125rem;margin-top:.125rem;font-size:.6875rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);float:right;min-width:.0625rem;line-height:1;font-weight:700;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.625rem}.a-AsideNav-itemIcon{margin:-.59375rem -.625rem;line-height:2.5rem;width:2.5rem;vertical-align:middle;float:left;margin-right:0;text-align:center;position:relative;overflow:hidden;color:inherit;font-size:inherit}.a-AsideNav-itemIcon:before{position:relative;z-index:2}.a-AsideNav-subList{margin:0;padding:0;opacity:0;height:0;overflow:hidden;margin-left:-1.25rem;transition:all .2s ease-in-out 0s;background-color:#242734}.is-open>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:hover>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:focus>.a-AsideNav-subList,.a-Layout--folded .a-AsideNav-item:active>.a-AsideNav-subList{opacity:1;margin-left:0;height:auto!important;overflow:visible}.a-Layout--folded .a-AsideNav-item.is-open>.a-AsideNav-subList{overflow:hidden}.a-AsideNav-item{position:relative;display:block}.a-AsideNav-item a{font-weight:400;cursor:pointer;text-transform:none;display:block;font-size:.875rem;padding:.59375rem .9375rem;position:relative;transition:background-color .2s ease-in-out 0s;color:#b4b6bd;text-decoration:none;user-select:none}.a-AsideNav-item a:hover{color:#fff;text-decoration:none;background-color:#32374a}.a-AsideNav-item a:hover .a-AsideNav-itemIcon{color:inherit}.a-AsideNav-item.is-active>a{background-color:#2e3344;color:#fff}.a-AsideNav-item.is-active>a:hover{background-color:#32374a}.a-AsideNav-item.is-lg>a{padding:.90625rem .9375rem}.a-AsideNav-item .a-AsideNav-item a{padding-left:2.8125rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-item a{padding-left:4.6875rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-item .a-AsideNav-item a{padding-left:6.5625rem}.a-AsideNav-item .a-AsideNav-item .a-AsideNav-subList{display:none}.a-AsideNav-item .a-AsideNav-item.is-open .a-AsideNav-subList{display:block}.a-AsideNav-subHeader{display:none}.a-AsideNav-subHeader a{cursor:default;background:transparent;color:#8b8e99;padding:.90625rem 1.25rem}.a-AsideNav-subHeader a:hover{color:#8b8e99;background:transparent}.a-AsideNav-tooltip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;opacity:0;transition:all .15s ease-in-out}.a-AsideNav-divider{width:auto;height:.0625rem;margin:.625rem 0;overflow:hidden;font-size:0;background-color:#2e3344}@media (min-width:768px){.a-Layout--folded .a-AsideNav-label{display:none}.a-Layout--folded .a-AsideNav-subHeader{display:block}.a-Layout--folded .a-AsideNav-item:hover>.a-AsideNav-tooltip{opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a{text-align:center;position:relative;padding:0;text-align:center;height:3.125rem;border:0}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemArrow,.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemLabel{display:none}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemIcon{width:auto;float:none!important;display:block;font-size:1rem;margin:0;line-height:3.125rem;border:0!important}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item>a .a-AsideNav-itemBadge{position:absolute;right:.75rem;top:.5rem;z-index:3}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item.is-lg>a{height:3.125rem}.a-Layout--folded .a-AsideNav-list>.a-AsideNav-item.is-lg>a .a-AsideNav-itemIcon{line-height:3.125rem}.a-Layout--folded .a-AsideNav-item .a-AsideNav-item a{padding-left:1.25rem!important}.a-Layout--folded .a-AsideNav-subList{height:0!important;position:absolute;left:100%;top:0!important;z-index:1050;width:12.5rem;box-shadow:0 .125rem .375rem rgba(0,0,0,.1)}.a-Layout--folded.a-Layout--sm .a-AsideNav-subList{width:9.375rem}.a-Layout--folded.a-Layout--md .a-AsideNav-subList{width:15.625rem}.a-Layout--folded.a-Layout--lg .a-AsideNav-subList{width:18.75rem}}.a-Hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.a-Hbox>.a-Hbox-col{display:table-cell;vertical-align:top;height:100%;float:none}.a-FormHbox{margin-left:-15px;margin-right:-15px}.a-FormHbox>.a-Hbox>.a-Hbox-col{padding-left:15px;padding-right:15px;vertical-align:top}.a-FormHbox>.a-Hbox>.a-Hbox-col>.a-Form-group{margin-left:0;margin-right:0}.a-FormHbox>.a-Hbox>.a-Hbox-col>.a-Form-group:last-child{margin-bottom:0}.a-FormHbox.a-Hbox--xs{margin-left:-5px;margin-right:-5px}.a-FormHbox.a-Hbox--xs>.a-Hbox>.a-Hbox-col{padding-left:5px;padding-right:5px}.a-FormHbox.a-Hbox--sm{margin-left:-10px;margin-right:-10px}.a-FormHbox.a-Hbox--sm>.a-Hbox>.a-Hbox-col{padding-left:10px;padding-right:10px}@media (max-width:991px){.a-Hbox--autoSm{display:block}.a-Hbox--autoSm>.a-Hbox-col{width:auto;height:auto;display:block}.a-Hbox--autoSm>.a-Hbox-col.show{display:block!important}.a-Hbox--autoSm .a-Vbox{height:auto}.a-Hbox--autoSm .cell-inner{position:static!important}}@media (max-width:767px){.a-Hbox--autoXs{display:block}.a-Hbox--autoXs>.a-Hbox-col{width:auto;height:auto;display:block}.a-Hbox--autoXs .a-Vbox{height:auto}.a-Hbox--autoXs .cell-inner{position:static!important}}.a-Vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.a-Vbox .row-row{display:table-row;height:100%}.a-Vbox .row-row .a-Vbox-cell{position:relative;height:100%;width:100%}.ie .a-Vbox .row-row .a-Vbox-cell{display:table-cell;overflow:auto}.ie .a-Vbox .row-row .a-Vbox-cell .cell-inner{overflow:visible!important}.a-Vbox .row-row .a-Vbox-cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.a-Button{display:inline-block;font-weight:400;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:.0625rem solid transparent;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;white-space:nowrap;padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.a-Button .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button>svg.icon:not(:last-child):not(.pull-right),.a-Button>.pull-left{margin-right:.75rem}.a-Button .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button>.pull-right{margin-left:.75rem}.a-Button:hover:focus{color:#58666e;text-decoration:none}.a-Button:focus,.a-Button.focus{outline:0;box-shadow:none}.a-Button.is-disabled,.a-Button:disabled{opacity:.65;box-shadow:none;pointer-events:none;border-color:#dee2e6}.a-Button:not(:disabled):not(.is-disabled){cursor:pointer}.a-Button:not(:disabled):not(.is-disabled):active,.a-Button:not(:disabled):not(.is-disabled).is-active{box-shadow:inset 0 3px 5px rgba(28,43,54,.125)}.a-Button:not(:disabled):not(.is-disabled):active:focus,.a-Button:not(:disabled):not(.is-disabled).is-active:focus{box-shadow:inset 0 3px 5px rgba(28,43,54,.125)}.a-Button>.pull-left,.a-Button>.pull-right{line-height:inherit}.a-Button>.fa,.a-Button>.iconfont,.a-Button>.glyphicon{font-size:inherit}a.a-Button.is-disabled,fieldset:disabled a.a-Button{pointer-events:none}.a-Button--primary{color:#fff;background-color:#7266ba;border-color:#7266ba;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary:hover{color:#fff;background-color:#5b4eac;border-color:#564aa3}.a-Button--primary:focus{color:#fff;background-color:#7266ba;border-color:#7266ba;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary:hover:focus{color:#fff;background-color:#5b4eac;border-color:#564aa3;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--primary.is-disabled,.a-Button--primary:disabled{background-color:#7266ba;color:#fff;border-color:#dee2e6}.a-Button--primary:not(:disabled):not(.is-disabled):active,.a-Button--primary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#564aa3;border-color:#52469b}.a-Button--secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.a-Button--secondary:focus{color:#fff;background-color:#6c757d;border-color:#6c757d;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary:hover:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--secondary.is-disabled,.a-Button--secondary:disabled{background-color:#6c757d;color:#fff;border-color:#dee2e6}.a-Button--secondary:not(:disabled):not(.is-disabled):active,.a-Button--secondary:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#545b62;border-color:#4e555b}.a-Button--success{color:#fff;background-color:#27c24c;border-color:#27c24c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success:hover{color:#fff;background-color:#21a240;border-color:#1e983b}.a-Button--success:focus{color:#fff;background-color:#27c24c;border-color:#27c24c;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success:hover:focus{color:#fff;background-color:#21a240;border-color:#1e983b;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--success.is-disabled,.a-Button--success:disabled{background-color:#27c24c;color:#fff;border-color:#dee2e6}.a-Button--success:not(:disabled):not(.is-disabled):active,.a-Button--success:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1e983b;border-color:#1c8d37}.a-Button--info{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-Button--info:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--info.is-disabled,.a-Button--info:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-Button--info:not(:disabled):not(.is-disabled):active,.a-Button--info:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-Button--warning{color:#fff;background-color:#fad733;border-color:#fad733;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning:hover{color:#fff;background-color:#f9d00e;border-color:#f4ca06}.a-Button--warning:focus{color:#fff;background-color:#fad733;border-color:#fad733;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning:hover:focus{color:#fff;background-color:#f9d00e;border-color:#f4ca06;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--warning.is-disabled,.a-Button--warning:disabled{background-color:#fad733;color:#fff;border-color:#dee2e6}.a-Button--warning:not(:disabled):not(.is-disabled):active,.a-Button--warning:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#f4ca06;border-color:#e8c006}.a-Button--danger{color:#fff;background-color:#f05050;border-color:#f05050;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger:hover{color:#fff;background-color:#ed2d2d;border-color:#ec2121}.a-Button--danger:focus{color:#fff;background-color:#f05050;border-color:#f05050;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger:hover:focus{color:#fff;background-color:#ed2d2d;border-color:#ec2121;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--danger.is-disabled,.a-Button--danger:disabled{background-color:#f05050;color:#fff;border-color:#dee2e6}.a-Button--danger:not(:disabled):not(.is-disabled):active,.a-Button--danger:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#ec2121;border-color:#eb1515}.a-Button--light{color:#58666e;background-color:#edf1f2;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light:hover{color:#58666e;background-color:#d7e0e2;border-color:#c1c9d0}.a-Button--light:focus{color:#58666e;background-color:#edf1f2;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light:hover:focus{color:#58666e;background-color:#d7e0e2;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--light.is-disabled,.a-Button--light:disabled{background-color:#edf1f2;color:#58666e;border-color:#dee2e6}.a-Button--light:not(:disabled):not(.is-disabled):active,.a-Button--light:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#cfdadd;border-color:#bac2cb}.a-Button--dark{color:#fff;background-color:#3a3f51;border-color:#3a3f51;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark:hover{color:#fff;background-color:#2a2e3b;border-color:#252833}.a-Button--dark:focus{color:#fff;background-color:#3a3f51;border-color:#3a3f51;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark:hover:focus{color:#fff;background-color:#2a2e3b;border-color:#252833;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--dark.is-disabled,.a-Button--dark:disabled{background-color:#3a3f51;color:#fff;border-color:#dee2e6}.a-Button--dark:not(:disabled):not(.is-disabled):active,.a-Button--dark:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#252833;border-color:#1f222c}.a-Button--default{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-Button--default:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Button--default.is-disabled,.a-Button--default:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-Button--default:not(:disabled):not(.is-disabled):active,.a-Button--default:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-Button--xs{padding:.0625rem .3125rem;font-size:.6875rem;line-height:1.63636;border-radius:.142rem;height:1.375rem}.a-Button--xs .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--xs>svg.icon:not(:last-child):not(.pull-right),.a-Button--xs>.pull-left{margin-right:.3125rem}.a-Button--xs .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--xs>.pull-right{margin-left:.3125rem}.a-Button--xs.a-Button--iconOnly{min-width:1.83333rem}.a-Button--sm{padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem}.a-Button--sm .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--sm>svg.icon:not(:last-child):not(.pull-right),.a-Button--sm>.pull-left{margin-right:.5rem}.a-Button--sm .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--sm>.pull-right{margin-left:.5rem}.a-Button--sm.a-Button--iconOnly{min-width:2.5rem}.a-Button--md{padding:.375rem .75rem;font-size:.875rem;line-height:1.42857;border-radius:.142rem;height:2.125rem}.a-Button--md .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--md>svg.icon:not(:last-child):not(.pull-right),.a-Button--md>.pull-left{margin-right:.75rem}.a-Button--md .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--md>.pull-right{margin-left:.75rem}.a-Button--md.a-Button--iconOnly{min-width:2.83333rem}.a-Button--lg{padding:.625rem 1rem;font-size:1.25rem;line-height:1.2;border-radius:.142rem;height:2.875rem}.a-Button--lg .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Button--lg>svg.icon:not(:last-child):not(.pull-right),.a-Button--lg>.pull-left{margin-right:1rem}.a-Button--lg .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Button--lg>.pull-right{margin-left:1rem}.a-Button--lg.a-Button--iconOnly{min-width:3.83333rem}.a-Button--iconOnly{min-width:2.83333rem}.a-Button--iconOnly:not(.a-Button--link)>svg.icon{width:.875rem;height:.875rem;top:.125rem}.a-Button--iconOnly:not(.a-Button--link)>.fa,.a-Button--iconOnly:not(.a-Button--link)>.iconfont{font-size:1rem}.a-Button--iconOnly:not(.a-Button--link)>.iconfont{line-height:1}.a-Button--link{width:auto;min-width:auto;font-weight:400;color:#58666e;text-decoration:none;border:0;padding-top:0;padding-bottom:0;height:auto}.a-Button--link:hover:focus{color:#414c52;text-decoration:underline;box-shadow:none}.a-Button--link:disabled,.a-Button--link.is-disabled{color:#99a6ad;pointer-events:none;background-color:transparent}.a-Button--block{display:block;width:100%}.a-Button--block+.a-Button--block{margin-top:.9375rem}input[type=submit].a-Button--block,input[type=reset].a-Button--block,input[type=button].a-Button--block{width:100%}.a-ButtonToolbar{margin-left:-.3125rem;margin-top:-.3125rem}.a-ButtonToolbar>.a-Button{margin-left:.3125rem;margin-top:.3125rem}.a-Button--disabled-wrap{display:inline-block!important}.is-modalOpened{overflow:hidden}.is-modalOpened .a-Modal{overflow-x:hidden;overflow-y:auto}@keyframes modalIn{from{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}@keyframes modalOut{to{opacity:0;transform:translate3d(0,-300px,0) scale(0.2)}}.a-Modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.a-Modal-content{position:relative;display:flex;flex-direction:column;width:100%;min-height:unset;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;margin-left:auto;margin-right:auto;margin-top:3.75rem;margin-bottom:1.25rem;border:.0625rem solid #dee2e6;border-radius:.142rem}.a-Modal-content.in,.a-Modal-content.out{animation-duration:.35s;animation-fill-mode:both}.a-Modal-content.in{animation-name:modalIn}.a-Modal-content.out{animation-name:modalOut}.a-Modal-overlay{transition:ease-in-out opacity .5s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);pointer-events:none;opacity:0}.a-Modal-overlay.in{opacity:1}.a-Modal-overlay.out{opacity:0}.a-Modal-header{padding:.59375rem 1.25rem;background-color:#f9f9f9;border-bottom:.0625rem solid #edeff1;border-top-left-radius:.142rem;border-top-right-radius:.142rem}.a-Modal-header::before,.a-Modal-header::after{display:table;content:''}.a-Modal-header::after{clear:both}.a-Modal-title{font-size:.875rem;color:#414c52}.a-Modal-close{float:right;color:#99a6ad;line-height:inherit;text-decoration:none;vertical-align:middle}.a-Modal-close svg{width:.75rem;height:.75rem;fill:#99a6ad}.a-Modal-close:not(.is-disabled){cursor:pointer}.a-Modal-close:not(.is-disabled):hover{text-decoration:none;color:#58666e}.a-Modal-close:not(.is-disabled):hover svg{fill:#58666e}.a-Modal-content>.a-Modal-close{position:absolute;right:1.25rem;top:.625rem;z-index:10}.a-Modal-body{padding:.9375rem 1.25rem 1.25rem;flex-basis:0;flex-grow:1}.a-Modal-header+.a-Modal-body{padding-top:1.25rem}.a-Modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:.625rem;border-top:.0625rem solid #edeff1;margin:0;border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem}.a-Modal-footer .a-Button{margin-left:.625rem}.a-Modal--2th .a-Modal-content{margin-top:5.625rem}.a-Modal--3th .a-Modal-content{margin-top:7.5rem}.a-Modal--4th .a-Modal-content{margin-top:9.375rem}.a-Modal--5th .a-Modal-content{margin-top:11.25rem}.a-Modal--6th .a-Modal-content{margin-top:13.125rem}.a-Modal--7th .a-Modal-content{margin-top:15rem}.a-Modal--8th .a-Modal-content{margin-top:16.875rem}.a-Modal--9th .a-Modal-content{margin-top:18.75rem}.a-Modal--10th .a-Modal-content{margin-top:20.625rem}@media (min-width:576px){.a-Modal-content{max-width:31.25rem}.a-Modal--sm .a-Modal-content{max-width:21.875rem}.a-Modal--base .a-Modal-content{max-width:31.25rem}.a-Modal--md .a-Modal-content{max-width:50rem}.a-Modal--lg .a-Modal-content{max-width:68.75rem}.a-Modal--xl .a-Modal-content{max-width:90%}}.a-Dialog-info{flex-basis:0;flex-grow:1;text-align:left}.a-Dialog-error{color:#f05050}.a-Modal--full{display:flex;flex-direction:column;justify-content:center;align-items:center}.a-Modal--full>.a-Modal-content{flex-basis:0;flex-grow:1;margin:30px;width:calc(100% - 60px);max-width:unset}.a-Modal--full>.a-Modal-content>.a-Modal-body{height:0;overflow:auto}.a-Drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1300;overflow:hidden;outline:0}.a-Drawer-content{position:absolute;display:flex;flex-direction:column;width:100%;height:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;outline:0;z-index:2;border:.0625rem solid #dee2e6;border-radius:0;transition:transform ease-in-out .3s}.a-Drawer-overlay{transition:ease-out opacity .3s;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1;background-color:rgba(0,0,0,.6);opacity:0}.a-Drawer-overlay.in{opacity:1}.a-Drawer-header{padding:.9375rem;background-color:#f9f9f9;border-bottom:.0625rem solid #edeff1;border-top-left-radius:0;border-top-right-radius:0}.a-Drawer-header::before,.a-Drawer-header::after{display:table;content:''}.a-Drawer-header::after{clear:both}.a-Drawer-title{font-size:1rem;color:#414c52}.a-Drawer-close{position:absolute;color:rgba(255,255,255,.8);line-height:1;text-decoration:none}.a-Drawer-close svg{width:30px;height:30px;fill:rgba(255,255,255,.8)}.a-Drawer-close:not(.is-disabled){cursor:pointer}.a-Drawer-close:not(.is-disabled):hover{text-decoration:none;color:#fff}.a-Drawer-close:not(.is-disabled):hover svg{fill:#fff}.a-Drawer-body{padding:.9375rem;flex-basis:0;flex-grow:1;overflow:auto}.a-Drawer-footer{display:flex;align-items:flex-end;justify-content:flex-end;padding:.9375rem;border-top:.0625rem solid #edeff1;border-bottom-left-radius:0;border-bottom-right-radius:0}.a-Drawer-footer .a-Button{margin-left:.3125rem}.a-Drawer-footer .a-Drawer-info{flex-basis:0;flex-grow:1;text-align:left;align-self:center}.a-Drawer-footer .a-Drawer-error{color:#f05050}.a-Drawer.a-Drawer--noOverlay{pointer-events:none}.a-Drawer.a-Drawer--noOverlay .a-Drawer-close svg{margin-top:.125rem;width:1.25rem;height:1.25rem;fill:#99a6ad}.a-Drawer .a-Drawer-resizeCtrl{position:absolute;border:.0625rem solid #dee2e6;background-color:#fff;border-radius:.142rem;font-size:.75rem;line-height:.625rem;text-align:center;user-select:none}@media (min-width:576px){.a-Drawer .a-Drawer-content{width:80%;height:80%}.a-Drawer--xs .a-Drawer-content{width:12.5rem;height:12.5rem}.a-Drawer--sm .a-Drawer-content{width:18.75rem;height:18.75rem}.a-Drawer--md .a-Drawer-content{width:31.25rem;height:31.25rem}.a-Drawer--lg .a-Drawer-content{width:50rem;height:50rem}.a-Drawer--xl .a-Drawer-content{width:90%;height:90%}}.a-Drawer--top .a-Drawer-content.in,.a-Drawer--right .a-Drawer-content.in,.a-Drawer--bottom .a-Drawer-content.in,.a-Drawer--left .a-Drawer-content.in{transform:translate3d(0,0,0)}.a-Drawer--top .a-Drawer-close{top:100%;margin-top:.625rem;left:.625rem}.a-Drawer--top.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-top:0}.a-Drawer--top .a-Drawer-content{top:0;bottom:auto;left:0;right:0;width:100%;transform:translate3d(0,-100%,0);box-shadow:0 10px 10px -10px rgba(0,0,0,.2);min-height:120px}.a-Drawer--top .a-Drawer-resizeCtrl{bottom:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.a-Drawer--right .a-Drawer-close{right:100%;margin-right:.625rem;top:.625rem}.a-Drawer--right.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;margin-right:0}.a-Drawer--right .a-Drawer-content{top:0;bottom:0;left:auto;right:0;height:100%;transform:translate3d(100%,0,0);box-shadow:-10px 0 10px -10px rgba(0,0,0,.2);min-width:120px}.a-Drawer--right .a-Drawer-footer{justify-content:flex-start}.a-Drawer--right .a-Drawer-footer .a-Button{margin-left:0;margin-right:.3125rem}.a-Drawer--right .a-Drawer-footer .a-Drawer-info{flex-basis:0;flex-grow:1;order:10;align-self:center;text-align:right}.a-Drawer--right .a-Drawer-footer .a-Drawer-error{color:#f05050}.a-Drawer--right .a-Drawer-resizeCtrl{left:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.a-Drawer--bottom .a-Drawer-close{bottom:100%;margin-bottom:.625rem;left:.625rem}.a-Drawer--bottom.a-Drawer--noOverlay .a-Drawer-close{top:.9375rem;right:.9375rem;left:auto;margin-bottom:0}.a-Drawer--bottom .a-Drawer-content{top:auto;bottom:0;left:0;right:0;width:100%;transform:translate3d(0,100%,0);box-shadow:0 -10px 10px -10px rgba(0,0,0,.2);min-height:120px}.a-Drawer--bottom .a-Drawer-resizeCtrl{top:-.375rem;left:50%;cursor:ns-resize;width:1.5rem;height:.75rem}.a-Drawer--left .a-Drawer-close{left:100%;margin-left:.625rem;top:.625rem}.a-Drawer--left.a-Drawer--noOverlay .a-Drawer-close{left:auto;right:.9375rem;top:.9375rem}.a-Drawer--left .a-Drawer-content{top:0;bottom:0;right:auto;left:0;height:100%;transform:translate3d(-100%,0,0);box-shadow:10px 0 10px -10px rgba(0,0,0,.2);border-width:0 .0625rem 0 0;min-width:120px}.a-Drawer--left .a-Drawer-resizeCtrl{right:-.375rem;top:50%;cursor:ew-resize;writing-mode:vertical-lr;width:.75rem;height:1.5rem}.a-Tooltip{position:absolute;top:0;left:0;font-family:inherit;border-radius:.142rem;min-width:auto;max-width:15rem;text-align:left;white-space:normal;z-index:1600;word-wrap:break-word;background:#fff;border:.0625rem solid #dee2e6;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Tooltip-arrow{position:absolute;display:block;width:1rem;height:.5rem;margin-left:-.5rem;left:50%}.a-Tooltip-arrow::before,.a-Tooltip-arrow::after{position:absolute;display:block;content:'';border-color:transparent;border-style:solid}.a-Tooltip--top{margin-top:-.625rem}.a-Tooltip--top .a-Tooltip-arrow{bottom:-.5625rem}.a-Tooltip--top .a-Tooltip-arrow::before,.a-Tooltip--top .a-Tooltip-arrow::after{border-width:.5rem .5rem 0}.a-Tooltip--top .a-Tooltip-arrow::before{bottom:0;border-top-color:#dee2e6}.a-Tooltip--top .a-Tooltip-arrow::after{bottom:.0625rem;border-top-color:#fff}.a-Tooltip--right{margin-left:.625rem}.a-Tooltip--right .a-Tooltip-arrow{left:-.0625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.a-Tooltip--right .a-Tooltip-arrow::before,.a-Tooltip--right .a-Tooltip-arrow::after{border-width:.5rem .5rem .5rem 0}.a-Tooltip--right .a-Tooltip-arrow::before{left:0;border-right-color:#dee2e6}.a-Tooltip--right .a-Tooltip-arrow::after{left:.0625rem;border-right-color:#fff}.a-Tooltip--bottom{margin-top:.625rem}.a-Tooltip--bottom .a-Tooltip-arrow{top:-.5625rem}.a-Tooltip--bottom .a-Tooltip-arrow::before,.a-Tooltip--bottom .a-Tooltip-arrow::after{border-width:0 .5rem .5rem}.a-Tooltip--bottom .a-Tooltip-arrow::before{top:0;border-bottom-color:#dee2e6}.a-Tooltip--bottom .a-Tooltip-arrow::after{top:.0625rem;border-bottom-color:#fff}.a-Tooltip--bottom .a-Tooltip-title::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:'';border-bottom:.0625rem solid #f7f7f7}.a-Tooltip--left{margin-left:-.625rem}.a-Tooltip--left .a-Tooltip-arrow{left:auto;right:-.5625rem;width:.5rem;height:1rem;margin-top:-.5rem;top:50%}.a-Tooltip--left .a-Tooltip-arrow::before,.a-Tooltip--left .a-Tooltip-arrow::after{border-width:.5rem 0 .5rem .5rem}.a-Tooltip--left .a-Tooltip-arrow::before{right:0;border-left-color:#dee2e6}.a-Tooltip--left .a-Tooltip-arrow::after{right:.0625rem;border-left-color:#fff}.a-Tooltip-title{padding:.3125rem .625rem;margin-bottom:0;font-size:.875rem;color:#414c52;background-color:#f7f7f7;border-bottom:.0625rem solid #ebebeb;border-top-left-radius:.3655rem;border-top-right-radius:.3655rem}.a-Tooltip-title:empty{display:none}.a-Tooltip-body{color:#58666e;padding:.625rem}@keyframes tooltipIn{from{opacity:0;margin:0}}[data-tooltip]{position:relative}[data-tooltip]:after{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;content:attr(data-tooltip);font-size:.75rem;line-height:1.5;text-align:left;white-space:normal;width:max-content;box-sizing:content-box;max-width:300px;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;display:none;animation-duration:.2s;animation-fill-mode:both}@media screen and (min-width:0\0){[data-tooltip]:after{white-space:nowrap;max-width:unset}}[data-tooltip]:not(.is-disabled):hover:after{display:inline-block;animation-name:tooltipIn;opacity:1;z-index:1600;margin:0 0 0 .625rem;opacity:1}[data-tooltip][data-position=bottom]:after{left:50%;top:100%;transform:translateX(-50%)}[data-tooltip][data-position=bottom]:hover:after{margin:.625rem 0 0}[data-tooltip][data-position=left]:after{top:50%;right:100%;left:auto;transform:translateY(-50%)}[data-tooltip][data-position=left]:hover:after{margin:0 .625rem 0 0}[data-tooltip][data-position=top]:after{left:50%;top:auto;bottom:100%;transform:translateX(-50%)}[data-tooltip][data-position=top]:hover:after{margin:-.625rem 0 0 0}[data-tooltip]:hover:active:after{content:'';display:none!important}.a-PopOver{position:absolute;background:#fff;top:0;left:0;z-index:1400;display:none;padding:0;margin:0;font-weight:400;letter-spacing:normal;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:.875rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);border:.0625rem solid #dee2e6;border-radius:.142rem}.a-PopOver>*{position:relative;z-index:2}.a-PopOver-overlay{position:fixed!important;top:0;left:0;right:0;z-index:1;bottom:0;background:transparent}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(0.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(0.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(0.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}@keyframes bounceOut{20%{transform:scale3d(0.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(0.3,.3,.3)}}.a-Toast{width:18.75rem;pointer-events:auto;margin-bottom:.3125rem;padding:.9375rem .9375rem .9375rem 3.4375rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);border-radius:.428rem;border:0 solid;color:#fff;position:relative;opacity:.8;cursor:pointer;opacity:0;transform:translateZ(0)}.a-Toast-wrap{pointer-events:none;position:fixed;z-index:2000}.a-Toast.in,.a-Toast.out{animation-fill-mode:both;animation-duration:.75s;opacity:1}.a-Toast.in{animation-name:bounceIn}.a-Toast.out{animation-name:bounceOut}.a-Toast-close{position:absolute;top:.3125rem;right:.625rem;color:#fff;line-height:1;opacity:.8}.a-Toast-close:hover{color:#fff;opacity:1}.a-Toast-title{display:block;margin-right:.9375rem;font-size:1rem;vertical-align:middle}.a-Toast-body{display:block;vertical-align:middle}.a-Toast-icon{display:inline-flex;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;position:absolute;left:.9375rem;top:.9375rem;width:1.5625rem;height:1.5625rem;align-items:center;justify-content:center}.a-Toast-icon>svg{top:0;width:1.875rem;height:1.875rem;color:inherit}.a-Toast--error{color:#fff;border-color:#dc3545;background-color:#dc3545}.a-Toast--warning{color:#fff;border-color:#fad733;background-color:#fad733}.a-Toast--info{color:#fff;border-color:#23b7e5;background-color:#23b7e5}.a-Toast--success{color:#fff;border-color:#27c24c;background-color:#27c24c}.a-Toast-wrap--topRight{top:.9375rem;right:.9375rem}.a-Toast-wrap--topCenter{top:.9375rem;left:50%;margin-left:-9.375rem}.a-Toast-wrap--topLeft{top:.9375rem;left:.9375rem}.a-Toast-wrap--bottomLeft{left:.9375rem;bottom:.9375rem}.a-Toast-wrap--bottomCenter{left:50%;margin-left:-9.375rem;bottom:.9375rem}.a-Toast-wrap--bottomRight{bottom:.9375rem;right:.9375rem}.a-Alert{font-size:.875rem;box-shadow:none;padding:.9375rem;border:.0625rem solid transparent;border-radius:.285rem;margin-bottom:1.25rem}.a-Alert-close{outline:0;padding:0;cursor:pointer;background:transparent;border:0;float:right;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.a-Alert-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}.a-Alert--danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.a-Alert--info{color:#31708f;background-color:#d9edf7;border-color:#c4ebf3}.a-Alert--success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.a-Alert--warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.a-ArrayInput-placeholder{color:#99a6ad;padding-top:.4375rem}.a-ArrayInput-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn>svg{width:.75rem;height:.75rem}.a-ArrayInput-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-ArrayInput-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-ArrayInput-addBtn>.pull-left{margin-right:.5rem}.a-ArrayInput-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-ArrayInput-addBtn>.pull-right{margin-left:.5rem}.a-ArrayInput-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-ArrayInput-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ArrayInput-addBtn.is-disabled,.a-ArrayInput-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-ArrayInput-addBtn:not(:disabled):not(.is-disabled):active,.a-ArrayInput-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-ArrayInput-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-ArrayInput-toolbar{margin-top:.625rem;display:flex;flex-direction:row;justify-content:space-between}.a-ArrayInput-toolbar--dnd{padding-left:29px}.a-ArrayInput-sortTip{color:#99a6ad}.a-ArrayInput-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.3125rem}.a-ArrayInput-item>div{flex-grow:1;width:0;min-width:120px;margin-right:.3125rem}.a-ArrayInput-item>div:not(:first-child){margin-left:.3125rem}.a-ArrayInput-item--dragging{position:relative;opacity:.4}.a-ArrayInput-itemRemove,.a-ArrayInput-itemDrager{margin:0;flex-grow:unset;display:inline-block;padding:.4375rem .3125rem;cursor:pointer}.a-ArrayInput-itemRemove>svg,.a-ArrayInput-itemDrager>svg{color:#6c757d}.a-ArrayInput-itemRemove:hover>svg,.a-ArrayInput-itemDrager:hover>svg{color:#212529}.a-ArrayInput-itemDrager{cursor:move}.a-Tabs-links{margin:0;padding:0;border-bottom:.0625rem solid #dee2e6;list-style:none;user-select:none}.a-Tabs-links::before,.a-Tabs-links::after{display:table;content:''}.a-Tabs-links::after{clear:both}.a-Tabs-links>.a-Tabs-link{margin-bottom:-.0625rem;display:inline-block;position:relative}.a-Tabs-links>.a-Tabs-link>a:first-child{font-size:.875rem;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#58666e;margin:0 .1875rem 0 0;padding:.625rem .9375rem;text-decoration:none;cursor:pointer;display:block}.a-Tabs-links>.a-Tabs-link>.a-Combo-toolbarBtn{position:absolute;right:-10px;top:-10px;z-index:10;display:none}.a-Tabs-links>.a-Tabs-link:hover>.a-Combo-toolbarBtn{display:block}.a-Tabs-links>.a-Tabs-link:hover>a:first-child,.a-Tabs-links>.a-Tabs-link>a:first-child:focus{border-color:#e9ecef;text-decoration:none}.a-Tabs-links>.a-Tabs-link.disabled,.a-Tabs-links>.a-Tabs-link.is-disabled{cursor:not-allowed}.a-Tabs-links>.a-Tabs-link.disabled>a:first-child,.a-Tabs-links>.a-Tabs-link.is-disabled>a:first-child{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.a-Tabs-links>.a-Tabs-link.active>a:first-child,.a-Tabs-links>.a-Tabs-link.is-active>a:first-child{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:transparent}.a-Tabs-content{background-color:#fff;padding:.9375rem;border-style:solid;border-width:0 .0625rem .0625rem;border-color:#dee2e6}.a-Tabs-pane{display:none;opacity:0;transition:opacity .35s linear}.a-Tabs-pane.is-active{display:block}.a-Tabs-pane.in{opacity:1}.a-Tabs--line>.a-Tabs-links{border-bottom-color:#dee2e6}.a-Tabs--line>.a-Tabs-links>li>a:first-child{border-width:0 0 .125rem;padding:10px 0;margin:0 40px 0 0}.a-Tabs--line>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--line>.a-Tabs-links>li>a:first-child:focus{color:#666;background-color:transparent;border-color:transparent}.a-Tabs--line>.a-Tabs-links>li:last-child>a{margin:0}.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--line>.a-Tabs-links>li.is-active>a:first-child:focus{border-color:#7266ba;color:#7266ba;background-color:transparent}.a-Tabs--line>.a-Tabs-content{border-width:0;padding:20px 0;background-color:transparent}.a-Tabs--card>.a-Tabs-links{padding:.375rem 0 0 .625rem;background-color:#f6f8f8;border-top:.0625rem solid #dee2e6}.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--card>.a-Tabs-links>li.is-active>a:first-child:focus{border-color:#dee2e6;color:#7266ba;border-bottom-color:#fff;background-color:#fff}.a-Tabs--card>.a-Tabs-links>li>a:first-child{padding:.625rem;margin:0 10px 0 0}.a-Tabs--card>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--card>.a-Tabs-links>li>a:first-child:focus{color:#666;background-color:#fff;border-bottom-color:transparent}.a-Tabs--card>.a-Tabs-content{border-width:0}.a-Tabs--radio>.a-Tabs-links{border:0;margin-bottom:.625rem}.a-Tabs--radio>.a-Tabs-links>li{margin:0}.a-Tabs--radio>.a-Tabs-links>li>a:first-child{border-width:.0625rem;border-color:#dee2e6;font-size:.75rem;text-align:center;margin:0;padding:0 .625rem;min-width:68px;height:1.875rem;line-height:1.875rem;border-radius:0;background:#eaf6fe}.a-Tabs--radio>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--radio>.a-Tabs-links>li>a:first-child:focus{color:#7266ba}.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--radio>.a-Tabs-links>li.is-active>a:first-child:focus{color:#eaf6fe;background-color:#7266ba;border-color:#7266ba;position:relative;z-index:1}.a-Tabs--radio>.a-Tabs-links>li+li{margin-left:-1px}.a-Tabs--radio>.a-Tabs-content{border-top:.0625rem solid #dee2e6}.a-Tabs--vertical{display:flex;min-height:12.5rem;border:.0625rem solid #dee2e6;border-radius:0}.a-Tabs--vertical>.a-Tabs-links{width:8.75rem;background:#f5f5f5;border:0;padding-bottom:3.75rem}.a-Tabs--vertical>.a-Tabs-links>li{margin:0 0 0 -1px;display:block}.a-Tabs--vertical>.a-Tabs-links>li>a:first-child{border-color:transparent;border-radius:0;border-width:0 0 0 .25rem;margin:0}.a-Tabs--vertical>.a-Tabs-links>li>a:first-child:hover,.a-Tabs--vertical>.a-Tabs-links>li>a:first-child:focus{color:#7266ba;border-color:transparent}.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child,.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child:hover,.a-Tabs--vertical>.a-Tabs-links>li.is-active>a:first-child:focus{color:#7266ba;border-color:#7266ba}.a-Tabs--vertical>.a-Tabs-content{border:0;flex-grow:1}.a-Tabs-toolbar{display:inline-block;float:right;padding-top:.3125rem}.a-Nav{list-style:none;user-select:none;margin:0;padding:0}.a-Nav .a-Nav-itemIcon{margin-right:.3125rem}.a-Nav--tabs{border-bottom:.0625rem solid #dee2e6}.a-Nav--tabs .a-Nav-item{margin-bottom:-.0625rem;display:inline-block}.a-Nav--tabs .a-Nav-item>a{font-size:.875rem;display:block;outline:0;border:.0625rem solid transparent;border-top-left-radius:.142rem;border-top-right-radius:.142rem;color:#58666e;text-decoration:none;margin-right:.125rem;padding:.625rem .9375rem;cursor:pointer}.a-Nav--tabs .a-Nav-item:hover>a,.a-Nav--tabs .a-Nav-item>a:focus{border-color:#e9ecef;text-decoration:none}.a-Nav--tabs .a-Nav-item.disabled>a,.a-Nav--tabs .a-Nav-item.is-disabled>a{color:#6c757d;background-color:transparent;border-color:transparent;pointer-events:none}.a-Nav--tabs .a-Nav-item.active>a,.a-Nav--tabs .a-Nav-item.is-active>a{color:#495057;background-color:#fff;border-color:#dee2e6;border-bottom-color:#fff}.a-Nav--stacked .a-Nav-item{position:relative}.a-Nav--stacked .a-Nav-item>a{display:block;outline:0;color:#58666e;text-decoration:none;padding:.625rem .9375rem;cursor:pointer;background-color:transparent;border-radius:.285rem}.a-Nav--stacked .a-Nav-item:hover>a,.a-Nav--stacked .a-Nav-item>a:focus{border-color:#414c52;text-decoration:none;background-color:rgba(0,0,0,.05)}.a-Nav--stacked .a-Nav-item.disabled>a,.a-Nav--stacked .a-Nav-item.is-disabled>a{color:#99a6ad;background-color:transparent;pointer-events:none}.a-Nav--stacked .a-Nav-item.active>a,.a-Nav--stacked .a-Nav-item.is-active>a{color:#fff;background-color:#23b7e5;border-left:4px solid transparent;padding-left:.75rem}.a-Nav--stacked .a-Nav-item.is-unfolded .a-Nav-itemToggler{transform:rotate(180deg) scale(0.8)}.a-Nav--stacked .a-Nav-item.is-unfolded .a-Nav-subItems{display:block}.a-Nav--stacked .a-Nav-item .a-Nav-itemToggler{position:absolute;width:1.875rem;height:1.875rem;text-align:center;line-height:1.875rem;vertical-align:middle;top:.25rem;right:.125rem;cursor:pointer;transform:scale(0.8);transition:transform .3s}.a-Nav--stacked .a-Nav-item .a-Nav-itemToggler>svg{width:10px;height:10px;top:0}.a-Nav--stacked .a-Nav-item .a-Nav-subItems{display:none;padding-left:0;list-style:none}.a-Nav--stacked .a-Nav-item .a-Nav-item{font-size:.875rem}.a-Nav--stacked .a-Nav-item .a-Nav-item a:before{content:'';display:inline-block;width:.25rem;height:.25rem;background-color:#ccc;border-radius:31.25rem;margin-right:.5rem;vertical-align:middle}.a-Nav--stacked .a-Nav-item .a-Nav-item.active>a:before,.a-Nav--stacked .a-Nav-item .a-Nav-item.is-active>a:before{background-color:#e5eaeb}.a-Page{width:100%}.a-Page-header{padding:.9375rem}.a-Page-main{background:transparent;height:100%;display:flex;flex-direction:column}.a-Page-content{padding:0}.a-Page-main>.a-Page-header{border-bottom:.0625rem solid #dee2e6}.a-Page-headerRow{border-bottom:.0625rem solid #dee2e6;display:flex;flex-direction:row;align-items:center}.a-Page-headerRow .a-Page-header,.a-Page-headerRow .a-Page-toolbar{flex-grow:1}.a-Page-headerRow .a-Page-toolbar{text-align:right;padding-right:.9375rem}.a-Page-title{margin:0;padding:0;color:#414c52;line-height:1.1;font-size:1rem;font-weight:400}.a-Page-body{padding:.9375rem;flex:1 auto}.a-Page-asideTplWrapper{padding:.3125rem}.a-Page-toolbar .a-Button+.a-Button{margin-left:.3125rem}.a-Page-aside{background-color:#e5eaeb}@media (min-width:768px){.a-Page-aside{width:12.5rem;max-width:18.75rem;border-right:.0625rem solid #dee2e6}.a-Page-aside::before{content:'';position:absolute;width:inherit;top:0;bottom:0;z-index:-1;background-color:inherit;border:inherit}.a-Page--withSidebar{display:flex;flex-direction:row;align-items:stretch}.a-Page--withSidebar>.a-Page-content{width:0;flex-grow:1}}.a-Remark{display:inline-block;margin-left:.625rem;cursor:pointer;text-align:center}.a-Remark-icon{color:#6c757d;font-size:.875rem;background-color:transparent;border:0 solid #dee2e6;width:1rem;height:1rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:.875rem}.a-Remark:hover>.a-Remark-icon{color:#212529;background-color:transparent;border-color:#dee2e6}.a-Remark>svg{width:.875rem;height:.875rem;color:#6c757d}.a-Remark:hover>svg{color:#212529}.a-Chart{min-width:300px;min-height:300px;position:relative}.a-Chart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.a-Video{min-width:200px}.a-Video-cursor{position:absolute;border:2px solid #23b7e5;transition:all .5s ease-out}.a-Video-frameList .a-Video-frameItem{cursor:pointer}.a-Video-frameLabel{text-align:center}.a-Video .video-react-paused .video-react-big-play-button.big-play-button-hide{display:block}.a-Audio-original{display:none}.a-Audio--inline{display:inline-block}.a-Audio{box-sizing:border-box;height:3.125rem;line-height:3.125rem;border:.0625rem solid #dee2e6;padding-left:.625rem;overflow:hidden}.a-Audio-controls{display:flex;flex-direction:row;align-items:center}.a-Audio-rates{width:2.5rem;height:3.125rem;text-align:center;background:#dee2e6;cursor:pointer;margin-right:.625rem}.a-Audio-rateControl{margin-right:.625rem}.a-Audio-rateControl::after{clear:both;content:''}.a-Audio-rateControl .a-Audio-rateControlItem{width:2.5rem;height:3.125rem;background:#dee2e6;cursor:pointer;text-align:center;float:left;box-sizing:border-box;border-right:.0625rem solid #d3dae0}.a-Audio-play{width:1.25rem;cursor:pointer;margin-right:.625rem}.a-Audio-play svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Audio-times{min-width:4.6875rem;margin-right:.625rem;cursor:default;flex-shrink:0}.a-Audio-process{flex:auto;cursor:pointer;min-width:5rem;margin-right:.625rem}.a-Audio-process input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.a-Audio-process input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.a-Audio-process input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.a-Audio-volume{width:1.25rem;height:3.125rem;line-height:3.125rem;cursor:pointer;margin-right:.625rem}.a-Audio-volume svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Audio-volumeControl{display:flex;flex-direction:row;align-items:center;width:6.875rem;height:3.125rem;line-height:3.125rem;margin-right:.625rem}.a-Audio-volumeControl input[type=range]{-webkit-appearance:none;outline:0;border:0;padding:0;background:0 0}.a-Audio-volumeControl input[type=range]::-webkit-slider-runnable-track{background-color:#d7dbdd;height:.375rem;border-radius:.1875rem;border:.0625rem solid transparent}.a-Audio-volumeControl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none!important;border-radius:100%;cursor:pointer;background:#606670;width:.875rem;height:.875rem;margin-top:-.3125rem}.a-Audio-volumeControl .a-Audio-volumeControlIcon{margin-right:.625rem;cursor:pointer}.a-Audio-volumeControl svg{width:1.25rem;height:1.25rem;position:relative;top:.375rem}.a-Panel{margin-bottom:1.25rem;background-color:#fff;border:.0625rem solid transparent;border-radius:.142rem;-webkit-box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05);box-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.a-Panel-fixedBottom{position:absolute;background:#fff;z-index:900;bottom:999999px;box-shadow:0 -.5rem 1rem rgba(28,43,54,.15);border-top:0}.a-Panel-fixedBottom.in{position:fixed;bottom:0}.a-Panel--default{border-color:#dee2e6}.a-Panel--default>.a-Panel-heading{background:#f6f8f8;color:#58666e}.a-Panel--default>.a-Panel-heading .badge{color:#f5f5f5;background:#333}.a-Panel--default>.a-Panel-heading{border-color:#dee2e6}.a-Panel--primary{border-color:#7266ba}.a-Panel--primary>.a-Panel-heading{background:#7266ba;color:#fff}.a-Panel--primary>.a-Panel-heading .badge{color:#7266ba;background:#fff}.a-Panel--primary>.a-Panel-heading,.a-Panel--primary>.a-Panel-footer{border-color:#7266ba}.a-Panel--success{border-color:#27c24c}.a-Panel--success>.a-Panel-heading{background:#27c24c;color:#fff}.a-Panel--success>.a-Panel-heading .badge{color:#27c24c;background:#fff}.a-Panel--success>.a-Panel-heading,.a-Panel--success>.a-Panel-footer{border-color:#27c24c}.a-Panel--info{border-color:#23b7e5}.a-Panel--info>.a-Panel-heading{background:#23b7e5;color:#fff}.a-Panel--info>.a-Panel-heading .badge{color:#23b7e5;background:#fff}.a-Panel--info>.a-Panel-heading,.a-Panel--info>.a-Panel-footer{border-color:#23b7e5}.a-Panel--warning{border-color:#fad733}.a-Panel--warning>.a-Panel-heading{background:#fad733;color:#fff}.a-Panel--warning>.a-Panel-heading .badge{color:#fad733;background:#fff}.a-Panel--warning>.a-Panel-heading,.a-Panel--warning>.a-Panel-footer{border-color:#fad733}.a-Panel--danger{border-color:#f05050}.a-Panel--danger>.a-Panel-heading{background:#f05050;color:#fff}.a-Panel--danger>.a-Panel-heading .badge{color:#f05050;background:#fff}.a-Panel--danger>.a-Panel-heading,.a-Panel--danger>.a-Panel-footer{border-color:#f05050}.a-Panel-heading{padding:.625rem .9375rem;border-bottom:.0625rem solid transparent;border-radius:.142rem .142rem 0 0}.a-Panel-title{margin-top:0;margin-bottom:0;font-size:1rem;color:inherit}.a-Panel-body{padding:.9375rem}.a-Panel-footer{border-color:#edeff1;border-radius:0 0 .125rem .125rem;background:#fff;padding:.625rem .9375rem;border-style:solid;border-width:.0625rem 0 0}.a-Panel-footer .a-Button+.a-Button{margin-left:.625rem}.a-Panel-btnToolbar{text-align:right}.a-Panel-btnToolbar::before,.a-Panel-btnToolbar::after{display:table;content:''}.a-Panel-btnToolbar::after{clear:both}.a-Panel-btnToolbar .a-Button{margin-left:.625rem}.a-Panel-btnToolbar:empty{display:none}.a-Service{position:relative}@keyframes rotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.is-spin{animation:spin 2s linear infinite}.a-Spinner-overlay{position:absolute;z-index:10;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.4);transition:ease-out opacity .3s;opacity:0}.a-Spinner-overlay.in{opacity:1}.a-Spinner{width:1.625rem;height:1.625rem;transform:translateZ(0);display:inline-block;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwcHgiICBoZWlnaHQ9IjIwMHB4IiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pZFlNaWQiIGNsYXNzPSJsZHMtcm9sbGluZyIgc3R5bGU9ImJhY2tncm91bmQ6IG5vbmU7Ij48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0iIzE3YTJiOCIgc3Ryb2tlLXdpZHRoPSIxMCIgcj0iMzUiIHN0cm9rZS1kYXNoYXJyYXk9IjE2NC45MzM2MTQzMTM0NjQxNSA1Ni45Nzc4NzE0Mzc4MjEzOCIgdHJhbnNmb3JtPSJyb3RhdGUoMTI5Ljg5NCA1MCA1MCkiPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiBjYWxjTW9kZT0ibGluZWFyIiB2YWx1ZXM9IjAgNTAgNTA7MzYwIDUwIDUwIiBrZXlUaW1lcz0iMDsxIiBkdXI9IjEuMnMiIGJlZ2luPSIwcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiPjwvYW5pbWF0ZVRyYW5zZm9ybT48L2NpcmNsZT48L3N2Zz4=");background-size:100%;transition:ease-out all .3s}.a-Spinner--lg{width:3.125rem;height:3.125rem}.a-Spinner--sm{width:1rem;height:1rem}.a-Spinner--icon{background:transparent;animation:spin 2s linear infinite;width:auto;height:auto}.a-Spinner--overlay{position:absolute;z-index:11;top:50%;left:50%;transform:translate3d(-50%,-50%,0)}.a-Spinner--overlay.a-Spinner--lg{width:3.125rem;height:3.125rem;line-height:3.125rem}@media (min-width:768px){.a-Layout .a-Page-body>.a-Spinner-overlay{left:12.5rem}.a-Layout--folded .a-Page-body>.a-Spinner-overlay{left:3.75rem}}.a-ButtonGroup{position:relative;display:inline-flex;vertical-align:middle}.a-ButtonGroup>.a-Button{position:relative;flex:0 1 auto}.a-ButtonGroup>.a-Button:hover{z-index:1}.a-ButtonGroup>.a-Button:focus,.a-ButtonGroup>.a-Button:active,.a-ButtonGroup>.a-Button.active,.a-ButtonGroup>.a-Button.is-active{z-index:1}.a-ButtonGroup .a-Button+.a-Button,.a-ButtonGroup .a-Button+.a-ButtonGroup,.a-ButtonGroup .a-ButtonGroup+.a-Button,.a-ButtonGroup .a-ButtonGroup+.a-ButtonGroup{margin-left:-.0625rem}.a-ButtonToolbar{display:inline-flex;flex-wrap:wrap;justify-content:flex-start;align-items:center}.a-ButtonToolbar .a-ButtonGroup{margin-left:.3125rem;margin-top:.3125rem;width:auto}.a-ButtonGroup>.a-Button:first-child{margin-left:0}.a-ButtonGroup>.a-Button:not(:last-child),.a-ButtonGroup>.a-ButtonGroup:not(:last-child)>.a-Button{border-top-right-radius:0;border-bottom-right-radius:0}.a-ButtonGroup>.a-Button:not(:first-child),.a-ButtonGroup>.a-ButtonGroup:not(:first-child)>.a-Button{border-top-left-radius:0;border-bottom-left-radius:0}.a-ButtonGroup--vertical{flex-direction:column;align-items:flex-start;justify-content:center}.a-ButtonGroup--vertical .a-Button,.a-ButtonGroup--vertical .a-ButtonGroup{width:100%}.a-ButtonGroup--vertical>.a-Button+.a-Button,.a-ButtonGroup--vertical>.a-Button+.a-ButtonGroup,.a-ButtonGroup--vertical>.a-ButtonGroup+.a-Button,.a-ButtonGroup--vertical>.a-ButtonGroup+.a-ButtonGroup{margin-top:-.0625rem;margin-left:0}.a-ButtonGroup--vertical>.a-Button:not(:last-child),.a-ButtonGroup--vertical>.a-ButtonGroup:not(:last-child)>.a-Button{border-bottom-left-radius:0;border-bottom-right-radius:0}.a-ButtonGroup--vertical>.a-Button:not(:first-child),.a-ButtonGroup--vertical>.a-ButtonGroup:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.a-ButtonGroupControl{display:inline-block}.a-ButtonGroupControl>.a-ButtonGroup--sm{margin-top:.125rem}.a-ButtonGroupControl>.a-ButtonGroup--xs{margin-top:.375rem}.a-DropDown{position:relative;display:inline-block}.a-DropDown-caret{margin-left:.625rem;display:inline-block;vertical-align:top;transition:transform .2s ease}.a-DropDown-caret>svg{width:.625rem;height:.625rem;top:.125em}.a-DropDown.is-opened .a-DropDown-caret{transform:rotate(180deg)}.a-DropDown--block{display:block}.a-DropDown--block .a-Button{display:block}.a-DropDown-menu{position:absolute;z-index:1000;top:100%;left:0;margin:.0625rem 0 0;background-color:#fff;list-style:none;padding:.3125rem 0;border:.0625rem solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);min-width:10rem;text-align:left}.a-DropDown--alignRight .a-DropDown-menu{left:auto;right:0}.a-DropDown-menuItem,.a-DropDown-menu>li{padding:.40625rem .625rem;white-space:nowrap;box-sizing:border-box;height:2.125rem;vertical-align:middle;user-select:none}.a-DropDown-menuItem:hover,.a-DropDown-menu>li:hover{background-color:rgba(0,126,255,.08);color:inherit}.a-DropDown-menuItem:not(.is-disabled),.a-DropDown-menuItem:not(.disabled),.a-DropDown-menu>li:not(.is-disabled),.a-DropDown-menu>li:not(.disabled){cursor:pointer}.a-DropDown-menuItem.a-DropDown-divider,.a-DropDown-menu>li.a-DropDown-divider{height:.0625rem;margin:.5625rem 0;overflow:hidden;background-color:#dee2e6;padding:0}.a-DropDown-menu>li a{display:block;text-decoration:none}.a-DropDown-popover{border:0;box-shadow:none}.a-DropDown>.a-Button{min-width:unset}.a-Collapse{border:0;padding:0;margin-bottom:.9375rem}.a-Collapse-header{font-size:1rem;font-weight:400;color:#414c52;padding:.3125rem 0;border-bottom:.0625rem solid #edeff1}.a-Collapse-arrow{display:inline-block;width:1rem;text-align:center;margin-left:.3125rem;cursor:pointer}.a-Collapse-arrow:before{content:'';position:relative;display:inline-block;width:.375rem;height:.375rem;top:-.25rem;border-color:#58666e;border-style:solid;border-width:.0625rem .0625rem 0 0;transform:rotate(135deg);transform-origin:50% 50%}.a-Collapse.is-collapsed .a-Collapse-arrow:before{transform:rotate(45deg);transform-origin:0 50%}.a-Collapse--collapsable .a-Collapse-header{user-select:none}.a-Collapse-content{transition:height .35s ease}.a-Collapse-content.in,.a-Collapse-content.out{height:0;overflow:hidden}.a-ColorField{display:inline-block}.a-ColorField-previewIcon{display:inline-block;vertical-align:middle;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(28,43,54,.075);background-color:#ccc}.a-ColorField-value{display:inline-block;margin-left:10px;vertical-align:middle}@keyframes contextMenuInSpecial{from{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scale3d(1,1,1)}}@keyframes contextMenuIn{from{opacity:0}}@keyframes contextMenuOut{to{opacity:0}}.a-ContextMenu{z-index:1500;position:fixed;left:0;top:0}.a-ContextMenu-menu{position:absolute;z-index:1500;display:block;position:absolute;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.a-ContextMenu-menu.in,.a-ContextMenu-menu.out{animation-duration:.35s;animation-fill-mode:both}.a-ContextMenu-menu.in{animation-name:contextMenuInSpecial;animation-duration:.5s}.a-ContextMenu-menu.out{animation-name:contextMenuOut}.a-ContextMenu-menu::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.a-ContextMenu-divider{border:0;height:1px;background:rgba(0,0,0,.1);margin:6px 1px 5px;padding:0}.a-ContextMenu-list{list-style:none;margin:0;padding:0;width:185px}.a-ContextMenu-item{position:relative}.a-ContextMenu-item>a{white-space:nowrap;display:block;padding:0 20px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);color:inherit}.a-ContextMenu-item:not(.is-disabled):hover>a{text-decoration:none;color:#fff;background:-webkit-linear-gradient(top,#648bf5,#2866f2);background:linear-gradient(to bottom,#648bf5 0,#2866f2 100%);border-top:1px solid #5a82eb;border-bottom:1px solid #1758e7;cursor:pointer}.a-ContextMenu-item.is-disabled>a{color:#999;pointer-events:none}.a-ContextMenu-item.has-child>a::after{content:'';width:0;height:0;border-width:4px 7px;border-style:solid;border-color:transparent transparent transparent rgba(0,0,0,.75);text-shadow:0 4px 9px rgba(0,0,0,.34);position:absolute;top:50%;right:0;transform:translateY(-50%)}.a-ContextMenu-item.has-child:hover>a::after{border-color:transparent transparent transparent #fff}.a-ContextMenu-itemIcon{margin-right:5px}.a-ContextMenu-subList{display:none;list-style:none}.a-ContextMenu-item:hover>.a-ContextMenu-subList{display:block;animation-duration:.35s;animation-fill-mode:both;animation-name:contextMenuIn;display:block;position:absolute;left:100%;top:-3px;margin:0;padding:4px 0 5px;background:rgba(239,239,239,.95);box-shadow:0 4px 9px rgba(0,0,0,.34);border-radius:7px;color:rgba(0,0,0,.75);font-family:-apple-system,Lucida Grande;font-size:14px;line-height:15px}.a-ContextMenu-item:hover>.a-ContextMenu-subList::before{display:block;position:absolute;content:'';top:-1px;left:-1px;bottom:-1px;right:-1px;border-radius:4px;border:1px solid rgba(0,0,0,.125);z-index:-1}.a-ContextMenu--left .a-ContextMenu-item:hover>.a-ContextMenu-subList{left:auto;right:100%}.a-ContextMenu-cursor{position:absolute;width:1px;height:1px;z-index:-1}.a-ContextMenu-overlay{position:fixed!important;z-index:1499;top:0;left:0;right:0;bottom:0;background:transparent;pointer-events:none}.a-Wizard{position:relative}.a-Wizard::before,.a-Wizard::after{display:table;content:''}.a-Wizard::after{clear:both}.a-Wizard,.a-Wizard-tabs{padding:0}.a-Wizard .a-Badge,.a-Wizard-tabs .a-Badge{display:inline-block;width:1.25rem;height:1.25rem;font-size:.75rem;line-height:1.25rem;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#ced4da;border-radius:.625rem;text-shadow:0 .0625rem 0 rgba(0,0,0,.2);margin-right:.25rem;border:0;box-sizing:content-box}.a-Wizard .a-Badge.is-active,.a-Wizard-tabs .a-Badge.is-active{color:#fff;background-color:#23b7e5}.a-Wizard ul li.active,.a-Wizard-tabs ul li.active{color:#23b7e5}.a-Wizard .a-Panel-footer>.a-Form-group,.a-Wizard .a-Panel-footer>.btn,.a-Wizard-tabs .a-Panel-footer>.a-Form-group,.a-Wizard-tabs .a-Panel-footer>.btn{margin-left:.3125rem}.a-Wizard>ul.nav,.a-Wizard-tabs>ul.nav{padding:0;margin:0;border:.0625rem solid #dee2e6}.a-Wizard>ul.nav li,.a-Wizard-tabs>ul.nav li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:pointer;height:2.5rem;line-height:2.5rem}.a-Wizard>ul.nav li a,.a-Wizard-tabs>ul.nav li a{border:0 none!important;background:transparent!important;color:inherit;display:inline;padding:0}.a-Wizard>ul.nav li a div,.a-Wizard-tabs>ul.nav li a div{display:inline}.a-Wizard>ul.nav li:first-child,.a-Wizard-tabs>ul.nav li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.a-Wizard>ul.nav li:before,.a-Wizard>ul.nav li:after,.a-Wizard-tabs>ul.nav li:before,.a-Wizard-tabs>ul.nav li:after{content:'';position:absolute;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #dee2e6;border-left-color:rgba(0,0,0,.05);z-index:1;bottom:0}.a-Wizard>ul.nav li:after,.a-Wizard-tabs>ul.nav li:after{right:-.5625rem;border-left-color:#f8f9fa;z-index:2}.a-Wizard>ul.nav li.is-active,.a-Wizard-tabs>ul.nav li.is-active{color:#23b7e5;background:#fff}.a-Wizard>ul.nav li.is-active:after,.a-Wizard-tabs>ul.nav li.is-active:after{border-left-color:#fff}.a-Wizard-steps{font-size:.875rem;padding:0;background-color:#f8f9fa;border-bottom:.0625rem solid #dee2e6;text-align:left}.a-Wizard-steps::before,.a-Wizard-steps::after{display:table;content:''}.a-Wizard-steps::after{clear:both}.a-Wizard-steps ul{display:block;padding:0;margin:0;list-style:none outside none}.a-Wizard-steps ul li{position:relative;float:left;padding:0 .9375rem 0 1.5625rem;margin:0;color:#999;cursor:default;height:2.5rem;line-height:2.5rem}.a-Wizard-steps ul li:first-child{padding-left:.9375rem;border-radius:.25rem 0 0}.a-Wizard-steps ul li:before,.a-Wizard-steps ul li:after{font-family:"";content:"";position:absolute;bottom:0;right:-.625rem;border:1.25rem solid transparent;border-right:0;border-left:.625rem solid #dee2e6;border-left-color:rgba(0,0,0,.05);z-index:2}.a-Wizard-steps ul li:after{right:-.5625rem;border-left-color:#f8f9fa;z-index:2}.a-Wizard-steps ul li.is-active{color:#23b7e5;background:#fff}.a-Wizard-steps ul li.is-active:after{border-left-color:#fff}.a-Wizard-steps ul li.is-complete,.a-Wizard-steps ul li.is-complete:hover{color:#23b7e5;cursor:pointer;background:#f1f5f9}.a-Wizard-steps ul li.is-complete:after{border-left-color:#f1f5f9}.a-Wizard-stepContent{padding:.9375rem}.a-Wizard-stepContent .Step-pane{display:none}.a-Wizard-stepContent .Step-pane.is-active{display:inherit}.a-Wizard--vertical{float:left;border-bottom:0;margin-bottom:1.875rem}.a-Wizard--vertical.a-Wizard-steps{height:auto}.a-Wizard--vertical+.a-Wizard-stepContent{zoom:1;overflow:hidden;padding-left:2.5rem}.a-Wizard--vertical li{background-color:#f8f9fa}.a-Wizard--vertical ul li{height:2.5rem;line-height:2.5rem;position:relative;float:none;border-bottom:.0625rem solid #dee2e6;padding-left:.9375rem}.a-Wizard--vertical+.a-Wizard-stepContent+.a-Panel-footer{clear:both}.a-Crud{position:relative}.a-Crud-selection{margin-bottom:.9375rem}.a-Crud-selectionLabel{display:inline-block;vertical-align:top;margin-top:.3125rem}.a-Crud-value{cursor:pointer;vertical-align:middle;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.a-Crud-value:hover{background-color:#c2ecf9}.a-Crud-value.is-disabled{pointer-events:none;opacity:.65}.a-Crud-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Crud-valueIcon:hover{background-color:#c2ecf9}.a-Crud-valueLabel{padding:0 .3125rem}.a-Crud-selectionClear{display:inline-block;cursor:pointer;user-select:none;margin-left:.3125rem;margin-top:.3125rem;vertical-align:middle}.a-Crud-toolbar-item{margin-left:.3125rem;margin-top:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle;display:inline-flex;align-items:center}.a-Crud-toolbar-item--left{float:left}.a-Crud-toolbar-item--right{float:right}.a-Crud-actions>*+.a-Button,.a-Crud-actions>*+.a-ButtonGroup,.a-Crud-actions>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Crud-statistics{line-height:1.875rem;vertical-align:middle}.a-Crud-pageSwitch .a-Select{margin-left:.3125rem}.a-Crud-pager{align-self:flex-start}@media (min-width:576px){.a-Crud-toolbar{margin-left:-.3125rem;margin-top:-.3125rem;flex-basis:0;flex-grow:1}.a-Crud-toolbar::before,.a-Crud-toolbar::after{display:table;content:''}.a-Crud-toolbar::after{clear:both}-toolbar-item{margin-left:.3125rem;line-height:1.5;height:1.875rem;vertical-align:middle}-toolbar-item--left{float:left}-toolbar-item--right{float:right}-actions>.a-Button+.a-Button{margin-left:.3125rem}}.a-Table{position:relative;background:#fff;border:.0625rem solid #dee2e6;border-radius:.142rem;margin-bottom:1.25rem}.a-Form-control>.a-Table{margin-bottom:.625rem}.a-Table-fixedLeft,.a-Table-fixedRight{position:absolute;background:#fff;z-index:5;top:-999999px}.a-Table-fixedLeft.in,.a-Table-fixedRight.in{top:auto}.a-Table-fixedLeft{box-shadow:.42rem 0 .42rem -.28rem rgba(28,43,54,.15);left:0}.a-Table-fixedRight{box-shadow:-.42rem 0 .42rem -.28rem rgba(28,43,54,.15);right:0}.a-Table-fixedRight .a-Table-table>thead>tr>th:first-child,.a-Table-fixedRight .a-Table-table>tbody>tr>td:first-child{padding-left:.625rem}.a-Table-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Table-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-Table-fixedTop>.a-Table-fixedLeft,.a-Table-fixedTop>.a-Table-fixedRight{z-index:910;background:transparent;border-top:.0625rem solid #dee2e6}.a-Table-fixedTop>.a-Table-fixedLeft>table,.a-Table-fixedTop>.a-Table-fixedRight>table{margin-bottom:.3125rem}.a-Table-fixedTop>.a-Table-heading{border-bottom:0}.a-Table-fixedTop>.a-Table-wrapper{border-top:.0625rem solid #dee2e6}.a-Table-fixedTop.is-fakeHide>.a-Table-fixedLeft,.a-Table-fixedTop.is-fakeHide>.a-Table-fixedRight,.a-Table-fixedTop.is-fakeHide>.a-Table-wrapper{visibility:hidden;position:absolute}.a-Table-heading{background:#fff;border-bottom:.0625rem solid #dee2e6;padding:.59375rem .625rem}.a-Table--unsaved .a-Table-heading{background:#e8f0fe;color:#4285f4}.a-Table-wrapper{overflow:hidden}.a-Table-placeholder{color:#99a6ad;text-align:center;height:6.25rem;background-color:transparent!important}.a-Table-placeholder:hover{color:#99a6ad;background-color:transparent!important}.a-Table-placeholder>td{vertical-align:middle!important;text-align:center}.a-Table-header{padding:.625rem}.a-Table-header>*+.a-Button,.a-Table-header>*+.a-ButtonGroup,.a-Table-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Table-toolbar{display:flex;padding:.625rem;flex-wrap:wrap}.a-Table-toolbar::before,.a-Table-toolbar::after{display:table;content:''}.a-Table-toolbar::after{clear:both}.a-Table-toolbar .a-DropDown-menuItem{height:auto}.a-Table-toolbar .a-DropDown-menuItem .a-Checkbox{display:flex;align-items:center}.a-Table-header+.a-Table-toolbar{padding-top:0}.a-Table-contentWrap{position:relative}.a-Table-header+.a-Table-contentWrap,.a-Table-toolbar+.a-Table-contentWrap{border-top:.0625rem solid #dee2e6}.a-Table-footToolbar{border-top:.0625rem solid #dee2e6}.a-Table-actions{display:inline-block}.a-Table-actions>*{margin-right:.3125rem}.a-Table-content{min-height:.01%;overflow-x:auto;transform:translateZ(0)}.a-Table-table{width:100%;max-width:100%;margin-bottom:0;font-size:.875rem;color:#58666e;background-color:#fff;border-spacing:0;border-collapse:collapse}.a-Table-table--withCombine>thead>tr>th:first-child,.a-Table-table--withCombine>tbody>tr>td:first-child{padding-left:.625rem!important}.a-Table-table--withCombine>thead>tr>th:last-child,.a-Table-table--withCombine>tbody>tr>td:last-child{padding-right:.625rem!important}.a-Table-table--withCombine>tbody>tr.a-Table-tr--odd{background-color:transparent}.a-Table-table--withCombine>tbody>tr:hover{background-color:transparent}.a-Table-table--withCombine>tbody>tr>td{vertical-align:middle}.a-Table-table--withCombine>tbody>tr>td:not(:last-child){border-right:.0625rem solid #dee2e6}.a-Table-table>thead>tr>th{background-color:#f6f8f8;padding:.59375rem .625rem;border-bottom:.0625rem solid #dee2e6;font-size:.875rem;color:#414c52;font-weight:400;white-space:nowrap}.a-Table-table>thead>tr>th[colspan]{text-align:center}.a-Table-table>thead>tr>th:first-child{padding-left:1.25rem}.a-Table-table>thead>tr>th:last-child{padding-right:1.25rem}.a-Table-table>thead>tr>th:not(:last-child){border-right:.0625rem solid #dee2e6}.a-Table-table>thead>tr>th .a-TableCell--title{display:flex;align-items:center}.a-Table-table>thead>tr>th .a-Remark{margin-left:.3125rem}.a-Table-table>thead>tr+tr{border-top:.0625rem solid #dee2e6}.a-Table-table>thead>tr{border-bottom:.0625rem solid #dee2e6}.a-Table-table>tbody>tr{background-color:transparent}.a-Table-table>tbody>tr+tr{border-top:.0625rem solid #dee2e6}.a-Table-table>tbody>tr+tr>th{border-top:.0625rem solid #dee2e6}.a-Table-table>tbody>tr>th{background-color:#f6f8f8;color:#414c52;font-weight:400;white-space:nowrap;border-right:.0625rem solid #dee2e6}.a-Table-table>tbody>tr>td,.a-Table-table>tbody>tr>th{padding:.59375rem .625rem;vertical-align:top}.a-Table-table>tbody>tr>td:first-child,.a-Table-table>tbody>tr>th:first-child{padding-left:1.25rem}.a-Table-table>tbody>tr>td:last-child,.a-Table-table>tbody>tr>th:last-child{padding-right:1.25rem}.a-Table-table>tbody>tr.a-Table-tr--odd{background-color:#f9fafa}.a-Table-table>tbody>tr:hover,.a-Table-table>tbody>tr.is-hovered{background-color:#f3f6f6;border-color:#d6dfdf;color:#58666e}.a-Table-table>tbody>tr:hover+tr,.a-Table-table>tbody>tr.is-hovered+tr{border-color:#d6dfdf}.a-Table-table>tbody>tr.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-Table-table>tbody>tr.is-checked+tr{border-color:#abe4f6}.a-Table-table>tbody>tr.is-moved,.a-Table-table>tbody>tr.is-modified{background-color:#e8f0fe;border-color:#d0e0fd;color:#4285f4}.a-Table-table>tbody>tr.is-moved+tr,.a-Table-table>tbody>tr.is-modified+tr{border-color:#d0e0fd}.a-Table-table>tbody>tr.bg-light{background-color:#edf1f2;color:#58666e}.a-Table-table>tbody>tr.bg-light.lt,.a-Table-table>tbody>tr.bg-light .lt{background-color:#f3f5f6}.a-Table-table>tbody>tr.bg-light.lter,.a-Table-table>tbody>tr.bg-light .lter{background-color:#f6f8f8}.a-Table-table>tbody>tr.bg-light.dk,.a-Table-table>tbody>tr.bg-light .dk{background-color:#e4eaec}.a-Table-table>tbody>tr.bg-light.dker,.a-Table-table>tbody>tr.bg-light .dker{background-color:#dde6e9}.a-Table-table>tbody>tr.bg-light.bg,.a-Table-table>tbody>tr.bg-light .bg{background-color:#edf1f2}.a-Table-table>tbody>tr.bg-dark{background-color:#3a3f51;color:#a6a8b1}.a-Table-table>tbody>tr.bg-dark.lt,.a-Table-table>tbody>tr.bg-dark .lt{background-color:#474c5e}.a-Table-table>tbody>tr.bg-dark.lter,.a-Table-table>tbody>tr.bg-dark .lter{background-color:#54596a}.a-Table-table>tbody>tr.bg-dark.dk,.a-Table-table>tbody>tr.bg-dark .dk{background-color:#2e3344}.a-Table-table>tbody>tr.bg-dark.dker,.a-Table-table>tbody>tr.bg-dark .dker{background-color:#232735}.a-Table-table>tbody>tr.bg-dark.bg,.a-Table-table>tbody>tr.bg-dark .bg{background-color:#3a3f51}.a-Table-table>tbody>tr.bg-dark a,.a-Table-table>tbody>tr.bg-dark .a-Button--link{color:#c1c3c9}.a-Table-table>tbody>tr.bg-dark a:hover,.a-Table-table>tbody>tr.bg-dark .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-dark .open>a,.a-Table-table>tbody>tr.bg-dark .open>a:hover,.a-Table-table>tbody>tr.bg-dark .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-dark .text-muted{color:#8b8e99!important}.a-Table-table>tbody>tr.bg-dark .text-lt{color:#eaebed!important}.a-Table-table>tbody>tr.bg-black{background-color:#1c2b36;color:#7793a7}.a-Table-table>tbody>tr.bg-black.lt,.a-Table-table>tbody>tr.bg-black .lt{background-color:#263845}.a-Table-table>tbody>tr.bg-black.lter,.a-Table-table>tbody>tr.bg-black .lter{background-color:#314554}.a-Table-table>tbody>tr.bg-black.dk,.a-Table-table>tbody>tr.bg-black .dk{background-color:#131e26}.a-Table-table>tbody>tr.bg-black.dker,.a-Table-table>tbody>tr.bg-black .dker{background-color:#0a1015}.a-Table-table>tbody>tr.bg-black.bg,.a-Table-table>tbody>tr.bg-black .bg{background-color:#1c2b36}.a-Table-table>tbody>tr.bg-black a,.a-Table-table>tbody>tr.bg-black .a-Button--link{color:#96abbb}.a-Table-table>tbody>tr.bg-black a:hover,.a-Table-table>tbody>tr.bg-black .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-black .open>a,.a-Table-table>tbody>tr.bg-black .open>a:hover,.a-Table-table>tbody>tr.bg-black .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-black .text-muted{color:#5c798f!important}.a-Table-table>tbody>tr.bg-black .text-lt{color:#c4d0d9!important}.a-Table-table>tbody>tr.bg-primary{background-color:#7266ba;color:#f4f3f9}.a-Table-table>tbody>tr.bg-primary.lt,.a-Table-table>tbody>tr.bg-primary .lt{background-color:#847abf}.a-Table-table>tbody>tr.bg-primary.lter,.a-Table-table>tbody>tr.bg-primary .lter{background-color:#958dc6}.a-Table-table>tbody>tr.bg-primary.dk,.a-Table-table>tbody>tr.bg-primary .dk{background-color:#6051b5}.a-Table-table>tbody>tr.bg-primary.dker,.a-Table-table>tbody>tr.bg-primary .dker{background-color:#5244a9}.a-Table-table>tbody>tr.bg-primary.bg,.a-Table-table>tbody>tr.bg-primary .bg{background-color:#7266ba}.a-Table-table>tbody>tr.bg-primary a,.a-Table-table>tbody>tr.bg-primary .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-primary a:hover,.a-Table-table>tbody>tr.bg-primary .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-primary .open>a,.a-Table-table>tbody>tr.bg-primary .open>a:hover,.a-Table-table>tbody>tr.bg-primary .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-primary .text-muted{color:#d6d3e6!important}.a-Table-table>tbody>tr.bg-primary .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-success{background-color:#27c24c;color:#c6efd0}.a-Table-table>tbody>tr.bg-success.lt,.a-Table-table>tbody>tr.bg-success .lt{background-color:#31d257}.a-Table-table>tbody>tr.bg-success.lter,.a-Table-table>tbody>tr.bg-success .lter{background-color:#48d46a}.a-Table-table>tbody>tr.bg-success.dk,.a-Table-table>tbody>tr.bg-success .dk{background-color:#20af42}.a-Table-table>tbody>tr.bg-success.dker,.a-Table-table>tbody>tr.bg-success .dker{background-color:#1a9c39}.a-Table-table>tbody>tr.bg-success.bg,.a-Table-table>tbody>tr.bg-success .bg{background-color:#27c24c}.a-Table-table>tbody>tr.bg-success a,.a-Table-table>tbody>tr.bg-success .a-Button--link{color:#eefaf1}.a-Table-table>tbody>tr.bg-success a:hover,.a-Table-table>tbody>tr.bg-success .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-success .open>a,.a-Table-table>tbody>tr.bg-success .open>a:hover,.a-Table-table>tbody>tr.bg-success .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-success .text-muted{color:#9ee4af!important}.a-Table-table>tbody>tr.bg-success .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-info{background-color:#23b7e5;color:#dcf2f8}.a-Table-table>tbody>tr.bg-info.lt,.a-Table-table>tbody>tr.bg-info .lt{background-color:#3dbde5}.a-Table-table>tbody>tr.bg-info.lter,.a-Table-table>tbody>tr.bg-info .lter{background-color:#55c3e6}.a-Table-table>tbody>tr.bg-info.dk,.a-Table-table>tbody>tr.bg-info .dk{background-color:#16aad8}.a-Table-table>tbody>tr.bg-info.dker,.a-Table-table>tbody>tr.bg-info .dker{background-color:#1199c4}.a-Table-table>tbody>tr.bg-info.bg,.a-Table-table>tbody>tr.bg-info .bg{background-color:#23b7e5}.a-Table-table>tbody>tr.bg-info a,.a-Table-table>tbody>tr.bg-info .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-info a:hover,.a-Table-table>tbody>tr.bg-info .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-info .open>a,.a-Table-table>tbody>tr.bg-info .open>a:hover,.a-Table-table>tbody>tr.bg-info .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-info .text-muted{color:#b0e1f1!important}.a-Table-table>tbody>tr.bg-info .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-warning{background-color:#fad733;color:#fffefa}.a-Table-table>tbody>tr.bg-warning.lt,.a-Table-table>tbody>tr.bg-warning .lt{background-color:#f8da4e}.a-Table-table>tbody>tr.bg-warning.lter,.a-Table-table>tbody>tr.bg-warning .lter{background-color:#f7de69}.a-Table-table>tbody>tr.bg-warning.dk,.a-Table-table>tbody>tr.bg-warning .dk{background-color:#fcd417}.a-Table-table>tbody>tr.bg-warning.dker,.a-Table-table>tbody>tr.bg-warning .dker{background-color:#face00}.a-Table-table>tbody>tr.bg-warning.bg,.a-Table-table>tbody>tr.bg-warning .bg{background-color:#fad733}.a-Table-table>tbody>tr.bg-warning a,.a-Table-table>tbody>tr.bg-warning .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-warning a:hover,.a-Table-table>tbody>tr.bg-warning .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-warning .open>a,.a-Table-table>tbody>tr.bg-warning .open>a:hover,.a-Table-table>tbody>tr.bg-warning .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-warning .text-muted{color:#fbf2cb!important}.a-Table-table>tbody>tr.bg-warning .text-lt{color:#fff!important}.a-Table-table>tbody>tr.bg-danger{background-color:#f05050;color:#fff}.a-Table-table>tbody>tr.bg-danger.lt,.a-Table-table>tbody>tr.bg-danger .lt{background-color:#f06a6a}.a-Table-table>tbody>tr.bg-danger.lter,.a-Table-table>tbody>tr.bg-danger .lter{background-color:#f18282}.a-Table-table>tbody>tr.bg-danger.dk,.a-Table-table>tbody>tr.bg-danger .dk{background-color:#f13636}.a-Table-table>tbody>tr.bg-danger.dker,.a-Table-table>tbody>tr.bg-danger .dker{background-color:#f21b1b}.a-Table-table>tbody>tr.bg-danger.bg,.a-Table-table>tbody>tr.bg-danger .bg{background-color:#f05050}.a-Table-table>tbody>tr.bg-danger a,.a-Table-table>tbody>tr.bg-danger .a-Button--link{color:#fff}.a-Table-table>tbody>tr.bg-danger a:hover,.a-Table-table>tbody>tr.bg-danger .a-Button--link:hover{color:#fff}.a-Table-table>tbody>tr.bg-danger .open>a,.a-Table-table>tbody>tr.bg-danger .open>a:hover,.a-Table-table>tbody>tr.bg-danger .open>a:focus{color:#fff}.a-Table-table>tbody>tr.bg-danger .text-muted{color:#e6e6e6!important}.a-Table-table>tbody>tr.bg-danger .text-lt{color:#fff!important}.a-Table-table>tbody>tr.is-dragging{opacity:.1}.a-Table-table tr.a-Table-tr--2th.is-expanded .a-Table-expandCell:before{right:-.8125rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandBtn{position:relative;right:-1.25rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td{position:relative;padding-left:1.25rem}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:-.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--2th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:-.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--2th.is-expandable .a-Table-expandCell+td{padding-left:1.25rem}.a-Table-table tr.a-Table-tr--2th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--3th.is-expanded .a-Table-expandCell:before{right:-2.0625rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandBtn{position:relative;right:-2.5rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td{position:relative;padding-left:2.5rem}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:.75rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--3th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:.75rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--3th.is-expandable .a-Table-expandCell+td{padding-left:2.5rem}.a-Table-table tr.a-Table-tr--3th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--4th.is-expanded .a-Table-expandCell:before{right:-3.3125rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandBtn{position:relative;right:-3.75rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td{position:relative;padding-left:3.75rem}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:2rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--4th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:2rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--4th.is-expandable .a-Table-expandCell+td{padding-left:3.75rem}.a-Table-table tr.a-Table-tr--4th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--5th.is-expanded .a-Table-expandCell:before{right:-4.5625rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandBtn{position:relative;right:-5rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td{position:relative;padding-left:5rem}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:3.25rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--5th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:3.25rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--5th.is-expandable .a-Table-expandCell+td{padding-left:5rem}.a-Table-table tr.a-Table-tr--5th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--6th.is-expanded .a-Table-expandCell:before{right:-5.8125rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandBtn{position:relative;right:-6.25rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td{position:relative;padding-left:6.25rem}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:4.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--6th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:4.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--6th.is-expandable .a-Table-expandCell+td{padding-left:6.25rem}.a-Table-table tr.a-Table-tr--6th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--7th.is-expanded .a-Table-expandCell:before{right:-7.0625rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandBtn{position:relative;right:-7.5rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td{position:relative;padding-left:7.5rem}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:5.75rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--7th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:5.75rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--7th.is-expandable .a-Table-expandCell+td{padding-left:7.5rem}.a-Table-table tr.a-Table-tr--7th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--8th.is-expanded .a-Table-expandCell:before{right:-8.3125rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandBtn{position:relative;right:-8.75rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td{position:relative;padding-left:8.75rem}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:7rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--8th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:7rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--8th.is-expandable .a-Table-expandCell+td{padding-left:8.75rem}.a-Table-table tr.a-Table-tr--8th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--9th.is-expanded .a-Table-expandCell:before{right:-9.5625rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandBtn{position:relative;right:-10rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td{position:relative;padding-left:10rem}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:8.25rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--9th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:8.25rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--9th.is-expandable .a-Table-expandCell+td{padding-left:10rem}.a-Table-table tr.a-Table-tr--9th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table tr.a-Table-tr--10th.is-expanded .a-Table-expandCell:before{right:-10.8125rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandBtn{position:relative;right:-11.25rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td{position:relative;padding-left:11.25rem}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td::before{content:'';position:absolute;width:.0625rem;top:0;bottom:0;left:9.5rem;height:auto;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--10th .a-Table-expandCell+td::after{content:'';position:absolute;height:.0625rem;top:1.125rem;left:9.5rem;width:.625rem;background-color:#dee2e6}.a-Table-table tr.a-Table-tr--10th.is-expandable .a-Table-expandCell+td{padding-left:11.25rem}.a-Table-table tr.a-Table-tr--10th.is-last:not(.is-expanded) .a-Table-expandCell+td::before{height:1.125rem;bottom:auto}.a-Table-table>thead>tr>th.a-Table-checkCell,.a-Table-table>tbody>tr>td.a-Table-checkCell{border-right:0;width:.0625rem}.a-Table-table>thead>tr>th.a-Table-checkCell .a-Checkbox,.a-Table-table>tbody>tr>td.a-Table-checkCell .a-Checkbox{margin:0}.a-Table-table>thead>tr>th.a-Table-expandCell,.a-Table-table>tbody>tr>td.a-Table-expandCell{border-right:0;width:.0625rem;padding-right:0}.a-Table-table>thead>tr>th.a-Table-dragCell,.a-Table-table>tbody>tr>td.a-Table-dragCell{border-right:0;width:.0625rem;padding-right:0;cursor:move}.a-Table-table>tbody>tr>td.a-Table-expandCell{position:relative}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-1{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:.4375rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-2{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-.8125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-3{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-2.0625rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-4{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-3.3125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-5{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-4.5625rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-6{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-5.8125rem}.a-Table-table>tbody>tr>td.a-Table-expandCell .a-Table-divider-7{position:absolute;width:.0625rem;top:0;bottom:0;height:100%;background-color:#dee2e6;right:-7.0625rem}.a-Table-table>tbody>tr.is-expanded>td.a-Table-expandCell::before{content:'';position:absolute;width:.0625rem;top:1.75rem;bottom:0;right:.4375rem;height:auto;background-color:#dee2e6}.a-Table-table>thead>tr>th.a-TableCell--sortable{padding-right:1.125rem;position:relative}.a-Table-table>thead>tr>th.a-TableCell--searchable{padding-right:1.625rem;position:relative}.a-Table-table>thead>tr>th.a-TableCell--filterable{padding-right:1.625rem;position:relative}.a-TableCell-sortBtn{cursor:pointer;width:.5rem;height:1.25rem;display:flex;flex-direction:column;justify-content:center;align-items:center;position:absolute;right:.375rem;top:50%;transform:translateY(-50%);color:#6c757d}.a-TableCell-sortBtn:hover{color:#212529}.a-TableCell-sortBtn--up>svg,.a-TableCell-sortBtn--down>svg,.a-TableCell-sortBtn--default>svg{color:inherit;width:12x;height:12px}.a-TableCell-sortBtn--up,.a-TableCell-sortBtn--down,.a-TableCell-sortBtn--default{display:none;position:absolute;z-index:2;font-style:normal}.a-TableCell-sortBtn--up.is-active,.a-TableCell-sortBtn--down.is-active,.a-TableCell-sortBtn--default.is-active{display:inline-block}.a-TableCell-sortBtn--default.is-active{color:#99a6ad}.a-TableCell-sortBtn--default.is-active:hover{color:#58666e}.a-TableCell-sortBtn--up.is-active,.a-TableCell-sortBtn--down.is-active{color:#7266ba}.a-TableCell-searchBtn{cursor:pointer;position:absolute;right:.3125rem;top:50%;transform:translateY(-50%);color:#99a6ad}.a-TableCell-searchBtn svg.icon{width:12px;height:12px}.a-TableCell-searchBtn:hover{color:#58666e}.a-TableCell-searchBtn.is-active{color:#7266ba}.a-TableCell-searchPopOver{border:0;min-width:20rem;max-width:40rem}.a-TableCell-searchPopOver .a-Panel{margin:0}.a-TableCell-filterBtn{cursor:pointer;width:1rem;position:absolute;right:.125rem;top:50%;transform:translateY(-50%);color:#99a6ad}.a-TableCell-filterBtn svg.icon{width:12px;height:12px}.a-TableCell-filterBtn:hover{color:#58666e}.a-TableCell-filterBtn.is-active{color:#7266ba}.a-TableCell-filterBtn .a-Remark{display:inline}.a-TableCell-filterPopOver{border:0;width:10rem}.a-TableCell-filterPopOver .a-DropDown-menu{margin:0;padding:0;border-radius:0}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider{height:2.125rem;line-height:2.125rem;padding:0 .75rem;background-color:#fff;margin:0}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider:hover{background-color:#edf1f2;color:#7266ba}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider.is-selected{background-color:#edf1f2;color:#7266ba}.a-TableCell-filterPopOver .a-DropDown-menu .a-DropDown-divider .a-Checkbox{width:100%;margin:0}.a-Table-itemActions-wrap{position:absolute;width:100%;left:0;top:0;min-height:30px;pointer-events:none;box-shadow:0 .5rem 1rem rgba(28,43,54,.15)}.a-Table-itemActions{pointer-events:all;position:absolute;background:linear-gradient(90deg,rgba(243,246,246,0) 0,#f3f6f6 20%,#f3f6f6 100%);top:.0625rem;bottom:0;right:0;padding-left:3.125rem;padding-right:.625rem;display:flex;align-items:center}.a-Table-itemActions a{cursor:pointer;padding:.3125rem .625rem;color:#23b7e5;text-decoration:none}.a-Table-itemActions a:hover{color:#1485a8;text-decoration:underline}.a-Table-itemActions a.is-disabled{pointer-events:none;opacity:.65;color:#99a6ad}.a-Table-dragTip{color:#414c52;clear:both;margin-top:.3125rem;width:100%;color:#23b7e5}.a-Table-footTable{position:relative;width:100%;border-spacing:0;border-collapse:collapse;margin-bottom:0;background:transparent}.a-Table-footTable>tbody>tr>th{width:7.5rem;text-align:right;padding:.59375rem .625rem}.a-Table-footTable>tbody>tr>td{word-break:break-all;padding:.59375rem .625rem}.a-Table-footTable>tbody>tr:not(:first-child){border-top:.0625rem solid #e5e8eb}.a-Table-expandBtn{position:relative;z-index:1;color:#23b7e5;display:inline-flex;justify-content:center;align-items:center;width:.875rem;line-height:1;height:16px}.a-Table-expandBtn>svg{display:inline-block;text-align:center;cursor:pointer;transition:transform ease-in-out .2s,top ease-in-out .2s;position:relative;transform-origin:50% 50%}.a-Table-expandBtn.is-active>svg{transform:rotate(90deg)}.a-Table-expandBtn:hover{text-decoration:none}.a-Table-dragBtn{margin-right:.3125rem;display:inline-block;visibility:hidden;cursor:move;color:#6c757d}.a-Table-dragBtn:hover{text-decoration:none;color:#212529}.a-Table-table>tbody>tr:hover .a-Table-dragBtn,.a-Table-table>tbody>tr.is-dragging .a-Table-dragBtn,.a-Table-table>tbody>tr.is-drop-allowed .a-Table-dragBtn{visibility:visible}.a-Table .fake-hide{visibility:hidden;position:absolute}.a-OperationField{margin:-.1875rem}.a-OperationField>.a-Button,.a-OperationField>.a-Button--disabled-wrap>.a-Button{margin:.1875rem}.a-OperationField>.a-Button--link{padding:0;margin-right:.625rem}.a-List{border:.0625rem solid #dee2e6;border-radius:.142rem;background-color:#fff;margin-bottom:1.25rem;position:relative}.a-List-toolbar{display:flex;flex-wrap:wrap;padding:.625rem}.a-List-toolbar::before,.a-List-toolbar::after{display:table;content:''}.a-List-toolbar::after{clear:both}.a-List-actions{display:inline-block}.a-List-actions>*{margin-right:.3125rem}.a-List-header{padding:.625rem}.a-List-header>*+.a-Button,.a-List-header>*+.a-ButtonGroup,.a-List-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-List-header+.a-List-toolbar{padding-top:0}.a-List-heading{padding:.3125rem 0}.a-List-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);padding:.625rem}.a-List-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-List-fixedTop .a-Cards-toolbar{margin-bottom:0}.a-List-fixedTop:empty{display:none}.a-List--unsaved .a-List-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.a-List-dragTip{width:100%;color:#23b7e5;clear:both;margin-top:.3125rem}.a-List-placeholder{color:#99a6ad;text-align:center;min-height:1.875rem;line-height:1.875rem}.a-ListGroup{max-width:25rem;display:flex;flex-direction:column}.a-ListGroup-item{position:relative;display:block;padding:.625rem .9375rem;margin-bottom:-.0625rem;background-color:#fff;border:.0625rem solid #dee2e6}.a-ListGroup-item:first-child{border-top-left-radius:.142rem;border-top-right-radius:.142rem}.a-ListGroup-item:last-child{border-bottom-left-radius:.142rem;border-bottom-right-radius:.142rem;margin-bottom:0}.a-ListGroup-item:hover{z-index:1}.a-ListGroup-item.is-active{z-index:2}.a-ListGroup-item.is-disabled{color:#99a6ad}.a-ListGroup--expanded .a-ListGroup-item{border-radius:.142rem;margin-bottom:.625rem}.a-ListGroup--expanded .a-ListGroup-item:last-child{margin-bottom:0}.a-ListItem{position:relative;display:block;padding:.625rem .9375rem}.a-ListItem::before,.a-ListItem::after{display:table;content:''}.a-ListItem::after{clear:both}.a-ListItem+.a-ListItem{border-top:.0625rem solid #edeff1}.a-ListItem:nth-child(even){background-color:#f6f8f8}.a-ListItem-checkBtn{float:left;margin-right:.625rem}.a-ListItem-dragBtn{cursor:move;float:left;margin-right:.625rem}.a-ListItem-actions{float:right}.a-ListItem-title{margin:0;padding:0;font-size:.875rem;color:#414c52;font-weight:400}.a-ListItem-content{overflow:hidden}.a-ListItem-field{position:relative;display:flex;flex-wrap:nowrap}.a-ListItem-fieldValue{position:relative;flex-basis:0;flex-grow:1;max-width:100%;width:0;overflow:hidden;text-overflow:ellipsis}.a-ListItem-fieldLabel{width:9.375rem;color:#99a6ad}.a-ListItem.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-ListItem.is-checked+.a-ListItem{border-color:#abe4f6}.a-ListItem.is-checked .a-ListItem-fieldLabel{color:#7dd6f1}.a-ListItem.is-modified,.a-ListItem.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.a-ListItem.is-modified+.a-ListItem,.a-ListItem.is-moved+.a-ListItem{border-color:#b7d0fc}.a-ListItem.is-modified .a-ListItem-fieldLabel,.a-ListItem.is-moved .a-ListItem-fieldLabel{color:#a2c3fa}.a-ListItem.is-dragging{opacity:.1}.a-Cards-toolbar{padding:0;margin-bottom:.9375rem}.a-Cards-toolbar::before,.a-Cards-toolbar::after{display:table;content:''}.a-Cards-toolbar::after{clear:both}.a-Cards-actions{display:inline-block}.a-Cards-actions>*{margin-right:.3125rem}.a-Cards-heading{padding:.3125rem 0}.a-Cards-header{padding:0}.a-Cards-header>*+.a-Button,.a-Cards-header>*+.a-ButtonGroup,.a-Cards-header>*+.a-ButtonToolbar{margin-left:.3125rem}.a-Cards-header+.a-Cards-toolbar{padding-top:0}.a-Cards-fixedTop{position:absolute;background:#fff;z-index:-1;opacity:0;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);padding:.625rem}.a-Cards-fixedTop.in{position:fixed;opacity:1;z-index:900}.a-Cards-fixedTop .a-Cards-toolbar{margin-bottom:0}.a-Cards-fixedTop:empty{display:none}.a-Cards--unsaved .a-Cards-heading{background:#e8f0fe;color:#4285f4;padding:.3125rem .625rem;margin-bottom:.625rem}.a-Cards-dragTip{width:100%;color:#23b7e5;clear:both;margin-top:.3125rem}.a-Cards-placeholder{background:#fff;color:#99a6ad;text-align:center;height:6.25rem;line-height:6.25rem;border:.0625rem solid #dee2e6;border-radius:.142rem}.a-Cards-body>div{display:flex}.a-Cards--masonry{display:block;column-gap:0;column-fill:initial}.a-Cards--masonry:after{content:none}.a-Cards--masonry>div{width:100%;float:none;break-inside:avoid;max-width:unset;display:inline-block;flex:unset}@media (min-width:576px){.a-Cards--masonrySm1{column-count:12}.a-Cards--masonrySm2{column-count:6}.a-Cards--masonrySm3{column-count:4}.a-Cards--masonrySm4{column-count:3}.a-Cards--masonrySm6{column-count:2}.a-Cards--masonrySm12{column-count:1}.a-Cards-toolbar{display:flex;flex-wrap:wrap}}@media (min-width:768px){.a-Cards--masonryMd1{column-count:12}.a-Cards--masonryMd2{column-count:6}.a-Cards--masonryMd3{column-count:4}.a-Cards--masonryMd4{column-count:3}.a-Cards--masonryMd6{column-count:2}.a-Cards--masonryMd12{column-count:1}}@media (min-width:992px){.a-Cards--masonryLg1{column-count:12}.a-Cards--masonryLg2{column-count:6}.a-Cards--masonryLg3{column-count:4}.a-Cards--masonryLg4{column-count:3}.a-Cards--masonryLg6{column-count:2}.a-Cards--masonryLg12{column-count:1}}.a-Card{background-color:#fff;border:.0625rem solid #dee2e6;border-radius:.142rem;margin-bottom:.9375rem;position:relative;display:flex;flex-direction:column;width:100%}.a-Card-title{color:#414c52;font-size:1rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.a-Card-subTitle{max-height:2.625rem;overflow:hidden;text-overflow:ellipsis;color:#99a6ad;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}.a-Card-title+.a-Card-subTitle{margin-top:.3125rem}.a-Card-checkBtn{position:absolute;top:0;right:0;margin:.625rem;z-index:1}.a-Card-checkBtn .a-Checkbox{margin-right:0}.a-Card-dragBtn{cursor:pointer;float:right;margin:.625rem}.a-Card-heading{overflow:hidden;padding:.625rem .9375rem;flex:1 0 auto}.a-Card-avtar{float:left;margin-right:.9375rem;max-width:12.5rem}.a-Card-avtar img{max-width:100%}.a-Card-avtarText{background-color:#7266ba;color:#fff;width:50px;height:50px;line-height:50px;text-align:center;vertical-align:middle;border-radius:500px;float:left;margin-right:.9375rem;font-size:1.5rem;text-transform:uppercase()}.a-Card-meta{display:block;height:100%;overflow:hidden;position:relative;margin-right:1.25rem}.a-Card-highlight{background-color:#27c24c;width:.5rem;height:.5rem;border-radius:100%;display:inline-block;position:absolute;top:.3125rem;right:.125rem}.a-Card-body{padding:.9375rem;flex:1 0 auto}.a-Card-heading+.a-Card-body{padding-top:.3125rem}.a-Card-field{position:relative;display:flex;flex-wrap:nowrap}.a-Card-fieldValue{position:relative;flex-basis:0;flex-grow:1;width:0;text-overflow:ellipsis;overflow:hidden}.a-Card-fieldLabel{width:3.75rem;color:#99a6ad}.a-Card-actions{border-top:.0625rem solid #edeff1;display:flex;flex-direction:row;width:100%;table-layout:fixed}.a-Card-actions>a{background-color:transparent;flex-grow:1;border-color:#edeff1;border-style:solid;border-width:0 .0625rem 0 0;color:#58666e;text-align:center;line-height:2.5rem;font-size:.875rem}.a-Card-actions>a:not(.is-disabled){cursor:pointer}.a-Card-actions>a:not(.is-disabled):hover{background-color:#f2f2f2;color:#4d5960;text-decoration:none}.a-Card-actions>a:last-child{border:0}.a-Card-actions>a.is-disabled{color:#99a6ad}.a-Card-actions>a.is-disabled:hover{text-decoration:none}.a-Card.is-checked{background-color:#d9f3fb;border-color:#abe4f6;color:#20b9e8}.a-Card.is-checked .a-Card-actions,.a-Card.is-checked .a-Card-actions>a{border-color:#abe4f6;color:#20b9e8}.a-Card.is-checked .a-Card-fieldLabel{color:#7dd6f1}.a-Card.is-checked .a-Card-actions>a:hover{background-color:#c2ecf9;color:#1498c1}.a-Card.is-modified,.a-Card.is-moved{background-color:#e8f0fe;border-color:#b7d0fc;color:#4285f4}.a-Card.is-modified .a-Card-actions,.a-Card.is-modified .a-Card-actions>a,.a-Card.is-moved .a-Card-actions,.a-Card.is-moved .a-Card-actions>a{border-color:#b7d0fc;color:#4285f4}.a-Card.is-modified .a-Card-fieldLabel,.a-Card.is-moved .a-Card-fieldLabel{color:#a2c3fa}.a-Card.is-modified .a-Card-actions>a:hover,.a-Card.is-moved .a-Card-actions>a:hover{background-color:#d0e0fd;color:#1266f1}.is-dragging>.a-Card{opacity:.1}.a-Field-quickEditBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6}.a-Field-quickEditBtn:hover{color:inherit;opacity:1}.a-Field--quickEditable{outline:0;position:relative}.a-Field--quickEditable:focus{position:relative}.a-Field--quickEditable:focus:after{content:'';left:0;top:0;right:0;bottom:0;position:absolute;pointer-events:none;z-index:1;border:.0625rem dashed #23b7e5}.a-Field--quickEditable:hover .a-Field-quickEditBtn{visibility:visible}.a-QuickEdit-popover{min-width:20rem;max-width:40rem}.a-QuickEdit-popover .a-Panel{margin-bottom:0;border:0}.a-Field-popOverBtn{color:inherit;margin-left:.3125rem;visibility:hidden;display:inline-block;cursor:pointer;opacity:.6;vertical-align:middle}.a-Field-popOverBtn:hover{color:inherit;opacity:1}.a-Field--popOverAble{outline:0;position:relative}.a-Field--popOverAble:hover .a-Field-popOverBtn{visibility:visible}.a-PopOverAble-popover{min-width:20rem;max-width:40rem}.a-PopOverAble-popover .a-Panel{margin-bottom:0;border:0}.a-Field-copyBtn{color:#6c757d;margin-left:.3125rem;display:inline-block;cursor:pointer}.a-Field-copyBtn:hover{color:#212529}.a-Divider{margin:.9375rem -.9375rem;border-bottom:.0625rem dashed #dee2e6;height:.125rem;font-size:0}.a-Divider--solid{border-bottom-style:solid}.a-Pagination{display:inline-block;padding-left:0;padding:0;margin:0 0 -.625rem;border-radius:.25rem}.a-Pagination>li{display:inline}.a-Pagination>li>a,.a-Pagination>li>span{user-select:none;cursor:pointer;position:relative;float:left;text-decoration:none;min-width:1.875rem;height:1.875rem;border:0;line-height:1.875rem;padding:0 .5rem;text-align:center;color:#666;border-radius:0;margin-left:0;font-size:.875rem}.a-Pagination>li>a:hover,.a-Pagination>li>span:hover,.a-Pagination>li>a:focus,.a-Pagination>li>span:focus{background-color:transparent;color:#7266ba}.a-Pagination>li.is-disabled>span,.a-Pagination>li.is-disabled>a{cursor:not-allowed}.a-Pagination>li.is-disabled>a,.a-Pagination>li.is-disabled>span,.a-Pagination>li.is-disabled>a:hover,.a-Pagination>li.is-disabled>span:hover,.a-Pagination>li.is-disabled>a:focus,.a-Pagination>li.is-disabled>span:focus{color:#ccc}.a-Pagination>li.is-active>a,.a-Pagination>li.is-active>span,.a-Pagination>li.is-active>a:hover,.a-Pagination>li.is-active>span:hover,.a-Pagination>li.is-active>a:focus,.a-Pagination>li.is-active>span:focus{background-color:#7266ba;color:#fff;border:0}.a-Pagination-prev>span{cursor:pointer}.a-Pagination-ellipsis>a>span{position:relative;top:-.25rem}.a-Pagination-next>span{cursor:pointer}.a-Pagination-inputGroup{display:inline-flex;flex-wrap:nowrap}.a-Pagination-inputGroup .a-Pagination-input{width:3.125rem;height:1.875rem;border:.0625rem solid #dee2e6;border-top-left-radius:.142rem;border-bottom-left-radius:.142rem;padding:.3125rem .625rem}.a-Pagination-inputGroup .a-Pagination-input:focus{outline:0;border:.0625rem solid #7266ba}.a-Pagination-inputGroup .a-Button{height:1.875rem;margin-left:-.0625rem;border-radius:0 .142rem .142rem 0;padding:0 .625rem}.a-Wrapper{padding:.9375rem}.a-Wrapper--xs{padding:.3125rem}.a-Wrapper--sm{padding:.625rem}.a-Wrapper--md{padding:1.25rem}.a-Wrapper--lg{padding:1.875rem}.a-Wrapper--xl{padding:3.125rem}.a-Wrapper--none{padding:0}.a-StatusField{white-space:nowrap;display:inline-flex;flex-wrap:nowrap;flex-direction:row;align-items:center}.a-StatusField-label{font-size:.75rem;margin-left:.625rem}@keyframes animation-rolling_red{0%{transform:translateX(0)}50%{transform:translateX(20px)}100%{transform:translateX(0)}}@keyframes animation-rolling_blue{0%{transform:translateX(0)}50%{transform:translateX(-20px)}100%{transform:translateX(0)}}.a-StatusField svg.a-Status-icon{width:1.25rem;height:1.25rem;top:0}.a-StatusField .a-Status-icon.rolling{width:30px;height:10px;display:inline-block;vertical-align:middle;position:relative}.a-StatusField .a-Status-icon.rolling::before{content:'';display:inline-block;border:5px solid #f05050;border-radius:500px;position:absolute;top:0;left:0;animation:animation-rolling_red 2s;animation-iteration-count:infinite}.a-StatusField .a-Status-icon.rolling::after{content:'';display:inline-block;border:5px solid #7266ba;border-radius:500px;position:absolute;top:0;left:20px;animation:animation-rolling_blue 2s;animation-iteration-count:infinite}.a-StatusField .a-Status-icon.icon-warning{color:#fad733}.a-Status-icon.rolling+.a-StatusField-label{color:#fad733}.a-Status-icon.icon-success+.a-StatusField-label{color:#27c24c}.a-Status-icon.icon-fail+.a-StatusField-label{color:#f05050}.a-Status-icon.icon-warning+.a-StatusField-label{color:#fad733}.a-Carousel{min-width:6.25rem;height:12.5rem;position:relative;display:block;background:#f6f8f8}.a-Carousel.a-Carousel--light .a-Carousel-dot{background-color:#fff}.a-Carousel.a-Carousel--light svg{fill:#fff}.a-Carousel.a-Carousel--light .a-Carousel-item .title,.a-Carousel.a-Carousel--light .a-Carousel-item .description{color:#fff}.a-Carousel.a-Carousel--dark .a-Carousel-dot{background-color:#000}.a-Carousel.a-Carousel--dark svg{fill:#000}.a-Carousel.a-Carousel--dark .a-Carousel-item .title,.a-Carousel.a-Carousel--dark .a-Carousel-item .description{color:#000}.a-Carousel-container{width:100%;height:100%;position:relative;overflow:hidden}.a-Carousel-container .a-Carousel-item{width:100%;height:100%;position:absolute;transition:ease-out all .3s}.a-Carousel-container .a-Carousel-item.fade{opacity:0}.a-Carousel-container .a-Carousel-item.fade.in{opacity:1}.a-Carousel-container .a-Carousel-item.slide{transform:translateX(100%)}.a-Carousel-container .a-Carousel-item.slide.in{transform:translateX(0)}.a-Carousel-container .a-Carousel-item.slide.out{transform:translateX(-100%)}.a-Carousel-container .a-Carousel-item.slideRight{transform:translateX(-100%)}.a-Carousel-container .a-Carousel-item.slideRight.in{transform:translateX(0)}.a-Carousel-container .a-Carousel-item.slideRight.out{transform:translateX(100%)}.a-Carousel-container .a-Carousel-item .title{position:absolute;bottom:2.8125rem;text-align:center;width:100%;opacity:.8}.a-Carousel-container .a-Carousel-item .description{position:absolute;bottom:1.5625rem;text-align:center;width:100%;opacity:.8}.a-Carousel-container .a-Carousel-item .image{width:100%;height:100%;background-size:cover}.a-Carousel-dotsControl{position:absolute;bottom:0;width:100%;z-index:100;text-align:center}.a-Carousel-dotsControl .a-Carousel-dot{display:inline-block;height:.5rem;width:.5rem;border-radius:.25rem;margin:.4375rem .3125rem;transition-duration:.3s;opacity:.3}.a-Carousel-dotsControl .a-Carousel-dot.is-active{opacity:1}.a-Carousel-arrowsControl{position:absolute;width:100%;height:inherit;z-index:100;text-align:center}.a-Carousel-arrowsControl .a-Carousel-leftArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;left:0}.a-Carousel-arrowsControl .a-Carousel-leftArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}.a-Carousel-arrowsControl .a-Carousel-rightArrow{width:10%;min-width:1.25rem;height:100%;cursor:pointer;position:absolute;transition-duration:.3s;right:0}.a-Carousel-arrowsControl .a-Carousel-rightArrow svg{position:absolute;top:50%;left:50%;right:50%;transform:translate(-50%,-50%);width:1.25rem;height:1.25rem}@keyframes disappear{to{opacity:0}}@keyframes appear{from{opacity:0}}.a-ImageGallery{display:flex;flex-direction:column;background:transparent;border:0;border-radius:0;max-width:1010px!important}.a-ImageGallery-close{position:absolute;right:0;top:0;color:rgba(255,255,255,.8);cursor:pointer}.a-ImageGallery-close:hover{color:#fff}.a-ImageGallery-close>svg{width:1rem;height:1rem}.a-ImageGallery-title{height:1.875rem;vertical-align:top;line-height:1.875rem;font-size:.75rem;color:#fff;text-align:center}.a-ImageGallery-main{background:#000;flex-basis:0;flex-grow:1;height:0;position:relative;display:flex;justify-content:center;align-items:center;user-select:none}.a-ImageGallery-main>img{display:block;max-width:100%;max-height:100%}.a-ImageGallery-prevBtn,.a-ImageGallery-nextBtn{position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;color:#999;text-shadow:rgba(0,0,0,.3) 0 0 4px;animation-name:disappear;animation-delay:3s;animation-duration:.35s;animation-fill-mode:both}.a-ImageGallery-prevBtn>svg,.a-ImageGallery-nextBtn>svg{width:3rem;height:3rem}.a-ImageGallery-prevBtn:hover,.a-ImageGallery-nextBtn:hover{color:#fff;text-shadow:rgba(0,0,0,.5) 0 0 4px}.a-ImageGallery-prevBtn.is-disabled,.a-ImageGallery-nextBtn.is-disabled{pointer-events:none}.a-ImageGallery-main:hover .a-ImageGallery-prevBtn,.a-ImageGallery-main:hover .a-ImageGallery-nextBtn{animation-name:appear;animation-delay:0s;animation-duration:.35s}.a-ImageGallery-prevBtn{left:1.25rem}.a-ImageGallery-nextBtn{right:1.25rem}.a-ImageGallery-footer{height:4.625rem;background:#222;display:flex;flex-direction:row;user-select:none}.a-ImageGallery-prevList,.a-ImageGallery-nextList{width:1.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;background:rgba(0,0,0,.3);color:#fff}.a-ImageGallery-prevList.is-disabled,.a-ImageGallery-nextList.is-disabled{background:rgba(0,0,0,.3);color:rgba(255,255,255,.1);pointer-events:none}.a-ImageGallery-prevList:hover,.a-ImageGallery-nextList:hover{background:#000;color:#fff}.a-ImageGallery-itemsWrap{flex-grow:1;flex-basis:0;width:0;overflow:hidden;align-items:center;justify-content:center;display:flex}.a-ImageGallery-items{display:inline-block;white-space:nowrap}.a-ImageGallery-item{margin:10px 5px;width:54px;height:54px;display:inline-flex;position:relative;border:1px solid #666;justify-content:center;align-items:center;cursor:pointer}.a-ImageGallery-item>img{display:block;max-width:100%;max-height:100%}@supports (object-fit:cover){.a-ImageGallery-item>img{width:100%;height:100%;object-fit:cover}}.a-ImageGallery-item:after{position:absolute;content:'';display:block;background:rgba(0,0,0,.5);z-index:1;left:0;top:0;width:100%;height:100%}.a-ImageGallery-item:hover{border:1px solid #e5e5e5}.a-ImageGallery-item:hover:after{display:none}.a-ImageGallery-item.is-active{border:1px solid #108cee}.a-ImageGallery-item.is-active:after{display:none}.a-Images{display:flex;flex-wrap:wrap;margin:-.3125rem}.a-Images-item{display:flex;margin:.3125rem}.a-Image{display:inline-block;width:7.5rem;border:.0625rem solid #dee2e6;padding:.3125rem}.a-Image-thumb{width:100%;height:6.75rem;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwMCIgaGVpZ2h0PSI0MDAiPgogICAgPGRlZnM+CiAgICAgICAgPHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIG9wYWNpdHk9IjAuMSIgLz4KICAgICAgICAgICAgPHJlY3QgZmlsbD0id2hpdGUiIHg9IjEwIiB5PSIwIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIC8+CiAgICAgICAgICAgIDxyZWN0IGZpbGw9ImJsYWNrIiB4PSIxMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgb3BhY2l0eT0iMC4xIiAvPgogICAgICAgICAgICA8cmVjdCBmaWxsPSJ3aGl0ZSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWQpIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiAvPgo8L3N2Zz4=");overflow:hidden;position:relative}.a-Image-thumb>img{position:absolute;left:50%;top:50%;max-height:100%;width:auto;transform:translate(-50%,-50%)}.a-Image-thumb--4-3{height:5.0625rem}.a-Image-thumb--16-9{height:3.79688rem}.a-Image-thumb--w-full>img{width:100%;height:auto}@supports (object-fit:contain){.a-Image-thumb--contain>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:contain}}@supports (object-fit:cover){.a-Image-thumb--cover>img{position:static;width:100%!important;height:100%!important;transform:translate(0,0);top:0;left:0;object-fit:cover}}.a-Image-caption{font-size:.75rem}.a-Image-overlay{background:rgba(0,0,0,.6);position:absolute;width:100%;height:100%;display:none;top:0;left:0;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.a-Image-overlay>div{width:100%;text-align:center;margin-bottom:5px}.a-Image-overlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.a-Image-thumb:hover .a-Image-overlay{display:flex}.a-ImageField{display:inline-block;position:relative}.a-InputBox{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-InputBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-InputBox input::placeholder{color:#99a6ad;user-select:none}.a-InputBox--inline{display:inline-flex}.a-InputBox>input[readonly]{cursor:inherit}.a-InputBox.is-error{border-color:#f05050;background-color:#fff}.a-InputBox.is-focused{border-color:#23b7e5;box-shadow:none}.a-InputBox.is-clickable:hover{border-color:#23b7e5;box-shadow:none;cursor:pointer}.a-InputBox.is-error.is-focused{border-color:#f05050}.a-InputBox.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-InputBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-InputBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-InputBox-clear:hover svg{fill:#3d4246}.a-InputBox>svg{display:inline-block;width:14px;color:#6c757d}.a-InputBox>a{cursor:pointer}.a-ResultBox{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap;flex-wrap:wrap;padding:0 .1875rem;min-height:2.125rem;align-items:center}.a-ResultBox input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-ResultBox input::placeholder{color:#99a6ad;user-select:none}.a-ResultBox.is-error{border-color:#f05050;background-color:#fff}.a-ResultBox.is-focused,.a-ResultBox:focus{outline:0;border-color:#23b7e5;box-shadow:none}.a-ResultBox.is-clickable:not(.is-disabled){cursor:pointer}.a-ResultBox.is-clickable:not(.is-disabled):hover{border-color:#23b7e5;box-shadow:none}.a-ResultBox.is-error.is-focused{border-color:#f05050}.a-ResultBox.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-ResultBox-singleValue{padding:0 .5625rem}.a-ResultBox-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;width:1.625rem;height:1.625rem;margin:0 -.125rem;margin-left:auto}.a-ResultBox-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-ResultBox-clear:hover svg{fill:#3d4246}.a-ResultBox-clear:hover{background:#f5f5f5}.a-ResultBox-clear>svg{width:.75rem;height:.75rem}.a-ResultBox>svg{display:inline-block;width:.875rem;color:#6c757d}.a-ResultBox>a{cursor:pointer}.a-ResultBox-value{background:#f5f5f5;color:#000;font-size:.875rem;padding:0 .3125rem;min-height:1.5rem;flex-wrap:nowrap;display:inline-flex;align-items:center;margin:2px 3px;user-select:none}.a-ResultBox-value>a{cursor:pointer;margin-left:.3125rem;color:#999}.a-ResultBox-value>a:hover{color:#666}.a-ResultBox-value>a>svg{width:.625rem;height:.625rem}.a-ResultBox-value:hover{background:#ebebeb}.a-ResultBox-value.is-disabled{pointer-events:none;color:#ccc}.a-ResultBox-value.is-disabled>a{color:#ebebeb}.a-ResultBox-placeholder{color:#99a6ad;user-select:none;margin-left:8px}.a-ResultBox>input{padding-left:8px;min-height:24px}.a-SearchBox{display:inline-flex;flex-direction:row;line-height:1.42857;font-size:.875rem;flex-wrap:nowrap;align-items:center;justify-content:flex-end;height:30px;width:30px;padding:0 8px;transition:all .3s ease-in-out;border:.0625rem solid transparent;border-radius:.142rem;height:30px}.a-SearchBox:hover{background-color:rgba(255,255,255,.6)}.a-SearchBox.is-active{background-color:#fff;border:.0625rem solid #cfdadd;width:150px}.a-SearchBox.is-active>input{flex-grow:1}.a-SearchBox-activeBtn,.a-SearchBox-cancelBtn{cursor:pointer;color:#6c757d}.a-SearchBox-activeBtn:hover,.a-SearchBox-cancelBtn:hover{color:#212529}.a-SearchBox>input{outline:0;border:0;background:transparent;color:#58666e;width:0;height:1.25rem}.a-SearchBox>input::placeholder{color:#99a6ad;user-select:none}.a-ListMenu{background:#fff;min-width:12.5rem;border:.0625rem solid #dee2e6;border-radius:.125rem}.a-ListMenu-groupLabel{font-size:.6875rem;color:#99a6ad;padding:.125rem 0 0 .4375rem}.a-ListMenu-group:not(:first-child)>.a-ListMenu-groupLabel{border-top:.0625rem solid #e5e8eb}.a-ListMenu-item{display:flex;min-height:2.125rem;color:#58666e;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.a-ListMenu-item.is-active{color:#23b7e5;background-color:transparent}.a-ListMenu-item.is-highlight{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-ListMenu-item.is-disabled{color:#99a6ad;background-color:transparent}.a-ListMenu-placeholder{display:block;min-height:2.125rem;color:#99a6ad;line-height:1.42857;font-size:.875rem;cursor:pointer;padding:.4375rem .75rem}.a-PopOver>.a-ListMenu{border-color:#23b7e5}.a-JsonField-nodeValue{white-space:normal;word-break:break-all;overflow-wrap:break-word}fieldset.a-Collapse--xs,fieldset.a-Collapse--sm,fieldset.a-Collapse--base,fieldset.a-Collapse--md,fieldset.a-Collapse--lg{position:relative}fieldset.a-Collapse--xs:after,fieldset.a-Collapse--sm:after,fieldset.a-Collapse--base:after,fieldset.a-Collapse--md:after,fieldset.a-Collapse--lg:after{content:'';pointer-events:none;border:1px solid #dee2e6;position:absolute;z-index:0;top:11px;left:0;bottom:0;right:0}fieldset.a-Collapse--xs>legend,fieldset.a-Collapse--sm>legend,fieldset.a-Collapse--base>legend,fieldset.a-Collapse--md>legend,fieldset.a-Collapse--lg>legend{position:absolute;top:0;left:0;display:inline-block;border:0;width:auto;z-index:1;background:#fff;border-left:0!important}fieldset.a-Collapse--xs .collapse,fieldset.a-Collapse--sm .collapse,fieldset.a-Collapse--base .collapse,fieldset.a-Collapse--md .collapse,fieldset.a-Collapse--lg .collapse{position:relative}fieldset.a-Collapse>legend{font-weight:400;padding:.3125rem 0;font-size:1rem;color:#414c52;border-left:#7266ba .25rem solid;line-height:1.2;margin:8px 0 28px;padding:0 0 0 14px;cursor:pointer;border-bottom:0}fieldset.a-Collapse--xs{padding:20px 5px 5px}fieldset.a-Collapse--xs>legend{left:5px;font-size:.6875rem;padding:0 3px;margin:0 0 0 -3px}fieldset.a-Collapse--xs:after{top:6px}fieldset.a-Collapse--sm{padding:25px 10px 10px}fieldset.a-Collapse--sm>legend{left:10px;font-size:.75rem;padding:0 5px;margin:0 0 0 -5px}fieldset.a-Collapse--sm:after{top:6px}fieldset.a-Collapse--base{padding:30px 15px 15px}fieldset.a-Collapse--base>legend{left:15px;font-size:.875rem;padding:0 8px;margin:0 0 0 -8px}fieldset.a-Collapse--base:after{top:7px}fieldset.a-Collapse--md{padding:30px 20px 20px}fieldset.a-Collapse--md>legend{left:20px;font-size:1rem;padding:0 10px;margin:0 0 0 -10px}fieldset.a-Collapse--md:after{top:7px}fieldset.a-Collapse--lg{padding:40px 30px 30px}fieldset.a-Collapse--lg>legend{left:30px;font-size:1.25rem;padding:0 15px;margin:0 0 0 -15px}fieldset.a-Collapse--lg:after{top:9px}.a-Form-groupColumn{margin-bottom:.625rem}@media (min-width:768px){.a-Form-group{margin-bottom:.9375rem}.a-Form-value>.a-Form-group{margin-bottom:.375rem}.a-Form-group--hor{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem;align-items:flex-start}.a-Form-group--hor.v-middle{align-items:center}.a-Form-group--hor.v-bottom{align-items:flex-end}.a-Form-group--hor>*{padding-left:.625rem;padding-right:.625rem}.a-Form-group--hor>.a-Form-item--inline{margin-right:0}.a-Form-group--hor>.a-Form-item,.a-Form-group--hor>div>.a-Form-item{margin-bottom:0}.a-Form-group--hor .a-Form-input>.a-Form-group{margin-bottom:0}.a-Form-group--lg{margin-left:-1.25rem;margin-right:-1.25rem}.a-Form-group--lg>*{padding-left:1.25rem;padding-right:1.25rem}.a-Form-group--md{margin-left:-.9375rem;margin-right:-.9375rem}.a-Form-group--md>*{padding-left:.9375rem;padding-right:.9375rem}.a-Form-group--sm{margin-left:-.625rem;margin-right:-.625rem}.a-Form-group--sm>*{padding-left:.625rem;padding-right:.625rem}.a-Form-group--xs{margin-left:-.3125rem;margin-right:-.3125rem}.a-Form-group--xs>*{padding-left:.3125rem;padding-right:.3125rem}.a-Form-groupColumn{flex-basis:0;flex-grow:1;width:0;max-width:100%;margin-bottom:0}.a-Form-groupColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.a-Form-groupColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.a-Form-groupColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.a-Form-groupColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.a-Form-groupColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.a-Form-groupColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.a-Form-groupColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.a-Form-groupColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.a-Form-groupColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.a-Form-groupColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.a-Form-groupColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.a-Form-groupColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}}.a-InputGroup{display:inline-flex;flex-wrap:nowrap}.a-InputGroup.a-Form-control--sizeXs,.a-InputGroup.a-Form-control--sizeSm,.a-InputGroup.a-Form-control--sizeMd,.a-InputGroup.a-Form-control--sizeLg{display:inline-flex}.a-InputGroup-addOn,.a-InputGroup .a-Form-control{display:inline-block;white-space:nowrap}.a-InputGroup-addOn{background:#edf1f2;border:.0625rem solid #cfdadd;line-height:1.25rem;height:2.125rem;box-sizing:border-box;padding:.375rem .625rem}.a-InputGroup-addOn:not(:last-child){border-right:0}.a-InputGroup-addOn:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup-addOn:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup-btn .a-Button{border-radius:0;border:.0625rem solid #cfdadd}.a-InputGroup-btn:not(:last-child) .a-Button{border-right:0}.a-InputGroup-btn:first-child .a-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup-btn:last-child .a-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup .a-TextControl-input{flex-basis:0;flex-grow:1;display:inline-flex}.a-InputGroup .a-TextControl-input:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.a-InputGroup .a-TextControl-input:not(:last-child){border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.a-InputGroup .a-SelectControl .a-Select{background-color:#fff;border:.0625rem solid #cfdadd}.a-InputGroup .a-SelectControl:not(:last-child) .a-Select{border-right:0}.a-InputGroup .a-SelectControl:first-child .a-Select{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-InputGroup .a-SelectControl:last-child .a-Select{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-InputGroup .a-SelectControl:not(:first-child) .a-Select{border-top-left-radius:0;border-bottom-left-radius:0}.a-InputGroup .a-SelectControl:not(:last-child) .a-Select{border-right-width:0;border-top-right-radius:0;border-bottom-right-radius:0}.a-InputGroup.is-focused .a-InputGroup-addOn,.a-InputGroup.is-focused .a-TextControl-input,.a-InputGroup.is-focused .a-Select,.a-InputGroup.is-focused .a-InputGroup-btn .a-Button{border-color:#23b7e5}.a-InputGroup.is-focused .a-Select-arrow{color:#212529}.a-InputGroup.is-focused .a-InputGroup-addOn{color:#7266ba}.a-InputGroup:not(.is-inline){display:flex}.a-TextControl{position:relative;max-width:100%}.a-TextControl.is-inline{display:inline-block;width:12.5rem}.a-TextControl-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-TextControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-TextControl-input input::placeholder{color:#99a6ad;user-select:none}.a-TextControl.is-error>.a-TextControl-input{border-color:#f05050;background-color:#fff}.a-TextControl.is-focused>.a-TextControl-input{border-color:#23b7e5;box-shadow:none}.a-TextControl.is-error.is-focused>.a-TextControl-input{border-color:#f05050}.a-TextControl.is-disabled>.a-TextControl-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-TextControl-spinner{line-height:1.25rem}.a-TextControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-TextControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-TextControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-TextControl.a-Form-control--sizeXs>.a-TextControl-input,.a-TextControl.a-Form-control--sizeSm>.a-TextControl-input,.a-TextControl.a-Form-control--sizeMd>.a-TextControl-input,.a-TextControl.a-Form-control--sizeLg>.a-TextControl-input{min-width:100%;display:inline-flex}}.a-TextControl-placeholder{color:#99a6ad;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.a-TextControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.a-TextControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.a-TextControl--withAddOn{display:flex;flex-wrap:nowrap}@media (min-width:576px){.a-TextControl--withAddOn.a-Form-control--sizeXs,.a-TextControl--withAddOn.a-Form-control--sizeSm,.a-TextControl--withAddOn.a-Form-control--sizeMd,.a-TextControl--withAddOn.a-Form-control--sizeLg{display:inline-flex}.a-TextControl--withAddOn.a-Form-control--sizeXs>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeSm>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeMd>.a-TextControl-input,.a-TextControl--withAddOn.a-Form-control--sizeLg>.a-TextControl-input{min-width:unset}}.a-TextControl--withAddOn>.a-TextControl-input{flex-basis:1;flex-grow:1;width:0;border-radius:0}.a-TextControl--withAddOn>.a-TextControl-input:first-child{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-input:last-child{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-addOn{display:flex;align-items:center;justify-content:center;padding-left:.625rem;padding-right:.625rem;background:#edf1f2;color:#58666e;border-color:#cfdadd;border-style:solid;border-width:.0625rem 0}.a-TextControl--withAddOn>.a-TextControl-addOn:first-child{border-left-width:.0625rem}.a-TextControl--withAddOn>.a-TextControl-addOn:last-child{border-right-width:.0625rem;border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-button>.a-Button{position:relative;border-radius:0;margin-left:-.0625rem;border:.0625rem solid #cfdadd}.a-TextControl--withAddOn>.a-TextControl-button:not(:last-child) .a-Button{border-right:0}.a-TextControl--withAddOn>.a-TextControl-button:first-child .a-Button{border-top-left-radius:.142rem;border-bottom-left-radius:.142rem}.a-TextControl--withAddOn>.a-TextControl-button:last-child .a-Button{border-top-right-radius:.142rem;border-bottom-right-radius:.142rem}.a-TextControl--withAddOn.is-focused>.a-TextControl-button .a-Button{border-color:#23b7e5}.a-TextControl--withAddOn.is-error>.a-TextControl-addOn{border-color:#f05050}.a-TextControl--withAddOn.is-focused>.a-TextControl-addOn{border-color:#23b7e5;color:#7266ba;box-shadow:none}.a-TextControl--withAddOn.is-disabled>.a-TextControl-addOn{color:#99a6ad}.a-TextControl-input--withAC{position:relative;flex-wrap:wrap}.a-TextControl-input--withAC input{width:auto;color:#99a6ad}.a-TextControl-sugs{position:absolute;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;left:-.0625rem;right:-.0625rem;top:100%;z-index:10}.a-TextControl-sugItem{padding:.375rem .75rem}.a-TextControl-sugItem svg{width:1rem;margin-top:.25rem;float:right;fill:#3d4246}.a-TextControl-sugItem:not(.is-disabled){cursor:pointer}.a-TextControl-sugItem.is-highlight{color:#23b7e5;background:rgba(0,126,255,.08)}.a-TextControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.a-TextControl-input--multiple{height:auto;min-height:2.125rem}.a-TextControl-input--multiple .a-TextControl-valueWrap{white-space:normal;margin-bottom:-.3125rem}.a-TextControl-input--multiple .a-TextControl-valueWrap>input{margin-bottom:.3125rem}.a-TextControl-input--multiple .a-TextControl-value{line-height:1.125rem;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-TextControl-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-TextControl-valueIcon:hover{background-color:#c2ecf9}.a-TextControl-input--multiple .a-TextControl-valueLabel{padding:0 .3125rem}.a-TextareaControl{border:1px solid #cfdadd;border-radius:.142rem;line-height:1.42857;background:#fff;padding:.375rem .75rem;font-size:.875rem;outline:0;resize:none;display:block;width:100%}.a-TextareaControl.is-error{border-color:#f05050}.a-TextareaControl:focus,.a-TextareaControl.is-focused{border-color:#23b7e5;box-shadow:none}.a-TextareaControl.is-disabled,.a-TextareaControl[disabled]{background:#e9ecef;color:#99a6ad}.a-Checkbox{margin:0 .625rem 0 0;font-weight:400;user-select:none;pointer-events:none}.a-Checkbox input{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);pointer-events:none}.a-Checkbox:hover input:not(:disabled)+i{border-color:#23b7e5}.a-Checkbox>i{cursor:pointer;line-height:1;background:#fff;display:inline-block;vertical-align:middle;position:relative;pointer-events:all}.a-Checkbox>i+span{pointer-events:all;margin-left:.625rem;cursor:pointer}.a-Checkbox>i+span>a{float:right;margin-left:.3125rem;display:none}.a-Checkbox>i+span:empty{display:none}.a-Checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;background-color:transparent;transition:all .2s;transform-origin:50% 50%;transform:translate(-50%,-50%)}.a-Checkbox:hover>i+span>a{display:inline-block}.a-Checkbox--checkbox{padding-left:1.25rem}.a-Checkbox--checkbox input{margin-left:-1.25rem}.a-Checkbox--checkbox input:checked+i{border-color:#23b7e5}.a-Checkbox--checkbox input:checked+i:before{width:.625rem;height:.625rem;background:#23b7e5}.a-Checkbox--checkbox input[disabled]+i{border-color:#dee6e8;cursor:not-allowed}.a-Checkbox--checkbox input[disabled]+i:before{background-color:#dee6e8;border-color:#fff}.a-Checkbox--checkbox input[disabled]+i+span{cursor:not-allowed;color:#99a6ad}.a-Checkbox--checkbox>i{width:1.25rem;height:1.25rem;border:.0625rem solid #cfdadd;border-radius:.142rem;margin-left:-1.25rem;margin-top:-.1875rem}.a-Checkbox--full.a-Checkbox--checkbox:not(:disabled)+i:hover{border-color:#cfdadd}.a-Checkbox--full.a-Checkbox--checkbox input:checked+i{border-color:#23b7e5;background:#23b7e5}.a-Checkbox--full.a-Checkbox--checkbox input:checked+i:before{width:.75rem;height:.375rem;border-color:#fff}.a-Checkbox--full.a-Checkbox--checkbox input:checked[disabled]+i{border-color:#dee6e8;background-color:#dee6e8}.a-Checkbox--full.a-Checkbox--checkbox>i{position:relative;cursor:pointer}.a-Checkbox--full.a-Checkbox--checkbox>i:before{content:'';position:absolute;left:50%;top:50%;width:0;height:0;border-color:transparent;transition:width .2s,height .2s,transform .2s;border-width:0 0 .125rem .125rem;transform:translate(-50%,-60%) rotate(-40deg);border-style:solid}.a-Checkbox--radio{padding-left:1.25rem}.a-Checkbox--radio input{margin-left:-1.25rem}.a-Checkbox--radio input:checked+i{border-color:#23b7e5}.a-Checkbox--radio input:checked+i:before{width:.625rem;height:.625rem;background-color:#23b7e5;border-radius:50%}.a-Checkbox--radio input[disabled]+i{border-color:#dee6e8;cursor:not-allowed}.a-Checkbox--radio input[disabled]+i:before{background-color:#dee6e8}.a-Checkbox--radio input[disabled]+i+span{cursor:not-allowed;color:#99a6ad}.a-Checkbox--radio>i{cursor:pointer;width:1.25rem;height:1.25rem;border:.0625rem solid #cfdadd;margin-left:-1.25rem;margin-top:-.125rem;border-radius:50%}.a-Checkbox--sm{padding-left:1rem}.a-Checkbox--sm input{margin-left:-1rem}.a-Checkbox--sm input:checked+i:before{width:.5rem;height:.5rem}.a-Checkbox--sm>i{width:1rem;height:1rem;margin-left:-1rem;margin-top:0}.a-Checkbox--sm>i+span{margin-left:.3125rem}.a-Checkbox--sm.a-Checkbox--full input[type=checkbox]:checked+i:before{width:.625rem;height:.3125rem}.a-Checkbox-desc{color:#99a6ad;margin-left:.625rem;margin-top:.3125rem;pointer-events:all}.a-CheckboxControl,.a-RadiosControl,.a-CheckboxesControl{padding-top:.4375rem}.a-RadiosControl .a-Checkbox,.a-CheckboxesControl .a-Checkbox{display:block;margin-bottom:.4375rem}.a-RadiosControl.is-inline .a-Checkbox,.a-CheckboxesControl.is-inline .a-Checkbox{display:inline-block;margin-right:1.25rem}.a-RadiosControl-group .a-RadiosControl-group,.a-RadiosControl-group .a-CheckboxesControl-group,.a-CheckboxesControl-group .a-RadiosControl-group,.a-CheckboxesControl-group .a-CheckboxesControl-group{padding-left:5rem}.a-RadiosControl-group .a-RadiosControl-group::before,.a-RadiosControl-group .a-RadiosControl-group::after,.a-RadiosControl-group .a-CheckboxesControl-group::before,.a-RadiosControl-group .a-CheckboxesControl-group::after,.a-CheckboxesControl-group .a-RadiosControl-group::before,.a-CheckboxesControl-group .a-RadiosControl-group::after,.a-CheckboxesControl-group .a-CheckboxesControl-group::before,.a-CheckboxesControl-group .a-CheckboxesControl-group::after{display:table;content:''}.a-RadiosControl-group .a-RadiosControl-group::after,.a-RadiosControl-group .a-CheckboxesControl-group::after,.a-CheckboxesControl-group .a-RadiosControl-group::after,.a-CheckboxesControl-group .a-CheckboxesControl-group::after{clear:both}.a-RadiosControl-group .a-RadiosControl-group>.a-RadiosControl-groupLabel,.a-RadiosControl-group .a-RadiosControl-group>.a-CheckboxesControl-groupLabel,.a-RadiosControl-group .a-CheckboxesControl-group>.a-RadiosControl-groupLabel,.a-RadiosControl-group .a-CheckboxesControl-group>.a-CheckboxesControl-groupLabel,.a-CheckboxesControl-group .a-RadiosControl-group>.a-RadiosControl-groupLabel,.a-CheckboxesControl-group .a-RadiosControl-group>.a-CheckboxesControl-groupLabel,.a-CheckboxesControl-group .a-CheckboxesControl-group>.a-RadiosControl-groupLabel,.a-CheckboxesControl-group .a-CheckboxesControl-group>.a-CheckboxesControl-groupLabel{float:left;width:5rem;margin-left:-5rem}.a-RadiosControl-groupLabel,.a-CheckboxesControl-groupLabel{display:block}.a-Checkboxes>.a-Checkbox{display:block;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem .4375rem 1.875rem}.a-Checkboxes--inline>.a-Checkbox{display:inline-block}.a-Checkboxes-addBtn{display:block;cursor:pointer}.a-Checkboxes-addBtn:hover{text-decoration:none}.a-Checkboxes-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.a-ListCheckboxes-group:not(:first-child)>.a-ListCheckboxes-itemLabel,.a-ListRadios-group:not(:first-child)>.a-ListCheckboxes-itemLabel,.a-ListCheckboxes-group:not(:first-child)>.a-ListRadios-itemLabel,.a-ListRadios-group:not(:first-child)>.a-ListRadios-itemLabel{border-top:.0625rem solid #e5e8eb}.a-ListCheckboxes-group>.a-ListCheckboxes-itemLabel,.a-ListRadios-group>.a-ListCheckboxes-itemLabel,.a-ListCheckboxes-group>.a-ListRadios-itemLabel,.a-ListRadios-group>.a-ListRadios-itemLabel{font-size:.75rem;padding:.3125rem;color:#99a6ad}.a-ListCheckboxes-item,.a-ListRadios-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-ListCheckboxes-item>.a-Checkbox,.a-ListRadios-item>.a-Checkbox{margin-right:0}.a-ListCheckboxes-item.is-active,.a-ListRadios-item.is-active{color:#23b7e5;background-color:transparent}.a-ListCheckboxes-item:hover,.a-ListRadios-item:hover{background-color:rgba(0,126,255,.08)}.a-ListCheckboxes-item.is-disabled,.a-ListRadios-item.is-disabled{pointer-events:none;color:#99a6ad}.a-ListCheckboxes-group>.a-ListCheckboxes-items>.a-ListCheckboxes-item,.a-ListRadios-group>.a-ListCheckboxes-items>.a-ListCheckboxes-item,.a-ListCheckboxes-group>.a-ListRadios-items>.a-ListCheckboxes-item,.a-ListRadios-group>.a-ListRadios-items>.a-ListCheckboxes-item,.a-ListCheckboxes-group>.a-ListCheckboxes-items>.a-ListRadios-item,.a-ListRadios-group>.a-ListCheckboxes-items>.a-ListRadios-item,.a-ListCheckboxes-group>.a-ListRadios-items>.a-ListRadios-item,.a-ListRadios-group>.a-ListRadios-items>.a-ListRadios-item{padding-left:.9375rem}.a-ListCheckboxes-itemLabel,.a-ListRadios-itemLabel{flex-grow:1}.a-ListCheckboxes-placeholder,.a-ListRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-TableCheckboxes .a-Table-content{border-top:.0625rem solid #dee2e6}.a-TableCheckboxes .a-Table-table>thead>tr>th,.a-TableCheckboxes .a-Table-table>tbody>tr>td{font-size:.75rem;padding-top:.3125rem;padding-bottom:.375rem;vertical-align:middle}.a-TableCheckboxes .a-Table-table>thead>tr>th{padding-top:.375rem}.a-TableCheckboxes .a-Table-table>thead>tr>th:first-child,.a-TableCheckboxes .a-Table-table>tbody>tr>td:first-child{padding-left:.625rem;padding-right:0}.a-TableCheckboxes .a-Table-table>thead>tr>th:last-child,.a-TableCheckboxes .a-Table-table>tbody>tr>td:last-child{padding-right:.9375rem}.a-TableCheckboxes .a-Table-table>tbody>tr{cursor:pointer}.a-TreeCheckboxes .a-Table-expandBtn,.a-TreeRadios .a-Table-expandBtn{color:#6c757d;margin-right:5px}.a-TreeCheckboxes-sublist,.a-TreeRadios-sublist{position:relative;margin:0 0 0 2.1875rem;display:none}.a-TreeCheckboxes-sublist:before,.a-TreeRadios-sublist:before{width:1px;content:'';display:block;position:absolute;top:-.3125rem;bottom:1.0625rem;left:-19px;border-left:dashed 1px #6c757d}.a-TreeCheckboxes-item,.a-TreeRadios-item{position:relative}.a-TreeCheckboxes-item.is-expanded>.a-TreeCheckboxes-sublist,.a-TreeRadios-item.is-expanded>.a-TreeCheckboxes-sublist,.a-TreeCheckboxes-item.is-expanded>.a-TreeRadios-sublist,.a-TreeRadios-item.is-expanded>.a-TreeRadios-sublist{display:block}.a-TreeCheckboxes-item:not(:last-child)>.a-TreeCheckboxes-sublist:before,.a-TreeRadios-item:not(:last-child)>.a-TreeCheckboxes-sublist:before,.a-TreeCheckboxes-item:not(:last-child)>.a-TreeRadios-sublist:before,.a-TreeRadios-item:not(:last-child)>.a-TreeRadios-sublist:before{bottom:0}.a-TreeCheckboxes-sublist .a-TreeCheckboxes-item:before,.a-TreeRadios-sublist .a-TreeCheckboxes-item:before,.a-TreeCheckboxes-sublist .a-TreeRadios-item:before,.a-TreeRadios-sublist .a-TreeRadios-item:before{height:1px;content:'';display:block;position:absolute;top:1.0625rem;width:19px;left:-19px;border-top:dashed 1px #6c757d}.a-TreeCheckboxes-itemInner,.a-TreeRadios-itemInner{display:flex;align-items:center;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-TreeCheckboxes-itemInner>.a-Checkbox,.a-TreeRadios-itemInner>.a-Checkbox{margin-right:0;margin-left:.625rem}.a-TreeCheckboxes-itemInner.is-active,.a-TreeRadios-itemInner.is-active{color:#23b7e5;background-color:transparent}.a-TreeCheckboxes-itemInner:hover,.a-TreeRadios-itemInner:hover{background-color:rgba(0,126,255,.08)}.a-TreeCheckboxes-itemInner.is-disabled,.a-TreeRadios-itemInner.is-disabled{pointer-events:none;color:#99a6ad}.a-TreeCheckboxes-itemLabel,.a-TreeRadios-itemLabel{flex-grow:1}.a-TreeCheckboxes-placeholder,.a-TreeRadios-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-ChainedCheckboxes{display:flex;flex-direction:row}.a-ChainedCheckboxes-col{flex-grow:1;min-width:150px}.a-ChainedCheckboxes-col:not(:last-child){border-right:1px solid #dee2e6}.a-ChainedCheckboxes-subTitle{font-size:.75rem;padding:.3125rem;color:#99a6ad}.a-ChainedCheckboxes-item{display:flex;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;flex-direction:row;cursor:pointer;user-select:none}.a-ChainedCheckboxes-item>.a-Checkbox{margin-right:0}.a-ChainedCheckboxes-item.is-active{color:#23b7e5;background-color:transparent}.a-ChainedCheckboxes-item:hover{background-color:rgba(0,126,255,.08)}.a-ChainedCheckboxes-item.is-disabled{pointer-events:none;color:#99a6ad}.a-ChainedCheckboxes-itemLabel{flex-grow:1}.a-ChainedCheckboxes-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-AssociatedCheckboxes{display:flex;flex-direction:row}.a-AssociatedCheckboxes-left,.a-AssociatedCheckboxes-right{flex-grow:1;width:0;overflow:auto}.a-AssociatedCheckboxes-left{border-right:1px solid #dee2e6}.a-AssociatedCheckboxes-reload{text-align:center;color:#23b7e5;margin:20px 0 0}.a-AssociatedCheckboxes-reload.is-clickable{cursor:pointer}.a-AssociatedCheckboxes-box{line-height:1.42857;font-size:.75rem;color:#99a6ad;flex-grow:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.a-AssociatedCheckboxes-box>p{text-align:center;margin:10px 0 20px;color:#99a6ad}.a-CityPicker .a-Select{margin-right:.3125rem;margin-bottom:.3125rem}.a-CityPicker-input{outline:0;vertical-align:top;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem}.a-CityPicker-input::placeholder{color:#99a6ad;user-select:none}.a-CityPicker-input:focus{border-color:#23b7e5;box-shadow:none}.a-Switch{cursor:pointer;position:relative;display:inline-block;width:3.125rem;height:1.375rem;overflow:hidden;border-radius:1.875rem;background-color:#23b7e5;margin:0;vertical-align:middle;text-align:left}.a-Switch.is-disabled{background-color:#ccc}.a-Switch i:before{content:'\5173';color:#fff;text-indent:1.5625rem;text-transform:uppercase;font-size:.75rem;line-height:1.375rem;font-style:normal;font-weight:700;position:absolute;top:-.0625rem;bottom:-.0625rem;left:-.0625rem;right:-.0625rem;background-color:#6c757d;border:.0625rem solid #545b62;border-radius:1.875rem;transition:all .2s}.a-Switch i:after{content:'';position:absolute;background-color:#fff;width:1.25rem;top:.0625rem;bottom:.0625rem;left:.0625rem;border-radius:50%;transition:margin-left .3s}.a-Switch input{position:absolute;opacity:0}.a-Switch input:disabled+i:before,.a-Switch input:disabled:checked+i:before{color:#fff;background-color:#ccc;cursor:not-allowed}.a-Switch input:disabled+i:after,.a-Switch input:disabled:checked+i:after{background-color:#fff;color:#fff}.a-Switch input:checked+i:before{left:100%;border-width:0}.a-Switch input:checked+i:after{margin-left:1.75rem;content:'\5f00';color:#fff;text-indent:-1.125rem;text-transform:uppercase;font-size:.75rem;font-weight:700;font-style:normal;line-height:1.375rem}.a-Switch-option{vertical-align:middle;margin-left:.625rem}.a-Switch-option:first-child{margin-left:0;margin-right:.625rem}.a-Switch-option:empty{display:none}.a-SwitchControl{padding-top:.375rem}.a-SwitchControl.is-inline{display:inline-block}.a-Number{margin:0;padding:0;line-height:2.125rem;font-size:.875rem;height:2.125rem;display:inline-block;vertical-align:middle;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem}.a-Number-focused{border-color:#23b7e5;box-shadow:none}.a-Number-handler{text-align:center;overflow:hidden;display:block;touch-action:none}.a-Number-handler-active{background:#ddd}.a-Number-handler-up-inner,.a-Number-handler-down-inner{user-select:none;-webkit-user-select:none;display:inline-block}.a-Number:hover{border-color:#23b7e5}.a-Number:hover .a-Number-handler-up,.a-Number:hover .a-Number-handler-wrap{border-color:#23b7e5}.a-Number-disabled:hover{border-color:#cfdadd}.a-Number-disabled:hover .a-Number-handler-up,.a-Number-disabled:hover .a-Number-handler-wrap{border-color:#cfdadd}.a-Number-input-wrap{overflow:hidden;height:100%}.a-Number-input{width:100%;background-color:transparent;text-align:left;vertical-align:top;outline:0;-moz-appearance:textfield;line-height:2rem;height:100%;transition:all .3s ease;border:0;border-radius:.142rem;padding:0 .75rem}.a-Number-handler{background-color:#fff;color:#58666e;font-family:inherit;font-size:.875rem}.a-Number-handler:hover{background-color:#f2f2f2;color:#58666e}.a-Number-handler:hover:active{background-color:#f2f2f2}.a-Number-handler-up-inner{transform:none}.a-Number-handler-up-inner:after{content:"+"}.a-Number-handler-down-inner:after{content:"-"}.a-Number-handler-wrap{float:right;border-left:.0625rem solid #cfdadd;width:1.25rem;height:100%}.a-Number-handler{line-height:.875rem;height:1rem}.a-Number-handler-up{border-bottom:.0625rem solid #cfdadd;padding-top:.0625rem}.a-Number-handler-down-disabled,.a-Number-handler-up-disabled{background-color:#e9ecef;pointer-events:none;color:#99a6ad}.a-Number-disabled .a-Number-input{opacity:.72;cursor:not-allowed;background-color:#fff}.a-Number-disabled .a-Number-handler{opacity:.72}.a-Number-disabled .a-Number-handler:hover{color:#99a6ad;border-color:#cfdadd}.a-NumberControl:not(.is-inline)>.a-Number{display:block}.a-Select{display:inline-flex;vertical-align:middle;text-align:left;outline:0;position:relative;font-size:.875rem;border:.0625rem solid #cfdadd;background:#fff;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#58666e}.a-Select:hover{background:#f2f2f2;border-color:#cfdadd}.a-Select:hover .a-Select-arrow:before{color:#212529}.a-Select.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-Select-valueWrap{user-select:none;position:relative;flex-grow:1;line-height:1;max-width:100%}.a-Select-placeholder{color:#99a6ad;line-height:1.42857;user-select:none;white-space:nowrap}.a-Select-value{line-height:1.25rem;max-width:100%;overflow:hidden;text-overflow:ellipsis}.a-Select--multi{height:auto;min-height:2.125rem}.a-Select--multi .a-Select-valueWrap{margin-bottom:-.3125rem}.a-Select--multi .a-Select-valueWrap>input{display:inline-block;width:6.25rem;margin-bottom:.3125rem}.a-Select--multi .a-Select-values+.a-Select-input{transform:translateY(0)}.a-Select--multi .a-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-Select--multi .a-Select-valueLabel{padding:0 .3125rem}.a-Select-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Select-valueIcon:hover{background-color:#c2ecf9}.a-Select-valueIcon.is-disabled{pointer-events:none;display:none;cursor:not-allowed;background-color:#f0fafd;background:#f0fafd}.a-Select-arrow{margin-right:.3125rem;width:1.25rem;text-align:center;display:flex;align-items:center;justify-content:center;line-height:1}.a-Select-arrow>svg{transition:transform .3s;display:inline-block;color:#6c757d;width:10px;height:10px;top:0}.a-Select.is-opened .a-Select-arrow>svg{transform:rotate(180deg)}.a-Select-menu{max-height:18.75rem;overflow:auto;user-select:none}.a-Select-input{cursor:pointer;outline:0;border:0;margin:0 .75rem;height:2.125rem;font-size:.75rem;border-bottom:1px solid #dee2e6;display:flex;align-items:center}.a-Select-input>svg{fill:#999;width:.875rem;min-width:.875rem;height:.875rem;margin-right:.3125rem}.a-Select-input>input{outline:0;border:0;flex-grow:1;background:transparent;position:relative;top:.125em}.a-Select-option{cursor:pointer;min-width:7.5rem;padding:.4375rem .75rem}.a-Select-option.is-active{color:#23b7e5;background-color:transparent}.a-Select-option.is-highlight{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-Select-option.is-disabled{color:#99a6ad;background-color:transparent}.a-Select-option--placeholder{color:#99a6ad}.a-Select-option>label{display:block}.a-Select-option>a{float:right;margin-left:.3125rem;display:none}.a-Select-option.is-highlight>a{display:block}.a-Select-noResult{color:#99a6ad;line-height:1.42857;font-size:.75rem;user-select:none;padding:.4375rem .75rem}.a-Select-option-hl{color:#dc3545}.a-Select-addBtn{display:block;cursor:pointer;padding:.4375rem .75rem}.a-Select-addBtn:hover{text-decoration:none}.a-Select-addBtn>svg{width:.875rem;height:.875rem;margin-right:.625rem}.a-Select.is-focused,.a-Select.is-opened{border-color:#23b7e5}.a-Select-spinner{line-height:1.25rem}.a-Select-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.a-Select-clear svg{fill:#6c757d;width:.625rem;height:.625rem;top:0}.a-Select-clear:hover svg{fill:#3d4246}.a-Select-popover{margin-top:-.0625rem;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;box-shadow:none;border-top-left-radius:0;border-top-right-radius:0;min-width:6.25rem}.a-Select-popover.a-PopOver--leftTopLeftBottom{margin-top:.0625rem}.a-SelectControl:not(.is-inline)>.a-Select{display:flex}@media (min-width:576px){.a-Form-control--sizeXs>.a-Select,.a-Form-control--sizeSm>.a-Select,.a-Form-control--sizeMd>.a-Select,.a-Form-control--sizeLg>.a-Select{min-width:100%;max-width:100%;display:inline-flex!important}.a-Form-control--sizeXs>.a-Select .a-Select-valueWrap,.a-Form-control--sizeSm>.a-Select .a-Select-valueWrap,.a-Form-control--sizeMd>.a-Select .a-Select-valueWrap,.a-Form-control--sizeLg>.a-Select .a-Select-valueWrap{width:0}}.a-Selections{height:100%;min-width:12.5rem;position:relative;display:flex;flex-direction:column}.a-Selections-title{height:2.125rem;background:#f6f8f8;font-size:.875rem;padding:.4375rem .625rem}.a-Selections-placeholder{color:#99a6ad;text-align:center;width:100%;flex-basis:2.125rem;flex-grow:1;display:flex;flex-direction:column;justify-content:center;font-size:.875rem}.a-Selections-items{flex-grow:1}.a-Selections-item{display:flex;flex-direction:row;height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem}.a-Selections-item>label{flex-basis:3.125rem;flex-grow:1}.a-Selections-item>.a-Selections-dragbar{width:1.25rem;position:relative;left:-.3125rem;color:#6c757d;cursor:move}.a-Selections-item--dragging>*{opacity:.2}.a-Selections-delBtn{color:#6c757d;cursor:pointer}.a-Selections-delBtn:hover{color:#212529}.a-Selections-delBtn>svg{width:12px;height:12px}.a-ListControl-items{display:block;margin:-.3125rem}.a-ListControl-items:empty{display:none}.a-ListControl-item{position:relative;user-select:none;font-size:.875rem;display:inline-block;vertical-align:middle;margin:.3125rem;border:.0625rem solid #dee2e6;background-color:#fff;padding:.375rem .75rem;color:#58666e;transition:none;max-width:14rem}.a-ListControl-item:not(.is-disabled){cursor:pointer}.a-ListControl-item .b-inherit{border-color:#58666e}.a-ListControl-item:hover{background-color:#ececec;border-color:#c1c9d0;color:#58666e}.a-ListControl-item:hover .b-inherit{border-color:#c1c9d0}.a-ListControl-item:hover:active,.a-ListControl-item.is-active{background-color:#7266ba;border-color:#564aa3;color:#fff}.a-ListControl-item:hover:active .b-inherit,.a-ListControl-item.is-active .b-inherit{border-color:#fff}.a-ListControl-item:hover:active:before,.a-ListControl-item.is-active:before{content:'';position:absolute;width:.875rem;height:.875rem;background-color:#fff;right:0;bottom:0}.a-ListControl-item:hover:active:after,.a-ListControl-item.is-active:after{content:'';position:absolute;width:.625rem;height:.3125rem;border-color:#7266ba;border-style:solid;border-width:0 0 .125rem .125rem;right:.0625rem;bottom:.3125rem;transform:rotate(-40deg)}.a-ListControl-item.is-disabled{pointer-events:none;opacity:.6;border-color:#edeff1;background-color:#fff;color:#58666e}.a-ListControl-item.is-disabled:before{background-color:#58666e}.a-ListControl-item.is-disabled .b-inherit{border-color:#edeff1}.a-ListControl-itemImage{margin:-.375rem -.75rem}.a-ListControl-itemImage img{display:block;max-width:100%}.a-ListControl-itemLabel{text-align:center}.a-ListControl-itemImage+.a-ListControl-itemLabel{margin-top:.375rem}.a-ListControl-placeholder{color:#99a6ad}.a-LocationPicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#58666e;background-color:#fff;border-radius:.142rem}.a-LocationPicker:not(.is-disabled){cursor:pointer}.a-LocationPicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-LocationPicker:not(.is-disabled):hover .a-DatePicker-toggler:before{color:#212529}.a-LocationPicker.is-focused,.a-LocationPicker.is-active{border-color:#23b7e5;box-shadow:none}.a-LocationPicker.is-disabled{background:#e9ecef}>.a-LocationPicker.is-disabled-input{color:#99a6ad}.a-LocationPicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-LocationPicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-LocationPicker-toggler{cursor:pointer;color:#6c757d}.a-LocationPicker-toggler:hover{color:#212529}.a-LocationPicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-LocationPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-LocationPicker-clear:hover svg{fill:#3d4246}.a-LocationControl{position:relative;width:100%}.a-LocationControl:not(.is-inline)>.a-LocationPicker{display:flex}.a-LocationPicker-popover{min-width:320px;width:100%;max-width:100%;margin-top:-1px;border-color:#23b7e5}.a-MapPicker-search{padding:5px 10px}.a-MapPicker-map{display:block;width:100%;height:200px}.a-MapPicker-item{padding:10px;position:relative;border-top:1px solid #dee2e6}.a-MapPicker-item>svg{position:absolute;right:20px;top:50%;transform:translateY(-50%)}.a-MapPicker-itemTitle{font-size:.875rem}.a-MapPicker-itemDesc{font-size:.75rem}.a-MapPicker-sugItem{cursor:pointer;padding:.4375rem .75rem}.a-MapPicker-sugItem:hover{color:#23b7e5;background-color:transparent}.tangram-suggestion-main{display:none!important}.a-MatrixControl-error{margin-bottom:0}.a-ColorPicker{position:relative;display:inline-flex;flex-wrap:nowrap;white-space:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;background-color:#fff;color:#58666e}.a-ColorPicker:not(.is-disabled){cursor:pointer}.a-ColorPicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#dee2e6}.a-ColorPicker-input{border:0;background:transparent;outline:0;width:100%;flex-basis:0;flex-grow:1;padding:0;margin:0;height:1.25rem}.a-ColorPicker-input::placeholder{color:#99a6ad}.a-ColorPicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-ColorPicker.is-disabled{background:#e9ecef;color:#99a6ad;pointer-events:none}.a-ColorPicker.is-disabled>.a-ColorPicker-input{color:#99a6ad}.a-ColorPicker.is-disabled>.a-ColorPicker-input::placeholder{color:#99a6ad}.a-ColorPicker-preview{display:flex;align-items:center;margin-left:.3125rem;cursor:pointer}.a-ColorPicker-previewIcon{display:block;width:1rem;height:1rem;box-shadow:0 .125rem .25rem rgba(28,43,54,.075)}.a-ColorPicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1}.a-ColorPicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-ColorPicker-clear:hover svg{fill:#3d4246}.a-ColorControl:not(.is-inline)>.a-ColorPicker{display:flex}.sketch-picker{box-shadow:none!important;border-radius:0!important;border:0!important}.a-DatePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;white-space:nowrap;color:#58666e;background-color:#fff;border-radius:.142rem}.a-DatePicker:not(.is-disabled){cursor:pointer}.a-DatePicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-DatePicker:not(.is-disabled):hover .a-DatePicker-toggler:before{color:#212529}.a-DatePicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-DatePicker.is-disabled{background:#e9ecef}>.a-DatePicker.is-disabled-input{color:#99a6ad}.a-DatePicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;min-width:3.125rem;flex-basis:0;flex-grow:1}.a-DatePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DatePicker-toggler{cursor:pointer;color:#6c757d}.a-DatePicker-toggler:hover{color:#212529}.a-DatePicker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-DatePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-DatePicker-clear:hover svg{fill:#3d4246}.a-DateControl:not(.is-inline)>.a-DatePicker{display:flex}.a-DatePicker-shortcuts{margin:0;background:transparent;padding:.28125rem .625rem;list-style:none;width:15.625rem}.a-DatePicker-shortcuts+.rdt .rdtPicker{padding-top:0}.a-DatePicker-shortcut{display:inline-block;margin-right:.625rem}.a-DatePicker-shortcut a{font-size:.875rem;cursor:pointer;color:#23b7e5;text-decoration:none}.a-DatePicker-shortcut a:hover{color:#1485a8;text-decoration:none}.a-DatePicker-popover{margin:.125rem 0 0}.a-DatePicker-popover.a-PopOver--leftTopLeftBottom,.a-DatePicker-popover.a-PopOver--rightTopRightBottom{margin:-.125rem 0 0}.rdt{user-select:none;font-size:.875rem;color:#58666e}.rdt .rdtPicker{margin-top:0;padding:.625rem;background:transparent;border:0}.rdt .rdtPicker .dow{color:#999;font-weight:400}.rdt .rdtPicker td.rdtDay,.rdt .rdtPicker td.rdtHour,.rdt .rdtPicker td.rdtMinute,.rdt .rdtPicker td.rdtSecond,.rdt .rdtPicker .rdtTimeToggle{background-color:#fff}.rdt .rdtPicker td.rdtDay:hover,.rdt .rdtPicker td.rdtHour:hover,.rdt .rdtPicker td.rdtMinute:hover,.rdt .rdtPicker td.rdtSecond:hover,.rdt .rdtPicker .rdtTimeToggle:hover{background-color:#ededed}.rdt .rdtPicker td.rdtBetween{background:rgba(35,183,229,.1)}.rdt .rdtPicker td.rdtToday:before{border-bottom-color:#23b7e5}.rdt .rdtPicker td.rdtActive.rdtToday:before{border-bottom-color:#fff}.rdt .rdtPicker td.rdtActive,.rdt .rdtPicker td.rdtActive:hover{background:#23b7e5}.rdt .rdtPicker td.rdtDisabled,.rdt .rdtPicker td.rdtDisabled:hover{background-color:#edf1f2}.rdt thead tr:first-child th{cursor:default;font-weight:400;border-bottom:0}.rdt thead tr:first-child th:hover{background:transparent}.rdt tfoot{border-top:0}.rdt tfoot td{padding-top:.3125rem;text-align:left}.rdt tfoot td span{width:10px;display:inline-block;text-align:center}.rdt tfoot td input{outline:0;width:42px;font-size:.875rem;color:#23b7e5;border:1px solid #dee2e6;border-radius:.142rem;height:1.875rem;line-height:1.5;padding:.28125rem .625rem;box-shadow:none}.rdt tfoot td input:focus{border-color:#23b7e5;box-shadow:none}.rdt tfoot td .rdtActions{margin-top:.625rem;text-align:right}.rdt .rdtCounter .rdtBtn{height:30%;line-height:1.25rem}.rdt .rdtCounter .rdtCount{height:40%;display:flex;align-items:center;justify-content:center}.rdtBtn{line-height:1.5;padding:.375rem .625rem;display:inline-block;vertical-align:middle;text-align:center;user-select:none;cursor:pointer;text-decoration:none;font-size:.75rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075);border-radius:.142rem}.rdtBtn:hover{text-decoration:none}.rdtBtn.is-disabled{opacity:.6;pointer-events:none}.rdtBtn .fa,.rdtBtn .iconfont{font-size:.75rem}.rdtBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.rdtBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtn.is-disabled,.rdtBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.rdtBtn:not(:disabled):not(.is-disabled):active,.rdtBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.rdtBtn+.rdtBtn{margin-left:.3125rem}.rdtBtnCancel{color:#58666e;background-color:#edf1f2;border-color:#edf1f2;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel:hover{color:#58666e;background-color:#d7e0e2;border-color:#cfdadd}.rdtBtnCancel:focus{color:#58666e;background-color:#edf1f2;border-color:#edf1f2;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel:hover:focus{color:#58666e;background-color:#d7e0e2;border-color:#cfdadd;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.rdtBtnCancel.is-disabled,.rdtBtnCancel:disabled{background-color:#edf1f2;color:#58666e;border-color:#dee2e6}.rdtBtnCancel:not(:disabled):not(.is-disabled):active,.rdtBtnCancel:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#cfdadd;border-color:#c8d4d7}.rdtBtnPrev:before,.rdtBtnNext:before{display:inline-block;color:inherit;font-style:normal;line-height:1}.rdtPrev,.rdtNext{cursor:pointer!important;width:1.25rem;padding:0;color:#999;font-size:1.25rem;text-decoration:none;font-family:auto;font-weight:400}.rdtPrev:hover,.rdtNext:hover{text-decoration:none;color:#000}.rdtSwitch{text-align:center;color:#000;cursor:pointer;font-weight:400}.rdtSwitch:hover{color:#1485a8;text-decoration:none}.rdtHeader{display:table;table-layout:fixed;border-collapse:separate;width:100%}.rdtHeader>*{display:table-cell;vertical-align:middle;text-align:center}.rdtHeader .rdtSwitch+.rdtSwitch{margin-left:.3125rem}td.rdtMonth,td.rdtYear{width:3.125rem;height:2.5rem}td.rdtMonth>span,td.rdtYear>span{height:1.5rem;display:block}td.rdtMonth:hover,td.rdtMonth.rdtActive,td.rdtYear:hover,td.rdtYear.rdtActive{background:transparent!important}td.rdtMonth:hover>span,td.rdtMonth.rdtActive>span,td.rdtYear:hover>span,td.rdtYear.rdtActive>span{background:#23b7e5;color:#fff}td.rdtMonth.rdtDisabled,td.rdtYear.rdtDisabled{background:transparent!important}td.rdtMonth.rdtDisabled>span,td.rdtYear.rdtDisabled>span{background:#edf1f2;color:#999}.a-DateRangePicker{position:relative;display:inline-flex;flex-wrap:nowrap;border:.0625rem solid #cfdadd;font-size:.875rem;padding:.375rem .75rem;height:2.125rem;outline:0;border-radius:.142rem;color:#58666e;background-color:#fff}.a-DateRangePicker:not(.is-disabled){cursor:pointer}.a-DateRangePicker:not(.is-disabled):hover{background-color:#f2f2f2;border-color:#cfdadd}.a-DateRangePicker:not(.is-disabled):hover .a-DateRangePicker-toggler{color:#212529}.a-DateRangePicker.is-focused{border-color:#23b7e5;box-shadow:none}.a-DateRangePicker.is-disabled{background:#e9ecef}>.a-DateRangePicker.is-disabled-input{color:#99a6ad}.a-DateRangePicker-placeholder{color:#99a6ad;user-select:none;margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DateRangePicker-value{margin-right:.9375rem;flex-basis:0;flex-grow:1}.a-DateRangePicker-toggler{cursor:pointer;color:#6c757d}.a-DateRangePicker-toggler:hover{color:#212529}.a-DateRangePicker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;display:inline-block;line-height:1;margin-right:.3125rem}.a-DateRangePicker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-DateRangePicker-clear:hover svg{fill:#3d4246}.a-DateRangePicker-wrap{width:auto;padding:.625rem}.a-DateRangePicker-start,.a-DateRangePicker-end{display:inline-block;vertical-align:top}.a-DateRangePicker-start .rdtPicker,.a-DateRangePicker-end .rdtPicker{padding:0;box-shadow:none;border:0}.a-DateRangePicker-end{margin-top:20px}.a-DateRangePicker-rangers{margin:0 0 .625rem;padding:0;list-style:none}.a-DateRangePicker-ranger{display:inline-block;margin-right:.625rem}.a-DateRangePicker-ranger a{cursor:pointer}.a-DateRangePicker-actions{text-align:right;margin-top:.625rem}.a-DateRangeControl:not(.is-inline)>.a-DateRangePicker{display:flex}.a-DateRangePicker-popover{margin:.125rem 0 0}.a-DateRangePicker-popover.a-PopOver--leftTopLeftBottom,.a-DateRangePicker-popover.a-PopOver--rightTopRightBottom{margin:-.125rem 0 0}@media (min-width:576px){.a-DateRangePicker-wrap{white-space:nowrap}.a-DateRangePicker-end{margin-top:0;margin-left:.625rem}}.a-ImageControl{position:relative}.a-ImageControl-dropzone{outline:0}.a-ImageControl-addBtn{margin:0;width:7.5rem;height:7.5rem;display:inline-flex;justify-content:center;align-items:center;border:.0625rem solid #dee2e6;cursor:pointer;margin-right:.9375rem;color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-ImageControl-addBtn:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-ImageControl-addBtn.is-disabled,.a-ImageControl-addBtn:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-ImageControl-addBtn:not(:disabled):not(.is-disabled):active,.a-ImageControl-addBtn:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-ImageControl-addBtn>svg{width:3.125rem;height:3.125rem;top:0}.a-ImageControl-addBtn.is-disabled{pointer-events:none;border:.0625rem solid #cfdadd;background:#e9ecef;color:#99a6ad}.a-ImageControl-pasteTip{pointer-events:none;left:0;top:50%;transform:translateY(-50%);position:absolute;font-size:.75rem;line-height:1.5;text-align:left;white-space:nowrap;background:rgba(0,0,0,.7);border:0 solid #dee2e6;border-radius:.142rem;box-shadow:0 .5rem 1rem rgba(28,43,54,.15);left:100%;color:#fff;padding:.125rem .625rem;margin:30px 0 0 .625rem}.a-ImageControl-dropzone:focus .a-ImageControl-addBtn{border-color:#c1c9d0;background:#ececec;color:#58666e}.a-ImageControl-item{border:.0625rem solid #dee2e6;vertical-align:top;padding:.3125rem;display:inline-block;margin-right:.9375rem;margin-bottom:.9375rem;position:relative;width:7.5rem}.a-ImageControl-image{width:100%;height:100%;padding:0;border:0;display:block}.a-ImageControl-itemOverlay{background:rgba(0,0,0,.6);position:absolute;width:6.75rem;height:6.75rem;display:none;top:.3125rem;left:.3125rem;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#fff}.a-ImageControl-itemOverlay>div{width:100%;text-align:center;margin-bottom:5px}.a-ImageControl-itemOverlay>a{cursor:pointer;color:#fff;display:inline-block;padding:0 5px;line-height:1;font-size:1rem}.a-ImageControl-item:hover .a-ImageControl-itemOverlay{display:flex}.a-ImageControl-itemClear{position:absolute;cursor:pointer;color:#999;top:5px;right:5px;line-height:1}.a-ImageControl-itemClear>svg{top:0;width:10px;height:10px}.a-ImageControl-itemInfo{display:inline-flex;width:110px;height:110px;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap}.a-ImageControl-itemInfo>p{width:100%;text-align:center;font-size:12px;margin-bottom:5px}.a-ImageControl-progress{width:70px;height:5px;background:#ebebeb}.a-ImageControl-progressValue{height:5px;display:block;background:#23b7e5;min-width:10%;transition:ease-out width .3s}.a-ImageControl-item.is-invalid .a-ImageControl-itemClear{display:none}.a-ImageControl-item.is-invalid:hover .a-ImageControl-itemClear{display:block}.a-ImageControl-retryBtn{margin:0;width:6.75rem;height:6.75rem;display:inline-flex;cursor:pointer;justify-content:center;align-items:center;align-content:center;flex-wrap:wrap;color:#666}.a-ImageControl-retryBtn:hover{color:#333;text-decoration:none}.a-ImageControl-retryBtn>p{width:100%;text-align:center;color:#f05050;margin:10px 0 0}.a-ImageControl-errorMsg{color:#f05050;margin:5px 0 0}.a-ImageControl-uploadBtn{margin-top:5px}.a-ImageControl-cropperWrapper{position:relative}.a-ImageControl-cropperWrapper img{max-width:100%;max-height:400px}.a-ImageControl-croperToolbar{display:inline-flex;width:50px;position:absolute;right:0;bottom:0;flex-direction:column;align-items:flex-end}.a-ImageControl-croperToolbar>a{color:#fff;padding:2px 5px;cursor:pointer;font-size:20px}.a-ImageControl-acceptTip{height:120px;color:#999;border:2px dashed #dee2e6;border-color:#23b7e5;background:#f3f9fe;border-radius:.142rem;line-height:120px;text-align:center}.a-FileControl-dropzone{outline:0}.a-FileControl-selectBtn{width:7.5rem}.a-FileControl-selectBtn>svg{margin-right:10px;width:pxrem(16px);height:pxrem(16px)}.a-FileControl-description{margin-left:10px;color:#999;font-size:12px}.a-FileControl-list{list-style:none;margin:10px 0;padding:0;width:250px}.a-FileControl-list>li{color:#333;font-size:12px}.a-FileControl-list>li:hover{color:#108cee;background:#f3f3f3}.a-FileControl-itemInfo{padding:0 6px;line-height:26px;height:26px}.a-FileControl-itemInfo.is-invalid{color:#999}.a-FileControl-itemInfo>svg:first-child{margin-right:10px}.a-FileControl-itemInfo>svg:not(:first-child){margin-left:10px;width:1rem;height:1rem;top:.3125rem}.a-FileControl-itemInfoText{white-space:nowrap;max-width:170px;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:middle}.a-FileControl-clear{float:right;color:#999;display:none;cursor:pointer}.a-FileControl-clear:hover{color:#333}.a-FileControl-list:empty{display:none}.a-FileControl-list>li:hover .a-FileControl-clear{display:block}.a-FileControl-progressInfo{display:inline-flex;height:20px;padding:0 6px;transform:translateY(-3px);width:100%;align-items:center;white-space:nowrap;text-overflow:ellipsis}.a-FileControl-progressInfo>span{display:inline-block;padding:0 4px 0 10px;font-size:12px}.a-FileControl-progressInfo>svg{display:inline-block;margin:0 4px 0 10px;width:14px;height:14px;top:0}.a-FileControl-progress{height:5px;flex:1;background:#ebebeb}.a-FileControl-progress>span{display:block;background:#23b7e5;height:100%;min-width:10%;transition:ease-out width .3s}.a-FileControl-acceptTip{height:120px;color:#999;border:2px dashed #23b7e5;border-radius:.142rem;background:#f3f9fe;line-height:120px;text-align:center}.a-FileControl-sum{font-size:.75rem}.a-FileControl-sum>a{cursor:pointer}.a-EditorControl{min-height:12.5rem;max-height:25rem;overflow:visible;height:auto;border:.0625rem solid #cfdadd;max-width:100%;box-sizing:content-box}.a-EditorControl>.a-MonacoEditor,.a-EditorControl>.a-MonacoEditor>.monaco-diff-editor{min-height:12.375rem}.a-EditorControl.is-error{border-color:#f05050}.a-EditorControl.is-focused{border-color:#23b7e5}.a-EditorControl--sm{min-height:100px}.a-EditorControl--sm>.a-MonacoEditor{min-height:100px}.a-EditorControl--md{min-height:250px}.a-EditorControl--md>.a-MonacoEditor{min-height:250px}.a-EditorControl--lg{min-height:300px}.a-EditorControl--lg>.a-MonacoEditor{min-height:300px}.a-EditorControl--xl{min-height:400px}.a-EditorControl--xl>.a-MonacoEditor{min-height:400px}.a-EditorControl--xxl{min-height:500px}.a-EditorControl--xxl>.a-MonacoEditor{min-height:500px}.monaco-inputbox>.wrapper{padding:0}.fr-popup{z-index:1400!important}.a-RichTextControl{min-height:12.5rem;height:auto;border:.0625rem solid #cfdadd;width:100%}.a-RichTextControl>.tox-tinymce{border:0}.a-RichTextControl>textarea{width:100%}.a-RichTextControl .fr-toolbar.fr-top{box-shadow:none;border:0;position:relative}.a-RichTextControl .fr-box.fr-basic.fr-top:not(.fr-fullscreen) .fr-wrapper{min-height:150px;max-height:400px;box-shadow:none;overflow:auto;border-top:1px solid #cfdadd}.a-RichTextControl .fr-toolbar .fr-command.fr-btn,.a-RichTextControl .fr-popup .fr-command.fr-btn{color:#58666e}.a-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-active,.a-RichTextControl .fr-popup .fr-command.fr-btn.fr-active{color:#23b7e5;background-color:#f2f2f2}.a-RichTextControl .fr-desktop .fr-command:hover,.a-RichTextControl .fr-desktop .fr-command:focus{background-color:#f2f2f2}.a-RichTextControl .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.a-RichTextControl .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active{background-color:#f2f2f2}.a-RichTextControl .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background-color:#23b7e5;color:#fff}.a-RichTextControl.is-focused{border:.0625rem solid #23b7e5}.a-RichTextControl.is-focused .fr-box.fr-basic.fr-top .fr-wrapper{border-top:.0625rem solid #23b7e5}.a-RichTextControl .fr-box.fr-basic .fr-element{min-height:150px}.a-RichTextControl .fr-sticky-dummy{position:absolute}.a-RichTextControl.is-disabled{border-color:#cfdadd;pointer-events:none;opacity:.6}.a-RichTextControl.is-disabled .fr-box.fr-basic.fr-top .fr-wrapper{border-color:#cfdadd}.a-RangeControl{position:relative;padding-top:1rem;padding-bottom:1.1rem}.a-RangeControl::before,.a-RangeControl::after{display:table;content:''}.a-RangeControl::after{clear:both}.a-RangeControl--withInput .a-InputRange{width:calc(100% - 120px)}.a-RangeControl--withInput .a-InputRange-label--mid{left:calc(50% - 60px)}.a-RangeControl--withInput.is-multiple .a-InputRange{width:calc(100% - 210px)}.a-RangeControl .a-InputRange-input{font-size:.75rem;position:absolute;right:1.625rem;top:.75rem;height:1.875rem}.a-RangeControl .a-InputRange-input input{padding:.625rem;width:4.625rem;height:100%}.a-RangeControl .a-InputRange-input input:focus{outline:0;border:.0625rem solid #23b7e5}.a-RangeControl .a-InputRange-input-separator{display:inline-block;padding:0 5px}.a-RangeControl .a-InputRange-unit{position:absolute;right:.625rem;top:.4375rem}.a-RangeControl .a-InputRange-clear{position:absolute;top:1.125rem;right:0;cursor:pointer}.a-RangeControl .a-InputRange-clear svg{height:1rem;width:1rem;fill:#999}.a-InputRange{height:1.5rem;position:relative;width:100%}.a-InputRange-slider{appearance:none;background:#23b7e5;border:.0625rem solid #23b7e5;cursor:pointer;display:block;width:1.125rem;height:1.5rem;margin-left:-.5625rem;margin-top:-1.125rem;outline:0;position:absolute;z-index:2;top:50%;transition:transform .3s ease-out,box-shadow .3s ease-out}.a-InputRange-slider:active{transform:scale(1.3)}.a-InputRange-slider:focus{box-shadow:0 0 0 .285rem rgba(35,183,229,.2)}.input-range--disabled .a-InputRange-slider{background:#ccc;border:.0625rem solid #ccc;box-shadow:none;transform:none}.a-InputRange-slider:before{content:'||';color:#fff;display:block;line-height:1.375rem;text-align:center}.a-InputRange-sliderContainer{transition:left .3s ease-out}.a-InputRange-label{color:#aaa;font-family:-apple-system,BlinkMacSystemFont,"SF Pro SC","SF Pro Text","Helvetica Neue",Helvetica,"PingFang SC","Segoe UI",Roboto,"Hiragino Sans GB",Arial,"microsoft yahei ui","Microsoft YaHei",SimSun,sans-serif;font-size:.8rem;transform:translateZ(0);white-space:nowrap}.a-InputRange-label--min,.a-InputRange-label--max,.a-InputRange-label--mid{bottom:-1.4rem;position:absolute}.a-InputRange-label--mid{left:50%;bottom:-.3125rem}.a-InputRange-label--max{right:0}.a-InputRange-label--value{position:absolute;display:block;top:-2.5rem}.a-InputRange-track{background:#eee;cursor:pointer;display:block;height:.75rem;position:relative;transition:left .3s ease-out,width .3s ease-out}.a-InputRange.is-disabled .a-InputRange-track{background:#eee}.a-InputRange-track.is-active{background:#23b7e5}.a-InputRange-track--background{left:.5rem;margin-top:-.375rem;position:absolute;right:.5rem;top:50%}.a-InputRange-track--background::before,.a-InputRange-track--background::after{content:'';width:.5rem;height:100%;position:absolute;top:0;background:inherit;z-index:1}.a-InputRange-track--background::before{left:-.5rem}.a-InputRange-track--background::after{right:-.5rem}.a-InputRange-track--active{background:#23b7e5}.a-RepeatControl .repeat-btn{width:5rem}.a-RepeatControl .Select{display:inline-block;min-width:100px}.a-RepeatControl .input-range{margin-top:0}@media (min-width:768px){.repeat-control.form-contorl-inline,.form-group-inline .repeat-control{display:inline-block;min-width:280px;width:auto}}.a-TreeControl{border:1px solid #cfdadd;padding:6px 12px;border-radius:2px;max-height:300px;overflow:auto}.a-TreeControl.h-full{max-height:none;overflow:visible}.a-TreeControl.no-border{border:0}.a-Tree-list,.a-Tree-sublist{list-style:none;padding:0;margin:0}.a-Tree-sublist.is-folded{display:none}.a-Tree-item{line-height:1.875rem;position:relative}.a-Tree-item>div:hover{text-decoration:none}.a-Tree-item>div:hover>.a-Tree-item-icons{visibility:visible}.a-Tree-item>div>span>svg{display:inline-block;cursor:pointer;position:relative;top:2px;width:1rem;height:1rem;margin-left:.3125rem}.a-Tree-rootItem{line-height:1.875rem}.a-Tree-item>div:hover>.a-Tree-item-icons,.a-Tree-rootItem>div:hover>.a-Tree-item-icons{visibility:visible}.a-Tree-itemLabel{display:flex;align-items:center}.a-Tree-itemLabel:hover{background:rgba(0,126,255,.08)}.a-Tree-item-icons{visibility:hidden;transition:visibility .1s ease;display:inline-block;vertical-align:top;height:1.875rem;line-height:1.875rem;padding-right:.3125rem}.a-Tree-item-icons>a{display:inline-block;vertical-align:middle;margin-left:.3125rem;cursor:pointer}.a-Tree-item-icons>a>svg{width:.75rem;height:.75rem;top:0}.a-Tree-itemInput{padding-left:.625rem}.a-Tree-itemInput>a{display:inline-block;cursor:pointer;margin-left:.625rem;color:#6c757d}.a-Tree-itemInput>a:hover{color:#212529;text-decoration:none}.a-Tree-itemInput>input{outline:0;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.21562rem .75rem;font-size:.875rem}.a-Tree-itemInput>input::placeholder{color:#99a6ad;user-select:none}.a-Tree-itemInput>input:focus{border-color:#23b7e5;box-shadow:none}.a-Tree-addTopBtn{cursor:pointer;height:1.875rem;line-height:1.875rem;display:block}.a-Tree-addTopBtn:hover{text-decoration:none}.a-Tree-addTopBtn.is-disabled{pointer-events:none;color:#99a6ad}.a-Tree-addTopBtn>svg{width:.875rem;height:.875rem;top:.10938rem;margin-right:-.25rem}.a-Tree-itemArrow{cursor:pointer;width:.625rem;display:inline-block;margin-right:.3125rem}.a-Tree-itemArrow>svg{width:.625rem;height:.625rem;display:inline-block;transition:transform .2s;top:0;transform:rotate(90deg)}.a-Tree-itemArrow.is-folded>svg{transform:rotate(0deg)}.a-Tree-itemArrowPlaceholder{display:inline-block;width:.9375rem}.a-Tree-itemIcon{display:inline-block;margin-right:.3125rem}.a-Tree-rootIcon>svg,.a-Tree-folderIcon>svg,.a-Tree-leafIcon>svg{width:.875rem;height:.875rem}.a-Tree-itemLabel{user-select:none}.a-Tree-itemLabel.is-checked,.a-Tree-itemLabel.is-children-checked{color:#23b7e5}.a-Tree-itemLabel.is-disabled{color:#99a6ad}.a-Tree-itemLabel>.a-Checkbox{line-height:1;display:inline-block}.a-Tree-itemText{cursor:pointer;flex:1 auto;line-height:1.5;padding:.25rem 0}.a-Tree-placeholder{color:#99a6ad}.a-Tree-item .a-Tree-item>.a-Tree-itemLabel,.a-Tree-item .a-Tree-item>.a-Tree-placeholder{padding-left:1.25rem}.a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel,.a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-placeholder{padding-left:2.5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:3.75rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:6.25rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:7.5rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:8.75rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:10rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:11.25rem}.a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item .a-Tree-item>.a-Tree-itemLabel{padding-left:12.5rem}.a-TreeSelectControl{position:relative}.a-TreeSelectControl>.a-TreeSelect-popover{width:100%}.a-TreeSelect{position:relative;max-width:100%;outline:0}.a-TreeSelect.is-inline{display:inline-block;width:12.5rem}.a-TreeSelect-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-TreeSelect-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-TreeSelect-input input::placeholder{color:#99a6ad;user-select:none}.a-TreeSelect.is-error>.a-TreeSelect-input{border-color:#f05050;background-color:#fff}.a-TreeSelect.is-focused>.a-TreeSelect-input{border-color:#23b7e5;box-shadow:none}.a-TreeSelect.is-error.is-focused>.a-TreeSelect-input{border-color:#f05050}.a-TreeSelect.is-disabled>.a-TreeSelect-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-TreeSelect-spinner{line-height:1.25rem}.a-TreeSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-TreeSelect-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-TreeSelect-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-TreeSelect.a-Form-control--sizeXs>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeSm>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeMd>.a-TreeSelect-input,.a-TreeSelect.a-Form-control--sizeLg>.a-TreeSelect-input{min-width:100%;display:inline-flex}}.a-TreeSelect.is-opened{border-color:#23b7e5;box-shadow:none}.a-TreeSelect-popover{background:transparent;border:0;box-shadow:none}.a-TreeSelect-popover>.a-Tree{background:#fff;border:.0625rem solid #23b7e5;padding:.3125rem .75rem;border-radius:0;margin-top:-1px;max-height:400px;overflow:auto}.a-Combo-placeholder{color:#99a6ad;padding-top:.4375rem}.a-Combo-toolbarBtn{line-height:1;height:1.25rem;color:#6c757d;padding:.125rem .3125rem;cursor:pointer}.a-Combo-toolbarBtn:hover{color:#545b62}.a-Combo-setNullBtn{margin-top:.3125rem;display:inline-block}.a-Combo-addBtn{font-size:.75rem;padding:.1875rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.625rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn>svg{width:.75rem;height:.75rem}.a-Combo-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-Combo-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-Combo-addBtn>.pull-left{margin-right:.5rem}.a-Combo-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-Combo-addBtn>.pull-right{margin-left:.5rem}.a-Combo-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-Combo-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-Combo-addBtn.is-disabled,.a-Combo-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-Combo-addBtn:not(:disabled):not(.is-disabled):active,.a-Combo-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-Combo-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-Combo-items{margin-bottom:.625rem}.a-Combo-items:empty{display:none}.a-Combo-items:empty+.a-Combo-toolbar{padding-top:.25rem}.a-Combo-item{background:transparent}.a-Combo-itemDrager{cursor:move}.a-Combo-itemDrager>a{color:#6c757d}.a-Combo-itemDrager>a:hover{color:#212529}.a-Combo-itemDrager svg{width:1rem;height:1rem}.a-Combo--hor .a-Combo-item{display:flex;flex-wrap:nowrap}.a-Combo--hor .a-Combo-item+.a-Combo-item{margin-top:.3125rem}.a-Combo--hor .a-Combo-itemInner{flex-basis:0;flex-grow:1}.a-Combo--hor .a-Combo-itemTag{margin-right:.625rem}.a-Combo--hor .a-Combo-itemTag label{color:#23b7e5;margin-right:.625rem}.a-Combo--hor .a-Combo-itemToolbar{margin-left:.3125rem;display:flex;white-space:nowrap;align-items:flex-start;padding-top:.4375rem}.a-Combo--hor .a-Combo-itemToolbar>.is-disabled{pointer-events:none;opacity:.65}.a-Combo--hor.is-draggable .a-Combo-toolbar{padding-left:1.5rem}.a-Combo--hor .a-Combo-itemDrager{padding:.4375rem .375rem 0 0}.a-Combo--ver:not(.a-Combo--noBorder)::before,.a-Combo--ver:not(.a-Combo--noBorder)::after{display:table;content:''}.a-Combo--ver:not(.a-Combo--noBorder)::after{clear:both}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items{margin:-.625rem -.625rem 0 -.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-placeholder{margin:.625rem}.a-Combo--ver:not(.a-Combo--noBorder) .a-Combo-itemTag{text-align:right}.a-Combo--ver:not(.a-Combo--noBorder) .a-Combo-itemTag label{color:#23b7e5;margin-right:.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item{border:.0625rem dashed #dee2e6;padding:.625rem;position:relative}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item{margin:.625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar{opacity:0;position:absolute;right:.3125rem;top:-.78125rem;transition:all .25s ease-in-out;height:1.5625rem;line-height:1.5625rem;background-color:#23b7e5;color:#f2f2f2;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding:0 .1875rem;border-style:solid;border-color:#19a9d5;border-width:.0625rem .0625rem 0}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn{color:inherit;line-height:1.5625rem}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn:hover,.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemToolbar .a-Combo-toolbarBtn:hover{color:#fff}.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-item:hover,.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-items>.a-Combo-item:hover{border-color:#23b7e5}.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-item:hover>.a-Combo-itemToolbar,.a-Combo--ver:not(.a-Combo--noBorder):not(.is-disabled)>.a-Combo-items>.a-Combo-item:hover>.a-Combo-itemToolbar{top:-1.5625rem;opacity:1}.a-Combo--ver:not(.a-Combo--noBorder)>.a-Combo-items>.a-Combo-item>.a-Combo-itemDrager{position:absolute;top:.4375rem;left:-1.875rem}.a-Combo--ver:not(.a-Combo--noBorder).is-draggable>.a-Combo-items>.a-Combo-item{margin-left:2.1875rem}.a-Combo--ver:not(.a-Combo--noBorder).is-draggable>.a-Combo-toolbar{padding-left:1.5625rem}.a-Combo-item--dragging{position:relative}.a-Combo-item--dragging:after{content:'';display:block;position:absolute;z-index:5;left:0;top:0;right:0;bottom:0;width:100%;height:100%;background:rgba(0,0,0,.1)}.a-ComboTabs>.a-Tabs-links::before,.a-ComboTabs>.a-Tabs-links::after{display:table;content:''}.a-ComboTabs>.a-Tabs-links::after{clear:both}.a-ComboTabs-addLink{float:right}.a-Combo-dragableTip{color:#99a6ad;font-size:.75rem;margin-left:.3125rem}.a-Combo-dragableTip:empty{display:none}.a-ComboControl.is-inline .a-Combo--hor .a-Combo-itemInner{flex-grow:unset;flex-basis:unset}.a-ComboControl.is-inline .a-Combo--ver .a-Combo-item{display:inline-block;min-width:12.5rem}@media (min-width:576px){.a-Combo-form .a-Form-item:last-child{margin-bottom:0}}.a-SubForm-values{display:inline-block;margin-top:-.3125rem;padding:.375rem 0}.a-SubForm-value{cursor:pointer;user-select:none;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-top:.3125rem}.a-SubForm-value:hover{background-color:#c2ecf9}.a-SubForm-value.is-disabled{pointer-events:none;opacity:.65}.a-SubForm-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-SubForm-valueIcon:hover{background-color:#c2ecf9}.a-SubForm-valueLabel{padding:0 .3125rem}.a-SubForm-addBtn{font-size:.75rem;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-SubForm-addBtn>svg.icon:not(:last-child):not(.pull-right),.a-SubForm-addBtn>.pull-left{margin-right:.5rem}.a-SubForm-addBtn .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-SubForm-addBtn>.pull-right{margin-left:.5rem}.a-SubForm-addBtn:hover{color:#fff;background-color:#18a0ca;border-color:#1797be}.a-SubForm-addBtn:focus{color:#fff;background-color:#23b7e5;border-color:#23b7e5;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn:hover:focus{color:#fff;background-color:#18a0ca;border-color:#1797be;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-SubForm-addBtn.is-disabled,.a-SubForm-addBtn:disabled{background-color:#23b7e5;color:#fff;border-color:#dee2e6}.a-SubForm-addBtn:not(:disabled):not(.is-disabled):active,.a-SubForm-addBtn:not(:disabled):not(.is-disabled).is-active{color:#fff;background-color:#1797be;border-color:#158eb3}.a-SubForm-addBtn.is-disabled{pointer-events:none;opacity:.65}.a-SubFormControl{padding-top:.25rem}.a-ChainedSelectControl .a-Select{margin-right:.3125rem}.a-Picker{position:relative;max-width:100%;outline:0}.a-Picker.is-inline{display:inline-block;width:12.5rem}.a-Picker-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-Picker-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-Picker-input input::placeholder{color:#99a6ad;user-select:none}.a-Picker.is-error>.a-Picker-input{border-color:#f05050;background-color:#fff}.a-Picker.is-focused>.a-Picker-input{border-color:#23b7e5;box-shadow:none}.a-Picker.is-error.is-focused>.a-Picker-input{border-color:#f05050}.a-Picker.is-disabled>.a-Picker-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-Picker-spinner{line-height:1.25rem}.a-Picker-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-Picker-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-Picker.a-Form-control--sizeXs>.a-Picker-input,.a-Picker.a-Form-control--sizeSm>.a-Picker-input,.a-Picker.a-Form-control--sizeMd>.a-Picker-input,.a-Picker.a-Form-control--sizeLg>.a-Picker-input{min-width:100%;display:inline-flex}}.a-Picker.is-focus>.a-Picker-input{border-color:#23b7e5;box-shadow:none}.a-Picker-placeholder{color:#99a6ad;user-select:none;position:absolute;line-height:1.42857}.a-Picker-input{min-height:2.125rem;height:auto}.a-Picker .a-Picker-values{display:inline}.a-Picker-valueWrap{flex-grow:1;position:relative}.a-Picker-valueWrap>input{width:1rem;display:inline-block}.a-Picker .a-Picker-valueWrap{margin-bottom:-.3125rem;line-height:1}.a-Picker .a-Picker-value{cursor:pointer;user-select:none;white-space:nowrap;vertical-align:middle;line-height:1.125rem;display:inline-block;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:2px;margin-right:.3125rem;margin-bottom:.3125rem}.a-Picker .a-Picker-value.is-disabled{pointer-events:none;opacity:.65}.a-Picker .a-Picker-valueIcon{cursor:pointer;border-right:.0625rem solid #abe4f6;padding:1px 5px}.a-Picker .a-Picker-valueIcon:hover{background-color:#c2ecf9}.a-Picker .a-Picker-valueLabel{padding:0 .3125rem}.a-Picker-btn{cursor:pointer;color:#6c757d}.a-Picker-btn:hover{color:#212529}.a-Picker-clear{display:inline-block;padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1;margin-right:.3125rem}.a-Picker-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-Picker-clear:hover svg{fill:#3d4246}.a-PickerControl.is-inline .a-Picker{display:inline-block;min-width:9.375rem}.a-QrCode{min-height:2.125rem;padding:.4375rem 0}.a-TagControl{position:relative}.a-TagControl-input.is-focused{border-radius:0}.a-TagControl-input.is-disabled{border-style:dashed;background:transparent}.a-TagControl.is-inline{display:inline-block}.a-TagControl>.a-TagControl-popover{padding:0;border:0;width:100%;margin-top:-.0625rem}.a-TagControl>.a-TagControl-popover.a-PopOver--leftBottomLeftTop{top:100%!important}.a-TagControl>.a-TagControl-popover.a-PopOver--leftTopLeftBottom{top:auto!important;bottom:100%!important}.a-TagControl-sug{margin-top:.375rem}.a-TagControl-sugTip{color:#23b7e5;margin-bottom:.375rem}.a-TagControl-sugItem{margin-right:.625rem;margin-bottom:.625rem;display:inline-block;font-size:.75rem;cursor:pointer;user-select:none;border:.0625rem solid transparent;padding:.3125rem .5rem;font-size:.75rem;line-height:1.5;border-radius:.142rem;height:1.875rem;color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem .a-Button-icon:first-child:not(:last-child):not(.pull-right),.a-TagControl-sugItem>svg.icon:not(:last-child):not(.pull-right),.a-TagControl-sugItem>.pull-left{margin-right:.5rem}.a-TagControl-sugItem .a-Button-icon:last-child:not(:first-child):not(.pull-left),.a-TagControl-sugItem>.pull-right{margin-left:.5rem}.a-TagControl-sugItem:hover{color:#58666e;background-color:#ececec;border-color:#c1c9d0}.a-TagControl-sugItem:focus{color:#58666e;background-color:#fff;border-color:#dee2e6;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem:hover:focus{color:#58666e;background-color:#ececec;border-color:#c1c9d0;box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(28,43,54,.075)}.a-TagControl-sugItem.is-disabled,.a-TagControl-sugItem:disabled{background-color:#fff;color:#58666e;border-color:#dee2e6}.a-TagControl-sugItem:not(:disabled):not(.is-disabled):active,.a-TagControl-sugItem:not(:disabled):not(.is-disabled).is-active{color:#58666e;background-color:#e6e6e6;border-color:#bac2cb}.a-TagControl-sugItem.is-disabled{pointer-events:none;opacity:.65}.a-TagControl-popover.a-PopOver--leftBottomLeftTop>.a-ListMenu{border-top-left-radius:0;border-top-right-radius:0}.a-TagControl-popover.a-PopOver--leftTopLeftBottom>.a-ListMenu{border-bottom-left-radius:0;border-bottom-right-radius:0}.a-Rating{position:relative;overflow:hidden;display:block;float:left;font-size:1.5rem;color:#3a3f51;cursor:pointer}.a-Rating.is-active{color:#23b7e5}.a-Rating.is-disabled{cursor:not-allowed}.a-Rating-half:before{position:absolute;overflow:hidden;display:block;z-index:1;top:0;left:0;width:50%;content:attr(data-forhalf);color:#23b7e5}.a-RatingControl{position:relative;overflow:hidden}.a-Transfer{display:flex;flex-direction:row;flex-wrap:wrap;min-height:18.75rem;position:relative}.a-Transfer--inline{display:inline-flex;flex-wrap:nowrap}.a-Transfer-title{display:flex;align-items:center;background:#f6f8f8;height:1.875rem;line-height:1.42857;font-size:.875rem;padding:.3125rem .625rem;flex-direction:row}.a-Transfer-title--light{background:transparent}.a-Transfer-title>span{flex-grow:1}.a-Transfer-select,.a-Transfer-result{width:0;min-width:12.5rem;max-height:25rem;flex-grow:1;border:.0625rem solid #cfdadd;display:flex;flex-direction:column}.a-Transfer-select>.a-Transfer-checkboxes,.a-Transfer-result>.a-Transfer-selections{flex-grow:1;max-height:100%;overflow:auto}.a-Transfer-search+.a-Transfer-checkboxes{border-top:1px solid #dee2e6}.a-Transfer-checkboxes .a-ListCheckboxes-placeholder{height:100%;display:flex;align-items:center;text-align:center;justify-content:center}.a-Transfer-search{padding:.625rem}.a-Transfer-mid{min-width:.625rem;display:flex;flex-direction:column;justify-content:center}.a-Transfer-arrow{width:40px;height:30px;display:flex;justify-content:center;align-items:center;border:1px solid #dee2e6;margin:0 10px;color:#6c757d}.a-Transfer-arrow>svg{top:0;width:14px;height:14px}.a-Transfer-checkAll,.a-Transfer-clearAll{user-select:none;cursor:pointer}.a-Transfer-checkAll.is-disabled,.a-Transfer-clearAll.is-disabled{pointer-events:none;color:#99a6ad}.a-Transfer-tabs{display:flex;flex-direction:column;height:100%}.a-Transfer-tabs>.a-Tabs-links{border-top:0 none;padding:5px 0 0 5px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center}.a-Transfer-tabs>.a-Tabs-links>.a-Tabs-link>a:first-child{font-size:12px;padding:7px 8px}.a-Transfer-tabs>.a-Tabs-links .a-TabsTransfer-tabsMid{flex-grow:1}.a-Transfer-tabs>.a-Tabs-links>.a-SearchBox{margin:-5px 5px 0 10px}.a-Transfer-tabs>.a-Tabs-links>.a-SearchBox.is-active{width:150px;margin-right:10px;padding-left:10px}.a-Transfer-tabs>.a-Tabs-content{flex-grow:1;position:relative;padding:5px 0 0}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane{position:relative;min-height:100%}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane.is-active{display:flex;flex-direction:column}.a-Transfer-tabs>.a-Tabs-content>.a-Tabs-pane.is-active>.a-Transfer-checkboxes{flex-grow:1;max-height:100%;overflow:auto}.a-TabsTransfer .a-Transfer-title{height:40px}.a-TabsTransfer-placeholder{height:2.125rem;line-height:1.42857;font-size:.875rem;padding:.4375rem .625rem;color:#99a6ad}.a-TransferControl{position:relative}.a-TransferControl.is-inline{display:inline-block}.a-NestedSelect{display:inline-flex;vertical-align:middle;outline:0;position:relative;border:.0625rem solid #cfdadd;background:#fff;border-radius:.142rem;min-height:2.125rem;padding:.375rem 0 .375rem .75rem;cursor:pointer;color:#58666e}.a-NestedSelect.is-disabled{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-NestedSelect.is-focused,.a-NestedSelect.is-opened{border-color:#23b7e5}.a-NestedSelect.is-opened .a-Select-arrow>svg{transform:rotate(180deg)}.a-NestedSelect:not(.is-disabled):hover{background:#f2f2f2}.a-NestedSelect--multi .a-Select-value{position:static;user-select:none;line-height:1.125rem;display:inline-block;vertical-align:middle;font-size:.75rem;color:#23b7e5;background:#d9f3fb;border:.0625rem solid #abe4f6;border-radius:.125rem;margin-right:.3125rem;margin-bottom:.3125rem}.a-NestedSelect--multi .a-Select-valueLabel{padding:0 .3125rem}.a-NestedSelect-placeholder{color:#99a6ad;line-height:1.42857}.a-NestedSelect-valueWrap{user-select:none;position:relative;flex-grow:1}.a-NestedSelect-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}.a-NestedSelect-clear svg{fill:#6c757d;width:.625rem;height:.625rem}.a-NestedSelect-clear:hover svg{fill:#3d4246}.a-NestedSelect-optionArrowRight{display:inline-block;padding-right:.625rem}.a-NestedSelect-optionArrowRight svg{width:.75rem;height:.75rem;fill:#6c757d}.a-NestedSelect-menuOuter{display:flex}.a-NestedSelect-menu{width:10rem;max-height:18.75rem;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;box-shadow:none;overflow-y:auto;overflow-x:hidden}.a-NestedSelect-menu:not(:first-child){border-left:0}.a-NestedSelect-menu .a-NestedSelect-option{position:relative;padding-left:.625rem;min-height:2.125rem;line-height:2.125rem;cursor:pointer;display:flex}.a-NestedSelect-menu .a-NestedSelect-option>.a-NestedSelect-optionLabel{flex:1;cursor:pointer}.a-NestedSelect-menu .a-NestedSelect-option>.a-NestedSelect-optionLabel span{display:inline-flex;word-break:break-all}.a-NestedSelect-menu .a-NestedSelect-option.is-active{color:#23b7e5;background-color:transparent}.a-NestedSelect-menu .a-NestedSelect-option:hover{color:#23b7e5;background-color:rgba(0,126,255,.08)}.a-NestedSelect-menu .a-NestedSelect-option:hover>.a-NestedSelect-childrenOuter{display:block}.a-NestedSelect-menu .a-NestedSelect-option .a-Checkbox{display:inline-block;padding-top:0}.a-NestedSelect-menu .a-NestedSelect-option.checkall{border-bottom:.0625rem solid #eceff8}@media (min-width:576px){.a-Form-control--sizeXs>.a-NestedSelect,.a-Form-control--sizeSm>.a-NestedSelect,.a-Form-control--sizeMd>.a-NestedSelect,.a-Form-control--sizeLg>.a-NestedSelect{display:inline-flex!important}}.a-IconPickerControl{position:relative;max-width:100%}.a-IconPickerControl.is-inline{display:inline-block;width:12.5rem}.a-IconPickerControl-input{display:flex;background-color:#fff;border:.0625rem solid #cfdadd;border-radius:.142rem;line-height:1.42857;padding:.375rem .75rem;font-size:.875rem;flex-wrap:wrap}.a-IconPickerControl-input input{flex-basis:5rem;flex-grow:1;outline:0;background:transparent;border:0;color:#58666e;width:100%;height:1.25rem}.a-IconPickerControl-input input::placeholder{color:#99a6ad;user-select:none}.a-IconPickerControl.is-error>.a-IconPickerControl-input{border-color:#f05050;background-color:#fff}.a-IconPickerControl.is-focused>.a-IconPickerControl-input{border-color:#23b7e5;box-shadow:none}.a-IconPickerControl.is-error.is-focused>.a-IconPickerControl-input{border-color:#f05050}.a-IconPickerControl.is-disabled>.a-IconPickerControl-input{color:#99a6ad;background:#e9ecef;border-color:#cfdadd}.a-IconPickerControl-spinner{line-height:1.25rem}.a-IconPickerControl-clear{padding:.1875rem;cursor:pointer;display:flex;align-items:center;justify-content:center}.a-IconPickerControl-clear svg{fill:#6c757d;top:0;width:.625rem;height:.625rem}.a-IconPickerControl-clear:hover svg{fill:#3d4246}@media (min-width:576px){.a-IconPickerControl.a-Form-control--sizeXs>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeSm>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeMd>.a-IconPickerControl-input,.a-IconPickerControl.a-Form-control--sizeLg>.a-IconPickerControl-input{min-width:100%;display:inline-flex}}.a-IconPickerControl-placeholder{color:#99a6ad;user-select:none;position:absolute;left:.75rem;top:.375rem;margin-top:.125rem;line-height:1.42857}.a-IconPickerControl-valueWrap{flex-grow:1;line-height:1;white-space:nowrap}.a-IconPickerControl-valueWrap>input{display:inline-block;width:auto;vertical-align:middle}.a-IconPickerControl-input--withAC{position:relative;flex-wrap:wrap}.a-IconPickerControl-input--withAC>input{width:auto}.a-IconPickerControl-sugsPanel{position:absolute;background:#fff;color:#58666e;border:.0625rem solid #23b7e5;left:-.0625rem;right:-.0625rem;top:100%;z-index:10;height:auto}.a-IconPickerControl-tabs{background:#f0f3f4}.a-IconPickerControl-tab{display:inline-block;padding:0 .625rem;height:1.875rem;line-height:1.875rem;cursor:pointer;text-align:center;font-size:.75rem;user-select:none}.a-IconPickerControl-tab.active{background:#fff}.a-IconPickerControl-sugs{position:relative;padding:.3125rem;max-height:21.875rem;overflow-y:auto}.a-IconPickerControl-sugItem{display:inline-block;width:1.75rem;height:1.75rem;text-align:center;line-height:1.75rem;cursor:pointer}.a-IconPickerControl-sugItem:hover{background-color:rgba(0,126,255,.08)}.a-IconPickerControl-sugItem.is-active{color:#fff;background-color:#23b7e5}.a-IconPickerControl-value{user-select:none;line-height:1.25rem;vertical-align:middle;display:inline-block}.a-IconPickerControl-value>i{display:inline-block;margin-right:.3125rem}.a-Form{font-size:.875rem;position:relative}.a-Form--quickEdit .a-Form-item:last-child{margin-bottom:0}.a-Form--inline>.a-PlainField{display:inline-block;padding-top:.375rem}.a-Form-static{min-height:2.125rem;padding-top:.4375rem;padding-bottom:.4375rem;margin-bottom:0}.a-Form-label{font-weight:400;margin-bottom:.3125rem;display:inline-block;max-width:100%;position:relative}.a-Form-label>span{position:relative}.a-Form-star{color:#dc3545;font-size:.6875rem;line-height:1}.a-Form-feedback{color:#f05050;margin:.375rem 0 0;padding-left:.9375rem;font-size:.75rem}.a-Form-description{display:block;color:#6f808a;margin:.375rem 0 0;font-size:.75rem}.a-Form-hint{display:inline-block;margin-left:.625rem;padding-top:.375rem;vertical-align:top}.a-Form-item{margin-bottom:.9375rem}.a-Grid-form>.a-Form-item:last-child{margin-bottom:0}.a-Form--inline>.a-Form-item--inline{margin-bottom:.46875rem;margin-right:.46875rem}.a-Form--inline>.a-Form-item--inline:last-child{margin-right:0;margin-bottom:0}.a-Form-item .a-Form-remark{padding-top:.4375rem;vertical-align:top}.a-Form-item--horizontal>.a-Form-label{text-align:right;white-space:"normal"}.a-Form-item--normal>.a-Form-label{display:block}.a-Form-item--normal>.a-Form-label .a-Form-star{position:absolute;left:-.375rem;top:.1875rem}.a-Form-item.is-error>.a-Form-label{color:#f05050}.a-Form-placeholder{color:#99a6ad}.a-Form-caption{display:inline-block;line-height:2.125rem;height:2.125rem;margin-left:.625rem}@media (min-width:576px){.a-Form-control--sizeXs{min-width:5rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeXs.a-NumberControl{width:5rem}.a-Form-control--sizeXs.a-TextareaControl{width:auto}.a-Form-control--sizeSm{min-width:10rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeSm.a-NumberControl{width:10rem}.a-Form-control--sizeSm.a-TextareaControl{width:auto}.a-Form-control--sizeMd{min-width:15rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeMd.a-TextareaControl{width:auto}.a-Form-control--sizeLg{min-width:20rem;max-width:100%;display:inline-block;vertical-align:top}.a-Form-control--sizeLg.a-NumberControl{width:20rem}.a-Form-control--sizeLg.a-TextareaControl{width:auto}.a-Form-item--horizontal{display:flex;flex-wrap:nowrap;margin-left:-.625rem;margin-right:-.625rem}.a-Form-item--horizontal>*{padding-left:.625rem;padding-right:.625rem}.a-Form-item--horizontal>.a-Form-label,.a-Form-item--horizontal>.a-Form-value{flex-basis:0;flex-grow:1;max-width:100%;width:0}.a-Form-item--horizontal .a-Form-itemColumn--xs,.a-Form-item--horizontal .a-Form-itemColumn--sm,.a-Form-item--horizontal .a-Form-itemColumn--normal,.a-Form-item--horizontal .a-Form-itemColumn--md,.a-Form-item--horizontal .a-Form-itemColumn--lg{flex-grow:unset;flex-basis:unset}.a-Form-item--horizontal>.a-Form-label{padding-top:.4375rem;margin-bottom:0}.a-Form-item--horizontal>.a-Form-label .a-Form-star{position:absolute;left:-.375rem;top:.1875rem}.a-Form-item--horizontal .a-Form-itemColumn--xs{width:3.75rem}.a-Form-item--horizontal .a-Form-itemColumn--sm{width:5.625rem}.a-Form-item--horizontal .a-Form-itemColumn--normal{width:7.5rem}.a-Form-item--horizontal .a-Form-itemColumn--md{width:10rem}.a-Form-item--horizontal .a-Form-itemColumn--lg{width:12.5rem}.a-Form-item--horizontal .a-Form-itemColumn--1{flex:0 0 8.33333%;max-width:8.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--2{flex:0 0 16.66667%;max-width:16.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--3{flex:0 0 25%;max-width:25%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--4{flex:0 0 33.33333%;max-width:33.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--5{flex:0 0 41.66667%;max-width:41.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--6{flex:0 0 50%;max-width:50%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--7{flex:0 0 58.33333%;max-width:58.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--8{flex:0 0 66.66667%;max-width:66.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--9{flex:0 0 75%;max-width:75%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--10{flex:0 0 83.33333%;max-width:83.33333%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--11{flex:0 0 91.66667%;max-width:91.66667%;min-height:1px}.a-Form-item--horizontal .a-Form-itemColumn--12{flex:0 0 100%;max-width:100%;min-height:1px}.a-Form-item--inline{display:inline-block;vertical-align:top}.a-Form-item--inline .a-TextControl{width:12.5rem}.a-Form-item--inline>.a-Form-label{padding-top:.4375rem;margin-bottom:0;margin-right:.46875rem}.a-Form-item--inline>.a-Form-label .a-Form-star{position:static}.a-Form-item--inline>.a-Form-value{display:inline}.a-Form-item--inline>.a-Form-value>.a-Form-control{vertical-align:top;display:inline-block}.a-Form-item--inline>.a-Form-value>.a-Form-control.a-InputGroup{display:inline-flex}.a-Form-item--inline>.a-Form-value>.a-TextControl--withAddOn{display:inline-flex;min-width:15rem}.a-Form-row{display:flex;flex-wrap:wrap;margin-left:-.3125rem;margin-right:-.3125rem;align-items:flex-start}.a-Form-row>*{padding-left:.3125rem;padding-right:.3125rem}.a-Form-col{flex-basis:0;flex-grow:1;flex-shrink:1}.a-Form-rowInner{display:flex;flex-wrap:nowrap}.a-Form-rowInner>.a-Form-label{display:inline-block;vertical-align:top;padding-top:.4375rem;padding-right:.625rem}.a-Form-rowInner>.a-Form-control{flex-basis:0;flex-grow:1}.a-Form-rowInner>.a-Form-control:not(.a-Form-control--withSize){width:12.5rem}}.bg-light{background-color:#edf1f2;color:#58666e}.bg-light.lt,.bg-light .lt{background-color:#f3f5f6}.bg-light.lter,.bg-light .lter{background-color:#f6f8f8}.bg-light.dk,.bg-light .dk{background-color:#e4eaec}.bg-light.dker,.bg-light .dker{background-color:#dde6e9}.bg-light.bg,.bg-light .bg{background-color:#edf1f2}.bg-dark{background-color:#3a3f51;color:#a6a8b1}.bg-dark.lt,.bg-dark .lt{background-color:#474c5e}.bg-dark.lter,.bg-dark .lter{background-color:#54596a}.bg-dark.dk,.bg-dark .dk{background-color:#2e3344}.bg-dark.dker,.bg-dark .dker{background-color:#232735}.bg-dark.bg,.bg-dark .bg{background-color:#3a3f51}.bg-dark a,.bg-dark .a-Button--link{color:#c1c3c9}.bg-dark a:hover,.bg-dark .a-Button--link:hover{color:#fff}.bg-dark .open>a,.bg-dark .open>a:hover,.bg-dark .open>a:focus{color:#fff}.bg-dark .text-muted{color:#8b8e99!important}.bg-dark .text-lt{color:#eaebed!important}.bg-black{background-color:#1c2b36;color:#7793a7}.bg-black.lt,.bg-black .lt{background-color:#263845}.bg-black.lter,.bg-black .lter{background-color:#314554}.bg-black.dk,.bg-black .dk{background-color:#131e26}.bg-black.dker,.bg-black .dker{background-color:#0a1015}.bg-black.bg,.bg-black .bg{background-color:#1c2b36}.bg-black a,.bg-black .a-Button--link{color:#96abbb}.bg-black a:hover,.bg-black .a-Button--link:hover{color:#fff}.bg-black .open>a,.bg-black .open>a:hover,.bg-black .open>a:focus{color:#fff}.bg-black .text-muted{color:#5c798f!important}.bg-black .text-lt{color:#c4d0d9!important}.bg-primary{background-color:#7266ba;color:#f4f3f9}.bg-primary.lt,.bg-primary .lt{background-color:#847abf}.bg-primary.lter,.bg-primary .lter{background-color:#958dc6}.bg-primary.dk,.bg-primary .dk{background-color:#6051b5}.bg-primary.dker,.bg-primary .dker{background-color:#5244a9}.bg-primary.bg,.bg-primary .bg{background-color:#7266ba}.bg-primary a,.bg-primary .a-Button--link{color:#fff}.bg-primary a:hover,.bg-primary .a-Button--link:hover{color:#fff}.bg-primary .open>a,.bg-primary .open>a:hover,.bg-primary .open>a:focus{color:#fff}.bg-primary .text-muted{color:#d6d3e6!important}.bg-primary .text-lt{color:#fff!important}.bg-success{background-color:#27c24c;color:#c6efd0}.bg-success.lt,.bg-success .lt{background-color:#31d257}.bg-success.lter,.bg-success .lter{background-color:#48d46a}.bg-success.dk,.bg-success .dk{background-color:#20af42}.bg-success.dker,.bg-success .dker{background-color:#1a9c39}.bg-success.bg,.bg-success .bg{background-color:#27c24c}.bg-success a,.bg-success .a-Button--link{color:#eefaf1}.bg-success a:hover,.bg-success .a-Button--link:hover{color:#fff}.bg-success .open>a,.bg-success .open>a:hover,.bg-success .open>a:focus{color:#fff}.bg-success .text-muted{color:#9ee4af!important}.bg-success .text-lt{color:#fff!important}.bg-info{background-color:#23b7e5;color:#dcf2f8}.bg-info.lt,.bg-info .lt{background-color:#3dbde5}.bg-info.lter,.bg-info .lter{background-color:#55c3e6}.bg-info.dk,.bg-info .dk{background-color:#16aad8}.bg-info.dker,.bg-info .dker{background-color:#1199c4}.bg-info.bg,.bg-info .bg{background-color:#23b7e5}.bg-info a,.bg-info .a-Button--link{color:#fff}.bg-info a:hover,.bg-info .a-Button--link:hover{color:#fff}.bg-info .open>a,.bg-info .open>a:hover,.bg-info .open>a:focus{color:#fff}.bg-info .text-muted{color:#b0e1f1!important}.bg-info .text-lt{color:#fff!important}.bg-warning{background-color:#fad733;color:#fffefa}.bg-warning.lt,.bg-warning .lt{background-color:#f8da4e}.bg-warning.lter,.bg-warning .lter{background-color:#f7de69}.bg-warning.dk,.bg-warning .dk{background-color:#fcd417}.bg-warning.dker,.bg-warning .dker{background-color:#face00}.bg-warning.bg,.bg-warning .bg{background-color:#fad733}.bg-warning a,.bg-warning .a-Button--link{color:#fff}.bg-warning a:hover,.bg-warning .a-Button--link:hover{color:#fff}.bg-warning .open>a,.bg-warning .open>a:hover,.bg-warning .open>a:focus{color:#fff}.bg-warning .text-muted{color:#fbf2cb!important}.bg-warning .text-lt{color:#fff!important}.bg-danger{background-color:#f05050;color:#fff}.bg-danger.lt,.bg-danger .lt{background-color:#f06a6a}.bg-danger.lter,.bg-danger .lter{background-color:#f18282}.bg-danger.dk,.bg-danger .dk{background-color:#f13636}.bg-danger.dker,.bg-danger .dker{background-color:#f21b1b}.bg-danger.bg,.bg-danger .bg{background-color:#f05050}.bg-danger a,.bg-danger .a-Button--link{color:#fff}.bg-danger a:hover,.bg-danger .a-Button--link:hover{color:#fff}.bg-danger .open>a,.bg-danger .open>a:hover,.bg-danger .open>a:focus{color:#fff}.bg-danger .text-muted{color:#e6e6e6!important}.bg-danger .text-lt{color:#fff!important}.bg-white{background-color:#fff;color:#58666e}.bg-white.lt,.bg-white .lt{background-color:#fff}.bg-white.lter,.bg-white .lter{background-color:#fff}.bg-white.dk,.bg-white .dk{background-color:#f3f2f2}.bg-white.dker,.bg-white .dker{background-color:#e7e4e4}.bg-white.bg,.bg-white .bg{background-color:#fff}.bg-none{background:none!important}a.bg-primary:hover{background-color:#6254b2}a.text-primary:hover{color:#6254b2}.text-primary{color:#7266ba}.text-primary-lt{color:#6254b2}.text-primary-lter{color:#564aa3}.text-primary-dk{color:#6254b2}.text-primary-dker{color:#564aa3}a.bg-info:hover{background-color:#19a9d5}a.text-info:hover{color:#19a9d5}.text-info{color:#23b7e5}.text-info-lt{color:#19a9d5}.text-info-lter{color:#1797be}.text-info-dk{color:#19a9d5}.text-info-dker{color:#1797be}a.bg-success:hover{background-color:#23ad44}a.text-success:hover{color:#23ad44}.text-success{color:#27c24c}.text-success-lt{color:#23ad44}.text-success-lter{color:#1e983b}.text-success-dk{color:#23ad44}.text-success-dker{color:#1e983b}a.bg-warning:hover{background-color:#f9d21a}a.text-warning:hover{color:#f9d21a}.text-warning{color:#fad733}.text-warning-lt{color:#f9d21a}.text-warning-lter{color:#f4ca06}.text-warning-dk{color:#f9d21a}.text-warning-dker{color:#f4ca06}a.bg-danger:hover{background-color:#ee3939}a.text-danger:hover{color:#ee3939}.text-danger{color:#f05050}.text-danger-lt{color:#ee3939}.text-danger-lter{color:#ec2121}.text-danger-dk{color:#ee3939}.text-danger-dker{color:#ec2121}a.bg-dark:hover{background-color:#2f3342}a.text-dark:hover{color:#2f3342}.text-dark{color:#3a3f51}.text-dark-lt{color:#2f3342}.text-dark-lter{color:#252833}.text-dark-dk{color:#2f3342}.text-dark-dker{color:#252833}a.bg-white:hover{background-color:#f2f2f2}a.text-white:hover{color:#f2f2f2}.text-white{color:#fff}.text-white-lt{color:#f2f2f2}.text-white-lter{color:#e6e6e6}.text-white-dk{color:#f2f2f2}.text-white-dker{color:#e6e6e6}a.bg-black:hover{background-color:#131e25}a.text-black:hover{color:#131e25}.text-black{color:#1c2b36}.text-black-lt{color:#131e25}.text-black-lter{color:#0b1014}.text-black-dk{color:#131e25}.text-black-dker{color:#0b1014}.text-muted{color:#99a6ad}.text-loud{color:#414c52}.clearfix::before,.clearfix::after{display:table;content:''}.clearfix::after{clear:both}.pos-rlt{position:relative}.pos-stc{position:static!important}.pos-abt{position:absolute}.pos-fix{position:fixed}.show{visibility:visible}.line{height:2px;margin:10px 0;font-size:0;overflow:hidden}.line-xs{margin:0}.line-lg{margin-top:15px;margin-bottom:15px}.line-dashed{border-style:dashed!important;background-color:transparent;border-width:0}.no-line{border-width:0}.no-border,.no-borders{border-color:transparent;border-width:0}.no-b-t{border-top-width:0}.no-b-r{border-right-width:0}.no-b-b{border-bottom-width:0}.no-b-l{border-left-width:0}.no-radius{border-radius:0}.block{display:block}.block.hide{display:none}.inline{display:inline-block!important}.none{display:none}.pull-none{float:none}.rounded{border-radius:500px}.clear{display:block;overflow:hidden}.no-bg{background-color:transparent;color:inherit}.no-select{user-select:none}.l-h{line-height:1.5}.l-h-0x{line-height:0}.l-h-1x{line-height:1.2}.l-h-2x{line-height:2em}.l-s-1x{letter-spacing:1}.l-s-2x{letter-spacing:2}.l-s-3x{letter-spacing:3}.font-normal{font-weight:400}.font-thin{font-weight:300}.font-bold{font-weight:700}.text-5x{font-size:5em}.text-4x{font-size:4em}.text-3x{font-size:3em}.text-2x{font-size:2em}.text-xl{font-size:1.5rem!important}.text-lg{font-size:1.25rem!important}.text-md{font-size:1rem!important}.text-base{font-size:.875rem!important}.text-sm{font-size:.75rem!important}.text-xs{font-size:.6875rem!important}.text-xxs{text-indent:-9999px}.text-ellipsis{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.text-u-c{text-transform:uppercase}.text-l-t{text-decoration:line-through}.text-u-l{text-decoration:underline}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.box-shadow{box-shadow:0 2px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05)}.box-shadow-lg{box-shadow:5px 5px 10px rgba(0,0,0,.05)}.text-shadow{font-size:170px;text-shadow:0 1px 0 #dee2e6,0 2px 0 #fbfcfc,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2)}.no-shadow{box-shadow:none!important}.wrapper-xs{padding:5px}.wrapper-sm{padding:10px}.wrapper{padding:15px}.wrapper-md{padding:20px}.wrapper-lg{padding:30px}.wrapper-xl{padding:50px}.padder-lg{padding-left:30px;padding-right:30px}.padder-md{padding-left:20px;padding-right:20px}.padder{padding-left:15px;padding-right:15px}.padder-v-xs{padding-top:5px;padding-bottom:5px}.padder-v-sm{padding-top:10px;padding-bottom:10px}.padder-v{padding-top:15px;padding-bottom:15px}.padder-v-md{padding-top:20px;padding-bottom:20px}.padder-v-lg{padding-top:30px;padding-bottom:30px}.no-padder{padding:0!important}.pull-in{margin-left:-15px;margin-right:-15px}.pull-in-md{margin-left:-20px;margin-right:-20px}.pull-in-sm{margin-left:-10px;margin-right:-10px}.pull-out{margin:-10px -15px}.b{border:1px solid rgba(0,0,0,.05)}.b-a{border:1px solid #dee2e6}.b-t{border-top:1px solid #dee2e6}.b-t-none{border-top-width:0}.b-r{border-right:1px solid #dee2e6}.b-r-none{border-right-width:0}.b-b{border-bottom:1px solid #dee2e6}.b-b-none{border-bottom-width:0}.b-l{border-left:1px solid #dee2e6}.b-l-none{border-left-width:0}.b-light{border-color:#edf1f2}.b-dark{border-color:#3a3f51}.b-black{border-color:#3a3f51}.b-primary{border-color:#7266ba}.b-success{border-color:#27c24c}.b-info{border-color:#23b7e5}.b-warning{border-color:#fad733}.b-danger{border-color:#f05050}.b-white{border-color:#fff}.b-dashed{border-style:dashed!important}.b-l-light{border-left-color:#edf1f2}.b-l-dark{border-left-color:#3a3f51}.b-l-black{border-left-color:#3a3f51}.b-l-primary{border-left-color:#7266ba}.b-l-success{border-left-color:#27c24c}.b-l-info{border-left-color:#23b7e5}.b-l-warning{border-left-color:#fad733}.b-l-danger{border-left-color:#f05050}.b-l-white{border-left-color:#fff}.b-l-2x{border-left-width:2px}.b-l-3x{border-left-width:3px}.b-l-4x{border-left-width:4px}.b-l-5x{border-left-width:5px}.b-2x{border-width:2px}.b-3x{border-width:3px}.b-4x{border-width:4px}.b-5x{border-width:5px}.r{border-radius:.142rem}.r-2x{border-radius:.285rem}.r-3x{border-radius:.428rem}.r-l{border-radius:.142rem 0 0 .142rem}.r-r{border-radius:0 .142rem .142rem 0}.r-t{border-radius:.142rem .142rem 0 0}.r-b{border-radius:0 0 .142rem .142rem}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n,.m-none{margin:0!important}.m-l-none{margin-left:0!important}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-xxl{margin-left:50px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-l-n-xxl{margin-left:-50px}.m-t-none{margin-top:0!important}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-xxl{margin-top:50px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-t-n-xxl{margin-top:-50px}.m-r-none{margin-right:0!important}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-xxl{margin-right:50px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-r-n-xxl{margin-right:-50px}.m-b-none{margin-bottom:0!important}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-xxl{margin-bottom:50px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.m-b-n-xxl{margin-bottom:-50px}.p-xxs{padding:2px 4px}.p-xs{padding:5px}.p-sm{padding:10px}.p{padding:15px}.p-md{padding:20px}.p-lg{padding:30px}.p-xl{padding:50px}.p-n,.p-none{padding:0!important}.p-l-none{padding-left:0!important}.p-l-xs{padding-left:5px}.p-l-sm{padding-left:10px}.p-l{padding-left:15px}.p-l-md{padding-left:20px}.p-l-lg{padding-left:30px}.p-l-xl{padding-left:40px}.p-l-xxl{padding-left:50px}.p-t-none{padding-top:0!important}.p-t-xxs{padding-top:1px}.p-t-xs{padding-top:5px}.p-t-sm{padding-top:10px}.p-t{padding-top:15px}.p-t-md{padding-top:20px}.p-t-lg{padding-top:30px}.p-t-xl{padding-top:40px}.p-t-xxl{padding-top:50px}.p-t-n-xxs{padding-top:-1px}.p-r-none{padding-right:0!important}.p-r-xxs{padding-right:1px}.p-r-xs{padding-right:5px}.p-r-sm{padding-right:10px}.p-r{padding-right:15px}.p-r-md{padding-right:20px}.p-r-lg{padding-right:30px}.p-r-xl{padding-right:40px}.p-r-xxl{padding-right:50px}.p-b-none{padding-bottom:0!important}.p-b-xxs{padding-bottom:1px}.p-b-xs{padding-bottom:5px}.p-b-sm{padding-bottom:10px}.p-b{padding-bottom:15px}.p-b-md{padding-bottom:20px}.p-b-lg{padding-bottom:30px}.p-b-xl{padding-bottom:40px}.p-b-xxl{padding-bottom:50px}.avatar{position:relative;display:block;border-radius:500px;white-space:nowrap}.avatar img{border-radius:500px;width:100%}.avatar i{position:absolute;left:0;top:0;width:10px;height:10px;margin:2px;border-width:2px;border-style:solid;border-radius:100%}.avatar i.right{left:auto;right:0}.avatar i.bottom{left:auto;top:auto;bottom:0;right:0}.avatar i.left{top:auto;bottom:0}.avatar i.on{background-color:#27c24c}.avatar i.off{background-color:#99a6ad}.avatar i.busy{background-color:#f05050}.avatar i.away{background-color:#fad733}.avatar.thumb-md i{width:12px;height:12px;margin:3px}.avatar.thumb-sm i{margin:1px}.avatar.thumb-xs i{margin:0}.w-1x{width:1em}.w-2x{width:2em}.w-3x{width:3em}.w-xxs{width:60px}.h-xxs{height:60px}.w-xs{width:90px}.h-xs{height:90px}.w-ssm{width:120px}.w-sm{width:150px}.h-sm{height:150px}.h-ssm{height:120px}.w{width:200px}.h{height:200px}.w-md{width:240px}.h-md{height:240px}.w-lg{width:280px}.h-lg{height:280px}.w-xl{width:320px}.h-xl{height:320px}.w-xxl{width:360px}.h-xxl{height:360px}.w-xxxl{width:420px}.h-xxxl{height:420px}.w-full{width:100%}.w-auto{width:auto}.h-auto{height:auto}.h-full{height:100%}.no-grow{flex-grow:unset!important;flex-basis:unset!important}.nowrap{white-space:nowrap}@media (min-width:576px){.a-Form-col.w,.a-Form-col.w-xs,.a-Form-col.w-sm,.a-Form-col.w-md,.a-Form-col.w-lg{flex-basis:unset;flex-grow:unset}}.thumb-xl{width:128px;display:inline-block}.thumb-lg{width:96px;display:inline-block}.thumb-md{width:64px;display:inline-block}.thumb{width:50px;display:inline-block}.thumb-sm{width:40px;display:inline-block}.thumb-xs{width:34px;display:inline-block}.thumb-xxs{width:30px;display:inline-block}.thumb-wrapper{padding:2px;border:1px solid #dee2e6}.thumb img,.thumb-xxs img,.thumb-xs img,.thumb-sm img,.thumb-md img,.thumb-lg img,.thumb-btn img,.thumb-xl img{height:auto;max-width:100%;vertical-align:middle}.img-full{width:100%}.img-full img{width:100%}.v-top{vertical-align:top!important;align-self:flex-start}.v-middle{vertical-align:middle!important;align-self:center}.v-bottom{vertical-align:bottom!important;align-self:flex-end}.scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.scrollable.hover,.scrollable.hover>.cell-inner{overflow-y:hidden!important}.scrollable.hover:hover,.scrollable.hover:focus,.scrollable.hover:active{overflow:visible;overflow-y:auto}.scrollable.hover:hover>.cell-inner,.scrollable.hover:focus>.cell-inner,.scrollable.hover:active>.cell-inner{overflow-y:auto!important}.smart .scrollable,.smart .scrollable>.cell-inner{overflow-y:auto!important}.scroll-x,.scroll-y{overflow:hidden;-webkit-overflow-scrolling:touch}.scroll-y{overflow-y:auto}.scroll-x{overflow-x:auto}.hover-action{display:none}.hover-rotate{transition:all .2s ease-in-out .1s}.hover-anchor:hover>.hover-action,.hover-anchor:focus>.hover-action,.hover-anchor:active>.hover-action{display:inherit}.hover-anchor:hover>.hover-rotate,.hover-anchor:focus>.hover-rotate,.hover-anchor:active>.hover-rotate{transform:rotate(90deg)}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1050}.backdrop.fade{opacity:0}.backdrop.in{opacity:.8}.col-xs-2-4,.col-sm-2-4,.col-md-2-4,.col-lg-2-4,.col-xs-1-5,.col-sm-1-5,.col-md-1-5,.col-lg-1-5{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-2-4{width:20%;float:left}.col-xs-1-5{width:12.5%;float:left}.invisible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.invisible2{visibility:hidden}.hbox{display:table;table-layout:fixed;border-spacing:0;width:100%;height:100%}.hbox>.col{display:table-cell;vertical-align:top;height:100%;float:none}.vbox{display:table;border-spacing:0;position:relative;width:100%;height:100%;min-height:240px}.vbox .row-row{display:table-row;height:100%}.vbox .row-row .cell{position:relative;height:100%;width:100%}.ie .vbox .row-row .cell{display:table-cell;overflow:auto}.ie .vbox .row-row .cell .cell-inner{overflow:visible!important}.vbox .row-row .cell .cell-inner{position:absolute;top:0;bottom:0;left:0;right:0;-webkit-overflow-scrolling:touch;overflow:auto}.word-break{white-space:normal;word-break:break-all;word-wrap:break-word}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#495057}.label-default[href]:hover,.label-default[href]:focus{background-color:#32373b}.label-primary{background-color:#7266ba}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#564aa3}.label-success{background-color:#27c24c}.label-success[href]:hover,.label-success[href]:focus{background-color:#1e983b}.label-info{background-color:#23b7e5}.label-info[href]:hover,.label-info[href]:focus{background-color:#1797be}.label-warning{background-color:#fad733}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#f4ca06}.label-danger{background-color:#f05050}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#ec2121}@keyframes apearSensor{from{opacity:0}}@media (min-width:768px){.col-sm-2-4{width:20%;float:left}.col-sm-1-5{width:12.5%;float:left}}@media (min-width:992px){.col-md-2-4{width:20%;float:left}.col-md-1-5{width:12.5%;float:left}}@media (min-width:1200px){.col-lg-2-4{width:20%;float:left}.col-lg-1-5{width:12.5%;float:left}}@media (min-width:768px) and (max-width:991px){.hidden-sm.show{display:inherit!important}.no-m-sm{margin:0!important}.no-padder-sm{padding:0!important}}.visible-xs{display:none}@media (max-width:767px){.visible-xs{display:block}.w-auto-xs{width:auto}.shift{display:none!important}.shift.in{display:block!important}.row-2 [class*=col]{width:50%;float:left}.row-2 .col-0{clear:none}.row-2 li:nth-child(odd){clear:left;margin-left:0}.text-center-xs{text-align:center}.text-left-xs{text-align:left}.text-right-xs{text-align:right}.no-border-xs{border-width:0}.pull-none-xs{float:none!important}.pull-right-xs{float:right!important}.pull-left-xs{float:left!important}.dropdown-menu.pull-none-xs{left:0}.hidden-xs.show{display:inherit!important}.wrapper-lg,.wrapper-md{padding:15px}.padder-lg,.padder-md{padding-left:15px;padding-right:15px}.no-m-xs{margin:0!important}.no-padder-xs{padding:0!important}} \ No newline at end of file diff --git a/gh-pages/sdk-placeholder.html b/gh-pages/sdk-placeholder.html index 05cca331..408a9a1d 100644 --- a/gh-pages/sdk-placeholder.html +++ b/gh-pages/sdk-placeholder.html @@ -2,12 +2,12 @@ - + - +