ketcher-react 2.4.1 → 2.5.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.
- package/README.md +14 -8
- package/dist/Editor.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +11455 -6550
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11445 -6550
- package/dist/index.modern.js.map +1 -1
- package/dist/script/builders/ketcher/ButtonName.d.ts +1 -1
- package/dist/script/editor/Editor.d.ts +5 -2
- package/dist/script/editor/highlighter.d.ts +32 -0
- package/dist/script/editor/shared/closest.d.ts +1 -1
- package/dist/script/editor/tool/apoint.d.ts +18 -7
- package/dist/script/editor/tool/atom.d.ts +23 -18
- package/dist/script/editor/tool/attach.d.ts +19 -11
- package/dist/script/editor/tool/bond.d.ts +22 -15
- package/dist/script/editor/tool/chain.d.ts +21 -13
- package/dist/script/editor/tool/charge.d.ts +19 -8
- package/dist/script/editor/tool/enhanced-stereo.d.ts +7 -1
- package/dist/script/editor/tool/eraser.d.ts +24 -12
- package/dist/script/editor/tool/hand.d.ts +30 -0
- package/dist/script/editor/tool/helper/lasso.d.ts +45 -30
- package/dist/script/editor/tool/helper/locate.d.ts +36 -21
- package/dist/script/editor/tool/index.d.ts +4 -2
- package/dist/script/editor/tool/paste.d.ts +23 -13
- package/dist/script/editor/tool/reactionarrow.d.ts +21 -8
- package/dist/script/editor/tool/reactionmap.d.ts +21 -9
- package/dist/script/editor/tool/reactionplus.d.ts +19 -6
- package/dist/script/editor/tool/reactionunmap.d.ts +18 -3
- package/dist/script/editor/tool/rgroupatom.d.ts +18 -6
- package/dist/script/editor/tool/rgroupfragment.d.ts +18 -7
- package/dist/script/editor/tool/rotate.d.ts +22 -10
- package/dist/script/editor/tool/sgroup.d.ts +23 -11
- package/dist/script/editor/tool/simpleobject.d.ts +20 -7
- package/dist/script/editor/tool/template.d.ts +24 -19
- package/dist/script/editor/tool/text.d.ts +1 -2
- package/dist/script/ui/App/App.container.d.ts +1 -0
- package/dist/script/ui/App/App.d.ts +1 -0
- package/dist/script/ui/App/AppHidden/AppHidden.container.d.ts +1 -0
- package/dist/script/ui/App/AppHidden/AppHidden.d.ts +1 -0
- package/dist/script/ui/Portal/Portal.d.ts +1 -1
- package/dist/script/ui/action/action.types.d.ts +1 -1
- package/dist/script/ui/action/fullscreen.d.ts +23 -0
- package/dist/script/ui/action/functionalGroups.d.ts +3 -0
- package/dist/script/ui/action/help.d.ts +8 -0
- package/dist/script/ui/action/index.d.ts +74 -5
- package/dist/script/ui/action/isHidden.d.ts +1 -3
- package/dist/script/ui/action/server.d.ts +1 -3
- package/dist/script/ui/action/tools.d.ts +41 -0
- package/dist/script/ui/component/ContextMenu/ContextMenu.d.ts +1 -0
- package/dist/script/ui/component/cliparea/cliparea.d.ts +4 -0
- package/dist/script/ui/component/form/MeasureInput/measure-input.d.ts +8 -0
- package/dist/script/ui/component/form/Select/Select.d.ts +30 -0
- package/dist/script/ui/component/form/Select/Select.test.d.ts +1 -0
- package/dist/script/ui/{views/modal/components/PeriodTable/components/GenericGroups/components/components → component/form/Select}/index.d.ts +2 -1
- package/dist/script/ui/component/form/colorPicker/ColorPicker.d.ts +1 -0
- package/dist/script/ui/component/form/combobox/combobox.d.ts +4 -0
- package/dist/script/ui/component/form/form/errorPopover.d.ts +5 -0
- package/dist/script/ui/component/form/form/form.d.ts +9 -4
- package/dist/script/ui/component/form/input.d.ts +19 -1
- package/dist/script/ui/component/form/{select.d.ts → select-list.d.ts} +0 -0
- package/dist/script/ui/component/structrender.d.ts +28 -4
- package/dist/script/ui/component/view/Atom/Atom.d.ts +2 -2
- package/dist/script/ui/component/view/Tabs/Tabs.d.ts +3 -0
- package/dist/script/ui/component/view/openbutton.d.ts +2 -0
- package/dist/script/ui/data/schema/options-schema.d.ts +2 -2
- package/dist/script/ui/data/schema/sdata-schema.d.ts +11 -9
- package/dist/script/ui/data/schema/struct-schema.d.ts +30 -28
- package/dist/script/ui/dialog/template/EmptySearchResult.d.ts +1 -0
- package/dist/script/ui/dialog/template/TemplateDialog.d.ts +7 -1
- package/dist/script/ui/dialog/template/TemplateTable.d.ts +10 -7
- package/dist/script/ui/dialog/template/template-attach.d.ts +27 -1
- package/dist/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +3 -1
- package/dist/script/ui/state/editor/index.d.ts +1 -0
- package/dist/script/ui/state/request/index.d.ts +2 -0
- package/dist/script/ui/state/request/request.types.d.ts +3 -1
- package/dist/script/ui/{views/modal/components/PeriodTable/components/GenericGroups/components/index.d.ts → utils/fileOpener.d.ts} +1 -1
- package/dist/script/ui/utils/index.d.ts +3 -0
- package/dist/script/ui/views/components/Cursor.d.ts +6 -0
- package/dist/script/ui/views/components/Dialog/Dialog.d.ts +17 -9
- package/dist/script/ui/views/{modal/components/PeriodTable/components/GenericGroups/index.d.ts → components/Spinner/LoadingCircles.d.ts} +2 -1
- package/dist/script/ui/views/components/Spinner/index.d.ts +1 -1
- package/dist/script/ui/views/components/StructEditor/StructEditor.d.ts +8 -0
- package/dist/script/ui/views/components/index.d.ts +2 -2
- package/dist/script/ui/views/modal/Modal.d.ts +1 -0
- package/dist/script/ui/views/modal/components/Confirm/Confirm.d.ts +7 -0
- package/dist/script/ui/views/modal/components/Confirm/index.d.ts +1 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/ExtendedTable.d.ts +2 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.d.ts +18 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.d.ts +24 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.d.ts +26 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.d.ts +22 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/index.d.ts +27 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/helpers.d.ts +1 -0
- package/dist/script/ui/views/modal/components/ExtendedTable/index.d.ts +1 -0
- package/dist/script/ui/views/modal/components/PeriodTable/PeriodTable.d.ts +9 -4
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.d.ts +2 -0
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/MainRow.d.ts +3 -2
- package/dist/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/OutinerRow.d.ts +3 -2
- package/dist/script/ui/views/modal/components/PeriodTable/components/index.d.ts +1 -1
- package/dist/script/ui/views/modal/components/Text/FontControl/FontControl.d.ts +1 -0
- package/dist/script/ui/views/{components/FunctionalGroups/FunctionalGroups.d.ts → modal/components/Text/SpecialSymbols/SpecialSymbolsButton.d.ts} +7 -8
- package/dist/script/ui/views/{components/Spinner/Spinner.d.ts → modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.d.ts} +5 -3
- package/dist/script/ui/views/modal/components/Text/Text.d.ts +1 -0
- package/dist/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +1 -0
- package/dist/script/ui/views/modal/components/document/Open/Open.container.d.ts +7 -1
- package/dist/script/ui/views/modal/components/document/Open/Open.d.ts +6 -1
- package/dist/script/ui/views/modal/components/document/Open/components/AnalyzingFile.d.ts +20 -0
- package/dist/script/ui/views/modal/components/document/Open/components/DialogActionButton.d.ts +25 -0
- package/dist/script/ui/views/modal/components/document/Open/components/FileDrop.d.ts +26 -0
- package/dist/script/ui/views/modal/components/document/Open/components/OpenOptions.d.ts +24 -0
- package/dist/script/ui/views/modal/components/document/Open/components/TextEditor.d.ts +21 -0
- package/dist/script/ui/views/modal/components/document/Open/components/ViewSwitcher.d.ts +31 -0
- package/dist/script/ui/views/modal/components/document/Save/Save.d.ts +16 -6
- package/dist/script/ui/views/modal/components/meta/About/About.d.ts +1 -1
- package/dist/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.d.ts +22 -0
- package/dist/script/ui/views/modal/components/meta/Settings/{components/Accordion → Accordion}/index.d.ts +0 -0
- package/dist/script/ui/views/modal/components/meta/Settings/Settings.d.ts +1 -0
- package/dist/script/ui/views/modal/components/meta/Settings/fieldGroups.d.ts +41 -0
- package/dist/script/ui/views/modal/components/process/Analyse/Analyse.d.ts +3 -0
- package/dist/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.d.ts +2 -1
- package/dist/script/ui/views/modal/components/process/Miew/Miew.d.ts +30 -9
- package/dist/script/ui/views/modal/components/process/Recognize/Recognize.d.ts +1 -1
- package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +3 -1
- package/dist/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/FG/RemoveFG.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +1 -0
- package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +1 -0
- package/dist/script/ui/views/toolbars/ArrowScroll/ArrowScroll.d.ts +1 -0
- package/dist/script/ui/views/toolbars/BottomToolbar/BottomToolbar.d.ts +2 -2
- package/dist/script/ui/views/toolbars/BottomToolbar/TemplatesList/TemplatesList.d.ts +1 -0
- package/dist/script/ui/views/toolbars/LeftToolbar/Bond/Bond.d.ts +2 -2
- package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +3 -2
- package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +2 -2
- package/dist/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +2 -2
- package/dist/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +2 -2
- package/dist/script/ui/views/toolbars/LeftToolbar/Transform/Transform.d.ts +2 -2
- package/dist/script/ui/views/toolbars/RightToolbar/AtomsList/AtomsList.d.ts +2 -2
- package/dist/script/ui/views/toolbars/RightToolbar/RightToolbar.d.ts +2 -2
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.d.ts +1 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarGroupItem.d.ts +1 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.d.ts +1 -0
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.d.ts +3 -4
- package/dist/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.d.ts +3 -4
- package/dist/script/ui/views/toolbars/TopToolbar/ClipboardControls.d.ts +31 -0
- package/dist/script/ui/views/{components/FunctionalGroups/index.d.ts → toolbars/TopToolbar/Divider.d.ts} +2 -1
- package/dist/script/ui/views/toolbars/TopToolbar/ElementWithDropdown.d.ts +23 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ExternalFuncControls.d.ts +36 -0
- package/dist/script/ui/views/toolbars/TopToolbar/FileControls.d.ts +26 -0
- package/dist/script/ui/views/toolbars/TopToolbar/IconButton.d.ts +26 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ScaleTransformer.d.ts +24 -0
- package/dist/script/ui/views/toolbars/TopToolbar/SystemControls.d.ts +28 -0
- package/dist/script/ui/views/toolbars/TopToolbar/TopToolbar.container.d.ts +2 -2
- package/dist/script/ui/views/toolbars/TopToolbar/TopToolbar.d.ts +40 -9
- package/dist/script/ui/views/toolbars/TopToolbar/UndoRedo.d.ts +27 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomControls.d.ts +29 -0
- package/dist/script/ui/views/toolbars/TopToolbar/{ZoomList/ZoomList.d.ts → ZoomInput.d.ts} +9 -13
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomList.d.ts +23 -0
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomSlider.d.ts +22 -0
- package/dist/script/ui/views/toolbars/mediaSizes.d.ts +0 -2
- package/dist/script/ui/views/toolbars/toolbar.types.d.ts +4 -4
- package/package.json +47 -58
- package/LICENSE +0 -201
- package/dist/script/ui/component/form/measure-input.d.ts +0 -8
- package/dist/script/ui/component/view/spin.d.ts +0 -4
- package/dist/script/ui/views/modal/components/PeriodTable/components/GenericGroups/GenericGroups.d.ts +0 -7
- package/dist/script/ui/views/modal/components/PeriodTable/components/GenericGroups/components/GenGroup.d.ts +0 -8
- package/dist/script/ui/views/modal/components/PeriodTable/components/GenericGroups/components/components/GenSet.d.ts +0 -8
- package/dist/script/ui/views/modal/components/document/Save/SaveImageTab.d.ts +0 -4
- package/dist/script/ui/views/modal/components/meta/Settings/components/Accordion/Accordion.d.ts +0 -36
- package/dist/script/ui/views/toolbars/TopToolbar/HelpLink/HelpLink.d.ts +0 -19
- package/dist/script/ui/views/toolbars/TopToolbar/ZoomList/index.d.ts +0 -16
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! 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='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath d='M0 10 10 0zm12-2-4 4zM-2 2l4-4z' stroke='%23555' stroke-width='2' stroke-opacity='.02'/%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='http://www.w3.org/2000/svg' height='24' viewBox='3 3 18 18' width='24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath fill='%230075ff' d='M19 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'/%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}
|
|
1
|
+
.button-common-styles{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.scrollbar{scrollbar-width:thin}.scrollbar ::-webkit-scrollbar-track{background-color:transparent}.scrollbar::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.scrollbar::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.scrollbar::-webkit-scrollbar-thumb:active,.scrollbar::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.cliparea-module_cliparea__GdPrN{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_button-common-styles__y-hng{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ActionButton-module_scrollbar__lD3MH{scrollbar-width:thin}.ActionButton-module_scrollbar__lD3MH ::-webkit-scrollbar-track{background-color:transparent}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb:active,.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ActionButton-module_button__nfoWQ{background-color:#fff;background-image:none;background:inherit;border:0;border-radius:2px;color:#333;cursor:pointer;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__nfoWQ:active{background-image:none;outline:0}.ActionButton-module_button__nfoWQ[disabled],fieldset[disabled] .ActionButton-module_button__nfoWQ{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.ActionButton-module_button__nfoWQ>input[type=file]{left:-9999px;position:absolute}.ActionButton-module_button__nfoWQ+button,.ActionButton-module_button__nfoWQ+input[type=reset],.ActionButton-module_button__nfoWQ+input[type=submit]{margin-left:.3em}.ActionButton-module_button__nfoWQ:after,.ActionButton-module_button__nfoWQ:before{display:inline-block;vertical-align:middle}.ActionButton-module_button__nfoWQ:after{left:0;position:absolute}.ActionButton-module_button__nfoWQ:hover{background-image:none}.ActionButton-module_button__nfoWQ:hover path{fill:#006775}.ActionButton-module_button__nfoWQ:active,.ActionButton-module_button__nfoWQ[disabled]{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.ActionButton-module_button__nfoWQ>svg{fill:currentColor;font-size:26px;height:26px;left:.1em;position:absolute;top:.1em;width:26px}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA,.ActionButton-module_button__nfoWQ:active{background:#006775}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA path,.ActionButton-module_button__nfoWQ:active path{fill:#fff}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA span,.ActionButton-module_button__nfoWQ:active span{color:#fff}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA:hover,.ActionButton-module_button__nfoWQ:active:hover{background-color:#188794}.DefaultMultiTool-module_default__zNTMe button{display:initial}.GroupedMultiTool-module_group__BJQAU{display:flex;flex-direction:column}.GroupedMultiTool-module_group__BJQAU:not(:first-of-type){border-top:1px solid #cad3dd;margin-top:4px;padding-top:5px}.ToolbarMultiToolItem-module_button-common-styles__Fuxbo{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ToolbarMultiToolItem-module_scrollbar__XTmfz{scrollbar-width:thin}.ToolbarMultiToolItem-module_scrollbar__XTmfz ::-webkit-scrollbar-track{background-color:transparent}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb:active,.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ToolbarMultiToolItem-module_icon__-HQal{fill:#333;bottom:0;display:block;height:7px;position:absolute;right:0;width:7px}.ToolbarMultiToolItem-module_iconSelected__hlO0J{fill:#fff}.ToolbarMultiToolItem-module_portal__2XJgz{background:#fff;border:1px solid #cad3dd;border-radius:5px;box-shadow:3px 4px 4px rgba(103,104,132,.25);position:absolute;white-space:nowrap;word-break:keep-all;z-index:20}.ToolbarMultiToolItem-module_portal__2XJgz>button{height:28px;width:28px}.ToolbarMultiToolItem-module_portal__2XJgz>button>svg{left:1px;top:1px}.ToolbarMultiToolItem-module_portal__2XJgz kbd{color:#cad3dd;display:none;font:.8em monospace}.ToolbarMultiToolItem-module_portal-vertical__A0DVe{display:flex;flex-direction:column}.BottomToolbar-module_button-common-styles__PbtE9{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.BottomToolbar-module_scrollbar__i1f8P{scrollbar-width:thin}.BottomToolbar-module_scrollbar__i1f8P ::-webkit-scrollbar-track{background-color:transparent}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb:active,.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.BottomToolbar-module_group__b-pGt{display:flex}.BottomToolbar-module_root__kjkSm{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 40px}.BottomToolbar-module_root__kjkSm div{position:relative}.BottomToolbar-module_root__kjkSm kbd{color:#cad3dd;display:none;font:.8em monospace}.BottomToolbar-module_root__kjkSm .BottomToolbar-module_group__b-pGt{flex-direction:row}.BottomToolbar-module_root__kjkSm .BottomToolbar-module_group__b-pGt:not(:last-of-type){border-right:1px solid #ccc;margin-right:4px;padding-right:5px}.BottomToolbar-module_root__kjkSm button{height:28px;margin:2px;width:28px}.BottomToolbar-module_root__kjkSm button>svg{left:1px;top:1px}.ArrowScroll-module_scroll__h9kCx{background:#fff;display:flex;flex-direction:column;min-height:32px;width:32px}.ArrowScroll-module_button__ygMgL{background:transparent;border:none;font-size:15px!important;height:50%;width:100%}.ArrowScroll-module_down__yDzZX{bottom:0;position:absolute}.ArrowScroll-module_up__Q1ubd{position:absolute;top:0}.LeftToolbar-module_button-common-styles__WgnON{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.LeftToolbar-module_scrollbar__OBwid{scrollbar-width:thin}.LeftToolbar-module_scrollbar__OBwid ::-webkit-scrollbar-track{background-color:transparent}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb:active,.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.LeftToolbar-module_group__0s41t{display:flex}.LeftToolbar-module_root__yhhZm{-ms-overflow-style:none;align-items:center;display:flex;flex-direction:column;margin-left:4px;margin-top:8px;overflow:hidden;scrollbar-width:thin;width:32px}.LeftToolbar-module_root__yhhZm div{position:relative}.LeftToolbar-module_root__yhhZm kbd{color:#cad3dd;display:none;font:.8em monospace}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t{flex-direction:column}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t:not(:last-of-type){border-bottom:1px solid #eff2f5;margin-bottom:4px;padding-bottom:5px}.LeftToolbar-module_root__yhhZm ::-webkit-scrollbar-track{background-color:transparent}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb:active,.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t:not(:last-of-type){border-bottom:none;margin-bottom:0;padding-bottom:0}.LeftToolbar-module_buttons__lnIjn{overflow:hidden;scroll-behavior:smooth}.LeftToolbar-module_borderOff__om425{border-bottom:none!important}.LeftToolbar-module_groupItem__OqQu0{margin:2px}.LeftToolbar-module_groupItem__OqQu0 svg{bottom:2px;right:2px}.LeftToolbar-module_groupItem__OqQu0 button{height:28px;margin:2px;width:28px}.LeftToolbar-module_groupItem__OqQu0 button>svg{left:1px;top:1px}.Atom-module_button-common-styles__j3EUJ{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Atom-module_scrollbar__iO-Ni{scrollbar-width:thin}.Atom-module_scrollbar__iO-Ni ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb:active,.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_atom__g2RUu{background-color:#fff;background-color:transparent;background-image:none;border-color:#cad3dd;border-radius:2px;border-radius:0;color:#333;cursor:pointer;display:inline-block;height:32px;margin:2px 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}.Atom-module_atom__g2RUu:active{background-image:none;outline:0}.Atom-module_atom__g2RUu[disabled],fieldset[disabled] .Atom-module_atom__g2RUu{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.Atom-module_atom__g2RUu>input[type=file]{left:-9999px;position:absolute}.Atom-module_atom__g2RUu+button,.Atom-module_atom__g2RUu+input[type=reset],.Atom-module_atom__g2RUu+input[type=submit]{margin-left:.3em}.Atom-module_atom__g2RUu[disabled]{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.RightToolbar-module_button-common-styles__fNlqY{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.RightToolbar-module_scrollbar__2Q0UU{scrollbar-width:thin}.RightToolbar-module_scrollbar__2Q0UU ::-webkit-scrollbar-track{background-color:transparent}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb:active,.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RightToolbar-module_group__3mhUx{display:flex}.RightToolbar-module_root__1D5hp{-ms-overflow-style:none;align-items:center;display:flex;flex-direction:column;margin-right:4px;margin-top:8px;overflow:hidden;scrollbar-width:thin;width:32px}.RightToolbar-module_root__1D5hp div{position:relative}.RightToolbar-module_root__1D5hp kbd{color:#cad3dd;display:none;font:.8em monospace}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx{flex-direction:column}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type){border-bottom:1px solid #eff2f5;margin-bottom:4px;padding-bottom:5px}.RightToolbar-module_root__1D5hp ::-webkit-scrollbar-track{background-color:transparent}.RightToolbar-module_root__1D5hp::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb:active,.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type){border-bottom:none;margin-bottom:0;padding-bottom:0}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type).RightToolbar-module_atomsList__ar08-{margin-bottom:8px;margin-top:2px}.RightToolbar-module_buttons__YxRHI{overflow:hidden;scroll-behavior:smooth;width:100%}.RightToolbar-module_buttons__YxRHI button{font-size:14px;font-weight:600;height:28px;margin:2px;width:28px}.RightToolbar-module_buttons__YxRHI button svg{bottom:2px;left:1px;right:2px;top:1px}.Modal-module_button-common-styles__ko9E5{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Modal-module_scrollbar__yPIJc{scrollbar-width:thin}.Modal-module_scrollbar__yPIJc ::-webkit-scrollbar-track{background-color:transparent}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb:active,.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Modal-module_modalOverlay__AzVeg{align-items:center;background-color:rgba(94,94,94,.2);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath d='M0 10 10 0zm12-2-4 4zM-2 2l4-4z' stroke='%23555' stroke-width='2' stroke-opacity='.02'/%3E%3C/svg%3E");background:none\9;bottom:0;display:flex;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#335e5e5e",endColorstr="#335e5e5e");justify-content:center;left:0;position:absolute;right:0;top:0;z-index:40}.Modal-module_modalOverlay__AzVeg:not([ie9]){filter:progid:dximagetransform.microsoft.gradient(enabled="false")}.Modal-module_modalOverlay__AzVeg.Modal-module_animate__pnPNj{transition:background-color .3s}.Modal-module_modalOverlay__AzVeg.Modal-module_hide__0CTey{background-color:rgba(94,94,94,.01)}.Modal-module_modalOverlay__AzVeg:after{content:"";display:inline-block;height:100%;vertical-align:middle}.Modal-module_modalOverlay__AzVeg .Modal-module_smallScreen__nzt2L{max-height:90%;max-width:90%}.Select-module_button-common-styles__cgaVz{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Select-module_scrollbar__cA89D{scrollbar-width:thin}.Select-module_scrollbar__cA89D ::-webkit-scrollbar-track{background-color:transparent}.Select-module_scrollbar__cA89D::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb:active,.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Select-module_dropdownList__rdcrH .MuiPaper-root{border-radius:0 0 4px 4px;box-shadow:0 6px 10px rgba(103,104,132,.15);color:#333}.Select-module_dropdownList__rdcrH .MuiMenuItem-root{color:#333;cursor:default;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;min-height:28px;padding:0 8px}.Select-module_dropdownList__rdcrH .MuiMenuItem-root:hover{background-color:rgba(243,245,247,.6);border-left:2px solid #167782;padding-left:6px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list{background-color:#fff;box-shadow:none;display:inline-block;max-height:200px;overflow:auto;padding:0;scrollbar-width:thin;width:100%}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list ::-webkit-scrollbar-track{background-color:transparent}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb:active,.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar{background-color:#fff;width:4px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb{border-radius:2px;-webkit-border-radius:2px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list .Mui-selected{background-color:#fff}.Select-module_selectContainer__yXT-t{width:100%}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select{background-color:#fff;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;box-sizing:border-box;color:#333;cursor:default;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;line-height:22px;min-height:24px;padding:0 8px;padding-right:24px!important;width:100%}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select .MuiSelect-nativeInput{border:none;padding:0}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select:hover{border:1px solid #43b5c0}.Select-module_selectContainer__yXT-t .Mui-focused .MuiSelect-select{border-color:#167782}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-notchedOutline{border:none}.Select-module_selectContainer__yXT-t .MuiSelect-icon{height:16px;width:16px}.Dialog-module_button-common-styles__HcaFV{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_scrollbar__9Iy27{scrollbar-width:thin}.Dialog-module_scrollbar__9Iy27 ::-webkit-scrollbar-track{background-color:transparent}.Dialog-module_scrollbar__9Iy27::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Dialog-module_scrollbar__9Iy27::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Dialog-module_scrollbar__9Iy27::-webkit-scrollbar-thumb:active,.Dialog-module_scrollbar__9Iy27::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Dialog-module_dialog__IafFQ{background-clip:padding-box;background-color:#fff;border-radius:8px;color:#585858;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;opacity:1;outline:0;position:relative;text-align:left;transform:scale(1);transition:transform .3s,opacity .3s;vertical-align:middle}.Dialog-module_dialog__IafFQ.Dialog-module_hide__6R16B{opacity:.2;transform:scale(.5)}.Dialog-module_header__T7-24{align-items:center;border-radius:6px 6px 0 0;box-sizing:content-box;color:#333;display:flex;font-size:14px;font-weight:500;line-height:12px;padding:12px}.Dialog-module_header__T7-24 .Dialog-module_btnContainer__TOLPx{align-items:flex-end;display:flex;flex-direction:row;flex-grow:1}.Dialog-module_header__T7-24 .Dialog-module_buttonTop__ZhwZQ{-ms-grid-row-align:center;align-self:center;background-color:transparent;border:none;height:16px;margin-left:auto;padding:0;width:16px}.Dialog-module_header__T7-24 .Dialog-module_buttonTop__ZhwZQ .Dialog-module_closeButton__Ch6UT{height:100%;width:100%}.Dialog-module_footer__NTq5o{display:flex;gap:8px;justify-content:flex-end;padding:16px 12px 12px}.Dialog-module_footer__NTq5o .Dialog-module_ok__T4j7Z{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_footer__NTq5o .Dialog-module_ok__T4j7Z:active,.Dialog-module_footer__NTq5o .Dialog-module_ok__T4j7Z:hover{background-color:#4fb3bf}.Dialog-module_footer__NTq5o .Dialog-module_ok__T4j7Z:disabled{background-color:#e1e5ea;color:#333}.Dialog-module_footer__NTq5o .Dialog-module_cancel__RcR-D{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_footer__NTq5o .Dialog-module_cancel__RcR-D:active,.Dialog-module_footer__NTq5o .Dialog-module_cancel__RcR-D:hover{border:1px solid #333;color:#333}.Dialog-module_footer__NTq5o .Dialog-module_cancel__RcR-D:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Dialog-module_withDivider__8LsbA{border-bottom:1px solid #e1e5ea;height:36px;margin:0;padding:0 12px}.Dialog-module_body__YgzDR{font-size:12px;height:100%;line-height:14px;overflow:auto;scrollbar-width:thin}.Dialog-module_body__YgzDR ::-webkit-scrollbar-track{background-color:transparent}.Dialog-module_body__YgzDR::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Dialog-module_body__YgzDR::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Dialog-module_body__YgzDR::-webkit-scrollbar-thumb:active,.Dialog-module_body__YgzDR::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Dialog-module_withMargin__SDH61{margin:0 12px}.LoadingCircles-module_container__MPCs0{align-items:flex-start;display:flex;flex-direction:row;height:12px;justify-content:space-between;margin-top:10px;width:40px}.LoadingCircles-module_container__MPCs0 span{border:2px solid #005662;border-radius:100%;box-sizing:border-box;display:inline-block;height:8px;width:8px}.LoadingCircles-module_container__MPCs0 span:first-child{-webkit-animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out infinite;animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out infinite}.LoadingCircles-module_container__MPCs0 span:nth-child(2){-webkit-animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .33s infinite;animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .33s infinite}.LoadingCircles-module_container__MPCs0 span:nth-child(3){-webkit-animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .66s infinite;animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .66s infinite}@-webkit-keyframes LoadingCircles-module_bounce__gCepS{0%,75%,to{transform:translateY(0)}25%{transform:translateY(-100%)}}@keyframes LoadingCircles-module_bounce__gCepS{0%,75%,to{transform:translateY(0)}25%{transform:translateY(-100%)}}.ContextMenu-module_isHidden__eOjF4{display:none}.StructEditor-module_button-common-styles__3P7PO{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.StructEditor-module_scrollbar__SUs-o{scrollbar-width:thin}.StructEditor-module_scrollbar__SUs-o ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb:active,.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_spinnerOverlay__5H1IM{align-items:center;display:flex;height:100%;justify-content:center;position:absolute;top:0;width:100%}.StructEditor-module_canvas__LLnzh{overflow:hidden;position:relative;scrollbar-width:thin;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.StructEditor-module_canvas__LLnzh .StructEditor-module_measureLog__B2wuy{background-color:#fff;border:1px solid #cad3dd;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__LLnzh .StructEditor-module_measureLog__B2wuy.StructEditor-module_visible__3eFNB{opacity:1}.StructEditor-module_canvas__LLnzh ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb:active,.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_canvas__LLnzh .react-contextmenu-wrapper{height:100%}.StructEditor-module_canvas__LLnzh .react-contextmenu{background-color:#fff;border-radius:4px;box-shadow:0 2px 5px 0 rgba(51,51,51,.54);padding:4px}.StructEditor-module_canvas__LLnzh .react-contextmenu-item{background:0 0;border:0;color:#585858;cursor:pointer;font-weight:400;line-height:1.5;padding:3px 20px;text-align:inherit;white-space:nowrap}.StructEditor-module_canvas__LLnzh .react-contextmenu-item--selected{background-color:#ddd;text-decoration:none}.StructEditor-module_canvas__LLnzh .react-contextmenu-item--divider{border-bottom:1px solid #cad3dd;cursor:inherit;margin-bottom:3px;padding:2px 0}.StructEditor-module_intermediateCanvas__fR3ws{height:100%;overflow:auto;position:relative;scrollbar-width:thin;width:100%}.StructEditor-module_intermediateCanvas__fR3ws.StructEditor-module_enableCursor__Qla0A{cursor:none}.StructEditor-module_intermediateCanvas__fR3ws ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb:active,.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar{background-color:#fff}.smallEditor .StructEditor-module_canvas__LLnzh .StructEditor-module_measureLog__B2wuy{right:0;top:0}.About-module_button-common-styles__XmSbT{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.About-module_scrollbar__4-AeI{scrollbar-width:thin}.About-module_scrollbar__4-AeI ::-webkit-scrollbar-track{background-color:transparent}.About-module_scrollbar__4-AeI::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb:active,.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.About-module_dialog_body__ebQu-{background-color:#fff}.About-module_about__ZVesh{color:#333;font-weight:500;width:430px}.About-module_about__ZVesh>footer{border-top:1px solid #e1e5ea;margin:0;padding:15px}.About-module_about__ZVesh>div[class^=Dialog-module_dialog_body]{display:flex;flex-direction:column}.About-module_about__ZVesh a{color:#167782}.About-module_about__ZVesh .About-module_body__8VOc3{border-radius:6px;height:174px;margin-right:3px;overflow-x:hidden;overflow-y:auto;padding:2px 72px;scrollbar-width:thin}.About-module_about__ZVesh .About-module_body__8VOc3 ::-webkit-scrollbar-track{background-color:transparent}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb:active,.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_versionName__1gqJr{font-weight:600;margin-bottom:2px}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_firstline__h5XMW{display:inline-block}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_links__sMpyx{text-align:right}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_infoLinks__4-Tot{margin-top:5px}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_indigoVersion__WKFlu{display:flex;gap:2px;margin-top:20px}.About-module_about__ZVesh .About-module_headerContent__YclOx{display:flex;justify-content:space-between;padding:0 40px}.About-module_about__ZVesh .About-module_headerContent__YclOx a{align-items:center;color:#333;display:flex;gap:10px;text-decoration:none}.About-module_about__ZVesh .About-module_headerContent__YclOx .About-module_title__k-6Zg{font-size:20px;line-height:22px}.About-module_about__ZVesh .About-module_indigoFirstLine__-86rb{display:inline-block}.About-module_about__ZVesh dd{margin:0 0 .2em}.About-module_about__ZVesh dt{margin-top:3px}.About-module_about__ZVesh .About-module_okButton__FMcEk{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.About-module_about__ZVesh .About-module_okButton__FMcEk:active,.About-module_about__ZVesh .About-module_okButton__FMcEk:hover{border:1px solid #333;color:#333}.About-module_about__ZVesh .About-module_okButton__FMcEk:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.input-module_fieldSetLabel__DxKa5{position:relative}input[type=checkbox],input[type=radio]{opacity:0;position:absolute}input[type=checkbox]+.input-module_checkbox__CowSc{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='15' height='15' rx='3.5' fill='%23fff' stroke='%23B4B9D6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:16px;margin-right:6px;vertical-align:middle;width:16px}input[type=checkbox]:hover+.input-module_checkbox__CowSc{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.75' y='.75' width='14.5' height='14.5' rx='3.25' fill='%23fff' stroke='%2343B5C0' stroke-width='1.5'/%3E%3C/svg%3E")}input[type=checkbox]:checked+.input-module_checkbox__CowSc{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='4' fill='%23167782'/%3E%3Cpath d='M6.337 11.808 2.426 7.63l.973-.911L6.37 9.89l6.248-6.248.943.942-7.223 7.223Z' fill='%23fff'/%3E%3C/svg%3E")}input[type=radio]+.input-module_radioButton__2eHO0{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:16px;margin-right:8px;vertical-align:middle;width:16px}input[type=radio]:hover+.input-module_radioButton__2eHO0{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%234fb3bf' stroke-width='2'/%3E%3C/svg%3E")}input[type=radio]:checked+.input-module_radioButton__2eHO0{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23167782' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23167782' stroke-width='2'/%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E")}input[type=radio]:disabled+.input-module_radioButton__2eHO0{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3C/svg%3E")}input[type=radio]:checked:disabled+.input-module_radioButton__2eHO0{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23b4b9d6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E")}.input-module_slider__-Xsc0.input-module_slider__-Xsc0{display:inline-block;height:20px;position:relative;width:38px}.input-module_slider__-Xsc0.input-module_slider__-Xsc0 input{height:0;opacity:0;width:0}.input-module_slider__-Xsc0.input-module_slider__-Xsc0 span{background-color:hsla(0,0%,100%,.3);border:1px solid #cad3dd;border-radius:12px;bottom:0;left:0;position:absolute;right:0;top:0;transition:background .4s}.input-module_slider__-Xsc0.input-module_slider__-Xsc0 span:before{background-color:#c4c4c4;border-radius:50%;bottom:1px;content:"";height:16px;left:1px;position:absolute;transition:transform .4s ease-in 0s;width:16px}.input-module_slider__-Xsc0.input-module_slider__-Xsc0 input:checked+span{background-color:#167782}.input-module_slider__-Xsc0.input-module_slider__-Xsc0 input:checked+span:before{background-color:#fff;transform:translateX(18px)}.input-module_input__WzHgL,.input-module_select__GhgBs{color:#333}.input-module_select__GhgBs{min-width:40px}.form-module_button-common-styles__BvKSn{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.form-module_scrollbar__MgLtc{scrollbar-width:thin}.form-module_scrollbar__MgLtc ::-webkit-scrollbar-track{background-color:transparent}.form-module_scrollbar__MgLtc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb:active,.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.form-module_dataError__IXK1h .form-module_inputWrapper__sIDHH{display:inline-block;position:relative}.form-module_dataError__IXK1h .form-module_inputWrapper__sIDHH:after{content:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.001 14a1.333 1.333 0 1 0 0-2.667 1.333 1.333 0 0 0 0 2.667ZM6.668 2h2.667v8H6.668V2Z' fill='%23F40724'/%3E%3C/svg%3E");position:absolute;right:-10px;top:7px}.form-module_dataError__IXK1h input[type=number],.form-module_dataError__IXK1h input[type=search],.form-module_dataError__IXK1h input[type=text],.form-module_dataError__IXK1h select,.form-module_dataError__IXK1h textarea{border:1px solid #f40724!important}.form-module_dataError__IXK1h input[type=number]:focus,.form-module_dataError__IXK1h input[type=number]:hover,.form-module_dataError__IXK1h input[type=search]:focus,.form-module_dataError__IXK1h input[type=search]:hover,.form-module_dataError__IXK1h input[type=text]:focus,.form-module_dataError__IXK1h input[type=text]:hover,.form-module_dataError__IXK1h select:focus,.form-module_dataError__IXK1h select:hover,.form-module_dataError__IXK1h textarea:focus,.form-module_dataError__IXK1h textarea:hover{box-shadow:inset 0 0 1px 1px rgba(244,7,36,.12)}.ColorPicker-module_colorPickerInput__voi2r{align-items:center;background-color:#fff;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;box-sizing:border-box;color:#333;cursor:default;display:flex;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;min-height:24px;padding-left:3px;padding-right:7px;width:48px}.ColorPicker-module_colorPickerInput__voi2r:hover{border-color:#43b5c0}.ColorPicker-module_selectedInput__Ykcjd{border-color:#167782}.ColorPicker-module_colorPickerWrap__IAQVo{background-color:#fff;border-radius:4px;box-shadow:0 6px 10px rgba(103,104,132,.15);height:35px;left:0;padding:8px;position:absolute;top:24px;width:70px;z-index:1}.ColorPicker-module_withPalette__gTwNu{height:140px}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM{height:80%;right:0;top:0}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM input{border:1px solid transparent!important;color:#333;float:right;font-size:10px;height:12px!important;margin-top:2px;outline:transparent;padding:1px 2px!important;position:relative;text-align:right;text-transform:uppercase;width:60%}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM input:focus{border:1px solid #ddd!important}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM div{border-radius:0}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful{height:80%;width:100%}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful__hue{height:15px}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful__pointer{border-radius:50%;border-width:1px;height:10px;width:10px}.ColorPicker-module_colorPickerBtn__nr6ph{align-items:center;box-sizing:border-box;display:flex;justify-content:space-between}.ColorPicker-module_colorPickerPreview__-Rf-i{border:none;border-radius:2px;height:16px;width:16px}.ColorPicker-module_colorPickerOverlay__WzC-w{bottom:0;left:0;position:fixed;right:0;top:0;z-index:-10}.ColorPicker-module_colorContainer__ib5up{align-items:baseline;display:flex;justify-content:space-between;margin-top:2px}.ColorPicker-module_colorContainer__ib5up .ColorPicker-module_hex__mE9my{color:#333;font-size:10px}.ColorPicker-module_presetColors__J-ysq{display:flex;flex-wrap:wrap;width:78px}.ColorPicker-module_presetColors__J-ysq button{border:none;border-radius:2px;height:16px;margin-bottom:2px;margin-right:2px;width:16px}.ColorPicker-module_presetColors__J-ysq button:last-of-type,.ColorPicker-module_presetColors__J-ysq button:nth-of-type(4){margin-right:0}.ColorPicker-module_presetColors__J-ysq .ColorPicker-module_chooseColor__fdzt8{background-color:#fff;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeD0iLjUiIHk9Ii41IiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHJ4PSIxLjUiIHN0cm9rZT0iIzAwNTY2MiIvPjxwYXRoIGZpbGw9IiMwMDU2NjIiIGQ9Ik03LjM0NiAzLjQyOGgxLjMwNnY5LjE0M0g3LjM0NnoiLz48cGF0aCBmaWxsPSIjMDA1NjYyIiBkPSJNMy40MjggOC42NTNWNy4zNDdoOS4xNDN2MS4zMDZ6Ii8+PC9zdmc+");background-position:50%;background-repeat:no-repeat;border:1px solid #00838f}.ColorPicker-module_presetColors__J-ysq .ColorPicker-module_clicked__8BNoN{background-color:#00838f;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQuMzQ2LjQyOWgxLjMwNnY5LjE0M0g0LjM0NnoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNLjQyOCA1LjY1M1Y0LjM0N0g5LjU3djEuMzA2eiIvPjwvc3ZnPg==")}.ColorPicker-module_expandIcon__oH4ka{margin-left:auto;transform:rotate(180deg);transition:transform .3s ease-in-out;width:16px}.ColorPicker-module_turnedIcon__-zaq-{transform:rotate(0deg)}.ColorPicker-module_colorPickerWrapper__GJm87{position:relative}.measure-input-module_measureInput__uZQ-j{align-items:center;color:#333;display:inline-flex;font-size:12px;justify-content:space-between;line-height:20px;margin-bottom:16px;width:100%}.measure-input-module_measureInput__uZQ-j .measure-input-module_select__1ZFmv,.measure-input-module_measureInput__uZQ-j input{height:24px;margin-left:4px;width:58px}.buttons-module_button-common-styles__qWDOz{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.buttons-module_scrollbar__SpaVV{scrollbar-width:thin}.buttons-module_scrollbar__SpaVV ::-webkit-scrollbar-track{background-color:transparent}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb:active,.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.buttons-module_openButton__wErm9{float:left}.Accordion-module_button-common-styles__enTfZ{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Accordion-module_scrollbar__lJTa6{scrollbar-width:thin}.Accordion-module_scrollbar__lJTa6 ::-webkit-scrollbar-track{background-color:transparent}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb:active,.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Accordion-module_accordionWrapper__RKk00{background-color:#eff2f5;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.Accordion-module_accordionWrapper__RKk00 ::-webkit-scrollbar-track{background-color:transparent}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb:active,.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Accordion-module_expandIcon__ncUKv{margin-right:12px;transform:rotate(180deg);transition:transform .3s ease-in-out;width:16px}.Accordion-module_turnedIcon__v1sCA{transform:rotate(0deg)}.Accordion-module_accordionSummaryWrapper__roIRd{background-color:#fff;border-bottom:1px solid #e1e5ea;margin:0;padding-left:12px}.Accordion-module_accordionSummary__1Gq0d{align-items:center;color:#333;display:flex;flex-direction:row;font-size:14px;font-weight:400;height:42px;justify-content:flex-start;line-height:14px;overflow:hidden;width:300px}.Accordion-module_accordionDetailsWrapper__fnSnc{max-height:1000px;overflow:hidden;padding:0 12px;transition:max-height .3s ease-in-out;width:300px}.Accordion-module_hiddenAccordion__WZFcJ{max-height:0}.Accordion-module_accordionDetails__g2RM0{color:#333;margin-top:12px;padding-bottom:4px}.Accordion-module_groupIcon__1g1lx{height:15px;width:15px}.Accordion-module_groupLabel__23y4U{align-items:center;display:flex;height:15px}.Accordion-module_groupLabel__23y4U>span{height:12px;margin-left:6px}.Accordion-module_changeMarker__UPtGx{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23167782'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:10px;margin-left:auto;margin-right:1px;vertical-align:middle;width:10px}.Settings-module_headerContent__wBYFf{display:flex;gap:8px}.Settings-module_headerContent__wBYFf .Settings-module_title__a6mod{padding-right:4px}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7{background-color:transparent;border:none;color:#525252;font-size:0;padding:0}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7 input[type=file]{display:none}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7:hover{color:#005662}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7:disabled{color:rgba(82,82,82,.4)}.Settings-module_accordion__1uSYy fieldset{border:none;display:flex;flex-direction:column;padding:0}.Settings-module_accordion__1uSYy ul>li{padding:10px 16px}.Settings-module_accordion__1uSYy label{align-items:center;color:#333;display:flex;font-size:12px;height:24px;justify-content:flex-start;line-height:14px;margin-bottom:12px}.Settings-module_accordion__1uSYy label input[type=checkbox]{top:0}.Settings-module_accordion__1uSYy label input,.Settings-module_accordion__1uSYy label select,.Settings-module_accordion__1uSYy label span>div{margin-right:auto;width:120px}.Settings-module_accordion__1uSYy label>:first-child{margin-right:12px;width:168px}.Settings-module_settings__Z5btc{height:70vh;overflow:hidden;width:324px}.Settings-module_settings__Z5btc fieldset[disabled] label>span{opacity:.3}.Settings-module_settings__Z5btc fieldset[disabled] label>div{opacity:.6}.Settings-module_settings__Z5btc>header{box-shadow:0 2px 4px 0 rgba(1,1,50,.1);flex-shrink:0;z-index:10}.Settings-module_settings__Z5btc>footer{box-shadow:0 -2px 4px 0 rgba(1,1,50,.1);z-index:10}.Check-module_button-common-styles__WPocW{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_scrollbar__3jzOc{scrollbar-width:thin}.Check-module_scrollbar__3jzOc ::-webkit-scrollbar-track{background-color:transparent}.Check-module_scrollbar__3jzOc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb:active,.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Check-module_dialog_body__wHZMM{width:444px}.Check-module_dialog_body__wHZMM>*{background-color:#fff}.Check-module_dialog_body__wHZMM>div{margin:0;overflow:auto}.Check-module_dialog_body__wHZMM>footer{border-radius:inherit}.Check-module_dialog_body__wHZMM form{padding-top:10px}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO{display:flex;justify-content:space-between;width:100%}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:active,.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:hover{border:1px solid #333;color:#333}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:active,.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:hover{background-color:#4fb3bf}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:disabled{background-color:#e1e5ea;color:#333}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO>.Check-module_buttonsRight__L1v9A{display:flex;gap:8px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp{-moz-column-gap:15px;column-gap:15px;display:flex;flex-direction:row}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_checkInfo__Iqq6t{flex-grow:1}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF{margin-left:12px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd{color:#333;min-width:130px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset{border:none;display:flex;flex-direction:column;font-size:12px;line-height:14px;padding:0}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset li,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset li,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset li{margin:9px 0 0}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset li label,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset li label,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset li label{align-items:center;display:flex}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div{margin:7px 3px 17px 12px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div dt,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div dt,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div dt{font-weight:700;margin-bottom:4px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div dd,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div dd,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div dd{-webkit-margin-start:0;margin-inline-start:0;word-break:break-word}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd{background-color:#e1e5ea;width:100%}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK{height:287px;overflow-y:auto;scrollbar-width:thin}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK ::-webkit-scrollbar-track{background-color:transparent}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb:active,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8{align-items:center;background-color:#e1e5ea;display:flex;height:287px;justify-content:center;width:100%}.Check-module_dialog_body__wHZMM .Check-module_checkBoxesDisabled__EAdRo{opacity:.5}.FormulaInput-module_button-common-styles__xQ8ZA{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.FormulaInput-module_scrollbar__8TUkb{scrollbar-width:thin}.FormulaInput-module_scrollbar__8TUkb ::-webkit-scrollbar-track{background-color:transparent}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb:active,.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FormulaInput-module_chem_input__oprB3{background:#fff;border:none;border-radius:4px;box-sizing:border-box;display:inline-block;height:2.4em;height:32px;line-height:1.42857143;margin:2px;overflow:hidden;padding:.35em .15em .35em .3em;vertical-align:middle;white-space:nowrap;width:270px}.FormulaInput-module_chem_input__oprB3:focus,.FormulaInput-module_chem_input__oprB3:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.FormulaInput-module_chem_input__oprB3[disabled],.FormulaInput-module_chem_input__oprB3[readonly],fieldset[disabled] .FormulaInput-module_chem_input__oprB3{background:#f3f3f3;cursor:not-allowed;opacity:.6}.FormulaInput-module_chem_input__oprB3:active,.FormulaInput-module_chem_input__oprB3:focus{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);outline:0}.Analyse-module_button-common-styles__8No07{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Analyse-module_scrollbar__UAaIN{scrollbar-width:thin}.Analyse-module_scrollbar__UAaIN ::-webkit-scrollbar-track{background-color:transparent}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb:active,.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Analyse-module_analyse__MR-Tu{width:260px}.Analyse-module_analyse__MR-Tu li:first-child>.Analyse-module_inputWrapper__uR995>div{background-color:#e1e5ea;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;cursor:text;font-size:14px;height:24px;line-height:10px;margin:0;padding-left:8px;width:236px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi{display:flex;flex-direction:row;margin-top:12px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi label{margin-bottom:4px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995{display:flex;flex-direction:column}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input,.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea{background-color:#e1e5ea;border:1px solid #cad3dd;border-radius:4px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input[readonly],.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea[readonly]{cursor:text}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input{width:131px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input:hover{border:1px solid #cad3dd}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea{height:87px;letter-spacing:-1px;resize:none;width:236px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL{display:flex;flex-direction:column;margin-left:8px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL .Analyse-module_select__c6hFt{height:24px;margin-top:4px;width:97px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL .Analyse-module_select__c6hFt fieldset{border:1px solid #cad3dd;border-radius:4px}.Recognize-module_button-common-styles__B04E6{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_scrollbar__rohcP{scrollbar-width:thin}.Recognize-module_scrollbar__rohcP ::-webkit-scrollbar-track{background-color:transparent}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb:active,.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Recognize-module_recognize__66jG2 .Recognize-module_footerContent__0MAC7{display:flex;justify-content:space-between;width:100%}.Recognize-module_recognize__66jG2 .Recognize-module_footerContent__0MAC7 div{display:flex;gap:8px}.Recognize-module_recognize__66jG2 .Recognize-module_imagoVersion__nBIj6{-ms-grid-column-span:1;display:flex;flex-direction:column;-ms-grid-column:2;grid-column-end:3;grid-column-start:2}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;display:flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:active,.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:hover{border:1px solid #333;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I>input{display:none}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I>svg{height:16px;width:16px}.Recognize-module_recognize__66jG2 .Recognize-module_imagesContainer__rXWWk{background-color:#eff2f5;display:flex;gap:12px;padding:12px}.Recognize-module_recognize__66jG2 .Recognize-module_topBody__ZCCjN{-ms-grid-columns:1fr 12px 1fr;grid-column-gap:12px;grid-row-gap:24px;display:-ms-grid;display:grid;font-size:10px;grid-template-columns:1fr 1fr;line-height:12px;margin:8px 0 4px;padding:0 12px}.Recognize-module_recognize__66jG2 .Recognize-module_topBody__ZCCjN>label>select{font-size:inherit}.Recognize-module_recognize__66jG2 .Recognize-module_output__WgRnP,.Recognize-module_recognize__66jG2 .Recognize-module_picture__x2Y7S{background-color:#fff;border:1px solid #d9dcea;border-radius:6px;box-sizing:border-box;height:192px;overflow:hidden;text-align:center;width:232px}.Recognize-module_recognize__66jG2 .Recognize-module_picture__x2Y7S{align-items:center;color:#717171;display:flex;justify-content:center;position:relative}.Recognize-module_recognize__66jG2 .Recognize-module_filename__-1HIU{left:8px;position:absolute;top:8px}.Recognize-module_recognize__66jG2 .Recognize-module_messageContainer__tMvyb{align-items:center;background-color:#eff2f5;display:flex;height:100%;justify-content:center;width:100%}.Recognize-module_recognize__66jG2 .Recognize-module_messageContainer__tMvyb>p{margin:12px}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:active,.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:hover{background-color:#4fb3bf}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:disabled{background-color:#e1e5ea;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:active,.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:hover{border:1px solid #333;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Recognize-module_recognize__66jG2 .Recognize-module_struct__W55TL,.Recognize-module_recognize__66jG2 img{max-height:100%;max-width:100%;position:relative}.Miew-module_button-common-styles__8FE-p{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Miew-module_scrollbar__ZMWH-{scrollbar-width:thin}.Miew-module_scrollbar__ZMWH- ::-webkit-scrollbar-track{background-color:transparent}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb:active,.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Miew-module_warning__IDl5F{line-height:2em;width:100%}.Miew-module_applyButton__ZDE-i{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Miew-module_applyButton__ZDE-i:active,.Miew-module_applyButton__ZDE-i:hover{background-color:#4fb3bf}.Miew-module_applyButton__ZDE-i:disabled{background-color:#e1e5ea;color:#333}.Miew-module_miewDialog__gHvYc{max-width:60vw}.Miew-module_miewContainer__2SNw3{height:60vh;overflow:hidden;position:relative;width:60vw}.Miew-module_miewContainer__2SNw3 .mode-message{align-items:flex-start;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__2SNw3 .atom-info{color:#333;margin:12px;position:absolute;top:0}.Miew-module_miewContainer__2SNw3 .overlay{pointer-events:none}.Miew-module_miewDarkTheme__kMFzc .atom-info{color:#cad3dd}.Atom-module_button-common-styles__ipWaI{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Atom-module_scrollbar__z5cVx{scrollbar-width:thin}.Atom-module_scrollbar__z5cVx ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb:active,.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_atomProps__pqBjY{display:flex;height:386px;justify-content:space-between;overflow:hidden;width:220px}.Atom-module_atomProps__pqBjY .MuiOutlinedInput-root,.Atom-module_atomProps__pqBjY input[type=text]{margin-top:4px}.Atom-module_atomProps__pqBjY>header{box-shadow:0 2px 4px 0 rgba(1,1,50,.1);flex-shrink:0;z-index:10}.Atom-module_atomProps__pqBjY>div{background-color:#eff2f5;flex-grow:1;margin:0}.Atom-module_atomProps__pqBjY>footer{box-shadow:0 -2px 4px 0 rgba(1,1,50,.1);z-index:10}.Atom-module_accordionWrapper__MSuU7{overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.Atom-module_accordionWrapper__MSuU7 ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb:active,.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_expandIcon__mPszC{transform:rotate(180deg);transition:transform .3s ease-in-out;width:20px}.Atom-module_turnedIcon__0Kzwy{transform:rotate(0deg)}.Atom-module_accordionSummaryWrapper__MGqsq{background-color:#fff;border-bottom:1px solid #e1e5ea;margin:0;padding-left:11.5px}.Atom-module_accordionSummary__HMKzl{align-items:center;color:#333;display:flex;flex-direction:row;font-size:12px;font-weight:400;height:26px;justify-content:space-between;line-height:14px;overflow:hidden;width:197px}.Atom-module_accordionDetailsWrapper__p6EI7{max-height:1000px;overflow:hidden;padding:0 12px;transition:max-height .3s ease-in-out;width:196px}.Atom-module_hiddenAccordion__pDNdM{max-height:0}.Atom-module_accordionDetails__-B3jK{color:#333;margin-top:12px;padding-bottom:8px;position:relative}.Atom-module_accordionDetails__-B3jK label{align-items:center;color:#585858;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;margin-bottom:4px}.Atom-module_accordionDetails__-B3jK label>:last-child>*,.Atom-module_accordionDetails__-B3jK label>input{margin:0!important;width:137px}.Atom-module_accordionDetails__-B3jK label.Atom-module_checkbox__Vup40{align-items:center;flex-direction:row;height:16px;justify-content:space-between;margin-top:8px}.Atom-module_querySpecific__7XxMr label>:last-child>*,.Atom-module_reactionFlags__gdNb1 label>:last-child>*{width:77px}.Atom-module_reactionFlags__gdNb1{padding-bottom:20px}.Attach-module_attachPoints__5QEAv{width:260px}.Attach-module_attachPoints__5QEAv>div{margin-top:12px}.Attach-module_attachPoints__5QEAv form{align-items:flex-start;display:flex;flex-direction:column;width:17em}.Attach-module_attachPoints__5QEAv form label{align-items:center;color:#585858;display:flex;flex-direction:row-reverse;justify-content:flex-start;margin-bottom:12px}.Automap-module_automap__531ko{width:260px}.Automap-module_automap__531ko label{display:flex;flex-direction:column;font-size:12px;gap:4px;line-height:14px;margin:12px 0}.Automap-module_automap__531ko label>div{flex-grow:1}.Bond-module_bond__EDfLY{width:260px}.Bond-module_bond__EDfLY>div{margin-top:12px}.Bond-module_bond__EDfLY label{color:#585858;display:flex;flex-direction:column;font-size:12px;line-height:14px;margin-bottom:12px}.Bond-module_bond__EDfLY label>span{margin-bottom:4px}.IfThenSelect-module_field__9YaPA{display:block;gap:4px}.RgroupLogic-module_button-common-styles__P-ABP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.RgroupLogic-module_scrollbar__gDniy{scrollbar-width:thin}.RgroupLogic-module_scrollbar__gDniy ::-webkit-scrollbar-track{background-color:transparent}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb:active,.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RgroupLogic-module_rgroupLogic__q4RTy{width:260px}.RgroupLogic-module_rgroupLogic__q4RTy>div{margin-top:12px}.RgroupLogic-module_rgroupLogic__q4RTy label{color:#585858;display:flex;flex-direction:column;font-size:12px;line-height:14px;margin-bottom:12px}.RgroupLogic-module_rgroupLogic__q4RTy label input,.RgroupLogic-module_rgroupLogic__q4RTy label select{margin:4px 0 0}.RgroupLogic-module_rgroupLogic__q4RTy label.RgroupLogic-module_resth__RL2qE{align-items:center;flex-direction:row;margin-bottom:24px;width:-webkit-min-content;width:-moz-min-content;width:min-content}.Open-module_button-common-styles__NBSQP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_scrollbar__sRvYM{scrollbar-width:thin}.Open-module_scrollbar__sRvYM ::-webkit-scrollbar-track{background-color:transparent}.Open-module_scrollbar__sRvYM::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb:active,.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Open-module_open__m8V9g{background-color:#fff;box-shadow:0 5px 20px rgba(103,104,132,.25)}.Open-module_open__m8V9g>div{margin:0}.Open-module_open__m8V9g label{display:block;width:22.5em}.Open-module_open__m8V9g label input{margin-bottom:.1em}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj{border:none;border-bottom:1px solid #e1e5ea;border-radius:0;min-height:23em;min-width:32em;overflow:auto;padding:12px;resize:both;scrollbar-width:thin;white-space:pre;width:560px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj ::-webkit-scrollbar-track{background-color:transparent}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb:active,.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj:hover{border:none;border-bottom:1px solid #e1e5ea;border-radius:0}.Open-module_footerContent__Q0hTw{display:flex;justify-content:space-between;width:100%}.Open-module_buttonsContainer__L1HqU{display:flex;gap:8px}.Open-module_cancelButton__0TQzA,.Open-module_openButton__cj3oU{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_cancelButton__0TQzA:active,.Open-module_cancelButton__0TQzA:hover,.Open-module_openButton__cj3oU:active,.Open-module_openButton__cj3oU:hover{border:1px solid #333;color:#333}.Open-module_cancelButton__0TQzA:disabled,.Open-module_openButton__cj3oU:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Open-module_copyButton__KlXKd{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_copyButton__KlXKd:active,.Open-module_copyButton__KlXKd:hover{background-color:#4fb3bf}.Open-module_copyButton__KlXKd:disabled{background-color:#e1e5ea;color:#333}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf{align-items:center;display:flex;flex:1;flex-direction:column;justify-content:center;min-height:23em;width:410px}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh{align-items:center;display:flex;flex-direction:row}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh svg{margin-right:13px}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh p{color:#585858;font-size:16px;line-height:19px}.OpenOptions-module_optionsContainer__-WqT8{align-items:flex-start;box-sizing:border-box;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:6px;padding:12px;width:430px}.OpenOptions-module_dropContainer__PL6Tg{align-items:center;border-radius:12px;box-shadow:0 4px 12px rgba(103,104,132,.18);box-sizing:border-box;cursor:pointer;display:flex;flex-direction:column;height:134px;justify-content:space-between;padding:16px;position:relative;width:128px}.OpenOptions-module_dropContainer__PL6Tg div{margin:0;padding:0}.OpenOptions-module_dropContainer__PL6Tg p{font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:10px;line-height:12.1px;margin:0;text-align:center}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_buttonLabelWrapper__h2YsI{display:flex;flex-direction:column;height:24px;justify-content:center}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_buttonLabel__LiY--{color:#585858;font-weight:500;text-transform:uppercase}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_textLabelWrapper__Vx8NF{height:12px}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_textLabel__TlOfz{color:#333;font-weight:400;opacity:50%}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_dropIconWrapper__ibBQx{height:40px}.FileDrop-module_isHovered__c-CDn{background-color:#f8feff}.FileDrop-module_isDisabled__Ejuyq{cursor:auto}.FileDrop-module_isDisabled__Ejuyq svg{filter:grayscale(1);opacity:.6}.Tabs-module_tabs__PuztJ{width:100%}.Tabs-module_tabs__PuztJ a{background-color:#ddd;color:#333;cursor:pointer;display:inline-block;line-height:14px;padding:5px 12px;text-align:center}.Tabs-module_tabs__PuztJ a:hover{background-color:#00838f;color:#fff}.Tabs-module_tabs__PuztJ .Tabs-module_active__eeyNd{background-color:#005662;color:#fff}.Tabs-module_tabs__PuztJ :first-child{border-radius:4px 0 0 0}.Tabs-module_tabs__PuztJ :last-child{border-radius:0 4px 0 0}.Tabs-module_tabs__PuztJ :only-child{border-radius:4px 4px 0 0}.Save-module_button-common-styles__mpLS8{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_scrollbar__XMf7I{scrollbar-width:thin}.Save-module_scrollbar__XMf7I ::-webkit-scrollbar-track{background-color:transparent}.Save-module_scrollbar__XMf7I::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb:active,.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq{display:flex;flex-direction:column;height:310px;overflow:hidden;width:430px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form{align-content:center;display:flex;flex-direction:row;font-size:12px;justify-content:space-between;margin:12px 12px 10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label{display:flex;flex-direction:column;text-align:left;width:calc(50% - 6px)}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label input{border:1px solid #cad3dd!important}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label input:hover{border:1px solid #43b5c0!important}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label>span{margin-right:8px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_tabs__TOB-R{outline:none;padding-left:12px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_tabs__TOB-R[tabindex="0"] a:nth-child(2){color:#ff4a4a}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT{background-color:#eff2f5;box-sizing:border-box;flex-shrink:0;max-height:50px;min-height:224px;overflow-x:auto;padding:12px;scrollbar-width:thin}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT ::-webkit-scrollbar-track{background-color:transparent}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT .Save-module_warningsContainer__-3yVy{display:flex;padding-bottom:12px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT .Save-module_warningsContainer__-3yVy .Save-module_warningsArr__bKUFY{color:#333;font-size:12px;line-height:14px;white-space:pre-line;word-break:break-word}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf{background-color:#eff2f5}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb{background-color:#eff2f5;border:none;border-radius:0;box-shadow:none;color:#333;cursor:text;display:block;font-size:12px;height:100%;min-height:224px;min-width:428px;outline:none;overflow-x:auto;padding:12px;resize:none;scrollbar-width:thin;white-space:pre;width:100%}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb ::-webkit-scrollbar-track{background-color:transparent}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:focus,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:hover{border:none;box-shadow:none;outline:none}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_loadingCirclesContainer__COUKN{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:20%;width:100%}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_imageContainer__gFELk{align-items:center;border-bottom:1px solid #e1e5ea;border-top:1px solid #e1e5ea;display:flex;flex-direction:column;height:220px;justify-content:center}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_imageContainer__gFELk img{background-color:#fff;max-height:220px;max-width:428px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewMessage__CZfZB{margin:auto;text-align:center}.Save-module_dialog__of-0M .Save-module_ok__SgeCM{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_dialog__of-0M .Save-module_ok__SgeCM:active,.Save-module_dialog__of-0M .Save-module_ok__SgeCM:hover{background-color:#4fb3bf}.Save-module_dialog__of-0M .Save-module_ok__SgeCM:disabled{background-color:#e1e5ea;color:#333}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:active,.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:hover,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:active,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:hover{border:1px solid #333;color:#333}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:disabled,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T{word-wrap:normal;margin-right:auto;padding:2px 8px}.enhancedStereo-module_enhancedStereo__8FLSY{width:260px}.enhancedStereo-module_enhancedStereo__8FLSY fieldset{border:none;display:flex;flex-direction:column}.enhancedStereo-module_enhancedStereo__8FLSY fieldset label{margin-top:12px}.enhancedStereo-module_enhancedStereo__8FLSY .enhancedStereo-module_stereoLabelItem__lEf-0 label{align-items:center;display:flex;margin:2px;min-height:2.4em}.enhancedStereo-module_enhancedStereo__8FLSY .enhancedStereo-module_labelGroupSelect__K7TYC{margin-left:5px;margin-right:5px}.labelEdit-module_button-common-styles__S5XMA{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.labelEdit-module_scrollbar__GFcQm{scrollbar-width:thin}.labelEdit-module_scrollbar__GFcQm ::-webkit-scrollbar-track{background-color:transparent}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb:active,.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.labelEdit-module_labelEdit__9LnIH{display:flex;white-space:nowrap}.labelEdit-module_labelEdit__9LnIH>div{overflow:hidden;padding:0 12px}.labelEdit-module_labelEdit__9LnIH div>form{align-items:center;display:flex;flex-direction:row;justify-content:space-around;padding-top:12px}.labelEdit-module_labelEdit__9LnIH .labelEdit-module_labelEditInputField__tb-J4 label{text-align:center}.labelEdit-module_labelEdit__9LnIH .labelEdit-module_labelEditInputField__tb-J4 input{margin-left:8px;min-width:140px}.AtomInfo-module_button-common-styles__x3ucv{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.AtomInfo-module_scrollbar__8GiyC{scrollbar-width:thin}.AtomInfo-module_scrollbar__8GiyC ::-webkit-scrollbar-track{background-color:transparent}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb:active,.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.AtomInfo-module_ket_atom_info__GOuZ6{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);font-size:10px;left:18em;opacity:1;padding:.75em;position:absolute;top:2em;transition:opacity 1s,visibility 0s;width:60px}.AtomInfo-module_none__PRuzx{opacity:0;transition:opacity 2s,visibility 2s}.ElementsTable-module_button-common-styles__-6eHN{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ElementsTable-module_scrollbar__0R-HA{scrollbar-width:thin}.ElementsTable-module_scrollbar__0R-HA ::-webkit-scrollbar-track{background-color:transparent}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb:active,.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ElementsTable-module_table__iNPVY{border-spacing:3px;position:relative}.ElementsTable-module_table__iNPVY td,.ElementsTable-module_table__iNPVY th{margin:0;padding:0;text-align:center;vertical-align:middle}.ElementsTable-module_table__iNPVY .ElementsTable-module_main_row__csN5a,.ElementsTable-module_table__iNPVY th{font-size:8px;font-weight:400;opacity:.6;padding:.3em .8em}.ElementsTable-module_table__iNPVY .ElementsTable-module_outiner_row__fzfGL{text-align:right;vertical-align:top}.ElementsTable-module_table__iNPVY tr:nth-of-type(8){border-bottom:1em solid transparent}.ElementsTable-module_table__iNPVY .ElementsTable-module_noble__65B92{background:#c2ffff;border:2px solid #c2ffff}.ElementsTable-module_table__iNPVY .ElementsTable-module_alkali__sM9z9{background:#ffa2a5;border:2px solid #ffa2a5}.ElementsTable-module_table__iNPVY .ElementsTable-module_alkaline-earth__t2h2s{background:#ffe0b5;border:2px solid #ffe0b5}.ElementsTable-module_table__iNPVY .ElementsTable-module_metalloid__Ui4Y8{background:#e2e2be;border:2px solid #e2e2be}.ElementsTable-module_table__iNPVY .ElementsTable-module_other-nonmetal__mbkMN{background:#e8ff94;border:2px solid #e8ff94}.ElementsTable-module_table__iNPVY .ElementsTable-module_post-transition__k4C-G{background:#c5c5c5;border:2px solid #c5c5c5}.ElementsTable-module_table__iNPVY .ElementsTable-module_transition__GCnID{background:#ffd2d4;border:2px solid #ffd2d4}.ElementsTable-module_table__iNPVY .ElementsTable-module_lanthanide__wVoLa{background:#f4c8f4;border:2px solid #f4c8f4}.ElementsTable-module_table__iNPVY .ElementsTable-module_actinide__bVCBg{background:#fd98cb;border:2px solid #fd98cb}.ElementsTable-module_table__iNPVY .ElementsTable-module_halogen__W6EjM{background:#fffea6;border:2px solid #fffea6}.ElementsTable-module_table__iNPVY .ElementsTable-module_unknown-props__d9rq4{background:#e8e8e8}.ElementsTable-module_table__iNPVY .ElementsTable-module_unknown-state__lRBCp:after{color:#222}.ElementsTable-module_button__xCaL4{background-color:#fff;background-image:none;border:0;border-radius:2px;color:#333;color:#585858;display:inline-block;display:block;font-size:12px;font-weight:500;height:24px;line-height:2;margin:0;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:24px}.ElementsTable-module_button__xCaL4:active{background-image:none;outline:0}.ElementsTable-module_button__xCaL4[disabled],fieldset[disabled] .ElementsTable-module_button__xCaL4{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.ElementsTable-module_button__xCaL4>input[type=file]{left:-9999px;position:absolute}.ElementsTable-module_button__xCaL4+button,.ElementsTable-module_button__xCaL4+input[type=reset],.ElementsTable-module_button__xCaL4+input[type=submit]{margin-left:.3em}.ElementsTable-module_button__xCaL4:after{color:#585858;content:attr(value);font-size:.5em;line-height:1;opacity:.6;position:absolute;right:.3em;top:.3em;vertical-align:top}.ElementsTable-module_button__xCaL4:hover{background:#fff;z-index:60}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf{background:#5e5e5e;border:none;color:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf>span{color:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf>svg{fill:#fff;stroke:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf path{stroke:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf:after{color:#fff;opacity:1}.BoxWithLines-module_horizintalNodeLines__QO-Su{display:flex;flex:0 0 20px;flex-direction:column;margin-top:2px;padding-left:14px;width:calc(50% + 6px)}.BoxWithLines-module_horizintalNodeLines__QO-Su .BoxWithLines-module_upperLines__8pL-R{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:5px}.BoxWithLines-module_horizintalNodeLines__QO-Su .BoxWithLines-module_lowerLine__tBZJd{border-left:1px solid #cad3dd;border-right:1px solid #cad3dd;height:4px;margin-bottom:-10px;padding-bottom:2px}.BoxWithLines-module_verticalNodeLines__wBgwS{display:flex;flex:0 0 20px;flex-direction:column;margin-right:1px;margin-top:4px;width:5px}.BoxWithLines-module_verticalNodeLines__wBgwS .BoxWithLines-module_upperLines__8pL-R{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:14px}.BoxWithLines-module_verticalNodeLines__wBgwS .BoxWithLines-module_lowerLine__tBZJd{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:96px;margin-bottom:-16px;padding-bottom:4px}.GenSet-module_button-common-styles__0Ro-U{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.GenSet-module_scrollbar__Ev8Uz{scrollbar-width:thin}.GenSet-module_scrollbar__Ev8Uz ::-webkit-scrollbar-track{background-color:transparent}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb:active,.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenSet-module_genGroupLegendBox__CSTQr{position:absolute;top:-14px;width:100%}.GenSet-module_genGroupLegendBox__CSTQr>legend{font-size:10px!important;margin:0 auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.GenSet-module_legendBox__0zIAk{line-height:unset;position:relative}.GenSet-module_legendBox__0zIAk>legend{font-size:10px!important;margin:0 auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.GenSet-module_SpecialNodes__oFKp3{-ms-grid-columns:26px 4px 26px 4px 26px 4px 26px 4px 36px;-ms-grid-rows:24px;-moz-column-gap:4px;column-gap:4px;display:-ms-grid;display:grid;grid-template-columns:repeat(4,26px) 36px;grid-template-rows:24px}.GenSet-module_SpecialNodes__oFKp3>:first-child{-ms-grid-column:1;-ms-grid-row:1}.GenSet-module_SpecialNodes__oFKp3>:nth-child(2){-ms-grid-column:3;-ms-grid-row:1}.GenSet-module_SpecialNodes__oFKp3>:nth-child(3){-ms-grid-column:5;-ms-grid-row:1}.GenSet-module_SpecialNodes__oFKp3>:nth-child(4){-ms-grid-column:7;-ms-grid-row:1}.GenSet-module_SpecialNodes__oFKp3>:nth-child(5){-ms-grid-column:9;-ms-grid-row:1}.GenSet-module_AtomGenerics__MoQCf,.GenSet-module_GroupGenerics__pFPtX{-ms-grid-columns:26px 4px 36px;-ms-grid-rows:24px;-moz-column-gap:4px;column-gap:4px;display:-ms-grid;display:grid;grid-template-columns:26px 36px;grid-template-rows:24px}.GenSet-module_AtomGenerics__MoQCf>:first-child,.GenSet-module_GroupGenerics__pFPtX>:first-child{-ms-grid-column:1;-ms-grid-row:1}.GenSet-module_AtomGenerics__MoQCf>:nth-child(2),.GenSet-module_GroupGenerics__pFPtX>:nth-child(2){-ms-grid-column:3;-ms-grid-row:1}.GenSet-module_AcyclicCarbo__nowGn,.GenSet-module_AcyclicHetero__hnr4G,.GenSet-module_Acyclic__R97MM,.GenSet-module_CyclicCarbo__Aanb0,.GenSet-module_CyclicHetero__bbOnT,.GenSet-module_Cyclic__VJRtt{-ms-grid-columns:36px 4px 36px;-ms-grid-rows:24px;-moz-column-gap:4px;column-gap:4px;display:-ms-grid;display:grid;grid-template-columns:repeat(2,36px);grid-template-rows:24px}.GenSet-module_AcyclicCarbo__nowGn>:first-child,.GenSet-module_AcyclicHetero__hnr4G>:first-child,.GenSet-module_Acyclic__R97MM>:first-child,.GenSet-module_CyclicCarbo__Aanb0>:first-child,.GenSet-module_CyclicHetero__bbOnT>:first-child,.GenSet-module_Cyclic__VJRtt>:first-child{-ms-grid-column:1;-ms-grid-row:1}.GenSet-module_AcyclicCarbo__nowGn>:nth-child(2),.GenSet-module_AcyclicHetero__hnr4G>:nth-child(2),.GenSet-module_Acyclic__R97MM>:nth-child(2),.GenSet-module_CyclicCarbo__Aanb0>:nth-child(2),.GenSet-module_CyclicHetero__bbOnT>:nth-child(2),.GenSet-module_Cyclic__VJRtt>:nth-child(2){-ms-grid-column:3;-ms-grid-row:1}.GenSet-module_button__TCbeM{background:#fff;border:1.5px solid #cad3dd;border-radius:4px;color:rgba(88,88,88,.7);font-size:14px;height:100%;line-height:12px;padding:0;vertical-align:middle;width:100%}.GenSet-module_button__TCbeM:hover{border:1.5px solid #167782;color:#585858}.GenSet-module_button__TCbeM.GenSet-module_selected__58d2u,.GenSet-module_button__TCbeM:focus{background-color:#167782;border:1.5px solid #167782;color:#fff}.GenGroup-module_fieldFlexWrapper__mBHRt{display:flex;margin-top:12px}.GenGroup-module_buttonContainer__7qTti{gap:8px 12px}.GenGroup-module_buttonContainer__7qTti,.GenGroup-module_genButtonContainer__6Bwe1{-ms-grid-columns:1fr 12px 1fr;display:-ms-grid;display:grid;grid-template-columns:1fr 1fr}.GenGroup-module_genButtonContainer__6Bwe1{gap:22px 12px}.GenGroup-module_subGroup__afiEU{border:none;padding:0;position:relative}.GenGroup-module_legendMain__h-Wl3{color:#333!important;font-weight:700!important}.GenGroup-module_legend__JWafm{color:rgba(51,51,51,.8)!important;font-weight:700!important}.GenGroup-module_fieldset__JehYt{border:none;padding:4px 0 0}.GenericGroups-module_button-common-styles__nYUJe{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.GenericGroups-module_scrollbar__5iavS{scrollbar-width:thin}.GenericGroups-module_scrollbar__5iavS ::-webkit-scrollbar-track{background-color:transparent}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb:active,.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenericGroups-module_genericGroups__z4EaG{margin-top:9px;overflow-y:auto;padding:0 12px 12px;scrollbar-width:thin}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar{background-color:transparent}.GenericGroups-module_genericGroups__z4EaG:first-child{margin-top:0}.GenericGroups-module_genericGroups__z4EaG>fieldset{border:none;margin:1em;padding:0}.GenericGroups-module_genericGroups__z4EaG ::-webkit-scrollbar-track{background-color:transparent}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb:active,.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_groupGenerics__6UpH6,.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_topGroupsContainer__bMeoG{-ms-grid-columns:1fr 20px 1fr;grid-column-gap:20px;display:-ms-grid;display:grid;grid-template-columns:1fr 1fr}.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_subgroupContainer__xULxX{-ms-grid-columns:6px 1fr;display:-ms-grid;display:grid;grid-template-columns:6px 1fr}.TypeChoice-module_fieldset__yJqT7{border:none;display:flex;gap:12px;padding:0;width:100%}.TypeChoice-module_fieldset__yJqT7>label{align-items:center;display:flex;font-size:12px}.PeriodTable-module_button-common-styles__8JrOW{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.PeriodTable-module_scrollbar__iG-vx{scrollbar-width:thin}.PeriodTable-module_scrollbar__iG-vx ::-webkit-scrollbar-track{background-color:transparent}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb:active,.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.PeriodTable-module_elementsTable__Vcz12{background-color:#fff;height:368px;width:520px}.PeriodTable-module_elementsTable__Vcz12>div{margin:0;overflow:hidden;padding-left:8px;padding-top:12px}.PeriodTable-module_elementsTable__Vcz12>header{border-bottom:1px solid #e1e5ea}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4{align-items:center;display:flex;font-style:normal;font-weight:500;gap:4px;padding-left:2px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4>span{line-height:16px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4>svg{height:16px;width:16px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_tabs__q-2GL{border-bottom:1px solid #e1e5ea;outline:none;padding-left:15px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_tabsContent__5rij5{height:31em}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_contentGeneral__-XKPp{padding-left:15px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_periodTable__l-Uqx{position:fixed}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_periodTable__l-Uqx>*{line-height:normal}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN{background:#005662;border:none;border-radius:2px;border-radius:6px;color:#fff;float:right;position:relative;z-index:10}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:hover{background:#00838f;color:#fff}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:disabled{background:rgba(0,131,143,.4);color:#fff}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:focus{background:#4fb3bf}.ExtendedTable-module_extendedTable__2-hjV{width:390px}.RemoveFG-module_window__6PHH4{background:#f3f3f3;border-radius:10px;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;width:260px}.RemoveFG-module_window__6PHH4>*{margin:10px 15px}.RemoveFG-module_question__J8Qzx{color:#585858;text-align:left}.RemoveFG-module_header__1hBAs{align-items:center;display:flex;margin-top:15px;text-transform:uppercase}.RemoveFG-module_footer__8wImu{display:flex;justify-content:flex-end;margin-bottom:15px}.RemoveFG-module_buttonCancel__xCaJt,.RemoveFG-module_buttonOk__zR5x4{border:none;border-radius:2px;height:1.8em;width:content-box}.RemoveFG-module_buttonOk__zR5x4{background:#005662;color:#fff}.RemoveFG-module_buttonOk__zR5x4:hover{background:#00838f}.RemoveFG-module_buttonCancel__xCaJt{background:transparent;border:1px solid #717171;color:#717171;margin-right:15px}.RemoveFG-module_buttonCancel__xCaJt:hover{border-color:#333;color:#333}.rgroup-module_button-common-styles__O66iR{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.rgroup-module_scrollbar__GmU8o{scrollbar-width:thin}.rgroup-module_scrollbar__GmU8o ::-webkit-scrollbar-track{background-color:transparent}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb:active,.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.rgroup-module_rgroup__Pm-uA{width:260px}.rgroup-module_rgroup__Pm-uA>div{background-color:#eff2f5;margin:0;padding:12px 11px}.rgroup-module_rgroup__Pm-uA ul{-ms-grid-columns:41px 8px 41px 8px 41px 8px 41px 8px 41px;-ms-grid-rows:29px 8px 33px 8px 29px 8px 33px 8px 29px 8px 33px 8px 29px;grid-column-gap:8px;grid-row-gap:8px;display:-ms-grid;display:grid;grid-template-columns:repeat(5,41px);grid-template-rows:repeat(3,29px 33px) 29px;overflow:hidden}.rgroup-module_rgroup__Pm-uA ul>:first-child{-ms-grid-column:1;-ms-grid-row:1}.rgroup-module_rgroup__Pm-uA ul>:nth-child(2){-ms-grid-column:3;-ms-grid-row:1}.rgroup-module_rgroup__Pm-uA ul>:nth-child(3){-ms-grid-column:5;-ms-grid-row:1}.rgroup-module_rgroup__Pm-uA ul>:nth-child(4){-ms-grid-column:7;-ms-grid-row:1}.rgroup-module_rgroup__Pm-uA ul>:nth-child(5){-ms-grid-column:9;-ms-grid-row:1}.rgroup-module_rgroup__Pm-uA ul>:nth-child(6){-ms-grid-column:1;-ms-grid-row:3}.rgroup-module_rgroup__Pm-uA ul>:nth-child(7){-ms-grid-column:3;-ms-grid-row:3}.rgroup-module_rgroup__Pm-uA ul>:nth-child(8){-ms-grid-column:5;-ms-grid-row:3}.rgroup-module_rgroup__Pm-uA ul>:nth-child(9){-ms-grid-column:7;-ms-grid-row:3}.rgroup-module_rgroup__Pm-uA ul>:nth-child(10){-ms-grid-column:9;-ms-grid-row:3}.rgroup-module_rgroup__Pm-uA ul>:nth-child(11){-ms-grid-column:1;-ms-grid-row:5}.rgroup-module_rgroup__Pm-uA ul>:nth-child(12){-ms-grid-column:3;-ms-grid-row:5}.rgroup-module_rgroup__Pm-uA ul>:nth-child(13){-ms-grid-column:5;-ms-grid-row:5}.rgroup-module_rgroup__Pm-uA ul>:nth-child(14){-ms-grid-column:7;-ms-grid-row:5}.rgroup-module_rgroup__Pm-uA ul>:nth-child(15){-ms-grid-column:9;-ms-grid-row:5}.rgroup-module_rgroup__Pm-uA ul>:nth-child(16){-ms-grid-column:1;-ms-grid-row:7}.rgroup-module_rgroup__Pm-uA ul>:nth-child(17){-ms-grid-column:3;-ms-grid-row:7}.rgroup-module_rgroup__Pm-uA ul>:nth-child(18){-ms-grid-column:5;-ms-grid-row:7}.rgroup-module_rgroup__Pm-uA ul>:nth-child(19){-ms-grid-column:7;-ms-grid-row:7}.rgroup-module_rgroup__Pm-uA ul>:nth-child(20){-ms-grid-column:9;-ms-grid-row:7}.rgroup-module_rgroup__Pm-uA form button{background-color:#fff;background-image:none;background:#fff;border:none;border-radius:2px;color:#333;color:#585858;display:inline-block;font-size:14px;font-weight:700;height:29px;margin:0;padding:6px 4px;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:100%}.rgroup-module_rgroup__Pm-uA form button:active{background-image:none;outline:0}.rgroup-module_rgroup__Pm-uA form button[disabled],fieldset[disabled] .rgroup-module_rgroup__Pm-uA form button{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.rgroup-module_rgroup__Pm-uA form button>input[type=file]{left:-9999px;position:absolute}.rgroup-module_rgroup__Pm-uA form button+button,.rgroup-module_rgroup__Pm-uA form button+input[type=reset],.rgroup-module_rgroup__Pm-uA form button+input[type=submit]{margin-left:.3em}.rgroup-module_rgroup__Pm-uA form button:first-letter{font-weight:400}.rgroup-module_rgroup__Pm-uA form button:hover{color:#005662}.rgroup-module_rgroup__Pm-uA form button.rgroup-module_selected__hP5cM,.rgroup-module_rgroup__Pm-uA form button:active{background:#167782;color:#fff}.sgroup-module_button-common-styles__MAeEP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.sgroup-module_scrollbar__T3fpf{scrollbar-width:thin}.sgroup-module_scrollbar__T3fpf ::-webkit-scrollbar-track{background-color:transparent}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb:active,.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.sgroup-module_sgroup__Kh2Xj{background-color:#fff;border-radius:6px;width:260px}.sgroup-module_sgroup__Kh2Xj label{display:flex;flex-direction:column;margin-bottom:12px}.sgroup-module_sgroup__Kh2Xj label ul{width:inherit}.sgroup-module_sgroup__Kh2Xj label .MuiOutlinedInput-root,.sgroup-module_sgroup__Kh2Xj label input[type=text]{margin-top:4px;max-width:236px}.sgroup-module_sgroup__Kh2Xj fieldset{border:0;padding:0}.sgroup-module_sgroup__Kh2Xj fieldset[class=radio]{display:flex;justify-content:space-between;margin-top:24px;width:100%}.sgroup-module_sgroup__Kh2Xj fieldset[class=radio] label{display:flex;flex-direction:row;line-height:16px}.sgroup-module_sgroup__Kh2Xj form{margin:12px 12px 4px}.sgroup-module_sgroup__Kh2Xj form label{font-size:12px;text-align:left}.sgroup-module_sgroup__Kh2Xj form label>span>div{width:100%}.sgroup-module_sgroup__Kh2Xj form label fieldset label{align-items:center;display:flex;flex-direction:row;margin-left:4px!important}.sgroup-module_sgroup__Kh2Xj form label fieldset span{margin-right:4px!important}.sgroup-module_sgroup__Kh2Xj form select[name=fieldValue],.sgroup-module_sgroup__Kh2Xj form textarea{display:block;overflow:auto}.sgroup-module_sgroup__Kh2Xj form input[type=text],.sgroup-module_sgroup__Kh2Xj form select[name=fieldName]{color:#333;display:block;margin-bottom:0;width:100%}.sgroup-module_sgroup__Kh2Xj form textarea{margin-top:4px;max-height:240px;min-height:56px;resize:vertical;scrollbar-width:thin;width:100%}.sgroup-module_sgroup__Kh2Xj form textarea ::-webkit-scrollbar-track{background-color:transparent}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb:active,.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar{background-color:#fff;border-radius:2px;-webkit-border-radius:2px;width:4px}.template-lib-module_button-common-styles__9adxB{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.template-lib-module_scrollbar__ZFwCC{scrollbar-width:thin}.template-lib-module_scrollbar__ZFwCC ::-webkit-scrollbar-track{background-color:transparent}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb:active,.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.template-lib-module_warning__UqgEG{color:#ff4a4a}.template-lib-module_warning__UqgEG:before{content:"⚠ "}.template-lib-module_dialogHeader__-AmwE{align-items:center;display:flex;gap:4px;padding-left:2px}.template-lib-module_dialogHeader__-AmwE>span{line-height:16px}.template-lib-module_dialogHeader__-AmwE>svg{height:18px;width:18px}.template-lib-module_button__LKf1c{min-width:70px!important}.template-lib-module_dialog_body__QtL0J{background-color:#fff;color:#333;width:452px}.template-lib-module_dialog_body__QtL0J>div{display:flex;flex-direction:column;overflow:hidden}.template-lib-module_dialog_body__QtL0J>footer{box-shadow:0 -6px 6px 0 rgba(1,1,50,.1);z-index:10}.template-lib-module_dialog_body__QtL0J>footer>input{min-width:110px!important}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA{position:relative}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]{background-color:#eff2f5;height:28px;margin:0 14px 16px;padding-left:35px;width:424px}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]::-moz-placeholder{font-weight:400;opacity:90%}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]:-ms-input-placeholder{font-weight:400;opacity:90%}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]::placeholder{font-weight:400;opacity:90%}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA .template-lib-module_searchIcon__o7cAy{color:#167782;height:28px;left:14px;position:absolute;top:0;width:28px}.template-lib-module_dialog_body__QtL0J .template-lib-module_accordionSummary__2hIop{flex-direction:row-reverse;font-size:14px}.template-lib-module_dialog_body__QtL0J .template-lib-module_groupIcon__LBIRH{margin-left:15px;margin-right:8px}.template-lib-module_dialog_body__QtL0J .template-lib-module_expandIcon__Fb1EU{width:20px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN{background-color:#eff2f5;height:50vh;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN ::-webkit-scrollbar-track{background-color:transparent}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb:active,.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.template-lib-module_dialog_body__QtL0J .template-lib-module_resultsContainer__KnPBZ{background-color:#eff2f5;padding:12px 14px 4px}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:active,.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:hover{border:1px solid #333;color:#333}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.template-lib-module_dialog_body__QtL0J .MuiTabs-indicator{background-color:#167782}.template-lib-module_dialog_body__QtL0J .MuiTabs-flexContainer{background-color:#eff2f5;padding-left:14px}.template-lib-module_dialog_body__QtL0J .MuiAccordionSummary-content{align-items:end}.template-lib-module_dialog_body__QtL0J .MuiAccordionDetails-root{background-color:#eff2f5;box-shadow:inset 0 -2px 8px 0 rgba(1,1,50,.1);padding:12px 14px 4px;width:424px}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root{box-shadow:none}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root.Mui-expanded:before,.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root:before{opacity:0}.template-lib-module_dialog_body__QtL0J .MuiPaper-root:not(:last-child):after{background-color:#b4b9d6;bottom:0;content:"";height:1px;left:0;margin:0 auto;opacity:1;position:absolute;right:0;width:424px}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.Mui-expanded:after{opacity:0}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiTab-root,.template-lib-module_dialog_body__QtL0J .MuiTabs-root{height:32px;min-height:32px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabs__YkpEG{box-shadow:0 6px 6px 0 rgba(1,1,50,.1);z-index:10}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiTab-root{color:rgba(0,0,0,.7);line-height:12px;padding:12px 10px 8px;text-transform:none}.template-lib-module_dialog_body__QtL0J .MuiTab-root.Mui-selected{color:#000;font-weight:600}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root.Mui-expanded{margin:0}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiAccordionSummary-root.Mui-expanded,.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiAccordionSummary-root.MuiAccordionSummary-gutters{height:40px;min-height:40px;padding-left:12px}.TemplateTable-module_button-common-styles__ZYUa5{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.TemplateTable-module_scrollbar__aSGhu{scrollbar-width:thin}.TemplateTable-module_scrollbar__aSGhu ::-webkit-scrollbar-track{background-color:transparent}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb:active,.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.TemplateTable-module_tableContent__dnVKg{grid-gap:0 8px;-ms-grid-columns:100px 8px 100px 8px 100px 8px 100px;display:-ms-grid;display:grid;grid-template-columns:repeat(4,100px)}.TemplateTable-module_structTitle__2XUWI{border:1px solid transparent;border-radius:6px;margin:6px 0 12px;max-height:30px;max-width:100px;overflow:hidden;padding:0 7px;text-align:center}.TemplateTable-module_twoRowsTitleTable__ZYwHq{grid-auto-rows:147px}.TemplateTable-module_oneRowTitleTable__N8Ibd{grid-auto-rows:134px}.TemplateTable-module_oneRowTitleTable__N8Ibd .TemplateTable-module_structTitle__2XUWI{max-height:16px}.TemplateTable-module_struct__lOLBI{background-color:#fff;border:1px solid #b4b9d6;border-radius:5px;box-sizing:border-box;height:100px;width:100px}.TemplateTable-module_struct__lOLBI:hover{background:#f9fafb}.TemplateTable-module_struct__lOLBI svg{height:100px;left:-2px;top:-1px;width:100px}.TemplateTable-module_selectedTitle__J-cte{background-color:hsla(0,0%,100%,.7)}.TemplateTable-module_td__6LIhx{cursor:default;position:relative}.TemplateTable-module_td__6LIhx.TemplateTable-module_selected__qZEF9 .TemplateTable-module_struct__lOLBI{background-color:rgba(22,119,130,.05);border:2px solid #167782}.TemplateTable-module_button__dpOF0{background-color:#fff;background-color:transparent;background-image:none;border:none;border-radius:2px;border-radius:0;color:#333;color:#636363;cursor:pointer;display:inline-block;height:18px;margin:0;padding:0;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:18px}.TemplateTable-module_button__dpOF0:active{background-image:none;outline:0}.TemplateTable-module_button__dpOF0[disabled],fieldset[disabled] .TemplateTable-module_button__dpOF0{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.TemplateTable-module_button__dpOF0>input[type=file]{left:-9999px;position:absolute}.TemplateTable-module_button__dpOF0+button,.TemplateTable-module_button__dpOF0+input[type=reset],.TemplateTable-module_button__dpOF0+input[type=submit]{margin-left:.3em}.TemplateTable-module_button__dpOF0>svg{height:inherit;width:inherit}.TemplateTable-module_button__dpOF0:active path,.TemplateTable-module_button__dpOF0:hover path{fill:#00838f}.TemplateTable-module_deleteButton__KfBpW{position:absolute;right:5px;top:5px}.TemplateTable-module_editButton__A0BoE{position:absolute;right:5px;top:78px}div.TemplateTable-module_structure__rI84W{background-color:#fff;padding:0}.emptySearchResult-module_emptySearch__aUSew{align-items:center;color:#333;display:flex;flex-direction:column;font-size:12px;justify-content:center;min-height:240px}.emptySearchResult-module_emptySearch__aUSew>svg{height:84px;width:84px}.FontControl-module_button-common-styles__CMSGk{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.FontControl-module_scrollbar__Vq3kt{scrollbar-width:thin}.FontControl-module_scrollbar__Vq3kt ::-webkit-scrollbar-track{background-color:transparent}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb:active,.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FontControl-module_fontSizeMenu__4RvmP{background:#fff;border:1px solid #cad3dd;border-radius:4px;display:inline-block;font-size:16px;max-height:155px;overflow-y:scroll;padding:4px;position:absolute;right:12px;scrollbar-width:thin;top:74px;width:58px;z-index:10}.FontControl-module_fontSizeMenu__4RvmP ::-webkit-scrollbar-track{background-color:transparent}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb:active,.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FontControl-module_fontSizeOption__eGz-q{font-size:14px;line-height:16px;padding:4px}.FontControl-module_fontSizeOption__eGz-q:hover{background:#f3f3f3;border-radius:4px;cursor:pointer}.FontControl-module_fontBtn__zGgG3{background-color:#fff;border:1px solid #cad3dd;border-radius:4px;font-size:14px;height:24px;line-height:20px;text-align:left;width:68px}.FontControl-module_fontBtn__zGgG3:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.94 5.727 8 8.78l3.06-3.053.94.94-4 4-4-4 .94-.94Z' fill='%235B6077'/%3E%3C/svg%3E");background-size:contain;bottom:20px;content:" ";display:block;height:22px;left:18px;margin:auto;position:relative;width:22px;z-index:10}.SpecialSymbolsList-module_window__4tD1N{background-color:#fff;border-radius:0 6px 6px 6px;box-shadow:2px 2px 6px 0 #cad3dd;display:flex;flex-direction:row;flex-wrap:wrap;overflow:visible;padding:8px;position:absolute;right:27px;width:160px;z-index:10}.SpecialSymbolsList-module_button__uCp6O{background-color:transparent;border:none;height:16px;margin:2px;padding:initial;width:16px}.SpecialSymbolsList-module_button__uCp6O>svg{fill:#000}.SpecialSymbolsList-module_button__uCp6O:hover>svg{fill:#167782}.SpecialSymbolsButton-module_button-common-styles__OZY5u{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.SpecialSymbolsButton-module_scrollbar__BGjVm{scrollbar-width:thin}.SpecialSymbolsButton-module_scrollbar__BGjVm ::-webkit-scrollbar-track{background-color:transparent}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb:active,.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.SpecialSymbolsButton-module_activeTextButton__jbgHY,.SpecialSymbolsButton-module_textButton__1gh-c{background-color:#fff;background-image:none;border:0;border-radius:2px;color:#333;cursor:pointer;display:inline-block;height:28px;margin:0!important;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:28px}.SpecialSymbolsButton-module_activeTextButton__jbgHY:active,.SpecialSymbolsButton-module_textButton__1gh-c:active{background-image:none;outline:0}.SpecialSymbolsButton-module_activeTextButton__jbgHY[disabled],.SpecialSymbolsButton-module_textButton__1gh-c[disabled],fieldset[disabled] .SpecialSymbolsButton-module_activeTextButton__jbgHY,fieldset[disabled] .SpecialSymbolsButton-module_textButton__1gh-c{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.SpecialSymbolsButton-module_activeTextButton__jbgHY>input[type=file],.SpecialSymbolsButton-module_textButton__1gh-c>input[type=file]{left:-9999px;position:absolute}.SpecialSymbolsButton-module_activeTextButton__jbgHY+button,.SpecialSymbolsButton-module_activeTextButton__jbgHY+input[type=reset],.SpecialSymbolsButton-module_activeTextButton__jbgHY+input[type=submit],.SpecialSymbolsButton-module_textButton__1gh-c+button,.SpecialSymbolsButton-module_textButton__1gh-c+input[type=reset],.SpecialSymbolsButton-module_textButton__1gh-c+input[type=submit]{margin-left:.3em}.SpecialSymbolsButton-module_activeTextButton__jbgHY>svg,.SpecialSymbolsButton-module_textButton__1gh-c>svg{font-size:26px;height:26px;left:1px;position:absolute;top:1px;width:26px}.SpecialSymbolsButton-module_activeTextButton__jbgHY{background-color:#167782;border-radius:2px}.SpecialSymbolsButton-module_activeTextButton__jbgHY>svg{fill:#fff;transition:.2s}.SpecialSymbolsButton-module_activeTextButton__jbgHY:hover{background-color:#188794}.SpecialSymbolsButton-module_textButton__1gh-c>svg{fill:#333;transition:.2s}.SpecialSymbolsButton-module_textButton__1gh-c:hover{background-image:none}.SpecialSymbolsButton-module_textButton__1gh-c:hover>svg{fill:#00838f}.SpecialSymbolsButton-module_activeTextButton__jbgHY:after{border-bottom:2px solid transparent;border-right:2px solid transparent;border-color:transparent #fff #fff transparent;border-style:solid;border-width:2px;content:"";left:21px;position:absolute;top:21px}.smallEditor .SpecialSymbolsButton-module_textButton__1gh-c{height:28px;margin:4px;width:28px}.smallEditor .SpecialSymbolsButton-module_textButton__1gh-c>svg{font-size:20px;height:20px;left:1px;position:absolute;top:1px;width:20px}.TextButton-module_button-common-styles__7F1Uf{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.TextButton-module_scrollbar__u11Yl{scrollbar-width:thin}.TextButton-module_scrollbar__u11Yl ::-webkit-scrollbar-track{background-color:transparent}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb:active,.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.TextButton-module_textButton__Ocny2{background-color:#fff;background-image:none;border:0;border-radius:2px;color:#333;cursor:pointer;display:inline-block;height:28px;margin:0!important;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:28px}.TextButton-module_textButton__Ocny2:active{background-image:none;outline:0}.TextButton-module_textButton__Ocny2[disabled],fieldset[disabled] .TextButton-module_textButton__Ocny2{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.TextButton-module_textButton__Ocny2>input[type=file]{left:-9999px;position:absolute}.TextButton-module_textButton__Ocny2+button,.TextButton-module_textButton__Ocny2+input[type=reset],.TextButton-module_textButton__Ocny2+input[type=submit]{margin-left:.3em}.TextButton-module_textButton__Ocny2>svg{fill:#333;font-size:26px;height:26px;left:1px;position:absolute;top:1px;transition:.2s;width:26px}.TextButton-module_textButton__Ocny2:hover{background-image:none}.TextButton-module_textButton__Ocny2:hover>svg{fill:#00838f}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh{background-color:#167782;border-radius:2px}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh>svg{fill:#fff;transition:.2s}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh:hover{background-color:#188794}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh:hover>svg{fill:#fff;transition:.2s}.smallEditor .TextButton-module_textButton__Ocny2{height:28px;margin:4px;width:28px}.smallEditor .TextButton-module_textButton__Ocny2>svg{font-size:20px;height:20px;left:1px;position:absolute;top:1px;width:20px}.Text-module_button-common-styles__dhz9O{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Text-module_scrollbar__0OhTV{scrollbar-width:thin}.Text-module_scrollbar__0OhTV ::-webkit-scrollbar-track{background-color:transparent}.Text-module_scrollbar__0OhTV::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb:active,.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Text-module_textEditor__EFR54{display:flex;flex-direction:column;width:340px}.Text-module_textEditor__EFR54 .Text-module_controlPanel__agLDc{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:28px;justify-content:space-between;margin:12px 0}.Text-module_textEditor__EFR54 .Text-module_controlPanel__agLDc>span{margin-left:34px;margin-right:4px;white-space:nowrap}.Text-module_textEditor__EFR54 .DraftEditor-root{word-wrap:break-word;border:1px solid #cad3dd;border-radius:4px;height:182px;line-height:normal;margin-top:4px;overflow:auto;padding:12px;scrollbar-width:thin}.Text-module_textEditor__EFR54 .DraftEditor-root ::-webkit-scrollbar-track{background-color:transparent}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb:active,.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.App-module_app__8cgyF{-ms-grid-columns:minmax(36px,-webkit-max-content) 1fr minmax(36px,-webkit-max-content);-ms-grid-columns:minmax(36px,max-content) 1fr minmax(36px,max-content);-ms-grid-rows:auto 1fr auto;display:-ms-grid;display:grid;grid-template-areas:"toolbar-top toolbar-top toolbar-top" "toolbar-left canvas toolbar-right" "toolbar-bottom toolbar-bottom toolbar-bottom";grid-template-columns:minmax(36px,-webkit-max-content) 1fr minmax(36px,-webkit-max-content);grid-template-columns:minmax(36px,max-content) 1fr minmax(36px,max-content);grid-template-rows:auto 1fr auto;height:100%;position:relative;width:100%}.App-module_canvas__taJxn{grid-area:canvas;-ms-grid-column:2;-ms-grid-row:2}.App-module_top__SBeSV{-ms-grid-column-span:3;background-color:#eff2f5;grid-area:toolbar-top;-ms-grid-column:1;-ms-grid-row:1}.App-module_left__2iz-i{grid-area:toolbar-left;-ms-grid-column:1;-ms-grid-row:2}.App-module_right__U7A5Q{grid-area:toolbar-right;-ms-grid-column:3;-ms-grid-row:2}.App-module_bottom__tQA2B{-ms-grid-column-span:3;background-color:#eff2f5;grid-area:toolbar-bottom;-ms-grid-column:1;-ms-grid-row:3}.smallEditor .App-module_app__8cgyF{-ms-grid-columns:minmax(35px,-webkit-max-content) 1fr minmax(35px,-webkit-max-content);-ms-grid-columns:minmax(35px,max-content) 1fr minmax(35px,max-content);grid-template-columns:minmax(35px,-webkit-max-content) 1fr minmax(35px,-webkit-max-content);grid-template-columns:minmax(35px,max-content) 1fr minmax(35px,max-content)}.Editor-module_button-common-styles__h4pal{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Editor-module_scrollbar__yVsY8{scrollbar-width:thin}.Editor-module_scrollbar__yVsY8 ::-webkit-scrollbar-track{background-color:transparent}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb:active,.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Editor-module_small__8cgEX body,.Editor-module_small__8cgEX div[role=dialog],.Editor-module_small__8cgEX form,.Editor-module_small__8cgEX select{font-size:12px}.Editor-module_editor__o0Gjz{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__o0Gjz select{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background:transparent!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5.001 6.077-4.74-4.74.943-.942 3.797 3.797L8.797.395l.943.943-4.739 4.739Z' fill='%23231F20'/%3E%3C/svg%3E")!important;background-position:calc(100% - 11px)!important;background-repeat:no-repeat!important;padding:0 8px!important}.Editor-module_editor__o0Gjz li,.Editor-module_editor__o0Gjz menu,.Editor-module_editor__o0Gjz ul{list-style:none;margin:0;padding:0}.Editor-module_editor__o0Gjz input[type=search]{background:#fff;border:1px solid transparent;border-radius:4px;box-sizing:border-box;color:inherit;display:inline-block;font-size:14px;height:2.4em;line-height:16px;padding:6px 6px 6px 35px;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=search]:active,.Editor-module_editor__o0Gjz input[type=search]:focus{outline:0}.Editor-module_editor__o0Gjz input[type=search]:hover{border:1px solid #43b5c0}.Editor-module_editor__o0Gjz input[type=search][disabled],.Editor-module_editor__o0Gjz input[type=search][readonly],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=search]{background:#f3f3f3;cursor:not-allowed;opacity:.6}.Editor-module_editor__o0Gjz input[type=number],.Editor-module_editor__o0Gjz input[type=text],.Editor-module_editor__o0Gjz select,.Editor-module_editor__o0Gjz textarea{background:#fff;border:1px solid #cad3dd;border-radius:4px;box-sizing:border-box;color:#333;display:inline-block;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;line-height:16px;padding:3px 7px;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=number]:active,.Editor-module_editor__o0Gjz input[type=number]:focus,.Editor-module_editor__o0Gjz input[type=text]:active,.Editor-module_editor__o0Gjz input[type=text]:focus,.Editor-module_editor__o0Gjz select:active,.Editor-module_editor__o0Gjz select:focus,.Editor-module_editor__o0Gjz textarea:active,.Editor-module_editor__o0Gjz textarea:focus{caret-color:#167782;outline:0}.Editor-module_editor__o0Gjz input[type=number]:hover,.Editor-module_editor__o0Gjz input[type=text]:hover,.Editor-module_editor__o0Gjz select:hover,.Editor-module_editor__o0Gjz textarea:hover{border:1px solid #43b5c0}.Editor-module_editor__o0Gjz input[type=number][disabled],.Editor-module_editor__o0Gjz input[type=number][readonly],.Editor-module_editor__o0Gjz input[type=text][disabled],.Editor-module_editor__o0Gjz input[type=text][readonly],.Editor-module_editor__o0Gjz select[disabled],.Editor-module_editor__o0Gjz select[readonly],.Editor-module_editor__o0Gjz textarea[disabled],.Editor-module_editor__o0Gjz textarea[readonly],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=number],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=text],fieldset[disabled] .Editor-module_editor__o0Gjz select,fieldset[disabled] .Editor-module_editor__o0Gjz textarea{background-color:#e1e5ea;border:1px solid #cad3dd;color:#585858;cursor:not-allowed}.Editor-module_editor__o0Gjz fieldset{border-radius:4px;margin:0}.Editor-module_editor__o0Gjz fieldset>li{display:inline-block}.Editor-module_editor__o0Gjz fieldset.Editor-module_-hidden__aKodt{border-color:transparent;margin-top:1.5em}.Editor-module_editor__o0Gjz legend{color:#aeaeae;font-size:12px;padding:0;text-align:left}.Editor-module_editor__o0Gjz input[type=radio]{line-height:normal;margin:0 .3em;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=checkbox]{line-height:normal;margin-right:.3em;vertical-align:middle}
|
|
2
2
|
/*# sourceMappingURL=index.css.map */
|