aldehyde 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +1 -0
  3. package/dist/163.js +2 -0
  4. package/dist/163.js.LICENSE.txt +43 -0
  5. package/dist/41.js +1 -0
  6. package/dist/aldehyde.js +2 -0
  7. package/dist/aldehyde.js.LICENSE.txt +122 -0
  8. package/dist/chemstruc-graph.js +1 -0
  9. package/dist/css/163-24392163d3c7b54ea806.css +11 -0
  10. package/dist/css/290-5e8e152675ab7d201c00.css +886 -0
  11. package/dist/css/chemstruc-graph-87868f791bf92fb80db9.css +29 -0
  12. package/dist/css/main-2e6725ec1b56da516cee.css +256 -0
  13. package/dist/html-editor-draft.js +2 -0
  14. package/dist/html-editor-draft.js.LICENSE.txt +5 -0
  15. package/dist/images/logo-06f6a5d8.png +0 -0
  16. package/dist/index.html +4 -0
  17. package/dist/signature.js +2 -0
  18. package/dist/signature.js.LICENSE.txt +17 -0
  19. package/package.json +180 -0
  20. package/src/components/chart/antd/Chart.js +32 -0
  21. package/src/components/chart/antd/Chart10000.js +90 -0
  22. package/src/components/chart/antd/Max2DimLineChart.js +128 -0
  23. package/src/components/chart/antd/PieChart1.js +54 -0
  24. package/src/components/chart/antd/PieChart2.js +56 -0
  25. package/src/components/chart/antd/chart-utils.tsx +50 -0
  26. package/src/components/chart/antd/column-chart-sub.tsx +67 -0
  27. package/src/components/chart/antd/line-chart-sub.tsx +65 -0
  28. package/src/components/chart/antd/pie-chart-sub.tsx +54 -0
  29. package/src/components/chart/antd/statview-d2-chart.tsx +125 -0
  30. package/src/components/chart/statview-l2-chart.tsx +69 -0
  31. package/src/components/controls/action/index.css +9 -0
  32. package/src/components/controls/action/index.tsx +228 -0
  33. package/src/components/controls/action/utils.tsx +122 -0
  34. package/src/components/controls/auto-complete/index.tsx +80 -0
  35. package/src/components/controls/cascader/index.js +97 -0
  36. package/src/components/controls/chemstruc/graph.tsx +150 -0
  37. package/src/components/controls/chemstruc/index.css +28 -0
  38. package/src/components/controls/collapse-card/index.css +9 -0
  39. package/src/components/controls/collapse-card/index.tsx +59 -0
  40. package/src/components/controls/color-picker/index.css +27 -0
  41. package/src/components/controls/color-picker/index.tsx +88 -0
  42. package/src/components/controls/cquery/cquick-button.tsx +117 -0
  43. package/src/components/controls/date-picker/index.tsx +141 -0
  44. package/src/components/controls/entity-select/entity-select.tsx +277 -0
  45. package/src/components/controls/entity-select/index.css +6 -0
  46. package/src/components/controls/entity-select/popover-entity-select.tsx +112 -0
  47. package/src/components/controls/entry-control.tsx +240 -0
  48. package/src/components/controls/enum-badge/index.tsx +28 -0
  49. package/src/components/controls/enum-tag/index.tsx +30 -0
  50. package/src/components/controls/file-view/drawer-file-view.tsx +69 -0
  51. package/src/components/controls/file-view/index.tsx +145 -0
  52. package/src/components/controls/html-editor/draft.tsx +161 -0
  53. package/src/components/controls/html-editor/tinymce.js +55 -0
  54. package/src/components/controls/input-number/index.tsx +101 -0
  55. package/src/components/controls/input-range/index.tsx +48 -0
  56. package/src/components/controls/password-setter/index.css +3 -0
  57. package/src/components/controls/password-setter/index.js +70 -0
  58. package/src/components/controls/progress/index.tsx +61 -0
  59. package/src/components/controls/relation-existion/index.css +4 -0
  60. package/src/components/controls/relation-existion/index.tsx +108 -0
  61. package/src/components/controls/rfield/index.css +4 -0
  62. package/src/components/controls/rfield/index.tsx +161 -0
  63. package/src/components/controls/signature/index.tsx +162 -0
  64. package/src/components/controls/steps/index.tsx +58 -0
  65. package/src/components/controls/text/ellipsis-text.tsx +70 -0
  66. package/src/components/controls/upload/index.tsx +122 -0
  67. package/src/components/controls/view-control.tsx +177 -0
  68. package/src/components/detail/button/cquery-button-bar.tsx +112 -0
  69. package/src/components/detail/button/index.css +43 -0
  70. package/src/components/detail/button/submit-button-bar.tsx +151 -0
  71. package/src/components/detail/dtmpl.css +53 -0
  72. package/src/components/detail/edit/dtmpl-edit.tsx +218 -0
  73. package/src/components/detail/edit/fields-edit-card.tsx +103 -0
  74. package/src/components/detail/edit/modal-dtmpl-edit.tsx +198 -0
  75. package/src/components/detail/edit/modal-row-edit.tsx +72 -0
  76. package/src/components/detail/edit/post-result/index.tsx +52 -0
  77. package/src/components/detail/edit/row-edit-card.tsx +125 -0
  78. package/src/components/detail/edit/row-editor.tsx +71 -0
  79. package/src/components/detail/rightbar/index.css +35 -0
  80. package/src/components/detail/rightbar/index.tsx +76 -0
  81. package/src/components/detail/view/act-dtmpl-view.tsx +155 -0
  82. package/src/components/detail/view/dtmpl-view.tsx +143 -0
  83. package/src/components/detail/view/field-view-group.tsx +73 -0
  84. package/src/components/detail/view/modal-dtmpl-view.tsx +56 -0
  85. package/src/components/detail/view/snapshot-timeline.tsx +130 -0
  86. package/src/components/exportor/export-frame.css +3 -0
  87. package/src/components/exportor/export-frame.tsx +194 -0
  88. package/src/components/exportor/index.tsx +60 -0
  89. package/src/components/form/criteria-form.tsx +241 -0
  90. package/src/components/form/dtmpl-form.css +4 -0
  91. package/src/components/form/dtmpl-form.tsx +272 -0
  92. package/src/components/form/field-group-form.tsx +75 -0
  93. package/src/components/form/fields-form.tsx +51 -0
  94. package/src/components/form/form-Item-group.tsx +99 -0
  95. package/src/components/form/index.css +13 -0
  96. package/src/components/import/excel-import.tsx +316 -0
  97. package/src/components/import/index.css +54 -0
  98. package/src/components/import/template-builder.js +474 -0
  99. package/src/components/import/template.css +51 -0
  100. package/src/components/layout/MainPage.tsx +230 -0
  101. package/src/components/layout/footer/index.css +6 -0
  102. package/src/components/layout/footer/index.js +17 -0
  103. package/src/components/layout/header/index.css +86 -0
  104. package/src/components/layout/header/index.tsx +58 -0
  105. package/src/components/layout/menu/block.tsx +88 -0
  106. package/src/components/layout/menu/l2menu-message-bar.tsx +118 -0
  107. package/src/components/layout/menu/l2menu-quick-bar.tsx +132 -0
  108. package/src/components/layout/menu/menu-2layers.tsx +92 -0
  109. package/src/components/layout/menu/menu-render.tsx +49 -0
  110. package/src/components/layout/menu/reset-password.tsx +185 -0
  111. package/src/components/layout/menu/user-bar.tsx +97 -0
  112. package/src/components/layout/menu/userinfo-bar.tsx +70 -0
  113. package/src/components/layout/sidebar/index.css +26 -0
  114. package/src/components/layout/sidebar/index.tsx +38 -0
  115. package/src/components/login.js +137 -0
  116. package/src/components/module/criteria-page.tsx +175 -0
  117. package/src/components/module/dtmpl-page.tsx +70 -0
  118. package/src/components/module/ltmpl-page.tsx +181 -0
  119. package/src/components/routable/dtmpl-route.tsx +96 -0
  120. package/src/components/routable/import-route.tsx +28 -0
  121. package/src/components/routable/ltmpl-route.tsx +158 -0
  122. package/src/components/table/act-table.tsx +635 -0
  123. package/src/components/table/column/column-selector.tsx +79 -0
  124. package/src/components/table/column/index.css +14 -0
  125. package/src/components/table/index.css +45 -0
  126. package/src/components/table/l2-act-table.tsx +85 -0
  127. package/src/components/table/modal-select-table.tsx +248 -0
  128. package/src/components/table/pagination.css +15 -0
  129. package/src/components/table/pagination.tsx +72 -0
  130. package/src/components/table/query-table.tsx +331 -0
  131. package/src/components/table/relation-table.tsx +600 -0
  132. package/src/components/table/select-table.tsx +247 -0
  133. package/src/components/table/selected-rows-card.tsx +62 -0
  134. package/src/components/table/stat/restat.tsx +79 -0
  135. package/src/components/table/table-util.tsx +33 -0
  136. package/src/components/tmpl/control-type-supportor.tsx +97 -0
  137. package/src/components/tmpl/hc-data-source.tsx +230 -0
  138. package/src/components/tmpl/hcservice-v3.tsx +624 -0
  139. package/src/components/tmpl/interface.tsx +308 -0
  140. package/src/components/tmpl/superagent.js +93 -0
  141. package/src/components/tmpl/tmpl-config-analysis.tsx +111 -0
  142. package/src/components/units/EncryptUtils.js +38 -0
  143. package/src/components/units/image.d.ts +8 -0
  144. package/src/components/units/index.tsx +536 -0
  145. package/src/components/units/logo.png +0 -0
  146. package/src/components/units/storage.js +3 -0
  147. package/src/components/welcome/HCWelcome.js +232 -0
  148. package/src/components/welcome/index.css +13 -0
  149. package/src/components/welcome/logo.png +0 -0
  150. package/src/components/welcome/quick-entrance.tsx +77 -0
  151. package/src/components/welcome/workbench.tsx +76 -0
  152. package/src/index.js +4 -0
  153. package/src/style/common.css +79 -0
  154. package/src/style/coverstyle.css +49 -0
  155. package/src/style/transstyle.css +24 -0
  156. package/tsconfig.json +106 -0
@@ -0,0 +1,122 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*
8
+ object-assign
9
+ (c) Sindre Sorhus
10
+ @license MIT
11
+ */
12
+
13
+ /*!
14
+ Copyright (c) 2017 Jed Watson.
15
+ Licensed under the MIT License (MIT), see
16
+ http://jedwatson.github.io/classnames
17
+ */
18
+
19
+ /*!
20
+ Copyright (c) 2018 Jed Watson.
21
+ Licensed under the MIT License (MIT), see
22
+ http://jedwatson.github.io/classnames
23
+ */
24
+
25
+ /*!
26
+ * Determine if an object is a Buffer
27
+ *
28
+ * @author Feross Aboukhadijeh <https://feross.org>
29
+ * @license MIT
30
+ */
31
+
32
+ /*!
33
+ * The buffer module from node.js, for the browser.
34
+ *
35
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
36
+ * @license MIT
37
+ */
38
+
39
+ /*! *****************************************************************************
40
+ Copyright (c) Microsoft Corporation.
41
+
42
+ Permission to use, copy, modify, and/or distribute this software for any
43
+ purpose with or without fee is hereby granted.
44
+
45
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
46
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
47
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
48
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
49
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
50
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
51
+ PERFORMANCE OF THIS SOFTWARE.
52
+ ***************************************************************************** */
53
+
54
+ /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
55
+
56
+ /**
57
+ * @fileOverview
58
+ * @name asn1-1.0.js
59
+ * @author Kenji Urushima kenji.urushima@gmail.com
60
+ * @version asn1 1.0.13 (2017-Jun-02)
61
+ * @since jsrsasign 2.1
62
+ * @license <a href="https://kjur.github.io/jsrsasign/license/">MIT License</a>
63
+ */
64
+
65
+ /** @license React v0.20.2
66
+ * scheduler.production.min.js
67
+ *
68
+ * Copyright (c) Facebook, Inc. and its affiliates.
69
+ *
70
+ * This source code is licensed under the MIT license found in the
71
+ * LICENSE file in the root directory of this source tree.
72
+ */
73
+
74
+ /** @license React v16.13.1
75
+ * react-is.production.min.js
76
+ *
77
+ * Copyright (c) Facebook, Inc. and its affiliates.
78
+ *
79
+ * This source code is licensed under the MIT license found in the
80
+ * LICENSE file in the root directory of this source tree.
81
+ */
82
+
83
+ /** @license React v17.0.0
84
+ * react-dom.production.min.js
85
+ *
86
+ * Copyright (c) Facebook, Inc. and its affiliates.
87
+ *
88
+ * This source code is licensed under the MIT license found in the
89
+ * LICENSE file in the root directory of this source tree.
90
+ */
91
+
92
+ /** @license React v17.0.2
93
+ * react.production.min.js
94
+ *
95
+ * Copyright (c) Facebook, Inc. and its affiliates.
96
+ *
97
+ * This source code is licensed under the MIT license found in the
98
+ * LICENSE file in the root directory of this source tree.
99
+ */
100
+
101
+ /** @preserve
102
+ * Counter block mode compatible with Dr Brian Gladman fileenc.c
103
+ * derived from CryptoJS.mode.CTR
104
+ * Jan Hruby jhruby.web@gmail.com
105
+ */
106
+
107
+ /** @preserve
108
+ (c) 2012 by Cédric Mesnil. All rights reserved.
109
+
110
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
111
+
112
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
113
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
114
+
115
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
116
+ */
117
+
118
+ //! moment.js
119
+
120
+ //! moment.js locale configuration
121
+
122
+ //!\ DECLARE ALIAS AFTER assign prototype !
@@ -0,0 +1 @@
1
+ (self.webpackChunkaldehyde=self.webpackChunkaldehyde||[]).push([[590],{3197:function(e,t,n){"use strict";n.r(t),n.d(t,{default:function(){return b}});var r=n(84322),a=n.n(r),c=n(59755),o=n(90237),i=n(65337),l=n(95225),s=n(39576),u=n(61378),f=n(69905),p=n(15274),d=n(67294),h=n(71577),v=n(50146),m=n(75443),Z=n(71230),w=n(15746),y=n(58469),k=n(41847),x=n(39935),g=n(48965);var b=function(e){(0,s.Z)(C,e);var t,r,b=(t=C,r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,n=(0,f.Z)(t);if(r){var a=(0,f.Z)(this).constructor;e=Reflect.construct(n,arguments,a)}else e=n.apply(this,arguments);return(0,u.Z)(this,e)});function C(){var e;(0,o.Z)(this,C);for(var t=arguments.length,r=new Array(t),i=0;i<t;i++)r[i]=arguments[i];return e=b.call.apply(b,[this].concat(r)),(0,p.Z)((0,l.Z)(e),"state",{modalVisible:!1,molFileLoaded:!1,molFile:void 0}),(0,p.Z)((0,l.Z)(e),"loadData",(0,c.Z)(a().mark((function t(){var r,c,o;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(r=e.props.value)){t.next=13;break}if(1!=(c=JSON.parse(r)).valid){t.next=9;break}return t.next=6,x.Z.loadFileTxt(c.base.path);case 6:o=t.sent,t.next=10;break;case 9:o="new"==c.valid?c.body:void 0;case 10:console.log("molFile:",o),n.g.ketcher.setMolecule(o),e.setState({molFile:o});case 13:case"end":return t.stop()}}),t)})))),(0,p.Z)((0,l.Z)(e),"saveMolfile",(0,c.Z)(a().mark((function t(){var r;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,n.g.ketcher.getKet();case 2:r=t.sent,console.log("ket value:",r),e.triggerChange(r),e.setState({modalVisible:!1});case 6:case"end":return t.stop()}}),t)})))),(0,p.Z)((0,l.Z)(e),"triggerChange",(function(t){var n=e.props.onChange;n&&n(JSON.stringify({valid:"new",body:t}))})),(0,p.Z)((0,l.Z)(e),"showView",(0,c.Z)(a().mark((function t(){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.loadData();case 2:e.setState({modalVisible:!0});case 3:case"end":return t.stop()}}),t)})))),(0,p.Z)((0,l.Z)(e),"onCancel",(function(){e.setState({modalVisible:!1})})),e}return(0,i.Z)(C,[{key:"componentDidMount",value:function(){}},{key:"render",value:function(){var e=this,t=this.props,r=t.disabled,o=t.viewOrEdit,i=(t.value,this.state.molFile,new y.YlQ(""));return d.createElement(d.Fragment,null,d.createElement(h.Z,{onClick:this.showView},d.createElement(g.Z,null)," ","view"==o?"查 看":" 编 辑"),d.createElement(v.Z,{closable:!1,visible:this.state.modalVisible,forceRender:!0,centered:!0,style:{maxWidth:"calc(100vw - 62px)",maxHeight:"calc(100vw - 50px)"},width:1200,onCancel:function(){e.onCancel()},footer:r?[d.createElement(h.Z,{key:1,onClick:function(){e.onCancel()}},"取消")]:[d.createElement(m.Z,{key:2,placement:"top",title:"确定要取消本次编辑的数据吗?",onConfirm:this.onCancel,okText:"确定",cancelText:"取消"},d.createElement(h.Z,null,"取消")),d.createElement(h.Z,{key:3,onClick:function(){e.saveMolfile()},type:"primary"},"确定")],bodyStyle:{width:"1200px"}},d.createElement(Z.Z,{style:{height:"430px",border:"1px solid #00f",maxWidth:"calc(100vw - 92px)",maxHeight:"calc(100vw - 80px)"}},d.createElement(w.Z,{key:1,span:24,style:{height:"430px"}},d.createElement(k.M,{onInit:function(){var e=(0,c.Z)(a().mark((function e(t){return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n.g.ketcher=t;case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),staticResourcesUrl:"ketcher",structServiceProvider:i,errorHandler:void 0})))))}}]),C}(d.PureComponent);(0,p.Z)(b,"defaultProps",{viewOrEdit:"view"})},52624:function(){}}]);
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Draft v0.11.7
3
+ *
4
+ * Copyright (c) Facebook, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ .DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;width:100%;z-index:1}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1,lower-alpha) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2,lower-roman) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4,lower-alpha) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
10
+ @keyframes spinner-line-fade-more{0%,to{opacity:0}1%{opacity:1}}@keyframes spinner-line-fade-quick{0%,39%,to{opacity:.25}40%{opacity:1}}@keyframes spinner-line-fade-default{0%,to{opacity:.22}1%{opacity:1}}@keyframes spinner-line-shrink{0%,25%,to{transform:scale(.5);opacity:.25}26%{transform:scale(1);opacity:1}}.miew-canvas>canvas{display:block;width:100%;height:100%}.miew-canvas,.miew-container{width:100%;height:100%;overflow:hidden;position:relative}.miew-message{background-color:#ccc;display:table;width:100%;height:100%}.miew-message p{display:table-cell;vertical-align:middle;text-align:center;font-size:large}.mode-message{position:absolute;top:10px;right:10px;border-radius:4px;color:silver;background-color:rgba(64,64,64,.75);display:flex;align-items:left;justify-content:left;opacity:0}.atom-info{margin:10px;text-align:left}.overlay{pointer-events:none}
11
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}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:none;text-decoration:underline;-webkit-text-decoration:underline dotted;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}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-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}[hidden],template{display:none}.dialog_body{overflow:auto}.dialog_body::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.dialog_body::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.dialog_body::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.dialog_body::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.dialog_body::-webkit-scrollbar-thumb:vertical{min-height:10px}.dialog_body::-webkit-scrollbar-thumb:horizontal{min-width:10px}.scrollbar::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.scrollbar::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.scrollbar::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.scrollbar::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.scrollbar::-webkit-scrollbar-thumb:vertical{min-height:10px}.scrollbar::-webkit-scrollbar-thumb:horizontal{min-width:10px}.cliparea-module_cliparea__2bRGh{background:transparent;border:none;bottom:0;color:transparent;display:block;font-size:1px;height:0;left:-50px;outline:none;overflow:hidden;padding:0;position:absolute;resize:none;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;width:0;z-index:-1}.ActionButton-module_dialog_body__1fCuV{overflow:auto}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar-thumb:vertical{min-height:10px}.ActionButton-module_dialog_body__1fCuV::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar-thumb:vertical{min-height:10px}.ActionButton-module_scrollbar__1xtIM::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ActionButton-module_button__1aDHe{background-image:none;background:inherit;background-color:#fff;border:0;border-radius:4px;color:#333;display:inline-block;display:block;height:32px;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:32px}.ActionButton-module_button__1aDHe:focus,.ActionButton-module_button__1aDHe:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.ActionButton-module_button__1aDHe:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.ActionButton-module_button__1aDHe[disabled],fieldset[disabled] .ActionButton-module_button__1aDHe{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.ActionButton-module_button__1aDHe>input[type=file]{left:-9999px;position:absolute}.ActionButton-module_button__1aDHe+button,.ActionButton-module_button__1aDHe+input[type=reset],.ActionButton-module_button__1aDHe+input[type=submit]{margin-left:.3em}.ActionButton-module_button__1aDHe:after,.ActionButton-module_button__1aDHe:before{display:inline-block;vertical-align:middle}.ActionButton-module_button__1aDHe:after{left:0;position:absolute}.ActionButton-module_button__1aDHe:hover{background-image:none;box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);transform:scale(1.25);transition:transform,.2s,ease-out}.ActionButton-module_button__1aDHe:active,.ActionButton-module_button__1aDHe[disabled]{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.ActionButton-module_button__1aDHe>svg{fill:currentColor;font-size:26px;height:26px;left:.1em;position:absolute;top:.1em;width:26px}.ActionButton-module_selected__3ZHhG{background:#444;color:#fff}.ActionButton-module_selected__3ZHhG>span{color:#fff}.ActionButton-module_selected__3ZHhG>svg{fill:#fff;stroke:#fff;stroke-width:5}.smallEditor .ActionButton-module_button__1aDHe{height:24px;margin:4px;width:24px}.smallEditor .ActionButton-module_button__1aDHe>svg{fill:currentColor;font-size:20px;height:20px;left:.1em;position:absolute;top:.1em;width:20px}.DefaultMultiTool-module_default__-Mx03 button{display:initial}.GroupedMultiTool-module_group__12r63{display:flex;flex-direction:column}.GroupedMultiTool-module_group__12r63:not(:first-of-type){border-top:1px solid #ccc;margin-top:4px;padding-top:5px}.ToolbarMultiToolItem-module_dialog_body__qqUfd{overflow:auto}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar-thumb:vertical{min-height:10px}.ToolbarMultiToolItem-module_dialog_body__qqUfd::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar-thumb:vertical{min-height:10px}.ToolbarMultiToolItem-module_scrollbar__1Evg2::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ToolbarMultiToolItem-module_icon__3Gg-c{bottom:0;display:block;height:7px;position:absolute;right:0;width:7px}.ToolbarMultiToolItem-module_root__3rfIy:hover>.ToolbarMultiToolItem-module_icon__3Gg-c{fill:#1a7090}.ToolbarMultiToolItem-module_portal__yDg5_{background:#fff;border:1px solid #ccc;border-radius:5px;box-shadow:0 6px 12px rgba(0,0,0,.18);padding:2px;position:absolute;white-space:nowrap;word-break:keep-all;z-index:20}.ToolbarMultiToolItem-module_portal__yDg5_ kbd{color:#ccc;display:none;font:.8em monospace}.ToolbarMultiToolItem-module_portal-vertical__3ALtv{display:flex;flex-direction:column}.BottomToolbar-module_dialog_body__1seTr{overflow:auto}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar-thumb:vertical{min-height:10px}.BottomToolbar-module_dialog_body__1seTr::-webkit-scrollbar-thumb:horizontal{min-width:10px}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar-thumb:vertical{min-height:10px}.BottomToolbar-module_scrollbar__187iK::-webkit-scrollbar-thumb:horizontal{min-width:10px}.BottomToolbar-module_group__7cfMv{display:flex}.BottomToolbar-module_root__2DfHp{display:flex;flex-direction:row;flex-wrap:wrap}.BottomToolbar-module_root__2DfHp div{position:relative}.BottomToolbar-module_root__2DfHp kbd{color:#ccc;display:none;font:.8em monospace}.BottomToolbar-module_root__2DfHp .BottomToolbar-module_group__7cfMv{flex-direction:row}.BottomToolbar-module_root__2DfHp .BottomToolbar-module_group__7cfMv:not(:last-of-type){border-right:1px solid #ccc;margin-right:4px;padding-right:5px}.ArrowScroll-module_scroll__1OJeU{background:#fff;display:flex;flex-direction:column;min-height:40px;width:40px}.ArrowScroll-module_button__3mL76{background:transparent;border:none;font-size:15px!important;height:50%;width:100%}.ArrowScroll-module_down__14fPO{bottom:0;position:absolute}.ArrowScroll-module_up__20IXa{position:absolute;top:0}.LeftToolbar-module_dialog_body__g7CYP{overflow:auto}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar-thumb:vertical{min-height:10px}.LeftToolbar-module_dialog_body__g7CYP::-webkit-scrollbar-thumb:horizontal{min-width:10px}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar-thumb:vertical{min-height:10px}.LeftToolbar-module_scrollbar__3KdIt::-webkit-scrollbar-thumb:horizontal{min-width:10px}.LeftToolbar-module_group__Zftfu{display:flex}.LeftToolbar-module_root__1pZPV{-ms-overflow-style:none;display:flex;flex-direction:column;overflow:hidden}.LeftToolbar-module_root__1pZPV div{position:relative}.LeftToolbar-module_root__1pZPV kbd{color:#ccc;display:none;font:.8em monospace}.LeftToolbar-module_root__1pZPV .LeftToolbar-module_group__Zftfu{flex-direction:column}.LeftToolbar-module_root__1pZPV .LeftToolbar-module_group__Zftfu:not(:last-of-type){border-bottom:1px solid #ccc;margin-bottom:4px;padding-bottom:5px}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar-thumb:vertical{min-height:10px}.LeftToolbar-module_root__1pZPV::-webkit-scrollbar-thumb:horizontal{min-width:10px}.LeftToolbar-module_buttons__qe7KG{overflow:hidden;scroll-behavior:smooth}.LeftToolbar-module_listener__3IRt_{border-bottom:1px solid #ccc;display:flex;margin-bottom:4px;padding-bottom:5px}.LeftToolbar-module_borderOff__3_Hd3{border-bottom:none!important}.RightToolbar-module_dialog_body__2FxQ5{overflow:auto}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar-thumb:vertical{min-height:10px}.RightToolbar-module_dialog_body__2FxQ5::-webkit-scrollbar-thumb:horizontal{min-width:10px}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar-thumb:vertical{min-height:10px}.RightToolbar-module_scrollbar__2KD8s::-webkit-scrollbar-thumb:horizontal{min-width:10px}.RightToolbar-module_group__27rWT{display:flex}.RightToolbar-module_root__2mWed{-ms-overflow-style:none;display:flex;flex-direction:column;overflow:hidden}.RightToolbar-module_root__2mWed div{position:relative}.RightToolbar-module_root__2mWed kbd{color:#ccc;display:none;font:.8em monospace}.RightToolbar-module_root__2mWed .RightToolbar-module_group__27rWT{flex-direction:column}.RightToolbar-module_root__2mWed .RightToolbar-module_group__27rWT:not(:last-of-type){border-bottom:1px solid #ccc;margin-bottom:4px;padding-bottom:5px}.RightToolbar-module_root__2mWed::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.RightToolbar-module_root__2mWed::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.RightToolbar-module_root__2mWed::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.RightToolbar-module_root__2mWed::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.RightToolbar-module_root__2mWed::-webkit-scrollbar-thumb:vertical{min-height:10px}.RightToolbar-module_root__2mWed::-webkit-scrollbar-thumb:horizontal{min-width:10px}.RightToolbar-module_root__2mWed button{font-size:19px}.RightToolbar-module_buttons__YEBUb{overflow:hidden;scroll-behavior:smooth}.TopToolbar-module_dialog_body__5DXpn{overflow:auto}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar-thumb:vertical{min-height:10px}.TopToolbar-module_dialog_body__5DXpn::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar-thumb:vertical{min-height:10px}.TopToolbar-module_scrollbar__2X524::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TopToolbar-module_group__mQuYh{display:flex}.TopToolbar-module_root__1vz2h{display:flex;flex-direction:row;flex-wrap:wrap}.TopToolbar-module_root__1vz2h div{position:relative}.TopToolbar-module_root__1vz2h kbd{color:#ccc;display:none;font:.8em monospace}.TopToolbar-module_root__1vz2h .TopToolbar-module_group__mQuYh{flex-direction:row}.TopToolbar-module_root__1vz2h .TopToolbar-module_group__mQuYh:not(:last-of-type){border-right:1px solid #ccc;margin-right:4px;padding-right:5px}.TopToolbar-module_recognize__mEhId{border-right:none!important}.TopToolbar-module_meta__1kpxI{flex-grow:1;justify-content:flex-end}.TopToolbar-module_hideSeparators__2hPXE .TopToolbar-module_group__mQuYh:not(:last-of-type){border-right:none;margin-right:0;padding-right:0}.HelpLink-module_dialog_body__2mmL0{overflow:auto}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar-thumb:vertical{min-height:10px}.HelpLink-module_dialog_body__2mmL0::-webkit-scrollbar-thumb:horizontal{min-width:10px}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar-thumb:vertical{min-height:10px}.HelpLink-module_scrollbar__22dg6::-webkit-scrollbar-thumb:horizontal{min-width:10px}.HelpLink-module_button__2LM6B{background-image:none;background:inherit;background-color:#fff;border:0;border-radius:4px;color:#333;display:inline-block;display:block;height:32px;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:32px}.HelpLink-module_button__2LM6B:focus,.HelpLink-module_button__2LM6B:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.HelpLink-module_button__2LM6B:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.HelpLink-module_button__2LM6B[disabled],fieldset[disabled] .HelpLink-module_button__2LM6B{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.HelpLink-module_button__2LM6B>input[type=file]{left:-9999px;position:absolute}.HelpLink-module_button__2LM6B+button,.HelpLink-module_button__2LM6B+input[type=reset],.HelpLink-module_button__2LM6B+input[type=submit]{margin-left:.3em}.HelpLink-module_button__2LM6B:after,.HelpLink-module_button__2LM6B:before{display:inline-block;vertical-align:middle}.HelpLink-module_button__2LM6B:after{left:0;position:absolute}.HelpLink-module_button__2LM6B:hover{background-image:none;box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);transform:scale(1.25);transition:transform,.2s,ease-out}.HelpLink-module_button__2LM6B:active,.HelpLink-module_button__2LM6B[disabled]{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.HelpLink-module_button__2LM6B>svg{fill:currentColor;font-size:26px;height:26px;left:.1em;position:absolute;top:.1em;width:26px}.HelpLink-module_selected__ye-pk{background:#444;color:#fff}.HelpLink-module_selected__ye-pk>span{color:#fff}.HelpLink-module_selected__ye-pk>svg{fill:#fff;stroke:#fff;stroke-width:5}.smallEditor .HelpLink-module_button__2LM6B{height:24px;margin:4px;width:24px}.smallEditor .HelpLink-module_button__2LM6B>svg{fill:currentColor;font-size:20px;height:20px;left:.1em;position:absolute;top:.1em;width:20px}.Modal-module_dialog_body__2xp1p{overflow:auto}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar-thumb:vertical{min-height:10px}.Modal-module_dialog_body__2xp1p::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar-thumb:vertical{min-height:10px}.Modal-module_scrollbar__3PEdy::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Modal-module_modalOverlay__119Xk{align-items:center;background-color:hsla(0,0%,47%,.2);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%2710%27%3E%3Cpath d=%27M0 10 10 0zm12-2-4 4zM-2 2l4-4z%27 stroke=%27%23555%27 stroke-width=%272%27 stroke-opacity=%27.02%27/%3E%3C/svg%3E");background:none\9;bottom:0;display:flex;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#33777777",endColorstr="#33777777");justify-content:center;left:0;position:absolute;right:0;top:0;z-index:40}.Modal-module_modalOverlay__119Xk:not([ie9]){filter:progid:dximagetransform.microsoft.gradient(enabled="false")}.Modal-module_modalOverlay__119Xk.Modal-module_animate__1nYQB{transition:background-color .3s}.Modal-module_modalOverlay__119Xk.Modal-module_hide__2j1FM{background-color:hsla(0,0%,47%,.01)}.Modal-module_modalOverlay__119Xk:after{content:"";display:inline-block;height:100%;vertical-align:middle}.Modal-module_modalOverlay__119Xk .Modal-module_smallScreen__gmFQ5{max-height:90%;max-width:90%}.Dialog-module_dialog_body__22kuG{overflow:auto}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar-thumb:vertical{min-height:10px}.Dialog-module_dialog_body__22kuG::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar-thumb:vertical{min-height:10px}.Dialog-module_scrollbar__2MyW5::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Dialog-module_ok__3h8AF{background:#3e7bfa;color:#fff;margin-left:10px;margin-right:2px;width:40px}.Dialog-module_ok__3h8AF:hover{background:#3265cd}.Dialog-module_ok__3h8AF[disabled]{opacity:.4}.Dialog-module_cancel__1bFeD{background:#d1d5e3;color:#000;margin-left:auto;margin-right:2px}.Dialog-module_cancel__1bFeD:hover{background:#aaadb9}.Dialog-module_cancel__1bFeD[disabled]{background:transparent;border:1px solid #5b6077;opacity:.4}.Dialog-module_form__128Rp{background-clip:padding-box;background-color:#fff;border-radius:10px;display:flex;flex-direction:column;max-height:80%;max-width:80%;opacity:1;outline:0;overflow-x:auto;overflow-y:auto;position:relative;text-align:left;transform:scale(1);transition:transform .3s,opacity .3s;vertical-align:middle}.Dialog-module_form__128Rp.Dialog-module_hide__2ygcN{opacity:.2;transform:scale(.5)}.Dialog-module_form__128Rp>*{margin:0 15px;max-height:65vh}.Dialog-module_form__128Rp footer,.Dialog-module_form__128Rp header{margin:0;padding:.2em 1em}.Dialog-module_form__128Rp header{align-items:center;border-radius:.7em .7em 0 0;display:flex;font-size:1.2em;height:40px;line-height:1.3}.Dialog-module_form__128Rp footer{align-items:center;border-radius:0 0 .7em .7em;clear:both;display:flex;height:40px;text-align:right}.Dialog-module_form__128Rp footer button,.Dialog-module_form__128Rp footer input[type=reset],.Dialog-module_form__128Rp footer input[type=submit]{background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;color:#333;display:inline-block;margin:0 0 0 3px;padding:.42em .85em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.Dialog-module_form__128Rp footer button:focus,.Dialog-module_form__128Rp footer button:hover,.Dialog-module_form__128Rp footer input[type=reset]:focus,.Dialog-module_form__128Rp footer input[type=reset]:hover,.Dialog-module_form__128Rp footer input[type=submit]:focus,.Dialog-module_form__128Rp footer input[type=submit]:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.Dialog-module_form__128Rp footer button:active,.Dialog-module_form__128Rp footer input[type=reset]:active,.Dialog-module_form__128Rp footer input[type=submit]:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.Dialog-module_form__128Rp footer button[disabled],.Dialog-module_form__128Rp footer input[type=reset][disabled],.Dialog-module_form__128Rp footer input[type=submit][disabled],fieldset[disabled] .Dialog-module_form__128Rp footer button,fieldset[disabled] .Dialog-module_form__128Rp footer input[type=reset],fieldset[disabled] .Dialog-module_form__128Rp footer input[type=submit]{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.Dialog-module_form__128Rp footer button>input[type=file],.Dialog-module_form__128Rp footer input[type=reset]>input[type=file],.Dialog-module_form__128Rp footer input[type=submit]>input[type=file]{left:-9999px;position:absolute}.Dialog-module_form__128Rp footer button+button,.Dialog-module_form__128Rp footer button+input[type=reset],.Dialog-module_form__128Rp footer button+input[type=submit],.Dialog-module_form__128Rp footer input[type=reset]+button,.Dialog-module_form__128Rp footer input[type=reset]+input[type=reset],.Dialog-module_form__128Rp footer input[type=reset]+input[type=submit],.Dialog-module_form__128Rp footer input[type=submit]+button,.Dialog-module_form__128Rp footer input[type=submit]+input[type=reset],.Dialog-module_form__128Rp footer input[type=submit]+input[type=submit]{margin-left:.3em}.Dialog-module_form__128Rp footer .Dialog-module_cancel__1bFeD,.Dialog-module_form__128Rp footer .Dialog-module_ok__3h8AF,.Dialog-module_form__128Rp footer button{border:none;border-radius:2px;height:26px}.Dialog-module_form__128Rp footer button[disabled]{background:transparent;border:1px solid #5b6077;opacity:.4}.Dialog-module_form__128Rp footer button{background:#d1d5e3}.Dialog-module_form__128Rp footer button:hover{background:#aaadb9}.Spinner-module_spinner__1tgbi{align-items:center;display:flex;height:30px;justify-content:center;width:30px}.Spinner-module_spinner__1tgbi:after{-webkit-animation:Spinner-module_rotate__JVEh3 .7s steps(8) infinite;animation:Spinner-module_rotate__JVEh3 .7s steps(8) infinite;border-radius:50%;box-shadow:10px 0 0 2px #333,7px 7px 0 2px #999,0 10px 0 2px #999,-7px 7px 0 2px #999,-10px 0 0 2px #999,-7px -7px 0 2px #999,0 -10px 0 2px #333,7px -7px 0 2px #111;content:"";display:block;height:2px;width:2px}@-webkit-keyframes Spinner-module_rotate__JVEh3{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Spinner-module_rotate__JVEh3{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.StructEditor-module_dialog_body__1WUMs{overflow:auto}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar-thumb:vertical{min-height:10px}.StructEditor-module_dialog_body__1WUMs::-webkit-scrollbar-thumb:horizontal{min-width:10px}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar-thumb:vertical{min-height:10px}.StructEditor-module_scrollbar__2RsBC::-webkit-scrollbar-thumb:horizontal{min-width:10px}.StructEditor-module_spinnerOverlay__Q8idX{align-items:center;display:flex;height:100%;justify-content:center;position:absolute;top:0;width:100%}.StructEditor-module_canvas__3PrVC{border:1px solid #ccc;border-radius:5px;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.StructEditor-module_canvas__3PrVC .StructEditor-module_measureLog__3FnNR{background-color:#fff;border:1px solid #ccc;border-radius:0 5px;height:1.2em;min-width:8em;opacity:0;padding:.3em;position:absolute;right:0;text-align:center;top:0;transition:opacity .5s}.StructEditor-module_canvas__3PrVC .StructEditor-module_measureLog__3FnNR.StructEditor-module_visible__l4qPY{opacity:1}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar-thumb:vertical{min-height:10px}.StructEditor-module_canvas__3PrVC::-webkit-scrollbar-thumb:horizontal{min-width:10px}.StructEditor-module_canvas__3PrVC .react-contextmenu-wrapper{height:100%}.StructEditor-module_canvas__3PrVC .react-contextmenu{background-color:#fff;border-radius:4px;box-shadow:0 2px 5px 0 rgba(0,0,0,.54);padding:4px}.StructEditor-module_canvas__3PrVC .react-contextmenu-item{background:0 0;border:0;color:#373a3c;cursor:pointer;font-weight:400;line-height:1.5;padding:3px 20px;text-align:inherit;white-space:nowrap}.StructEditor-module_canvas__3PrVC .react-contextmenu-item--selected{background-color:#20a0ff;border-color:#20a0ff;color:#fff;text-decoration:none}.StructEditor-module_canvas__3PrVC .react-contextmenu-item--divider{border-bottom:1px solid rgba(0,0,0,.15);cursor:inherit;margin-bottom:3px;padding:2px 0}.StructEditor-module_intermediateCanvas__jP3l0{height:100%;overflow:auto;position:relative;width:100%}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar-thumb:vertical{min-height:10px}.StructEditor-module_intermediateCanvas__jP3l0::-webkit-scrollbar-thumb:horizontal{min-width:10px}.smallEditor .StructEditor-module_canvas__3PrVC .StructEditor-module_measureLog__3FnNR{right:0;top:0}.ContextMenu-module_isHidden__rKY3u{display:none}.About-module_about__1a4h4{width:25em}.About-module_about__1a4h4>a{display:block;margin:2em 1em}.About-module_about__1a4h4 var{display:inline-block;font-style:normal;font-weight:700;margin-left:.5em}.About-module_about__1a4h4 time{font-style:italic}.About-module_about__1a4h4 a{color:#1a7090}.About-module_about__1a4h4 a:hover{color:#5e5e5e}.About-module_about__1a4h4 dl{line-height:1.4em;margin:0 1em 1em;position:relative;vertical-align:bottom}.About-module_about__1a4h4 dd{margin-bottom:.5em;text-align:right}.About-module_about__1a4h4 dt+dd{margin:-1.4em 0 0}.input-module_fieldSetItem__1B6Qg .input-module_fieldSetLabel__3-etE{position:relative}.input-module_fieldSetItem__1B6Qg input[type=checkbox]:checked{opacity:0;position:absolute}.input-module_fieldSetItem__1B6Qg input[type=checkbox]:checked+.input-module_customCheckbox__1W2bW{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 height=%2724%27 viewBox=%273 3 18 18%27 width=%2724%27%3E%3Cpath d=%27M0 0h24v24H0z%27 fill=%27none%27/%3E%3Cpath fill=%27%230075ff%27 d=%27M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-9 14-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z%27/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:13px;margin-left:3px;margin-right:3.6px;vertical-align:middle;width:13px}.form-module_dialog_body__20TUE{overflow:auto}.form-module_dialog_body__20TUE::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.form-module_dialog_body__20TUE::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.form-module_dialog_body__20TUE::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.form-module_dialog_body__20TUE::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.form-module_dialog_body__20TUE::-webkit-scrollbar-thumb:vertical{min-height:10px}.form-module_dialog_body__20TUE::-webkit-scrollbar-thumb:horizontal{min-width:10px}.form-module_scrollbar__1ZD6q::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.form-module_scrollbar__1ZD6q::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.form-module_scrollbar__1ZD6q::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.form-module_scrollbar__1ZD6q::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.form-module_scrollbar__1ZD6q::-webkit-scrollbar-thumb:vertical{min-height:10px}.form-module_scrollbar__1ZD6q::-webkit-scrollbar-thumb:horizontal{min-width:10px}.form-module_dataError__3okY_ input[type=number],.form-module_dataError__3okY_ input[type=search],.form-module_dataError__3okY_ input[type=text],.form-module_dataError__3okY_ select,.form-module_dataError__3okY_ textarea{border:1px solid #f55}.form-module_dataError__3okY_ input[type=number]:focus,.form-module_dataError__3okY_ input[type=number]:hover,.form-module_dataError__3okY_ input[type=search]:focus,.form-module_dataError__3okY_ input[type=search]:hover,.form-module_dataError__3okY_ input[type=text]:focus,.form-module_dataError__3okY_ input[type=text]:hover,.form-module_dataError__3okY_ select:focus,.form-module_dataError__3okY_ select:hover,.form-module_dataError__3okY_ textarea:focus,.form-module_dataError__3okY_ textarea:hover{box-shadow:inset 0 0 1px 1px rgba(255,85,85,.12)}.form-module_dataError__3okY_:hover:after{background:#fee;border:1px solid #f55;border-radius:4px;content:"Error: " attr(error);display:block;font-size:.9em;line-height:1em;max-width:25em;padding:.35em;position:fixed;white-space:pre-wrap;z-index:2}.Accordion-module_accordion_tab__2QnRN{margin-top:2px}.Accordion-module_accordion_tab__2QnRN>a:first-child{background-color:#eee;border:1px solid #ccc;border-bottom:0;border-radius:6px 6px 0 0;cursor:pointer;display:block;padding:6px 0;text-align:center;transition:border-radius .1s linear;transition-delay:0s;z-index:3}.Accordion-module_accordion_tab__2QnRN>a:first-child:before{content:"−";float:left;margin-left:30px}.Accordion-module_accordion_tab__2QnRN>a:first-child:hover{background-color:#9dc2d0}.Accordion-module_accordion_tab__2QnRN>:nth-child(2){overflow:hidden;transition-duration:.5s;transition-property:height,padding;transition-timing-function:linear}.Accordion-module_accordion_tab__2QnRN.Accordion-module_hidden__1uz3S>a:first-child{border-radius:6px;transition-delay:.4s}.Accordion-module_accordion_tab__2QnRN.Accordion-module_hidden__1uz3S>a:first-child:before{content:"+"}.Accordion-module_accordion_tab__2QnRN.Accordion-module_hidden__1uz3S>:nth-child(2){border:0;height:0;padding:0}.ColorPicker-module_colorPickerInput__2GTGr{border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px #00000013;box-sizing:border-box;display:inline-block;line-height:1.4;margin:2px;padding:.35em .3em;position:relative;text-align:left;vertical-align:middle;width:50%}.ColorPicker-module_colorPickerInput__2GTGr:hover{box-shadow:inset 0 0 1px 1px #0000001f}.ColorPicker-module_colorPickerWrap__x9LyI{position:absolute;right:0;top:100%;z-index:1}.ColorPicker-module_colorPicker__3Po9u{right:0;top:0}.ColorPicker-module_colorPicker__3Po9u input{margin-top:2px;position:relative}.ColorPicker-module_colorPicker__3Po9u div{border-radius:0}.ColorPicker-module_colorPickerBtn__MP1x2{align-items:center;box-sizing:border-box;display:flex;justify-content:space-between}.ColorPicker-module_colorPickerPreview__30h0H{height:15px;width:15px}.ColorPicker-module_colorPickerOverlay__3w0lD{bottom:0;left:0;position:fixed;right:0;top:0}.buttons-module_dialog_body__2MMAi{overflow:auto}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar-thumb:vertical{min-height:10px}.buttons-module_dialog_body__2MMAi::-webkit-scrollbar-thumb:horizontal{min-width:10px}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar-thumb:vertical{min-height:10px}.buttons-module_scrollbar__1hmTI::-webkit-scrollbar-thumb:horizontal{min-width:10px}.buttons-module_openButton___L4I1{float:left}.Settings-module_settings__1BBve{width:38em}.Settings-module_accordion__3Z9nL,.Settings-module_settings__1BBve .Settings-module_warning__j904H{margin:.3em}.Settings-module_accordion__3Z9nL label{display:block;height:3.1em;line-height:3.1em;text-align:right}.Settings-module_accordion__3Z9nL label input,.Settings-module_accordion__3Z9nL label select{width:50%}.Settings-module_accordion__3Z9nL fieldset{border-radius:0 0 6px 6px;height:12.4em}.Settings-module_accordion__3Z9nL .Settings-module_server__2nYEf{height:15.5em}.Settings-module_accordion__3Z9nL .Settings-module_viewer__2AqMZ{height:9.3em}.Settings-module_accordion__3Z9nL .Settings-module_general__3cmXi{height:21.7em}.Settings-module_accordion__3Z9nL .Settings-module_stereochemistry__Ce-bh{height:34.1em}.Tabs-module_tabs__1z9yo{width:100%}.Tabs-module_tabs__1z9yo a{background-color:#eee;border:1px solid transparent;border-radius:4px 4px 0 0;cursor:pointer;display:inline-block;line-height:14px;margin-right:2px;padding:8px 12px;text-align:center}.Tabs-module_tabs__1z9yo a:hover{background-color:#9dc2d0}.Tabs-module_tabs__1z9yo .Tabs-module_active__1c5a4{background-color:#fff;border:1px solid;border-color:#ddd #ddd transparent}.Check-module_dialog_body__3Ah47{overflow:auto}.Check-module_dialog_body__3Ah47::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Check-module_dialog_body__3Ah47::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Check-module_dialog_body__3Ah47::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Check-module_dialog_body__3Ah47::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Check-module_dialog_body__3Ah47::-webkit-scrollbar-thumb:vertical{min-height:10px}.Check-module_dialog_body__3Ah47::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Check-module_scrollbar__2RJKn::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Check-module_scrollbar__2RJKn::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Check-module_scrollbar__2RJKn::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Check-module_scrollbar__2RJKn::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Check-module_scrollbar__2RJKn::-webkit-scrollbar-thumb:vertical{min-height:10px}.Check-module_scrollbar__2RJKn::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Check-module_check__26L3I .Check-module_tabs__3el-i{outline:none}.Check-module_check__26L3I fieldset{border-color:#ddd;border-radius:0 4px 4px 4px;display:flex;flex-direction:column;height:30em;margin:0;overflow-y:auto;padding:0 0 .3em .3em;width:25em}.Check-module_check__26L3I fieldset::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Check-module_check__26L3I fieldset::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Check-module_check__26L3I fieldset::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Check-module_check__26L3I fieldset::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Check-module_check__26L3I fieldset::-webkit-scrollbar-thumb:vertical{min-height:10px}.Check-module_check__26L3I fieldset::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Check-module_check__26L3I fieldset li{display:block;margin:1.2em 0 .3em .3em}.Check-module_check__26L3I fieldset dt{font-weight:700;margin:1.1em 0 .3em .3em}.Check-module_check__26L3I fieldset dd{margin-left:1.5em;word-break:break-word}.FormulaInput-module_dialog_body__1yj6b{overflow:auto}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar-thumb:vertical{min-height:10px}.FormulaInput-module_dialog_body__1yj6b::-webkit-scrollbar-thumb:horizontal{min-width:10px}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar-thumb:vertical{min-height:10px}.FormulaInput-module_scrollbar__14e_s::-webkit-scrollbar-thumb:horizontal{min-width:10px}.FormulaInput-module_chem_input__1ip3S{background:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-sizing:border-box;display:inline-block;height:2.4em;line-height:1.42857143;margin:2px 1em 2px 2px;overflow:hidden;padding:.35em .15em .35em .3em;vertical-align:middle;white-space:nowrap;width:14em}.FormulaInput-module_chem_input__1ip3S:focus,.FormulaInput-module_chem_input__1ip3S:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.FormulaInput-module_chem_input__1ip3S[disabled],.FormulaInput-module_chem_input__1ip3S[readonly],fieldset[disabled] .FormulaInput-module_chem_input__1ip3S{background:#efefef;cursor:not-allowed;opacity:.6}.FormulaInput-module_chem_input__1ip3S:active,.FormulaInput-module_chem_input__1ip3S:focus{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);outline:0}.Analyse-module_analyse__1aHI_ label{display:inline-block;margin-right:1em;vertical-align:middle;width:10em}.Analyse-module_analyse__1aHI_ input[type=text]{margin-right:1em;width:14em}.Analyse-module_analyse__1aHI_ select{margin:0;width:10em}.spin-module_ketSpinner__2jeLy{-webkit-animation:spin-module_spin__1ptvy 3s linear infinite;animation:spin-module_spin__1ptvy 3s linear infinite;border:16px solid #f3f3f3;border-radius:50%;border-top-color:#00f;display:block;height:5em;margin:auto;width:5em}@-webkit-keyframes spin-module_spin__1ptvy{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin-module_spin__1ptvy{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Recognize-module_recognize__rQrHd .Recognize-module_change_version__1o76l{display:block;text-align:right}.Recognize-module_recognize__rQrHd .Recognize-module_output__1FWiN,.Recognize-module_recognize__rQrHd .Recognize-module_picture__2xXV-{display:table-cell;height:25em;text-align:center;vertical-align:middle;width:21em}.Recognize-module_recognize__rQrHd .Recognize-module_struct__3xGZ9,.Recognize-module_recognize__rQrHd img{max-height:100%;max-width:21em;overflow:hidden;position:relative}.Recognize-module_recognize__rQrHd label{display:block}.Recognize-module_recognize__rQrHd .Recognize-module_open_filename__2xNsW{display:inline-block;float:left;max-width:200px;overflow:hidden;padding:6px;text-overflow:ellipsis;white-space:nowrap}.Miew-module_dialog_body__2nm4k{overflow:auto}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar-thumb:vertical{min-height:10px}.Miew-module_dialog_body__2nm4k::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar-thumb:vertical{min-height:10px}.Miew-module_scrollbar__3wv-C::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Miew-module_warning__3D24r{display:inline-block;float:left;line-height:2em}.Miew-module_miewContainer__27GNL .Miew-module_atom-info__bz2qH{align-items:left;background-color:rgba(64,64,64,.75);border-radius:4px;color:silver;display:flex;justify-content:left;opacity:0;position:absolute;right:10px;top:10px}.Miew-module_miewContainer__27GNL .Miew-module_atom-info__bz2qH p{margin:10px;text-align:left}.Atom-module_atomProps__2KzKA fieldset{margin-top:1.5em;text-align:right}.Atom-module_atomProps__2KzKA fieldset label{display:inline-block;margin:.3em 0}.Atom-module_atomProps__2KzKA .Atom-module_main__10Vl_{border:none;float:left;width:14.5em}.Atom-module_atomProps__2KzKA .Atom-module_main__10Vl_ input{width:8em}.Atom-module_atomProps__2KzKA .Atom-module_query__1FSWe,.Atom-module_atomProps__2KzKA .Atom-module_reaction__13XUc{clear:right;float:right;width:16em}.Atom-module_atomProps__2KzKA .Atom-module_query__1FSWe input[type=checkbox],.Atom-module_atomProps__2KzKA .Atom-module_reaction__13XUc input[type=checkbox]{margin:.6em .3em}.Attach-module_attachPoints__9wf7s form{text-align:right;width:17em}.Attach-module_attachPoints__9wf7s form label{display:inline-block;margin:1.03333333em}.Automap-module_automap__1PNe3{width:22em}.Automap-module_automap__1PNe3 label{display:block;line-height:3.1em;text-align:right}.Bond-module_bond__3nb-U label{display:block;text-align:right}.Bond-module_bond__3nb-U select{width:12em}.IfThenSelect-module_field__3L_It{display:block}.RgroupLogic-module_rgroupLogic___cYsG label{display:inline-block;line-height:3.1em;text-align:right}.RgroupLogic-module_rgroupLogic___cYsG input[type=text]{width:7em}.Open-module_dialog_body__WjEKW{overflow:auto}.Open-module_dialog_body__WjEKW::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Open-module_dialog_body__WjEKW::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Open-module_dialog_body__WjEKW::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Open-module_dialog_body__WjEKW::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Open-module_dialog_body__WjEKW::-webkit-scrollbar-thumb:vertical{min-height:10px}.Open-module_dialog_body__WjEKW::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Open-module_scrollbar__3mhIL::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Open-module_scrollbar__3mhIL::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Open-module_scrollbar__3mhIL::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Open-module_scrollbar__3mhIL::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Open-module_scrollbar__3mhIL::-webkit-scrollbar-thumb:vertical{min-height:10px}.Open-module_scrollbar__3mhIL::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Open-module_open__9iwld label{display:block;width:22.5em}.Open-module_open__9iwld label input{margin-bottom:.1em}.Open-module_open__9iwld textarea{min-height:23em;min-width:32em;overflow:auto;resize:both;white-space:pre}.Open-module_open__9iwld textarea::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Open-module_open__9iwld textarea::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Open-module_open__9iwld textarea::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Open-module_open__9iwld textarea::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Open-module_open__9iwld textarea::-webkit-scrollbar-thumb:vertical{min-height:10px}.Open-module_open__9iwld textarea::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Save-module_dialog_body__3CM3F{overflow:auto}.Save-module_dialog_body__3CM3F::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Save-module_dialog_body__3CM3F::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Save-module_dialog_body__3CM3F::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Save-module_dialog_body__3CM3F::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Save-module_dialog_body__3CM3F::-webkit-scrollbar-thumb:vertical{min-height:10px}.Save-module_dialog_body__3CM3F::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Save-module_scrollbar__2Y44q::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Save-module_scrollbar__2Y44q::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Save-module_scrollbar__2Y44q::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Save-module_scrollbar__2Y44q::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Save-module_scrollbar__2Y44q::-webkit-scrollbar-thumb:vertical{min-height:10px}.Save-module_scrollbar__2Y44q::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Save-module_save__2n3pO .Save-module_saveTmpl__2EQ_f{float:left}.Save-module_save__2n3pO .Save-module_formContainer__1nz39{display:flex;flex-direction:column;height:415px;width:480px}.Save-module_save__2n3pO .Save-module_warnings__2c1LO{border:1px solid #ccc;border-radius:4px;height:50px;margin:2px;overflow:auto;padding:2px 5px}.Save-module_save__2n3pO .Save-module_warnings__2c1LO .Save-module_warningsContainer__1ufoa{display:flex}.Save-module_save__2n3pO .Save-module_warnings__2c1LO .Save-module_warningsContainer__1ufoa .Save-module_warningsArr__2ODO0{color:#f55;margin:2px;white-space:pre-line;word-break:break-word}.Save-module_save__2n3pO .Save-module_warnings__2c1LO .Save-module_warning__3bJTI{color:#f55}.Save-module_save__2n3pO .Save-module_warnings__2c1LO .Save-module_warning__3bJTI:before{content:"⚠ "}.Save-module_save__2n3pO form>label{display:inline-block;margin:0 .3em;text-align:right}.Save-module_save__2n3pO form>label input,.Save-module_save__2n3pO form>label select{width:12.25em}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI{cursor:text;display:block;height:100%;min-width:34em;overflow:auto;resize:none;white-space:pre}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar-thumb:vertical{min-height:10px}.Save-module_save__2n3pO .Save-module_previewArea__3dnoI::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Save-module_save__2n3pO .Save-module_saveImageContainer__3A7Ab{height:415px;width:480px}.Save-module_save__2n3pO .Save-module_saveImageContainer__3A7Ab label{margin:0 .3em}.smallEditor .Save-module_formContainer__1nz39{height:325px;width:380px}.smallEditor .Save-module_warnings__2c1LO{height:50px}.smallEditor .Save-module_saveImageContainer__3A7Ab{height:325px;width:380px}.enhancedStereo-module_enhancedStereo__3TQaX{width:330px}.enhancedStereo-module_enhancedStereo__3TQaX .enhancedStereo-module_stereoLabelItem__2yo2m{align-items:center;display:flex;margin:2px;min-height:2.4em}.enhancedStereo-module_enhancedStereo__3TQaX .enhancedStereo-module_labelGroupSelect__1JnDA{margin-left:5px;margin-right:5px}.emptySearchResult-module_emptySearch__OJFcG{align-items:center;display:flex;font-size:2em;justify-content:center;min-height:240px;width:550px}.TemplateTable-module_dialog_body__3dNxX{overflow:auto}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar-thumb:vertical{min-height:10px}.TemplateTable-module_dialog_body__3dNxX::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar-thumb:vertical{min-height:10px}.TemplateTable-module_scrollbar__AT1HY::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TemplateTable-module_table__CPv9v{display:flex;flex-wrap:wrap;overflow:hidden;padding:0;width:555px}.TemplateTable-module_tableContent__1e0Xn{align-content:flex-start;display:flex;flex-wrap:wrap;height:312px;overflow-x:hidden;overflow-y:scroll;width:100%}.TemplateTable-module_tableContent__1e0Xn:focus{outline:none}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar-thumb:vertical{min-height:10px}.TemplateTable-module_tableContent__1e0Xn::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TemplateTable-module_struct__3H4EB{border:1px solid #ccc;border-radius:5px;box-sizing:border-box;display:block;height:98%;padding:1em;position:absolute;width:98%}.TemplateTable-module_struct__3H4EB:hover{background:#f2f2f2}.TemplateTable-module_td__5kmsK{position:relative}.TemplateTable-module_td__5kmsK:before{background-color:#fff;border-radius:3px;color:grey;content:attr(title);font-size:10px;left:.3em;max-width:155px;overflow:hidden;padding:0 4px;position:absolute;top:0;width:content-box;z-index:10}.TemplateTable-module_td__5kmsK.TemplateTable-module_selected__1BNKz .TemplateTable-module_struct__3H4EB{background-color:#d1e2e9}.TemplateTable-module_btnContainer__1J5Yg{bottom:0;display:flex;flex-direction:row;margin:0 4px 2px 0;position:absolute;right:0}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7{background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;border-radius:0;color:#333;display:inline-block;margin:0;padding:.42em .85em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7:focus,.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7[disabled],fieldset[disabled] .TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7>input[type=file]{left:-9999px;position:absolute}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7+button,.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7+input[type=reset],.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_attachButton__FLpk7+input[type=submit]{margin-left:.3em}.TemplateTable-module_btnContainer__1J5Yg .TemplateTable-module_deleteButton__NxTLR{border:1px solid #ccc;border-radius:0;margin:0}div.TemplateTable-module_struct__3H4EB{padding:0}.functionalGroups-module_dialog_body__5BJFo{overflow:auto}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar-thumb:vertical{min-height:10px}.functionalGroups-module_dialog_body__5BJFo::-webkit-scrollbar-thumb:horizontal{min-width:10px}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar-thumb:vertical{min-height:10px}.functionalGroups-module_scrollbar__1nTVn::-webkit-scrollbar-thumb:horizontal{min-width:10px}.functionalGroups-module_warning__3QVhH{color:#f55}.functionalGroups-module_warning__3QVhH:before{content:"⚠ "}.functionalGroups-module_functionalGroups__29PxF>div{display:flex}.functionalGroups-module_functionalGroups__29PxF label{display:flex;line-height:2.6em;margin-bottom:1em;text-align:center}.functionalGroups-module_functionalGroups__29PxF label input[type=search]{margin-left:4px;width:100%}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_tableGroupWrap__3TEvj{display:flex;height:calc(100% - 3.6em - 4px)}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS{background:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-sizing:border-box;display:inline-block;flex-shrink:0;height:2.4em;height:100%;line-height:1.42857143;margin:2px;min-height:200px;overflow:auto;padding:.35em .15em .35em .3em;vertical-align:middle;width:11em}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS:active,.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS:focus{outline:0}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS:focus,.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS[disabled],.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS[readonly],fieldset[disabled] .functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS{background:#efefef;cursor:not-allowed;opacity:.6}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS li{cursor:default;display:block;padding:0 2px 1px}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS li:hover{background-color:#f2f2f2}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS li.functionalGroups-module_selected__bicut{background-color:#9dc2d0;color:#fff}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_groups__8diLS li.functionalGroups-module_split__2jzAX{border-top:1px solid #ccc;margin-top:2px;padding-top:2px}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_singleColLayout__SpXJD{flex-wrap:wrap}.functionalGroups-module_functionalGroups__29PxF .functionalGroups-module_singleColLayout__SpXJD .functionalGroups-module_td__ucXnj{flex-grow:1;max-width:230px}.functionalGroups-module_attach__P14wv label{display:block;font-size:16px;padding:0 5px}.functionalGroups-module_attach__P14wv .functionalGroups-module_warning__3QVhH{padding:0 5px}.functionalGroups-module_attach__P14wv .functionalGroups-module_editor__1J_8X{border:1px solid #ccc;border-radius:5px;height:25em;max-width:30em;overflow:auto;position:relative}.AtomInfo-module_dialog_body__ORxDC{overflow:auto}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar-thumb:vertical{min-height:10px}.AtomInfo-module_dialog_body__ORxDC::-webkit-scrollbar-thumb:horizontal{min-width:10px}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar-thumb:vertical{min-height:10px}.AtomInfo-module_scrollbar__2XSo9::-webkit-scrollbar-thumb:horizontal{min-width:10px}.AtomInfo-module_ket_atom_info__3HqqP{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);left:18em;opacity:1;padding:.75em;position:absolute;top:2em;transition:opacity 1s,visibility 0s;width:7em}.AtomInfo-module_none__1Bm_x{opacity:0;transition:opacity 2s,visibility 2s}.ElementsTable-module_dialog_body__2BuBn{overflow:auto}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar-thumb:vertical{min-height:10px}.ElementsTable-module_dialog_body__2BuBn::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar-thumb:vertical{min-height:10px}.ElementsTable-module_scrollbar__h8h59::-webkit-scrollbar-thumb:horizontal{min-width:10px}.ElementsTable-module_table__35x0F{position:relative}.ElementsTable-module_table__35x0F td,.ElementsTable-module_table__35x0F th{margin:0;padding:0;text-align:center;vertical-align:middle}.ElementsTable-module_table__35x0F .ElementsTable-module_main_row__21iwj,.ElementsTable-module_table__35x0F th{font-size:.8em;font-weight:400;opacity:.6;padding:.3em .8em}.ElementsTable-module_table__35x0F .ElementsTable-module_outiner_row__2hruz{text-align:right;vertical-align:top}.ElementsTable-module_table__35x0F tr:nth-of-type(8){border-bottom:1em solid transparent}.ElementsTable-module_table__35x0F .ElementsTable-module_diatomic__2duFN{background:#e7ff8f}.ElementsTable-module_table__35x0F .ElementsTable-module_noble__InJ92{background:#c0ffff}.ElementsTable-module_table__35x0F .ElementsTable-module_alkali__qiPZ9{background:#f66}.ElementsTable-module_table__35x0F .ElementsTable-module_alkaline-earth__3tT5K{background:#ffdead}.ElementsTable-module_table__35x0F .ElementsTable-module_metalloid__--9tT{background:#cc9}.ElementsTable-module_table__35x0F .ElementsTable-module_polyatomic__BDUKD{background:#a1ffc3}.ElementsTable-module_table__35x0F .ElementsTable-module_post-transition__1YWtx{background:#ccc}.ElementsTable-module_table__35x0F .ElementsTable-module_transition__2mhhb{background:#ffc0c0}.ElementsTable-module_table__35x0F .ElementsTable-module_lanthanide__mVe3r{background:#ffbfff}.ElementsTable-module_table__35x0F .ElementsTable-module_actinide__3U5Vv{background:#f9c}.ElementsTable-module_table__35x0F .ElementsTable-module_unknown-props__1jELq{background:#e8e8e8}.ElementsTable-module_table__35x0F .ElementsTable-module_solid__1T9ON:after,.ElementsTable-module_table__35x0F .ElementsTable-module_unknown-state__2DuKP:after{color:#222}.ElementsTable-module_table__35x0F .ElementsTable-module_metal__ToB4y:after{color:#006}.ElementsTable-module_table__35x0F .ElementsTable-module_gas__12rpT:after{color:#c00}.ElementsTable-module_table__35x0F .ElementsTable-module_liquid__1IlKl:after{color:#0a0}.ElementsTable-module_button__dQ1fI{background-color:#fff;background-image:none;border:0;border-radius:4px;color:#333;display:inline-block;display:block;font-size:1.3em;height:2em;line-height:2;margin:1px;padding:.15em;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:2em}.ElementsTable-module_button__dQ1fI:focus,.ElementsTable-module_button__dQ1fI:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.ElementsTable-module_button__dQ1fI:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.ElementsTable-module_button__dQ1fI[disabled],fieldset[disabled] .ElementsTable-module_button__dQ1fI{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.ElementsTable-module_button__dQ1fI>input[type=file]{left:-9999px;position:absolute}.ElementsTable-module_button__dQ1fI+button,.ElementsTable-module_button__dQ1fI+input[type=reset],.ElementsTable-module_button__dQ1fI+input[type=submit]{margin-left:.3em}.ElementsTable-module_button__dQ1fI:after{content:attr(value);font-size:.5em;line-height:1;opacity:.6;position:absolute;right:.3em;top:.3em;vertical-align:top}.ElementsTable-module_button__dQ1fI:hover{background:#fff;box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);transform:scale(1.25);transition:transform,.2s,ease-out;z-index:60}.ElementsTable-module_button__dQ1fI:hover:after{visibility:hidden}.ElementsTable-module_button__dQ1fI:not(:hover)>span{color:#000}.ElementsTable-module_button__dQ1fI:active{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.ElementsTable-module_button__dQ1fI.ElementsTable-module_selected__1LThb{background:#444;color:#fff}.ElementsTable-module_button__dQ1fI.ElementsTable-module_selected__1LThb:after{visibility:hidden}.ElementsTable-module_button__dQ1fI.ElementsTable-module_selected__1LThb>span{color:#fff}.ElementsTable-module_button__dQ1fI.ElementsTable-module_selected__1LThb>svg{fill:#fff;stroke:#fff;stroke-width:5}.GenSet-module_dialog_body__1qUhV{overflow:auto}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar-thumb:vertical{min-height:10px}.GenSet-module_dialog_body__1qUhV::-webkit-scrollbar-thumb:horizontal{min-width:10px}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar-thumb:vertical{min-height:10px}.GenSet-module_scrollbar__13iTN::-webkit-scrollbar-thumb:horizontal{min-width:10px}.GenSet-module_button__JlbxE{background-color:#fff;background-image:none;background:inherit;border:1px solid #ccc;border-radius:4px;color:#333;display:inline-block;font-size:1.1em;height:2em;line-height:1;margin:0;padding:.15em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:2.5em}.GenSet-module_button__JlbxE:focus,.GenSet-module_button__JlbxE:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.GenSet-module_button__JlbxE:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.GenSet-module_button__JlbxE[disabled],fieldset[disabled] .GenSet-module_button__JlbxE{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.GenSet-module_button__JlbxE>input[type=file]{left:-9999px;position:absolute}.GenSet-module_button__JlbxE+button,.GenSet-module_button__JlbxE+input[type=reset],.GenSet-module_button__JlbxE+input[type=submit]{margin-left:.3em}.GenSet-module_button__JlbxE:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);transform:scale(1.25);transition:transform,.2s,ease-out}.GenSet-module_button__JlbxE:active{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.GenSet-module_button__JlbxE.GenSet-module_selected__3uyG3{background:#444;color:#fff}.GenSet-module_button__JlbxE.GenSet-module_selected__3uyG3>span{color:#fff}.GenSet-module_button__JlbxE.GenSet-module_selected__3uyG3>svg{fill:#fff;stroke:#fff;stroke-width:5}.GenGroup-module_carbo__1JPoA,.GenGroup-module_cyclic__2m79A>fieldset,.GenGroup-module_hetero__ohczK{float:left}.GenGroup-module_acyclic__JU60z,.GenGroup-module_atom__1Qp1J>fieldset,.GenGroup-module_cyclic__2m79A{display:inline-block;vertical-align:top}.GenGroup-module_acyclic__JU60z+fieldset,.GenGroup-module_atom__1Qp1J>fieldset+fieldset,.GenGroup-module_cyclic__2m79A+fieldset{margin-left:.4em}.GenGroup-module_cyclic__2m79A>legend+fieldset{margin:0 .4em 0 .8em}.GenGroup-module_fieldset__3b7Ck{text-align:center}.GenGroup-module_fieldset__3b7Ck .GenGroup-module_any__1t_Rp,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_atom__1Qp1J fieldset,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_carbo__1JPoA fieldset,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_halogen__2fuzc,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_hetero__ohczK fieldset,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_metal__3A9LP,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_no-carbon__1TV0O,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_subgroup__5BV4r{border:0;padding:0 0 1em;position:relative}.GenGroup-module_fieldset__3b7Ck .GenGroup-module_any__1t_Rp legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_atom__1Qp1J fieldset legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_carbo__1JPoA fieldset legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_halogen__2fuzc legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_hetero__ohczK fieldset legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_metal__3A9LP legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_no-carbon__1TV0O legend,.GenGroup-module_fieldset__3b7Ck .GenGroup-module_subgroup__5BV4r legend{bottom:.1em;font-size:.7em;left:0;margin:0 auto;position:absolute;right:0}.GenGroup-module_fieldset__3b7Ck.GenGroup-module_carbo__1JPoA{clear:both;margin-right:.4em}.GenericGroups-module_dialog_body__KyEHX{overflow:auto}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar-thumb:vertical{min-height:10px}.GenericGroups-module_dialog_body__KyEHX::-webkit-scrollbar-thumb:horizontal{min-width:10px}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar-thumb:vertical{min-height:10px}.GenericGroups-module_scrollbar__X1ZR_::-webkit-scrollbar-thumb:horizontal{min-width:10px}.GenericGroups-module_generic-groups__1EAm3{display:flex;justify-content:space-around;padding:1.5em 0}.GenericGroups-module_generic-groups__1EAm3 .GenericGroups-module_col__ht0OR:first-child{width:40%}.GenericGroups-module_generic-groups__1EAm3 .GenericGroups-module_col__ht0OR>fieldset{margin:1em;padding:1em .5em}table+.TypeChoice-module_fieldset__27dOf{border:0;margin:.5em 0 0 1.5em;padding:.5em}.PeriodTable-module_dialog_body__14wOa{overflow:auto}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar-thumb:vertical{min-height:10px}.PeriodTable-module_dialog_body__14wOa::-webkit-scrollbar-thumb:horizontal{min-width:10px}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar-thumb:vertical{min-height:10px}.PeriodTable-module_scrollbar__2UZ0F::-webkit-scrollbar-thumb:horizontal{min-width:10px}.PeriodTable-module_elements_table__2M14i{width:57em}.PeriodTable-module_elements_table__2M14i .PeriodTable-module_tabs__zC6rx{outline:none}.PeriodTable-module_elements_table__2M14i .PeriodTable-module_tabs__zC6rx .PeriodTable-module_tabs_content__1L9kM{height:31em}.PeriodTable-module_elements_table__2M14i .PeriodTable-module_period_table__8OrtZ{position:relative}.RemoveFG-module_window__1iNNt{background:#fff;border-radius:10px;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;padding:5px;width:21em}.RemoveFG-module_window__1iNNt>*{margin:10px}.RemoveFG-module_question__35_wx{color:gray;text-align:left}.RemoveFG-module_header__13O3F{align-items:center;display:flex;margin-left:10px}.RemoveFG-module_footer__1n-yr{display:flex;justify-content:flex-end}.RemoveFG-module_buttonCancel__qspzZ,.RemoveFG-module_buttonOk__34PiS{border:none;border-radius:2px;height:1.8em;width:content-box}.RemoveFG-module_buttonOk__34PiS{background:#3e7bfa;color:#fff}.RemoveFG-module_buttonOk__34PiS:hover{background:#3265cd}.RemoveFG-module_buttonCancel__qspzZ{background:#d1d5e3;color:#000;margin-right:15px}.RemoveFG-module_buttonCancel__qspzZ:hover{background:#aaadb9}.rgroup-module_dialog_body__2WcOS{overflow:auto}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar-thumb:vertical{min-height:10px}.rgroup-module_dialog_body__2WcOS::-webkit-scrollbar-thumb:horizontal{min-width:10px}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar-thumb:vertical{min-height:10px}.rgroup-module_scrollbar__18Gvw::-webkit-scrollbar-thumb:horizontal{min-width:10px}.rgroup-module_rgroup__2t4WD ul{display:flex;flex-wrap:wrap;height:10.4em;overflow:hidden;padding:.5em;width:24em}.rgroup-module_rgroup__2t4WD li{display:inline-block;margin:.2em .1em}.rgroup-module_rgroup__2t4WD form button{background-color:#fff;background-image:none;background:inherit;border:1px solid #ccc;border-radius:4px;color:#333;display:inline-block;font-size:1.3em;height:2em;line-height:1;margin:0;padding:.15em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:2.3em}.rgroup-module_rgroup__2t4WD form button:focus,.rgroup-module_rgroup__2t4WD form button:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.rgroup-module_rgroup__2t4WD form button:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.rgroup-module_rgroup__2t4WD form button[disabled],fieldset[disabled] .rgroup-module_rgroup__2t4WD form button{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.rgroup-module_rgroup__2t4WD form button>input[type=file]{left:-9999px;position:absolute}.rgroup-module_rgroup__2t4WD form button+button,.rgroup-module_rgroup__2t4WD form button+input[type=reset],.rgroup-module_rgroup__2t4WD form button+input[type=submit]{margin-left:.3em}.rgroup-module_rgroup__2t4WD form button:first-letter{color:#666;font-weight:600}.rgroup-module_rgroup__2t4WD form button:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);transform:scale(1.005);transition:transform,.2s,ease-out}.rgroup-module_rgroup__2t4WD form button:active{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.rgroup-module_rgroup__2t4WD form button.rgroup-module_selected__E4jNT{background:#444;color:#fff}.rgroup-module_rgroup__2t4WD form button.rgroup-module_selected__E4jNT>span{color:#fff}.rgroup-module_rgroup__2t4WD form button.rgroup-module_selected__E4jNT>svg{fill:#fff;stroke:#fff;stroke-width:5}.rgroup-module_rgroup__2t4WD form button.rgroup-module_selected__E4jNT:first-letter{color:#b3b3b3}.combobox-module_suggestList__lV92o{background-color:#fff;border:1px solid #3297fd;margin-left:3px;padding-left:3px;position:absolute;width:93%;z-index:3}.combobox-module_suggestList__lV92o li:hover{background-color:#3297fd;color:#fff}.sgroup-module_sgroup__1p5K5{min-width:20em}.sgroup-module_sgroup__1p5K5 label{display:block;text-align:right}.sgroup-module_sgroup__1p5K5 label input,.sgroup-module_sgroup__1p5K5 label select{width:10em}.sgroup-module_sgroup__1p5K5 label:hover:after{margin:1px 0 0 3px}.sgroup-module_sgroup__1p5K5 fieldset{border:0;padding:0}.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ label{text-align:left}.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ label fieldset label{display:inline-block;margin:.4em}.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ label fieldset input[type=radio]{width:auto}.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ select[name=fieldValue],.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ textarea{display:block;height:12em;overflow:auto;width:19em}.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ input[type=text],.sgroup-module_sgroup__1p5K5 .sgroup-module_data__1XWzJ select[name=fieldName]{display:block;margin-bottom:0;width:19em}.template-lib-module_dialog_body__2JFam{overflow:auto}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar-thumb:vertical{min-height:10px}.template-lib-module_dialog_body__2JFam::-webkit-scrollbar-thumb:horizontal{min-width:10px}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar-thumb:vertical{min-height:10px}.template-lib-module_scrollbar__2Oawx::-webkit-scrollbar-thumb:horizontal{min-width:10px}.template-lib-module_warning__3_tcY{color:#f55}.template-lib-module_warning__3_tcY:before{content:"⚠ "}.template-lib-module_templateLib__1IX2e>div{display:flex}.template-lib-module_templateLib__1IX2e label{display:flex;line-height:2.6em;margin-bottom:1em;text-align:center}.template-lib-module_templateLib__1IX2e label input[type=search]{margin-left:4px;width:100%}.template-lib-module_templateLib__1IX2e .template-lib-module_tableGroupWrap__1qulm{display:flex;height:calc(100% - 3.6em - 4px)}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12{background:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-sizing:border-box;display:inline-block;flex-shrink:0;height:2.4em;height:100%;line-height:1.42857143;margin:2px;min-height:200px;overflow:auto;padding:.35em .15em .35em .3em;vertical-align:middle;width:11em}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12:active,.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12:focus{outline:0}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12:focus,.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12[disabled],.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12[readonly],fieldset[disabled] .template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12{background:#efefef;cursor:not-allowed;opacity:.6}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12 li{cursor:default;display:block;padding:0 2px 1px}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12 li:hover{background-color:#f2f2f2}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12 li.template-lib-module_selected__1fXcm{background-color:#9dc2d0;color:#fff}.template-lib-module_templateLib__1IX2e .template-lib-module_groups__3Zm12 li.template-lib-module_split__2TPWH{border-top:1px solid #ccc;margin-top:2px;padding-top:2px}.template-lib-module_templateLib__1IX2e .template-lib-module_singleColLayout__2h3HH{flex-wrap:wrap}.template-lib-module_templateLib__1IX2e .template-lib-module_singleColLayout__2h3HH .template-lib-module_td__3Z3wH{flex-grow:1;max-width:230px}.template-lib-module_attach__3l_9R label{display:block;font-size:16px;padding:0 5px}.template-lib-module_attach__3l_9R .template-lib-module_warning__3_tcY{padding:0 5px}.template-lib-module_attach__3l_9R .template-lib-module_editor__2moE5{border:1px solid #ccc;border-radius:5px;height:25em;max-width:30em;overflow:auto;position:relative}.FontControl-module_dialog_body__22jEH{overflow:auto}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar-thumb:vertical{min-height:10px}.FontControl-module_dialog_body__22jEH::-webkit-scrollbar-thumb:horizontal{min-width:10px}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar-thumb:vertical{min-height:10px}.FontControl-module_scrollbar__1P0zy::-webkit-scrollbar-thumb:horizontal{min-width:10px}.FontControl-module_fontSizeMenu__1fJ2V{background:#fff;border-radius:4px;box-shadow:0 0 2px;display:inline-block;font-size:16px;max-height:150px;overflow-y:scroll;padding:4px;position:absolute;scrollbar-width:none;top:3px;z-index:10}.FontControl-module_fontSizeMenu__1fJ2V::-webkit-scrollbar{display:none}.FontControl-module_fontSizeOption__2MB1d{padding:4px}.FontControl-module_fontSizeOption__2MB1d:hover{background:#f0f0f0;cursor:pointer}.FontControl-module_fontBtn__DzO2A{background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;color:#333;display:inline-block;margin:0;padding:.42em .85em;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.FontControl-module_fontBtn__DzO2A:focus,.FontControl-module_fontBtn__DzO2A:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.FontControl-module_fontBtn__DzO2A:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.FontControl-module_fontBtn__DzO2A[disabled],fieldset[disabled] .FontControl-module_fontBtn__DzO2A{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.FontControl-module_fontBtn__DzO2A>input[type=file]{left:-9999px;position:absolute}.FontControl-module_fontBtn__DzO2A+button,.FontControl-module_fontBtn__DzO2A+input[type=reset],.FontControl-module_fontBtn__DzO2A+input[type=submit]{margin-left:.3em}.TextButton-module_dialog_body__2N6d0{overflow:auto}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar-thumb:vertical{min-height:10px}.TextButton-module_dialog_body__2N6d0::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar-thumb:vertical{min-height:10px}.TextButton-module_scrollbar__2CdzM::-webkit-scrollbar-thumb:horizontal{min-width:10px}.TextButton-module_textButton__1kZkT{background-color:#fff;background-image:none;border:0;border-radius:4px;color:#333;cursor:pointer;display:inline-block;height:32px;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:32px}.TextButton-module_textButton__1kZkT:focus,.TextButton-module_textButton__1kZkT:hover{background-image:linear-gradient(180deg,#fff,#ededed);outline:0}.TextButton-module_textButton__1kZkT:active{background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.TextButton-module_textButton__1kZkT[disabled],fieldset[disabled] .TextButton-module_textButton__1kZkT{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.TextButton-module_textButton__1kZkT>input[type=file]{left:-9999px;position:absolute}.TextButton-module_textButton__1kZkT+button,.TextButton-module_textButton__1kZkT+input[type=reset],.TextButton-module_textButton__1kZkT+input[type=submit]{margin-left:.3em}.TextButton-module_textButton__1kZkT>svg{fill:#666;font-size:26px;height:26px;left:.1em;position:absolute;top:.1em;transition:.2s;width:26px}.TextButton-module_textButton__1kZkT.TextButton-module_isActive__DLbeg{background-color:#eee;border-radius:2px}.TextButton-module_textButton__1kZkT.TextButton-module_isActive__DLbeg>svg{fill:#000}.TextButton-module_textButton__1kZkT:hover{background-image:none}.TextButton-module_textButton__1kZkT:hover>svg{fill:#000}.smallEditor .TextButton-module_textButton__1kZkT{height:24px;margin:4px;width:24px}.smallEditor .TextButton-module_textButton__1kZkT>svg{font-size:20px;height:20px;left:.1em;position:absolute;top:.1em;width:20px}.Text-module_textEditorInput__32u83{word-wrap:break-word;box-sizing:border-box;height:200px;padding:0 10px;resize:none;width:400px}.Text-module_controlPanel__2lngv{align-items:center;border-bottom:1px solid #ddd;display:flex;margin:5px 10px 15px}.App-module_app__3T9Nw{-ms-grid-columns:minmax(40px,-webkit-max-content) 1fr minmax(40px,-webkit-max-content);-ms-grid-columns:minmax(40px,max-content) 1fr minmax(40px,max-content);-ms-grid-rows:auto 1fr auto;display:-ms-grid;display:grid;grid-template-areas:". toolbar-top ." "toolbar-left canvas toolbar-right" "toolbar-left toolbar-bottom toolbar-right";grid-template-columns:minmax(40px,-webkit-max-content) 1fr minmax(40px,-webkit-max-content);grid-template-columns:minmax(40px,max-content) 1fr minmax(40px,max-content);grid-template-rows:auto 1fr auto;height:100%;position:relative;width:100%}.App-module_canvas__3VtDU{grid-area:canvas;-ms-grid-column:2;-ms-grid-row:2}.App-module_top__1VFT8{grid-area:toolbar-top;-ms-grid-column:2;-ms-grid-row:1}.App-module_left__1yaO0{-ms-grid-row-span:2;grid-area:toolbar-left;-ms-grid-column:1;-ms-grid-row:2}.App-module_right__2qnj3{-ms-grid-row-span:2;grid-area:toolbar-right;-ms-grid-column:3;-ms-grid-row:2}.App-module_bottom__1pipn{grid-area:toolbar-bottom;-ms-grid-column:2;-ms-grid-row:3}.smallEditor .App-module_app__3T9Nw{-ms-grid-columns:minmax(32px,-webkit-max-content) 1fr minmax(32px,-webkit-max-content);-ms-grid-columns:minmax(32px,max-content) 1fr minmax(32px,max-content);grid-template-columns:minmax(32px,-webkit-max-content) 1fr minmax(32px,-webkit-max-content);grid-template-columns:minmax(32px,max-content) 1fr minmax(32px,max-content)}.Editor-module_dialog_body__2X-pB{overflow:auto}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar-thumb:vertical{min-height:10px}.Editor-module_dialog_body__2X-pB::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar{background-color:transparent;-webkit-border-radius:100px;height:8px;width:8px}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar:hover{background-color:rgba(0,0,0,.09)}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar-thumb{background:rgba(0,0,0,.3);-webkit-border-radius:100px}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.61);-webkit-border-radius:100px}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar-thumb:vertical{min-height:10px}.Editor-module_scrollbar__MxyYu::-webkit-scrollbar-thumb:horizontal{min-width:10px}.Editor-module_small__15usy body,.Editor-module_small__15usy div[role=dialog],.Editor-module_small__15usy form,.Editor-module_small__15usy select{font-size:11px}.Editor-module_editor__2b7ww{background-color:#fff;color:#333;font:14px FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;height:100%;min-height:400px;min-width:640px;position:relative;width:100%}.Editor-module_editor__2b7ww li,.Editor-module_editor__2b7ww menu,.Editor-module_editor__2b7ww ul{list-style:none;margin:0;padding:0}.Editor-module_editor__2b7ww input[type=number],.Editor-module_editor__2b7ww input[type=search],.Editor-module_editor__2b7ww input[type=text],.Editor-module_editor__2b7ww select,.Editor-module_editor__2b7ww textarea{background:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-sizing:border-box;display:inline-block;height:2.4em;line-height:1.42857143;margin:2px;padding:.35em .15em .35em .3em;vertical-align:middle}.Editor-module_editor__2b7ww input[type=number]:active,.Editor-module_editor__2b7ww input[type=number]:focus,.Editor-module_editor__2b7ww input[type=search]:active,.Editor-module_editor__2b7ww input[type=search]:focus,.Editor-module_editor__2b7ww input[type=text]:active,.Editor-module_editor__2b7ww input[type=text]:focus,.Editor-module_editor__2b7ww select:active,.Editor-module_editor__2b7ww select:focus,.Editor-module_editor__2b7ww textarea:active,.Editor-module_editor__2b7ww textarea:focus{outline:0}.Editor-module_editor__2b7ww input[type=number]:focus,.Editor-module_editor__2b7ww input[type=number]:hover,.Editor-module_editor__2b7ww input[type=search]:focus,.Editor-module_editor__2b7ww input[type=search]:hover,.Editor-module_editor__2b7ww input[type=text]:focus,.Editor-module_editor__2b7ww input[type=text]:hover,.Editor-module_editor__2b7ww select:focus,.Editor-module_editor__2b7ww select:hover,.Editor-module_editor__2b7ww textarea:focus,.Editor-module_editor__2b7ww textarea:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.Editor-module_editor__2b7ww input[type=number][disabled],.Editor-module_editor__2b7ww input[type=number][readonly],.Editor-module_editor__2b7ww input[type=search][disabled],.Editor-module_editor__2b7ww input[type=search][readonly],.Editor-module_editor__2b7ww input[type=text][disabled],.Editor-module_editor__2b7ww input[type=text][readonly],.Editor-module_editor__2b7ww select[disabled],.Editor-module_editor__2b7ww select[readonly],.Editor-module_editor__2b7ww textarea[disabled],.Editor-module_editor__2b7ww textarea[readonly],fieldset[disabled] .Editor-module_editor__2b7ww input[type=number],fieldset[disabled] .Editor-module_editor__2b7ww input[type=search],fieldset[disabled] .Editor-module_editor__2b7ww input[type=text],fieldset[disabled] .Editor-module_editor__2b7ww select,fieldset[disabled] .Editor-module_editor__2b7ww textarea{background:#efefef;cursor:not-allowed;opacity:.6}.Editor-module_editor__2b7ww fieldset{border-radius:4px;margin:0}.Editor-module_editor__2b7ww fieldset>li{display:inline-block}.Editor-module_editor__2b7ww fieldset.Editor-module_-hidden__12EHY{border-color:transparent;margin-top:1.5em}.Editor-module_editor__2b7ww legend{color:#8c8c8c;font-size:.9em;padding:0 .4em;text-align:left}.Editor-module_editor__2b7ww input[type=checkbox],.Editor-module_editor__2b7ww input[type=radio]{line-height:normal;margin:0 .3em;margin-top:1px\9;vertical-align:middle}