diff --git a/assets/css/easyadmin-theme/forms.scss b/assets/css/easyadmin-theme/forms.scss index 7bd3fdc4e2..a7dbaf64c6 100644 --- a/assets/css/easyadmin-theme/forms.scss +++ b/assets/css/easyadmin-theme/forms.scss @@ -468,3 +468,8 @@ form .invalid-feedback > .d-block + .d-block { text-align: right; top: 0; } + +// EasyAdminCodeType +.field-easyadmin_code_editor .form-widget { + flex-basis: 65%; +} diff --git a/assets/css/form-type-code-editor.css b/assets/css/form-type-code-editor.css new file mode 100644 index 0000000000..166253d3ae --- /dev/null +++ b/assets/css/form-type-code-editor.css @@ -0,0 +1,24 @@ +@import '~codemirror/lib/codemirror.css'; + +.CodeMirror { + font: 13px/1.5 SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Ubuntu Mono", "Courier New", monospace; + height: auto; + min-height: 45px; +} + +.CodeMirror-wrap { + box-shadow: 0 0 0 1px rgba(43, 45, 80, .16), 0 0 0 1px rgba(6, 122, 184, 0), 0 0 0 2px rgba(6, 122, 184, 0), 0 1px 1px rgba(0, 0, 0, .08);; + border-radius: var(--border-radius); +} + +.CodeMirror-gutters { + background: var(--gray-100); +} + +.CodeMirror-linenumber { + color: var(--text-muted); +} + +.CodeMirror-lines { + padding-bottom: 5px; +} diff --git a/assets/js/app.js b/assets/js/app.js index c3f516590b..87d6915ca5 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -28,6 +28,7 @@ window.addEventListener('load', function() { $(document).on('easyadmin.collection.item-added', createAutoCompleteFields); createContentResizer(); createNavigationToggler(); + createCodeEditorFields(); }); function createNullableControls() { @@ -138,3 +139,23 @@ function createNavigationToggler() { } }); } + +// Code editor fields require extra JavaScript dependencies, which are loaded +// dynamically only when there are code editor fields in the page +function createCodeEditorFields() +{ + const codeEditorElements = document.querySelectorAll('[data-easyadmin-code-editor]'); + if (codeEditorElements.length === 0) { + return; + } + + const codeEditorJs = document.createElement('script'); + codeEditorJs.setAttribute('src', codeEditorElements[0].dataset.jsUrl); + + const codeEditorCss = document.createElement('link'); + codeEditorCss.setAttribute('rel', 'stylesheet'); + codeEditorCss.setAttribute('href', codeEditorElements[0].dataset.cssUrl); + + document.querySelector('head').appendChild(codeEditorCss); + document.querySelector('body').appendChild(codeEditorJs); +} diff --git a/assets/js/form-type-code-editor.js b/assets/js/form-type-code-editor.js new file mode 100644 index 0000000000..f0091fbc58 --- /dev/null +++ b/assets/js/form-type-code-editor.js @@ -0,0 +1,31 @@ +require('../css/form-type-code-editor.css'); + +import CodeMirror from 'codemirror'; + +import 'codemirror/mode/css/css'; +import 'codemirror/mode/dockerfile/dockerfile'; +import 'codemirror/mode/javascript/javascript'; +import 'codemirror/mode/markdown/markdown'; +import 'codemirror/mode/nginx/nginx'; +import 'codemirror/mode/php/php'; +import 'codemirror/mode/shell/shell'; +import 'codemirror/mode/sql/sql'; +import 'codemirror/mode/twig/twig'; +import 'codemirror/mode/xml/xml'; +import 'codemirror/mode/yaml-frontmatter/yaml-frontmatter'; +import 'codemirror/mode/yaml/yaml'; + +document.querySelectorAll('[data-easyadmin-code-editor]').forEach(function(codeBlock) { + CodeMirror.fromTextArea(codeBlock, { + autocapitalize: false, + autocorrect: false, + indentWithTabs: codeBlock.dataset.indentWithTabs, + lineNumbers: true, + lineWrapping: true, + mode: codeBlock.dataset.language, + scrollbarStyle: 'native', + spellcheck: false, + tabSize: codeBlock.dataset.tabSize, + theme: 'default', + }); +}); diff --git a/doc/book/edit-new-configuration.rst b/doc/book/edit-new-configuration.rst index 9b139adb03..c8057f788b 100644 --- a/doc/book/edit-new-configuration.rst +++ b/doc/book/edit-new-configuration.rst @@ -384,8 +384,8 @@ These are the options that you can define for each field: done internally by the bundle). The allowed values are: * Any of the `Symfony Form types`_. - * Any of the custom EasyAdmin form types: ``easyadmin_autocomplete`` (they are - explained later in this chapter). + * Any of the custom EasyAdmin form types: ``code_editor``, ``easyadmin_autocomplete`` + (they are explained later in this chapter). * ``type_options`` (optional), a hash with the options passed to the Symfony Form type used to render the field. @@ -555,6 +555,56 @@ change this value (globally or per entity): max_results: 5 # ... +Code Editor +----------- + +It displays a JavaScript-based editor for source code. It provides advanced +features such as code highlighting and smart indenting. + +.. code-block:: yaml + + # config/packages/easy_admin.yaml + easy_admin: + entities: + Server: + class: App\Entity\Server + form: + fields: + - { property: 'config', type: 'code_editor', language: 'nginx' } + # ... + # ... + +This type defines the following configuration options: + +* ``height``: the initial height of code blocks is the same as their contents + and it grows automatically as you add more contents. This option, which must + be an integer, sets the height of the code block element in pixels. If + contents don't fit, a scrollbar is displayed. +* ``language``: sets the programming language used for the syntax highlighting + of the code (the language can't be autodetected from the contents). The available + languages are: ``css``, ``dockerfile``, ``js`` (equivalent to ``javascript``), + ``markdown``, ``nginx``, ``php``, ``shell``, ``sql``, ``twig``, ``xml``, + ``yaml-frontmatter`` (used in some blogs, CMS systems and static site + generators), ``yaml``. +* ``tab_size``: an integer (default: ``4``) that defines the indention size (no + matter if the code uses white spaces or tabs). +* ``indent_with_tabs``: if this boolean option is set to ``true``, code is + indented with real tabs instead of white spaces (default: ``false``). + +.. code-block:: yaml + + # config/packages/easy_admin.yaml + easy_admin: + entities: + ExamQuestion: + class: App\Entity\ExamQuestion + form: + fields: + - { property: 'question', type: 'code_editor', language: 'yaml', height: 150, tab_size: 4 } + - { property: 'codeSample', type: 'code_editor', language: 'php', height: 600, tab_size: 2 } + # ... + # ... + .. _edit-new-advanced-form-design: Advanced Form Design diff --git a/package.json b/package.json index bda44ed919..9e017ee28f 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "@symfony/webpack-encore": "^0.21", "bootstrap": "^4.1.0", "bootstrap-rtl": "^3.3.4", + "codemirror": "^5.47.0", "cssnano": "^4.1.7", "featherlight": "^1.7.13", "jquery": "^3.3.1", diff --git a/src/Form/Type/CodeEditorType.php b/src/Form/Type/CodeEditorType.php new file mode 100644 index 0000000000..f538044356 --- /dev/null +++ b/src/Form/Type/CodeEditorType.php @@ -0,0 +1,72 @@ + + */ +class CodeEditorType extends AbstractType +{ + /** + * {@inheritdoc} + */ + public function buildView(FormView $view, FormInterface $form, array $options): void + { + $view->vars['height'] = $options['height']; + $view->vars['tabSize'] = $options['tab_size']; + $view->vars['indentWithTabs'] = $options['indent_with_tabs']; + $view->vars['language'] = $options['language']; + } + + /** + * {@inheritdoc} + */ + public function configureOptions(OptionsResolver $resolver): void + { + $resolver->setDefaults([ + 'height' => null, + 'tab_size' => 4, + 'indent_with_tabs' => false, + // the code editor can't autodetect the language, so 'markdown' is used when + // no language is selected explicitly (because it's the most similar to regular text) + 'language' => 'markdown', + ]); + $resolver->setAllowedTypes('height', ['null', 'int']); + $resolver->setAllowedTypes('tab_size', 'int'); + $resolver->setAllowedTypes('indent_with_tabs', 'bool'); + $resolver->setAllowedTypes('language', 'string'); + $resolver->setAllowedValues('language', ['css', 'dockerfile', 'js', 'javascript', 'markdown', 'nginx', 'php', 'shell', 'sql', 'twig', 'xml', 'yaml-frontmatter', 'yaml']); + + // define some programming language shortcuts for better UX (e.g. 'js' === 'javascript') + $resolver->setNormalizer('language', static function (Options $options, $language) { + if ('js' === $language) { + $language = 'javascript'; + } + + return $language; + }); + } + + /** + * {@inheritdoc} + */ + public function getParent(): string + { + return TextareaType::class; + } + + /** + * {@inheritdoc} + */ + public function getBlockPrefix(): string + { + return 'easyadmin_code_editor'; + } +} diff --git a/src/Form/Type/Configurator/CodeEditorTypeConfigurator.php b/src/Form/Type/Configurator/CodeEditorTypeConfigurator.php new file mode 100644 index 0000000000..9d614dd9e7 --- /dev/null +++ b/src/Form/Type/Configurator/CodeEditorTypeConfigurator.php @@ -0,0 +1,43 @@ + + */ +class CodeEditorTypeConfigurator implements TypeConfiguratorInterface +{ + /** + * {@inheritdoc} + */ + public function configure($name, array $options, array $metadata, FormConfigInterface $parentConfig): array + { + if (isset($metadata['height'])) { + $options['height'] = $metadata['height']; + } + if (isset($metadata['tab_size'])) { + $options['tab_size'] = $metadata['tab_size']; + } + if (isset($metadata['indent_with_tabs'])) { + $options['indent_with_tabs'] = $metadata['indent_with_tabs']; + } + if (isset($metadata['language'])) { + $options['language'] = $metadata['language']; + } + + return $options; + } + + /** + * {@inheritdoc} + */ + public function supports($type, array $options, array $metadata): bool + { + return \in_array($type, ['code_editor', CodeEditorType::class], true); + } +} diff --git a/src/Form/Util/FormTypeHelper.php b/src/Form/Util/FormTypeHelper.php index 2db865edc9..d0004fc1f4 100644 --- a/src/Form/Util/FormTypeHelper.php +++ b/src/Form/Util/FormTypeHelper.php @@ -2,6 +2,7 @@ namespace EasyCorp\Bundle\EasyAdminBundle\Form\Util; +use EasyCorp\Bundle\EasyAdminBundle\Form\Type\CodeEditorType; use EasyCorp\Bundle\EasyAdminBundle\Form\Type\EasyAdminAutocompleteType; use EasyCorp\Bundle\EasyAdminBundle\Form\Type\EasyAdminDividerType; use EasyCorp\Bundle\EasyAdminBundle\Form\Type\EasyAdminFormType; @@ -59,6 +60,9 @@ final class FormTypeHelper 'button' => ButtonType::class, 'checkbox' => CheckboxType::class, 'choice' => ChoiceType::class, + // allow using underscore and dashes to improve DX + 'code-editor' => CodeEditorType::class, + 'code_editor' => CodeEditorType::class, 'collection' => CollectionType::class, 'color' => ColorType::class, 'country' => CountryType::class, diff --git a/src/Resources/config/form.xml b/src/Resources/config/form.xml index bdf3feb30d..10adce01b2 100644 --- a/src/Resources/config/form.xml +++ b/src/Resources/config/form.xml @@ -45,6 +45,11 @@ + + + + diff --git a/src/Resources/public/app.css b/src/Resources/public/app.css index 19122eae87..9b9b8f1469 100644 --- a/src/Resources/public/app.css +++ b/src/Resources/public/app.css @@ -11,5 +11,5 @@ * Select2 Bootstrap Theme v0.1.0-beta.10 (https://select2.github.io/select2-bootstrap-theme) * Copyright 2015-2017 Florian Kissling and contributors (https://github.com/select2/select2-bootstrap-theme/graphs/contributors) * Licensed under MIT (https://github.com/select2/select2-bootstrap-theme/blob/master/LICENSE) - */.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px;outline:0}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#999}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#999}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#999;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#999}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:#337ab7;color:#fff}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--bootstrap .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-color:#66afe9}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 4px 4px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-color:transparent}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-right-radius:0;border-top-left-radius:0;border-top-color:transparent}.select2-container--bootstrap .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--bootstrap .select2-selection__clear:hover{color:#333}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);border-color:#66afe9;overflow-x:hidden;margin-top:-1px}.select2-container--bootstrap .select2-dropdown--above{-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175);margin-top:1px}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent;border-style:solid;border-width:4px 4px 0;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--bootstrap .select2-selection--multiple{min-height:34px;padding:0;height:auto}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:#555;background:#fff;border:1px solid #ccc;border-radius:4px;cursor:default;float:left;margin:5px 0 0 6px;padding:0 6px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 12px;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:3px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:30px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{border-width:5px 5px 0;margin-left:-10px;margin-top:-2.5px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;border-color:#66512c}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;border-color:#843534}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;border-color:#2b542c}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.select2-container--bootstrap{display:table;table-layout:fixed;position:relative;z-index:2;width:100%;margin-bottom:0}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:var(--font-family-base);font-size:.875rem;font-weight:400;line-height:1.5;color:#4c5367;text-align:left;background-color:#e3e7ed}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#5c70d6;text-decoration:none;background-color:transparent}a:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:var(--font-family-monospace);font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--text-muted);text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--text-color-dark)}.h1,h1{font-size:2.1875rem}.h2,h2{font-size:1.75rem}.h3,h3{font-size:1.53125rem}.h4,h4{font-size:1.3125rem}.h5,h5{font-size:1.09375rem}.h6,h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\A0"}.container{max-width:540px;max-width:720px;max-width:960px;max-width:1140px}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);background-color:var(--white);background-clip:padding-box;border:1px solid #ced4da;border-radius:var(--border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:var(--text-color-dark);background-color:var(--white);border-color:#c4cbee;outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:var(--text-color-dark);background-color:var(--white)}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8125rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#4c5367;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:0}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:var(--text-muted)}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#1ea471}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(30,164,113,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#1ea471;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#1ea471;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1ea471}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1ea471}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1ea471}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#26cf8e;background-color:#26cf8e}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1ea471}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#cd3c63}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(205,60,99,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#cd3c63;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#cd3c63;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#cd3c63}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#cd3c63}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#cd3c63}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#d76583;background-color:#d76583}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#cd3c63}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}.btn{display:inline-block;font-weight:400;color:#4c5367;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:0 solid transparent;padding:4px 10px;font-size:.875rem;line-height:1.6;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4c5367;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:hover{color:#fff;background-color:#4359c8;border-color:#3951c6}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#3951c6;border-color:#374dbc}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-secondary{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:hover{color:#212529;background-color:#cdd2dd;border-color:#c5cbd8}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#212529;background-color:#c5cbd8;border-color:#bdc5d3}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-success{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:hover{color:#fff;background-color:#18835a;border-color:#167953}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#167953;border-color:#146e4b}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-info{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:hover{color:#fff;background-color:#056092;border-color:#045886}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#045886;border-color:#045079}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-warning{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:hover{color:#fff;background-color:#b66513;border-color:#ab5e12}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ab5e12;border-color:#9f5811}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-danger{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:hover{color:#fff;background-color:#b42f52;border-color:#aa2c4e}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#aa2c4e;border-color:#a02949}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#6174d1;border-color:#6174d1}.btn-outline-primary:hover{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#6174d1;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-secondary{color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:hover{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#e3e7ed;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-success{color:#1ea471;border-color:#1ea471}.btn-outline-success:hover{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#1ea471;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-info{color:#0679b7;border-color:#0679b7}.btn-outline-info:hover{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0679b7;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-warning{color:#d97817;border-color:#d97817}.btn-outline-warning:hover{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#d97817;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-danger{color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:hover{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#cd3c63;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#5c70d6;text-decoration:none}.btn-link:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}.btn-link.focus,.btn-link:focus{text-decoration:var(--link-hover-decoration);box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:7px 12px;font-size:1rem;line-height:1.5;border-radius:var(--border-radius)}.btn-group-sm>.btn,.btn-sm{padding:3px 5px;font-size:.8125rem;line-height:1.5;border-radius:var(--border-radius)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:7.5px;padding-left:7.5px}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:3.75px;padding-left:3.75px}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:9px;padding-left:9px}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.875rem;color:#4c5367;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:var(--border-width) solid var(--border-color);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--gray-900);text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#6174d1}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.8125rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);text-align:center;white-space:nowrap;background-color:var(--form-bg);border:1px solid #ced4da;border-radius:var(--border-radius)}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:var(--border-width) solid var(--border-color)}.nav-tabs .nav-item{margin-bottom:-var(--border-width)}.nav-tabs .nav-link{border:var(--border-width) solid transparent;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:transparent}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--gray-800);background-color:var(--form-bg);border-left-color:var(--border-color);border-bottom-color:transparent;border-right-color:var(--border-color);border-top-color:var(--border-color)}.nav-tabs .dropdown-menu{margin-top:-var(--border-width);border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#6174d1}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{display:inline-block;padding:.25em .4em;font-size:var(--font-size-sm);font-weight:500;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#6174d1}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#3951c6}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.badge-secondary{color:#212529;background-color:#e3e7ed}a.badge-secondary:focus,a.badge-secondary:hover{color:#212529;background-color:#c5cbd8}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.badge-success{color:#fff;background-color:#1ea471}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#167953}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.badge-info{color:#fff;background-color:#0679b7}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#045886}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.badge-warning{color:#fff;background-color:#d97817}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#ab5e12}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.badge-danger{color:#fff;background-color:#cd3c63}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#aa2c4e}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:var(--border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-right:3.8125rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#323c6d;background-color:#dfe3f6;border-color:#d3d8f2}.alert-primary hr{border-top-color:#bfc7ec}.alert-primary .alert-link{color:#22294a}.alert-secondary{color:#76787b;background-color:#f9fafb;border-color:#f7f8fa}.alert-secondary hr{border-top-color:#e7eaf0}.alert-secondary .alert-link{color:#5d5f61}.alert-success{color:#10553b;background-color:#d2ede3;border-color:#c0e5d7}.alert-success hr{border-top-color:#aedecc}.alert-success .alert-link{color:#082a1d}.alert-info{color:#033f5f;background-color:#cde4f1;border-color:#b9d9eb}.alert-info hr{border-top-color:#a5cee5}.alert-info .alert-link{color:#011e2e}.alert-warning{color:#713e0c;background-color:#f7e4d1;border-color:#f4d9be}.alert-warning hr{border-top-color:#f0cca8}.alert-warning .alert-link{color:#432507}.alert-danger{color:#6b1f33;background-color:#f5d8e0;border-color:#f1c9d3}.alert-danger hr{border-top-color:#ecb5c3}.alert-danger .alert-link{color:#431420}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:var(--form-bg);background-clip:padding-box;border:1px solid var(--border-color);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:var(--black)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.6}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid var(--border-color);border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:15px 20px}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:15px 20px;border-top:1px solid var(--border-color);border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}.modal-lg,.modal-xl{max-width:900px}.modal-xl{max-width:1140px}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid #e3e7ee;border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#e3e7ee}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#e3e7ee}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:#e3e7ee}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#e3e7ee}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;color:var(--text-color-dark);background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#4c5367}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#6174d1!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#3951c6!important}.bg-secondary{background-color:#e3e7ed!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#c5cbd8!important}.bg-success{background-color:#1ea471!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#167953!important}.bg-info{background-color:#0679b7!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#045886!important}.bg-warning{background-color:#d97817!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ab5e12!important}.bg-danger{background-color:#cd3c63!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#aa2c4e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#6174d1!important}.border-secondary{border-color:#e3e7ed!important}.border-success{border-color:#1ea471!important}.border-info{border-color:#0679b7!important}.border-warning{border-color:#d97817!important}.border-danger{border-color:#cd3c63!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.text-monospace{font-family:var(--font-family-monospace)!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#6174d1!important}a.text-primary:focus,a.text-primary:hover{color:#3449b2!important}.text-secondary{color:#e3e7ed!important}a.text-secondary:focus,a.text-secondary:hover{color:#b6bece!important}.text-success{color:#1ea471!important}a.text-success:focus,a.text-success:hover{color:#126344!important}.text-info{color:#0679b7!important}a.text-info:focus,a.text-info:hover{color:#03486d!important}.text-warning{color:#d97817!important}a.text-warning:focus,a.text-warning:hover{color:#945210!important}.text-danger{color:#cd3c63!important}a.text-danger:focus,a.text-danger:hover{color:#962744!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#4c5367!important}.text-muted{color:var(--text-muted)!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.sf-toolbarreset{-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}body{text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:unset}.main-header{grid-area:header}.main-sidebar{grid-area:sidebar}.content-wrapper{grid-area:content-wrapper}.content{grid-area:content}#sidebar-resizer-handler{grid-area:sidebar-resizer-handler}#content-resizer-handler{grid-area:content-resizer-handler}#flash-messages{grid-area:flash-messages}.wrapper{display:grid;grid-row-gap:20px;grid-template-areas:"header" "content-wrapper";margin:20px 15px}@media (min-width:992px){.wrapper{grid-template-columns:var(--sidebar-width) auto;grid-column-gap:15px;grid-template-areas:"header header" "sidebar content-wrapper";margin-left:auto;margin-right:auto;width:calc(100% - 40px)}}body:not(.easyadmin-content-width-full) .wrapper{max-width:var(--body-max-width)}@media (min-width:992px){body.easyadmin-sidebar-width-compact .wrapper{grid-template-columns:24px auto}}.main-header{display:flex;justify-content:space-between}@media (min-width:992px){.main-header{padding-right:10px}}.main-header .navbar{display:flex}.main-header #header-logo{font-size:21px;font-weight:600;line-height:1;margin:0}.main-header #header-logo a{color:var(--text-color)}.main-header #header-logo img,.main-header #header-logo svg{max-width:100%}#navigation-toggler{background:transparent;border:0;color:var(--text-color-dark);cursor:pointer;filter:opacity(50%);font-size:17px;margin:0 5px 0 -5px;padding:0;width:24px}@media (min-width:992px){#navigation-toggler{display:none}}.main-sidebar{background:var(--body-bg);height:100vh;left:calc(-40px - var(--sidebar-width));overflow-x:hidden;overflow-y:auto;padding:15px 20px;position:absolute;top:0;transition:left .3s;z-index:1041;width:calc(40px + var(--sidebar-width))}@media (min-width:992px){.main-sidebar{height:unset;padding:0;position:static;width:var(--sidebar-width);z-index:1039}}body.easyadmin-mobile-sidebar-visible .main-sidebar{left:0}.navbar-custom-menu .user{align-items:center;color:var(--text-color-light);cursor:pointer;display:flex}.navbar-custom-menu .user-avatar{border-radius:50%;box-shadow:0 2px 5px 0 rgba(59,64,94,.1),0 1px 1px 0 rgba(0,0,0,.07);font-size:21px;max-height:21px;max-width:21px}.navbar-custom-menu .user-name{margin-left:6px}.navbar-custom-menu .user.user-is-impersonated{color:var(--color-danger)}.user-details .user-details-name{font-size:var(--font-size-base);font-weight:500;margin-bottom:0}.user-menu-wrapper .popover-body{padding:0}.user-menu-wrapper .popover-content-section{padding:12px}.user-menu-wrapper .popover-content-section+.popover-content-section{border-top:var(--border-width) var(--border-style) var(--border-color);padding-top:12px}.user-menu .user-action{display:block;font-size:var(--font-size-sm)}.user-menu .user-action+.user-action{margin-top:var(--font-size-sm)}.content-wrapper{display:grid;grid-auto-rows:max-content;grid-column-gap:0;grid-row-gap:0;grid-template-areas:"flash-messages flash-messages flash-messages" "sidebar-resizer-handler content content-resizer-handler";grid-template-columns:0 auto 0}@media (min-width:992px){.content-wrapper{grid-template-columns:10px auto 10px}}.content{background-color:var(--white);border-radius:var(--border-radius);box-shadow:var(--box-shadow-lg)}.resizer-handler{background:rgba(0,0,0,.1) 50% no-repeat url('data:image/svg+xml;utf8,');cursor:col-resize;display:none;opacity:.15;transition:opacity .7s}.resizer-handler:hover{opacity:1}@media (min-width:992px){.resizer-handler{display:block}}.resizer-handler-left{border-bottom-left-radius:var(--border-radius);border-top-left-radius:var(--border-radius)}.resizer-handler-right{border-bottom-right-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content-header{border-bottom:var(--border-width) var(--border-style) var(--border-color);display:flex;flex-direction:column;padding:15px 17px 15px 20px}.list .content-header{padding-top:12px;padding-bottom:12px}.content-header-title{align-self:center;flex:1}.content-header.has-content-help .content-header-title{align-self:flex-end}.content-header-title .title{font-size:var(--font-size-lg);line-height:24px;margin:0}.content-header .global-actions{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin-left:10px}.global-actions .btn{margin-left:15px}.batch-actions form{display:flex}.batch-actions .btn{margin-left:15px}.form-action-search .form-group{margin:0;padding:0}.form-action-search input[type=search].form-control{background-color:var(--white);background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-size:13px 13px;background-position:10px 8px;padding-left:32px;width:300px}.content-header-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-top:12px}.content-footer{background:var(--white);border-top:var(--border-width) var(--border-style) var(--border-color);padding:15px 20px}.content-body form,.content-footer{border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.content-body table{margin-bottom:0}form .content-footer{margin:20px -20px -18px}.list-pagination{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.pager .btn{display:inline-block}.pager .btn+.btn{margin-left:-2px}.pager .btn:first-child{border-top-right-radius:0;border-bottom-right-radius:0;transform:translateX(1px)}.pager .btn:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.modal-body h4{font-size:var(--font-size-lg)}.modal-footer{background:var(--white)}.boolean .label{display:inline-block;min-width:33px}body.show .form-horizontal{background:var(--form-bg)}body.show .form-horizontal .control-label{padding-top:0}body.show .form-control{border:var(--border-width) var(--border-style) var(--border-color);box-shadow:none;height:auto;min-height:30px;padding:4px 7px 5px}body.show .field-boolean .form-widget,body.show .field-float .form-widget,body.show .field-integer .form-widget{max-width:100px}body.show .field-date .form-widget,body.show .field-datetime .form-widget,body.show .field-time .form-widget{max-width:250px}body.show .field-string .form-widget{max-width:450px}body.show .field-association .form-widget,body.show .field-text .form-widget{max-width:550px}body.show .field-association ul,body.show .field-simple_array ul{margin:5px;padding-left:15px}body.show .field-text .form-widget{max-height:250px;overflow-y:auto}body.show .field-text .form-widget .form-control{min-height:60px}body.show .field-avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}@media (min-width:992px){#flash-messages{margin-left:10px;margin-right:10px}}.alert{box-shadow:var(--box-shadow-lg);margin-bottom:15px}.sidebar-menu,.sidebar-menu ul{padding-left:0}.sidebar-menu .header{color:var(--text-muted);font-size:12px;margin-top:20px;padding:7px 5px 7px 0;text-transform:uppercase}.sidebar-menu li{list-style:none}.sidebar-menu a{color:var(--text-color-dark);display:block;line-height:20px;padding:4px 5px 10px 0}.sidebar-menu .fa{color:var(--text-color-dark);filter:opacity(50%);font-size:17px;margin-right:4px;width:20px}.sidebar-menu li:not(.submenu-active).active{border-radius:var(--border-radius);font-weight:500}.sidebar-menu li:not(.submenu-active).active .fa,.sidebar-menu li:not(.submenu-active).active a{color:var(--color-primary);filter:opacity(100%)}.sidebar-menu .menu-open .treeview-icon{transform:rotate(90deg)}.treeview{position:relative}.treeview-menu{display:none;margin-bottom:12px;margin-top:-4px}.sidebar-menu .active .treeview-menu{display:block}.treeview-menu a{color:var(--text-color);font-size:var(--font-size-sm);line-height:20px;padding:3px 5px 3px 28px}.treeview-menu a .fa{color:var(--text-color);filter:opacity(50%);font-size:var(--font-size-base);margin-right:4px;width:16px}.treeview .treeview-icon{position:absolute;top:6px;right:1px;transition:transform .25s ease;width:auto}.treeview.menu-open .treeview-icon{transform:rotate(90deg)}body.easyadmin-sidebar-width-compact .main-sidebar{overflow:visible}@media (min-width:992px){body.easyadmin-sidebar-width-compact .main-sidebar{width:24px}}@media (min-width:992px){body.easyadmin-sidebar-width-compact .sidebar-menu a{padding:7px 5px 7px 0}body.easyadmin-sidebar-width-compact .sidebar-menu li .treeview-icon,body.easyadmin-sidebar-width-compact .sidebar-menu li span{display:none}body.easyadmin-sidebar-width-compact .sidebar-menu li{position:relative}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover{background:var(--body-bg);border-radius:var(--border-radius);width:var(--sidebar-width);z-index:1040}.easyadmin-sidebar-width-compact .sidebar-menu li.header{height:0;overflow:hidden;padding:0;width:0}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li:hover{width:unset}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover span{display:inline-block;left:32px;position:absolute;top:7px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu a{padding:3px 5px 3px 11px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu span{position:static}body.easyadmin-sidebar-width-compact .sidebar-menu li .fa{font-size:21px;width:24px}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li .fa{font-size:var(--font-size-base);width:16px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu{padding-top:5px;padding-bottom:5px;border-bottom-right-radius:4px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li>a>span{display:none!important}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>a>span{background:var(--body-bg);display:block!important;position:absolute;left:32px;width:calc(var(--sidebar-width) - 32px)}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu{top:32px;margin-left:0}}table.datagrid{border-spacing:0;width:100%}.datagrid thead{background:var(--form-bg)}.datagrid thead th{padding:0}.datagrid thead a,.datagrid thead span{color:var(--text-color-dark);display:block;font-weight:500;line-height:1.357;padding:8px;text-align:left;white-space:nowrap}.datagrid td:first-child,.datagrid th:first-child a,.datagrid th:first-child span{padding-left:20px}.datagrid td:last-child,.datagrid th:last-child a,.datagrid th:last-child span{padding-right:20px}.datagrid td{padding:8px}.datagrid thead .sorted a,.datagrid thead .sorted span{font-weight:700}.datagrid thead i{color:var(--text-muted);margin-left:2px}.datagrid thead .sorted i{color:var(--color-primary)}.datagrid td,.datagrid th{border-bottom:var(--border-width) var(--border-style) var(--border-color);vertical-align:middle}.datagrid tr:last-child>td{border:0}.datagrid tbody tr:hover td,.datagrid tbody tr:hover th{background:var(--form-bg)}.datagrid td.actions{text-align:right}.datagrid td.actions a{font-size:var(--font-size-sm);font-weight:500;margin-left:10px}.datagrid td.actions .fa{font-size:var(--font-size-base)}.datagrid .actions-dropdown{position:relative}.datagrid .actions-dropdown .dropdown-toggle{background:transparent!important;border:var(--border-width) solid transparent;box-shadow:none!important;padding:1px 8px 0}.datagrid .actions-dropdown .dropdown-toggle:after{display:none}.datagrid .actions-dropdown a.dropdown-item{margin:0}.datagrid .actions-dropdown a.dropdown-item i{margin-right:5px}.datagrid .actions-dropdown .dropdown-menu-right{border-top-right-radius:0;right:0;top:20px;box-shadow:var(--box-shadow-lg)}.datagrid .actions-dropdown:hover{cursor:pointer}.datagrid .actions-dropdown:hover .dropdown-toggle{background:var(--white)!important;border:var(--border-width) solid var(--border-color);border-bottom-color:var(--white);z-index:1001;position:relative;border-bottom-left-radius:0;border-bottom-right-radius:0}.datagrid .actions-dropdown:hover .dropdown-menu{display:block}.datagrid .easyadmin-thumbnail img{box-shadow:0 0 0 2px var(--white),0 0 4px 1px var(--gray-600);margin-bottom:2px;margin-top:2px;max-height:50px;max-width:100px}.datagrid td.boolean,.datagrid td.image,.datagrid th.boolean,.datagrid th.boolean a,.datagrid th.image,.datagrid th.image a{text-align:center}.datagrid td.avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}.datagrid td.country .country-flag{margin-right:2px;max-height:18px;vertical-align:text-top}.datagrid .highlight{border-radius:var(--border-radius);background:var(--highlight-bg);padding:1px}.datagrid .no-results{padding:60px 0;text-align:center}.datagrid .no-results:hover{background:transparent}#modal-filters .modal-dialog{max-width:400px}#modal-filters .modal-content{background:var(--white)}#modal-filters .modal-header{background:var(--gray-50);border-bottom-color:var(--gray-300);padding:10px 15px}#modal-filters .modal-title{color:var(--gray-700);font-size:var(--font-size-base)}#modal-filters .modal-body{border-bottom:0;padding:15px}.action-filters-button i{color:var(--text-color-light)}.action-filters-button.action-filters-applied i{color:var(--color-primary)}.action-filters-button span{font-weight:600}.action-filters-reset i{color:var(--text-color-light)}.filter-heading{align-items:center;display:flex;padding:4px 0}.filter-heading a{color:var(--link-color);cursor:pointer;flex:1;margin-left:7px}.filter-content{margin-left:15px}.filter-content .form-group,.filter-content .form-widget-compound .form-group{padding-right:5px}.filter-content .form-group:last-of-type{padding-bottom:0}.show .field-image .form-control{background:transparent;border:0;padding:0}.show .form-control .easyadmin-thumbnail img{box-shadow:0 0 0 4px var(--white),0 0 8px 2px var(--gray-600);margin:10px 7px;max-height:300px;max-width:400px}.easyadmin-thumbnail img:hover{cursor:zoom-in}.easyadmin-lightbox{display:none}.easyadmin-lightbox img{max-width:100%;width:100%}.featherlight .easyadmin-lightbox{display:block}.featherlight .easyadmin-lightbox:hover{cursor:zoom-out}.content-body .form-horizontal,.content-body form{background:var(--form-bg);padding:18px 20px}.form-group{display:flex;flex-wrap:wrap;align-items:center;padding:10px 20px}.form-group label,.form-group legend.col-form-label{align-self:self-start;color:var(--text-color);flex:30% 0 0;font-size:var(--font-size-base);font-weight:400;margin:5px 5px 0 0;text-align:right}.form-group .col-form-label{padding:0}.form-group .col-form-label.required:after,.form-group label.required:after{bottom:4px;color:var(--color-danger);content:"\2022";filter:opacity(75%);position:relative;right:-2px}.form-widget{align-items:flex-start;flex:0 0 55%;flex-direction:column;padding-left:5px}.form-widget .form-help{color:var(--text-muted);display:inline-block;font-size:var(--font-size-sm);margin-bottom:0;margin-top:4px}.form-widget input.form-control,.form-widget select.form-control,.form-widget textarea.form-control{border:0;padding:3px 7px 5px;box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;max-width:350px;white-space:nowrap;word-break:keep-all;transition:box-shadow .08s ease-in,color .08s ease-in}.form-widget input.form-control:focus,.form-widget select.form-control:focus,.form-widget textarea.form-control:focus{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.form-widget textarea.form-control{height:auto;line-height:1.6;white-space:pre-wrap}.form-widget select.form-control{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);padding-left:4px;padding-right:4px}.form-widget select[multiple].form-control{height:auto}.field-checkbox .form-widget,.form-group.field-collection-action{margin-left:calc(30% + 5px);margin-bottom:0;margin-top:0}.form-group.field-collection-action{margin-left:30%}.field-checkbox .form-check{padding-left:0}.field-checkbox .form-check-label{cursor:pointer;font-size:var(--font-size-base);margin-top:0;margin-left:4px}.field-checkbox .form-check-input{margin:0;position:static}.field-date .form-widget,.field-datetime .form-widget,.field-time .form-widget{margin:0}.field-datetime .form-inline{display:flex}.datetime-widget+.datetime-widget{margin-left:10px}.datetime-widget select+select{margin-left:4px}.datetime-widget-time select{margin:0 2px}.datetime-widget-time select:first-child{margin-left:0}.datetime-widget-time select:last-child{margin-right:0}.nullable-control label,fieldset .form-group .nullable-control label{cursor:pointer;margin-top:5px}.short .form-widget{flex:0 0 20%!important}.large .form-control,.long .form-control{max-width:unset!important}.large .input.form-control{font-size:18px!important}.large textarea.form-control{height:500px;max-width:unset!important}.code input.form-control,.code textarea.form-control{font-family:monospace!important}.field-group .large .form-control,.field-group .large textarea.form-control,.field-group .long .form-control{flex:0 0 100%!important;max-width:unset!important}.field-group .large textarea.form-control{height:500px}.form-widget-compound .collection-empty{padding-top:5px}.form-widget-compound .form-group{padding:0 20px 15px 0}.form-widget-compound .form-group .form-widget{flex:0 0 100%;padding-left:0}.field-collection-item-row{display:flex;flex-direction:row}.field-collection-item-row .field-collection-item-action{flex:0 0 35px}.field-collection-item-row .field-collection-item-widget{flex:1}.field-collection-item-action .fa{font-size:21px;margin-left:4px;margin-top:4px}.field-collection-action .btn{margin-left:-5px;padding:4px 10px}.form-tabs .nav-tabs{background:var(--white);margin:-20px -20px 20px;padding-left:20px}.form-tabs .nav-tabs a,.form-tabs .nav-tabs a:hover{color:var(--gray-800);font-size:var(--font-size-sm)}.form-tabs .nav-tabs .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}.form-tabs .nav-tabs .nav-link.active{transform:translateY(1px)}.form-tabs .nav-tabs .nav-item .badge{margin-left:4px;padding:3px 6px}.form-tabs .tab-help{margin-top:-10px;margin-bottom:15px}fieldset{background:var(--fieldset-bg);border:var(--border-width) var(--border-style) var(--border-color);border-radius:var(--border-radius);margin:10px 0;padding:10px 20px 15px}fieldset>legend{border:0;font-size:var(--font-size-sm);font-weight:500;text-transform:uppercase;margin:0 0 5px -5px;padding:0 5px;width:auto}fieldset>legend .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}fieldset .form-section{padding-left:0;padding-right:0}fieldset .form-group{padding:10px 0}fieldset .form-group label,fieldset .form-group legend.col-form-label{flex:100% 0 0;margin:0 0 4px;text-align:left}fieldset .field-checkbox .form-widget,fieldset .form-group .form-widget{flex:0 0 100%;padding-left:0;padding-right:0}fieldset .field-checkbox .form-widget,fieldset .form-group.field-collection-action{margin-left:0}fieldset .form-group.field-collection-action{padding-top:0}fieldset .field-collection-action .btn{margin-left:0}fieldset .legend-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:15px;margin-top:-5px}.form-section{padding:30px 10px 20px}.form-section-empty{padding:25px 10px}.form-section h2{color:var(--gray-800);display:flex;font-size:15px;font-weight:400;margin:0 0 10px;position:relative;width:100%}.form-section h2 span{border-bottom:var(--border-width) var(--border-style) var(--border-color);flex:1;padding-bottom:7px}.form-section h2 .fa{background-color:var(--body-bg);border-radius:var(--border-radius);color:var(--text-muted);display:inline-block;font-size:var(--font-size-base);height:24px;margin-right:7px;padding:5px 3px 3px;text-align:center;width:24px}.form-section-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:0;margin-top:-4px}.form-actions{display:flex;justify-items:flex-end;flex-direction:row-reverse;padding:0}.form-actions .btn{margin-left:10px}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .form-help,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:var(--gray-800)}.has-error .form-widget input.form-control,.has-error .form-widget select.form-control,.has-error .form-widget textarea.form-control{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}form .invalid-feedback{color:var(--color-danger);font-weight:500;padding-top:6px}form .invalid-feedback .badge-danger{font-size:.6875rem;margin-right:2px;padding:3px 4px}form .invalid-feedback>.d-block+.d-block{margin-top:5px}.easyadmin-vich-image img{box-shadow:0 0 0 4px var(--white),0 0 4px 3px var(--gray-600);margin:6px 4px 12px;max-height:300px;max-width:100%}.easyadmin-vich-file-name{display:block;margin:4px 0 8px}.easyadmin-vich-file-name .fa{font-size:18px}.easyadmin-vich-file-actions>div,.easyadmin-vich-image-actions>div{float:left;margin-right:4px}.easyadmin-vich-file-actions:after,.easyadmin-vich-image-actions:after{clear:left;content:"";display:block}.easyadmin-vich-file-actions .field-checkbox,.easyadmin-vich-image-actions .field-checkbox{padding-top:4px}.easyadmin-vich-image-actions .form-widget{flex-basis:100%}.input-file-container{overflow:hidden;position:relative}.input-file-container [type=file]{cursor:inherit;display:block;font-size:999px;filter:opacity(0);min-height:100%;min-width:100%;opacity:0;position:absolute;right:0;text-align:right;top:0}.btn{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);cursor:pointer;text-decoration:none;white-space:nowrap}.btn:not(:disabled):not(.disabled):not(.btn-link):active,.btn:not(:disabled):not(.disabled):not(.btn-link):active:focus,.btn:not(:disabled):not(.disabled):not(.btn-link):focus,.btn:not(:disabled):not(.disabled):not(.btn-link):hover{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.1),0 3px 9px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}.btn-primary,.btn-primary:hover,.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled):focus{background-color:var(--color-primary);color:var(--text-on-primary)}.btn-secondary,.btn-secondary.disabled,.btn-secondary[disabled]{background-color:var(--white);color:var(--color-text)}.btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled):focus{background-color:var(--white);color:var(--color-text-dark)}.btn-info,.btn-info:hover,.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled):focus,.btn.btn-info{background-color:var(--color-info);color:var(--white)}.btn-success,.btn-success:hover,.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled):focus,.btn.btn-success{background-color:var(--color-success);color:var(--white)}.btn-danger,.btn-danger:hover,.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled):focus,.btn.btn-danger{background-color:var(--color-danger);color:var(--white)}.btn-warning,.btn-warning:hover,.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled):focus,.btn.btn-warning{background-color:var(--color-warning);color:var(--white)}.btn-link,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{box-shadow:none}.btn.disabled,.btn.disabled:active,.btn.disabled:active:focus,.btn.disabled:focus,.btn.disabled:hover,.btn:disabled,.btn:disabled:active,.btn:disabled:active:focus,.btn:disabled:focus,.btn:disabled:hover{box-shadow:none;cursor:not-allowed}a.btn.disabled,fieldset:disabled a.btn{pointer-events:unset}.btn>.btn-label{margin:0;cursor:inherit}.btn>.btn-label+i,.btn>i+.btn-label{margin-left:4px}.btn-group-sm>.btn,.btn-sm{padding:3px 7px}.checkbox-switch{position:relative}.checkbox-switch label{margin-bottom:0}.checkbox-switch input{display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:0;height:0%;margin:0;filter:opacity(0)}.checkbox-switch input+span{cursor:pointer;user-select:none}.checkbox-switch input+span:before{position:absolute;left:0;display:inline-block;content:"";height:20px;background:hsla(0,0%,39.2%,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.8);transition:background .2s ease-out}.checkbox-switch input+span:after{display:block;height:20px;left:0;position:absolute;text-align:center;top:0;transition:margin-left .1s ease-in-out}.checkbox-switch input:checked+span:before{transition:background .2s ease-in}.checkbox-switch input+span{padding-left:40px}.checkbox-switch input+span:before{border-radius:20px;width:40px}.checkbox-switch input+span:after{background:var(--white);border:2px solid transparent;border-radius:20px;content:"";background-clip:padding-box;width:20px}.checkbox-switch input:not(:checked)+span:after{animation:popOut .3s ease-in normal}.checkbox-switch input:checked+span:after{content:"";margin-left:20px;border:2px solid transparent;background-clip:padding-box;animation:popIn .3s ease-in normal}.checkbox-switch input:checked+span:before{background:var(--color-success)}.checkbox-switch input:not(checked)+span:before{background:var(--color-danger)}.checkbox-switch input+span:before{box-shadow:none}.checkbox-switch.disabled label{cursor:not-allowed}.checkbox-switch input:disabled+span:before{background:var(--gray-300);cursor:not-allowed}.select2-container--bootstrap .select2-selection{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);color:var(--text-color);max-width:350px;transition:box-shadow .08s ease-in,color .08s ease-in}.long .select2-container--bootstrap .select2-selection{max-width:unset!important}.short .select2-container--bootstrap .select2-selection{max-width:150px}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection,.select2-container--bootstrap .select2-dropdown{border:0;box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.select2-container--bootstrap .select2-dropdown{margin-top:1px}.select2-container--bootstrap .select2-dropdown--above{margin-top:-2px}.select2-container--bootstrap .select2-selection .select2-search--inline{margin:0}.select2-container--bootstrap .select2-selection--single{height:30px;padding:5px 24px 5px 7px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{margin:4px 0 0 7px}.select2-container--bootstrap .select2-results__option{margin-bottom:0}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:var(--body-bg);font-weight:500}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:var(--body-bg);color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple{min-height:30px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:var(--text-color);font-weight:500;position:relative;top:-1px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;margin:5px;padding:4px 7px;width:96%}.select2-search--inline .select2-search__field:focus{outline:0;border:0}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{height:30px}.has-error .form-widget .select2-container--bootstrap .select2-selection{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}body.error .error-message{max-width:500px;min-height:400px;padding:45px}body.error .error-message h1{color:var(--color-danger);font-size:var(--font-size-lg);font-weight:600}body.error .error-message h1 i{margin-right:4px}body.page-login{height:100vh;justify-content:center;overflow:hidden;position:absolute;width:100vw}.login-wrapper,body.page-login{align-items:center;display:flex}.login-wrapper{flex-direction:column;text-align:center;width:330px}.login-wrapper .main-header{display:block;padding-right:0}.login-wrapper .main-header #header-logo{font-size:24px;line-height:1.2}.login-wrapper .content{padding:30px 20px;width:100%}.login-wrapper .form-widget{flex:100%;padding-left:0}.login-wrapper .form-widget-with-icon{align-items:baseline;display:flex;flex-direction:row}.login-wrapper .form-widget-with-icon i{color:var(--gray-500);font-size:18px;margin-right:10px}.login-wrapper .form-widget input{font-size:var(--font-size-lg);height:38px;line-height:38px}.page-blank .content-wrapper{display:block}.page-content-with-padding .content-body{padding:18px 20px} + */.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px;outline:0}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#999}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#999}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#999;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#999}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:#337ab7;color:#fff}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--bootstrap .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-color:#66afe9}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 4px 4px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-color:transparent}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-right-radius:0;border-top-left-radius:0;border-top-color:transparent}.select2-container--bootstrap .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--bootstrap .select2-selection__clear:hover{color:#333}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);border-color:#66afe9;overflow-x:hidden;margin-top:-1px}.select2-container--bootstrap .select2-dropdown--above{-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175);margin-top:1px}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent;border-style:solid;border-width:4px 4px 0;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--bootstrap .select2-selection--multiple{min-height:34px;padding:0;height:auto}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:#555;background:#fff;border:1px solid #ccc;border-radius:4px;cursor:default;float:left;margin:5px 0 0 6px;padding:0 6px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 12px;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:3px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:30px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{border-width:5px 5px 0;margin-left:-10px;margin-top:-2.5px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;border-color:#66512c}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;border-color:#843534}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;border-color:#2b542c}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.select2-container--bootstrap{display:table;table-layout:fixed;position:relative;z-index:2;width:100%;margin-bottom:0}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:var(--font-family-base);font-size:.875rem;font-weight:400;line-height:1.5;color:#4c5367;text-align:left;background-color:#e3e7ed}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#5c70d6;text-decoration:none;background-color:transparent}a:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:var(--font-family-monospace);font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--text-muted);text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--text-color-dark)}.h1,h1{font-size:2.1875rem}.h2,h2{font-size:1.75rem}.h3,h3{font-size:1.53125rem}.h4,h4{font-size:1.3125rem}.h5,h5{font-size:1.09375rem}.h6,h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:"\2014\A0"}.container{max-width:540px;max-width:720px;max-width:960px;max-width:1140px}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);background-color:var(--white);background-clip:padding-box;border:1px solid #ced4da;border-radius:var(--border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:var(--text-color-dark);background-color:var(--white);border-color:#c4cbee;outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:var(--text-color-dark);background-color:var(--white)}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8125rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#4c5367;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:0}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:var(--text-muted)}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#1ea471}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(30,164,113,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#1ea471;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#1ea471;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1ea471}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1ea471}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1ea471}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#26cf8e;background-color:#26cf8e}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1ea471}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#cd3c63}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(205,60,99,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#cd3c63;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#cd3c63;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#cd3c63}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#cd3c63}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#cd3c63}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#d76583;background-color:#d76583}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#cd3c63}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}.btn{display:inline-block;font-weight:400;color:#4c5367;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:0 solid transparent;padding:4px 10px;font-size:.875rem;line-height:1.6;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4c5367;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:hover{color:#fff;background-color:#4359c8;border-color:#3951c6}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#3951c6;border-color:#374dbc}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-secondary{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:hover{color:#212529;background-color:#cdd2dd;border-color:#c5cbd8}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#212529;background-color:#c5cbd8;border-color:#bdc5d3}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-success{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:hover{color:#fff;background-color:#18835a;border-color:#167953}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#167953;border-color:#146e4b}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-info{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:hover{color:#fff;background-color:#056092;border-color:#045886}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#045886;border-color:#045079}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-warning{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:hover{color:#fff;background-color:#b66513;border-color:#ab5e12}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ab5e12;border-color:#9f5811}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-danger{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:hover{color:#fff;background-color:#b42f52;border-color:#aa2c4e}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#aa2c4e;border-color:#a02949}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#6174d1;border-color:#6174d1}.btn-outline-primary:hover{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#6174d1;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-secondary{color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:hover{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#e3e7ed;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-success{color:#1ea471;border-color:#1ea471}.btn-outline-success:hover{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#1ea471;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-info{color:#0679b7;border-color:#0679b7}.btn-outline-info:hover{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0679b7;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-warning{color:#d97817;border-color:#d97817}.btn-outline-warning:hover{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#d97817;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-danger{color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:hover{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#cd3c63;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#5c70d6;text-decoration:none}.btn-link:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}.btn-link.focus,.btn-link:focus{text-decoration:var(--link-hover-decoration);box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:7px 12px;font-size:1rem;line-height:1.5;border-radius:var(--border-radius)}.btn-group-sm>.btn,.btn-sm{padding:3px 5px;font-size:.8125rem;line-height:1.5;border-radius:var(--border-radius)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:7.5px;padding-left:7.5px}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:3.75px;padding-left:3.75px}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:9px;padding-left:9px}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.875rem;color:#4c5367;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:var(--border-width) solid var(--border-color);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--gray-900);text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#6174d1}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.8125rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);text-align:center;white-space:nowrap;background-color:var(--form-bg);border:1px solid #ced4da;border-radius:var(--border-radius)}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:var(--border-width) solid var(--border-color)}.nav-tabs .nav-item{margin-bottom:-var(--border-width)}.nav-tabs .nav-link{border:var(--border-width) solid transparent;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:transparent}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--gray-800);background-color:var(--form-bg);border-left-color:var(--border-color);border-bottom-color:transparent;border-right-color:var(--border-color);border-top-color:var(--border-color)}.nav-tabs .dropdown-menu{margin-top:-var(--border-width);border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#6174d1}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{display:inline-block;padding:.25em .4em;font-size:var(--font-size-sm);font-weight:500;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#6174d1}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#3951c6}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.badge-secondary{color:#212529;background-color:#e3e7ed}a.badge-secondary:focus,a.badge-secondary:hover{color:#212529;background-color:#c5cbd8}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.badge-success{color:#fff;background-color:#1ea471}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#167953}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.badge-info{color:#fff;background-color:#0679b7}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#045886}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.badge-warning{color:#fff;background-color:#d97817}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#ab5e12}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.badge-danger{color:#fff;background-color:#cd3c63}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#aa2c4e}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:var(--border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-right:3.8125rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#323c6d;background-color:#dfe3f6;border-color:#d3d8f2}.alert-primary hr{border-top-color:#bfc7ec}.alert-primary .alert-link{color:#22294a}.alert-secondary{color:#76787b;background-color:#f9fafb;border-color:#f7f8fa}.alert-secondary hr{border-top-color:#e7eaf0}.alert-secondary .alert-link{color:#5d5f61}.alert-success{color:#10553b;background-color:#d2ede3;border-color:#c0e5d7}.alert-success hr{border-top-color:#aedecc}.alert-success .alert-link{color:#082a1d}.alert-info{color:#033f5f;background-color:#cde4f1;border-color:#b9d9eb}.alert-info hr{border-top-color:#a5cee5}.alert-info .alert-link{color:#011e2e}.alert-warning{color:#713e0c;background-color:#f7e4d1;border-color:#f4d9be}.alert-warning hr{border-top-color:#f0cca8}.alert-warning .alert-link{color:#432507}.alert-danger{color:#6b1f33;background-color:#f5d8e0;border-color:#f1c9d3}.alert-danger hr{border-top-color:#ecb5c3}.alert-danger .alert-link{color:#431420}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:var(--form-bg);background-clip:padding-box;border:1px solid var(--border-color);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:var(--black)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.6}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid var(--border-color);border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:15px 20px}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:15px 20px;border-top:1px solid var(--border-color);border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}.modal-lg,.modal-xl{max-width:900px}.modal-xl{max-width:1140px}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid #e3e7ee;border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#e3e7ee}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#e3e7ee}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:#e3e7ee}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#e3e7ee}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;color:var(--text-color-dark);background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#4c5367}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#6174d1!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#3951c6!important}.bg-secondary{background-color:#e3e7ed!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#c5cbd8!important}.bg-success{background-color:#1ea471!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#167953!important}.bg-info{background-color:#0679b7!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#045886!important}.bg-warning{background-color:#d97817!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ab5e12!important}.bg-danger{background-color:#cd3c63!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#aa2c4e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#6174d1!important}.border-secondary{border-color:#e3e7ed!important}.border-success{border-color:#1ea471!important}.border-info{border-color:#0679b7!important}.border-warning{border-color:#d97817!important}.border-danger{border-color:#cd3c63!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.text-monospace{font-family:var(--font-family-monospace)!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#6174d1!important}a.text-primary:focus,a.text-primary:hover{color:#3449b2!important}.text-secondary{color:#e3e7ed!important}a.text-secondary:focus,a.text-secondary:hover{color:#b6bece!important}.text-success{color:#1ea471!important}a.text-success:focus,a.text-success:hover{color:#126344!important}.text-info{color:#0679b7!important}a.text-info:focus,a.text-info:hover{color:#03486d!important}.text-warning{color:#d97817!important}a.text-warning:focus,a.text-warning:hover{color:#945210!important}.text-danger{color:#cd3c63!important}a.text-danger:focus,a.text-danger:hover{color:#962744!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#4c5367!important}.text-muted{color:var(--text-muted)!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.sf-toolbarreset{-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}body{text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:unset}.main-header{grid-area:header}.main-sidebar{grid-area:sidebar}.content-wrapper{grid-area:content-wrapper}.content{grid-area:content}#sidebar-resizer-handler{grid-area:sidebar-resizer-handler}#content-resizer-handler{grid-area:content-resizer-handler}#flash-messages{grid-area:flash-messages}.wrapper{display:grid;grid-row-gap:20px;grid-template-areas:"header" "content-wrapper";margin:20px 15px}@media (min-width:992px){.wrapper{grid-template-columns:var(--sidebar-width) auto;grid-column-gap:15px;grid-template-areas:"header header" "sidebar content-wrapper";margin-left:auto;margin-right:auto;width:calc(100% - 40px)}}body:not(.easyadmin-content-width-full) .wrapper{max-width:var(--body-max-width)}@media (min-width:992px){body.easyadmin-sidebar-width-compact .wrapper{grid-template-columns:24px auto}}.main-header{display:flex;justify-content:space-between}@media (min-width:992px){.main-header{padding-right:10px}}.main-header .navbar{display:flex}.main-header #header-logo{font-size:21px;font-weight:600;line-height:1;margin:0}.main-header #header-logo a{color:var(--text-color)}.main-header #header-logo img,.main-header #header-logo svg{max-width:100%}#navigation-toggler{background:transparent;border:0;color:var(--text-color-dark);cursor:pointer;filter:opacity(50%);font-size:17px;margin:0 5px 0 -5px;padding:0;width:24px}@media (min-width:992px){#navigation-toggler{display:none}}.main-sidebar{background:var(--body-bg);height:100vh;left:calc(-40px - var(--sidebar-width));overflow-x:hidden;overflow-y:auto;padding:15px 20px;position:absolute;top:0;transition:left .3s;z-index:1041;width:calc(40px + var(--sidebar-width))}@media (min-width:992px){.main-sidebar{height:unset;padding:0;position:static;width:var(--sidebar-width);z-index:1039}}body.easyadmin-mobile-sidebar-visible .main-sidebar{left:0}.navbar-custom-menu .user{align-items:center;color:var(--text-color-light);cursor:pointer;display:flex}.navbar-custom-menu .user-avatar{border-radius:50%;box-shadow:0 2px 5px 0 rgba(59,64,94,.1),0 1px 1px 0 rgba(0,0,0,.07);font-size:21px;max-height:21px;max-width:21px}.navbar-custom-menu .user-name{margin-left:6px}.navbar-custom-menu .user.user-is-impersonated{color:var(--color-danger)}.user-details .user-details-name{font-size:var(--font-size-base);font-weight:500;margin-bottom:0}.user-menu-wrapper .popover-body{padding:0}.user-menu-wrapper .popover-content-section{padding:12px}.user-menu-wrapper .popover-content-section+.popover-content-section{border-top:var(--border-width) var(--border-style) var(--border-color);padding-top:12px}.user-menu .user-action{display:block;font-size:var(--font-size-sm)}.user-menu .user-action+.user-action{margin-top:var(--font-size-sm)}.content-wrapper{display:grid;grid-auto-rows:max-content;grid-column-gap:0;grid-row-gap:0;grid-template-areas:"flash-messages flash-messages flash-messages" "sidebar-resizer-handler content content-resizer-handler";grid-template-columns:0 auto 0}@media (min-width:992px){.content-wrapper{grid-template-columns:10px auto 10px}}.content{background-color:var(--white);border-radius:var(--border-radius);box-shadow:var(--box-shadow-lg)}.resizer-handler{background:rgba(0,0,0,.1) 50% no-repeat url('data:image/svg+xml;utf8,');cursor:col-resize;display:none;opacity:.15;transition:opacity .7s}.resizer-handler:hover{opacity:1}@media (min-width:992px){.resizer-handler{display:block}}.resizer-handler-left{border-bottom-left-radius:var(--border-radius);border-top-left-radius:var(--border-radius)}.resizer-handler-right{border-bottom-right-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content-header{border-bottom:var(--border-width) var(--border-style) var(--border-color);display:flex;flex-direction:column;padding:15px 17px 15px 20px}.list .content-header{padding-top:12px;padding-bottom:12px}.content-header-title{align-self:center;flex:1}.content-header.has-content-help .content-header-title{align-self:flex-end}.content-header-title .title{font-size:var(--font-size-lg);line-height:24px;margin:0}.content-header .global-actions{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin-left:10px}.global-actions .btn{margin-left:15px}.batch-actions form{display:flex}.batch-actions .btn{margin-left:15px}.form-action-search .form-group{margin:0;padding:0}.form-action-search input[type=search].form-control{background-color:var(--white);background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-size:13px 13px;background-position:10px 8px;padding-left:32px;width:300px}.content-header-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-top:12px}.content-footer{background:var(--white);border-top:var(--border-width) var(--border-style) var(--border-color);padding:15px 20px}.content-body form,.content-footer{border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.content-body table{margin-bottom:0}form .content-footer{margin:20px -20px -18px}.list-pagination{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.pager .btn{display:inline-block}.pager .btn+.btn{margin-left:-2px}.pager .btn:first-child{border-top-right-radius:0;border-bottom-right-radius:0;transform:translateX(1px)}.pager .btn:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.modal-body h4{font-size:var(--font-size-lg)}.modal-footer{background:var(--white)}.boolean .label{display:inline-block;min-width:33px}body.show .form-horizontal{background:var(--form-bg)}body.show .form-horizontal .control-label{padding-top:0}body.show .form-control{border:var(--border-width) var(--border-style) var(--border-color);box-shadow:none;height:auto;min-height:30px;padding:4px 7px 5px}body.show .field-boolean .form-widget,body.show .field-float .form-widget,body.show .field-integer .form-widget{max-width:100px}body.show .field-date .form-widget,body.show .field-datetime .form-widget,body.show .field-time .form-widget{max-width:250px}body.show .field-string .form-widget{max-width:450px}body.show .field-association .form-widget,body.show .field-text .form-widget{max-width:550px}body.show .field-association ul,body.show .field-simple_array ul{margin:5px;padding-left:15px}body.show .field-text .form-widget{max-height:250px;overflow-y:auto}body.show .field-text .form-widget .form-control{min-height:60px}body.show .field-avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}@media (min-width:992px){#flash-messages{margin-left:10px;margin-right:10px}}.alert{box-shadow:var(--box-shadow-lg);margin-bottom:15px}.sidebar-menu,.sidebar-menu ul{padding-left:0}.sidebar-menu .header{color:var(--text-muted);font-size:12px;margin-top:20px;padding:7px 5px 7px 0;text-transform:uppercase}.sidebar-menu li{list-style:none}.sidebar-menu a{color:var(--text-color-dark);display:block;line-height:20px;padding:4px 5px 10px 0}.sidebar-menu .fa{color:var(--text-color-dark);filter:opacity(50%);font-size:17px;margin-right:4px;width:20px}.sidebar-menu li:not(.submenu-active).active{border-radius:var(--border-radius);font-weight:500}.sidebar-menu li:not(.submenu-active).active .fa,.sidebar-menu li:not(.submenu-active).active a{color:var(--color-primary);filter:opacity(100%)}.sidebar-menu .menu-open .treeview-icon{transform:rotate(90deg)}.treeview{position:relative}.treeview-menu{display:none;margin-bottom:12px;margin-top:-4px}.sidebar-menu .active .treeview-menu{display:block}.treeview-menu a{color:var(--text-color);font-size:var(--font-size-sm);line-height:20px;padding:3px 5px 3px 28px}.treeview-menu a .fa{color:var(--text-color);filter:opacity(50%);font-size:var(--font-size-base);margin-right:4px;width:16px}.treeview .treeview-icon{position:absolute;top:6px;right:1px;transition:transform .25s ease;width:auto}.treeview.menu-open .treeview-icon{transform:rotate(90deg)}body.easyadmin-sidebar-width-compact .main-sidebar{overflow:visible}@media (min-width:992px){body.easyadmin-sidebar-width-compact .main-sidebar{width:24px}}@media (min-width:992px){body.easyadmin-sidebar-width-compact .sidebar-menu a{padding:7px 5px 7px 0}body.easyadmin-sidebar-width-compact .sidebar-menu li .treeview-icon,body.easyadmin-sidebar-width-compact .sidebar-menu li span{display:none}body.easyadmin-sidebar-width-compact .sidebar-menu li{position:relative}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover{background:var(--body-bg);border-radius:var(--border-radius);width:var(--sidebar-width);z-index:1040}.easyadmin-sidebar-width-compact .sidebar-menu li.header{height:0;overflow:hidden;padding:0;width:0}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li:hover{width:unset}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover span{display:inline-block;left:32px;position:absolute;top:7px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu a{padding:3px 5px 3px 11px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu span{position:static}body.easyadmin-sidebar-width-compact .sidebar-menu li .fa{font-size:21px;width:24px}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li .fa{font-size:var(--font-size-base);width:16px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu{padding-top:5px;padding-bottom:5px;border-bottom-right-radius:4px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li>a>span{display:none!important}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>a>span{background:var(--body-bg);display:block!important;position:absolute;left:32px;width:calc(var(--sidebar-width) - 32px)}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu{top:32px;margin-left:0}}table.datagrid{border-spacing:0;width:100%}.datagrid thead{background:var(--form-bg)}.datagrid thead th{padding:0}.datagrid thead a,.datagrid thead span{color:var(--text-color-dark);display:block;font-weight:500;line-height:1.357;padding:8px;text-align:left;white-space:nowrap}.datagrid td:first-child,.datagrid th:first-child a,.datagrid th:first-child span{padding-left:20px}.datagrid td:last-child,.datagrid th:last-child a,.datagrid th:last-child span{padding-right:20px}.datagrid td{padding:8px}.datagrid thead .sorted a,.datagrid thead .sorted span{font-weight:700}.datagrid thead i{color:var(--text-muted);margin-left:2px}.datagrid thead .sorted i{color:var(--color-primary)}.datagrid td,.datagrid th{border-bottom:var(--border-width) var(--border-style) var(--border-color);vertical-align:middle}.datagrid tr:last-child>td{border:0}.datagrid tbody tr:hover td,.datagrid tbody tr:hover th{background:var(--form-bg)}.datagrid td.actions{text-align:right}.datagrid td.actions a{font-size:var(--font-size-sm);font-weight:500;margin-left:10px}.datagrid td.actions .fa{font-size:var(--font-size-base)}.datagrid .actions-dropdown{position:relative}.datagrid .actions-dropdown .dropdown-toggle{background:transparent!important;border:var(--border-width) solid transparent;box-shadow:none!important;padding:1px 8px 0}.datagrid .actions-dropdown .dropdown-toggle:after{display:none}.datagrid .actions-dropdown a.dropdown-item{margin:0}.datagrid .actions-dropdown a.dropdown-item i{margin-right:5px}.datagrid .actions-dropdown .dropdown-menu-right{border-top-right-radius:0;right:0;top:20px;box-shadow:var(--box-shadow-lg)}.datagrid .actions-dropdown:hover{cursor:pointer}.datagrid .actions-dropdown:hover .dropdown-toggle{background:var(--white)!important;border:var(--border-width) solid var(--border-color);border-bottom-color:var(--white);z-index:1001;position:relative;border-bottom-left-radius:0;border-bottom-right-radius:0}.datagrid .actions-dropdown:hover .dropdown-menu{display:block}.datagrid .easyadmin-thumbnail img{box-shadow:0 0 0 2px var(--white),0 0 4px 1px var(--gray-600);margin-bottom:2px;margin-top:2px;max-height:50px;max-width:100px}.datagrid td.boolean,.datagrid td.image,.datagrid th.boolean,.datagrid th.boolean a,.datagrid th.image,.datagrid th.image a{text-align:center}.datagrid td.avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}.datagrid td.country .country-flag{margin-right:2px;max-height:18px;vertical-align:text-top}.datagrid .highlight{border-radius:var(--border-radius);background:var(--highlight-bg);padding:1px}.datagrid .no-results{padding:60px 0;text-align:center}.datagrid .no-results:hover{background:transparent}#modal-filters .modal-dialog{max-width:400px}#modal-filters .modal-content{background:var(--white)}#modal-filters .modal-header{background:var(--gray-50);border-bottom-color:var(--gray-300);padding:10px 15px}#modal-filters .modal-title{color:var(--gray-700);font-size:var(--font-size-base)}#modal-filters .modal-body{border-bottom:0;padding:15px}.action-filters-button i{color:var(--text-color-light)}.action-filters-button.action-filters-applied i{color:var(--color-primary)}.action-filters-button span{font-weight:600}.action-filters-reset i{color:var(--text-color-light)}.filter-heading{align-items:center;display:flex;padding:4px 0}.filter-heading a{color:var(--link-color);cursor:pointer;flex:1;margin-left:7px}.filter-content{margin-left:15px}.filter-content .form-group,.filter-content .form-widget-compound .form-group{padding-right:5px}.filter-content .form-group:last-of-type{padding-bottom:0}.show .field-image .form-control{background:transparent;border:0;padding:0}.show .form-control .easyadmin-thumbnail img{box-shadow:0 0 0 4px var(--white),0 0 8px 2px var(--gray-600);margin:10px 7px;max-height:300px;max-width:400px}.easyadmin-thumbnail img:hover{cursor:zoom-in}.easyadmin-lightbox{display:none}.easyadmin-lightbox img{max-width:100%;width:100%}.featherlight .easyadmin-lightbox{display:block}.featherlight .easyadmin-lightbox:hover{cursor:zoom-out}.content-body .form-horizontal,.content-body form{background:var(--form-bg);padding:18px 20px}.form-group{display:flex;flex-wrap:wrap;align-items:center;padding:10px 20px}.form-group label,.form-group legend.col-form-label{align-self:self-start;color:var(--text-color);flex:30% 0 0;font-size:var(--font-size-base);font-weight:400;margin:5px 5px 0 0;text-align:right}.form-group .col-form-label{padding:0}.form-group .col-form-label.required:after,.form-group label.required:after{bottom:4px;color:var(--color-danger);content:"\2022";filter:opacity(75%);position:relative;right:-2px}.form-widget{align-items:flex-start;flex:0 0 55%;flex-direction:column;padding-left:5px}.form-widget .form-help{color:var(--text-muted);display:inline-block;font-size:var(--font-size-sm);margin-bottom:0;margin-top:4px}.form-widget input.form-control,.form-widget select.form-control,.form-widget textarea.form-control{border:0;padding:3px 7px 5px;box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;max-width:350px;white-space:nowrap;word-break:keep-all;transition:box-shadow .08s ease-in,color .08s ease-in}.form-widget input.form-control:focus,.form-widget select.form-control:focus,.form-widget textarea.form-control:focus{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.form-widget textarea.form-control{height:auto;line-height:1.6;white-space:pre-wrap}.form-widget select.form-control{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);padding-left:4px;padding-right:4px}.form-widget select[multiple].form-control{height:auto}.field-checkbox .form-widget,.form-group.field-collection-action{margin-left:calc(30% + 5px);margin-bottom:0;margin-top:0}.form-group.field-collection-action{margin-left:30%}.field-checkbox .form-check{padding-left:0}.field-checkbox .form-check-label{cursor:pointer;font-size:var(--font-size-base);margin-top:0;margin-left:4px}.field-checkbox .form-check-input{margin:0;position:static}.field-date .form-widget,.field-datetime .form-widget,.field-time .form-widget{margin:0}.field-datetime .form-inline{display:flex}.datetime-widget+.datetime-widget{margin-left:10px}.datetime-widget select+select{margin-left:4px}.datetime-widget-time select{margin:0 2px}.datetime-widget-time select:first-child{margin-left:0}.datetime-widget-time select:last-child{margin-right:0}.nullable-control label,fieldset .form-group .nullable-control label{cursor:pointer;margin-top:5px}.short .form-widget{flex:0 0 20%!important}.large .form-control,.long .form-control{max-width:unset!important}.large .input.form-control{font-size:18px!important}.large textarea.form-control{height:500px;max-width:unset!important}.code input.form-control,.code textarea.form-control{font-family:monospace!important}.field-group .large .form-control,.field-group .large textarea.form-control,.field-group .long .form-control{flex:0 0 100%!important;max-width:unset!important}.field-group .large textarea.form-control{height:500px}.form-widget-compound .collection-empty{padding-top:5px}.form-widget-compound .form-group{padding:0 20px 15px 0}.form-widget-compound .form-group .form-widget{flex:0 0 100%;padding-left:0}.field-collection-item-row{display:flex;flex-direction:row}.field-collection-item-row .field-collection-item-action{flex:0 0 35px}.field-collection-item-row .field-collection-item-widget{flex:1}.field-collection-item-action .fa{font-size:21px;margin-left:4px;margin-top:4px}.field-collection-action .btn{margin-left:-5px;padding:4px 10px}.form-tabs .nav-tabs{background:var(--white);margin:-20px -20px 20px;padding-left:20px}.form-tabs .nav-tabs a,.form-tabs .nav-tabs a:hover{color:var(--gray-800);font-size:var(--font-size-sm)}.form-tabs .nav-tabs .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}.form-tabs .nav-tabs .nav-link.active{transform:translateY(1px)}.form-tabs .nav-tabs .nav-item .badge{margin-left:4px;padding:3px 6px}.form-tabs .tab-help{margin-top:-10px;margin-bottom:15px}fieldset{background:var(--fieldset-bg);border:var(--border-width) var(--border-style) var(--border-color);border-radius:var(--border-radius);margin:10px 0;padding:10px 20px 15px}fieldset>legend{border:0;font-size:var(--font-size-sm);font-weight:500;text-transform:uppercase;margin:0 0 5px -5px;padding:0 5px;width:auto}fieldset>legend .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}fieldset .form-section{padding-left:0;padding-right:0}fieldset .form-group{padding:10px 0}fieldset .form-group label,fieldset .form-group legend.col-form-label{flex:100% 0 0;margin:0 0 4px;text-align:left}fieldset .field-checkbox .form-widget,fieldset .form-group .form-widget{flex:0 0 100%;padding-left:0;padding-right:0}fieldset .field-checkbox .form-widget,fieldset .form-group.field-collection-action{margin-left:0}fieldset .form-group.field-collection-action{padding-top:0}fieldset .field-collection-action .btn{margin-left:0}fieldset .legend-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:15px;margin-top:-5px}.form-section{padding:30px 10px 20px}.form-section-empty{padding:25px 10px}.form-section h2{color:var(--gray-800);display:flex;font-size:15px;font-weight:400;margin:0 0 10px;position:relative;width:100%}.form-section h2 span{border-bottom:var(--border-width) var(--border-style) var(--border-color);flex:1;padding-bottom:7px}.form-section h2 .fa{background-color:var(--body-bg);border-radius:var(--border-radius);color:var(--text-muted);display:inline-block;font-size:var(--font-size-base);height:24px;margin-right:7px;padding:5px 3px 3px;text-align:center;width:24px}.form-section-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:0;margin-top:-4px}.form-actions{display:flex;justify-items:flex-end;flex-direction:row-reverse;padding:0}.form-actions .btn{margin-left:10px}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .form-help,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:var(--gray-800)}.has-error .form-widget input.form-control,.has-error .form-widget select.form-control,.has-error .form-widget textarea.form-control{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}form .invalid-feedback{color:var(--color-danger);font-weight:500;padding-top:6px}form .invalid-feedback .badge-danger{font-size:.6875rem;margin-right:2px;padding:3px 4px}form .invalid-feedback>.d-block+.d-block{margin-top:5px}.easyadmin-vich-image img{box-shadow:0 0 0 4px var(--white),0 0 4px 3px var(--gray-600);margin:6px 4px 12px;max-height:300px;max-width:100%}.easyadmin-vich-file-name{display:block;margin:4px 0 8px}.easyadmin-vich-file-name .fa{font-size:18px}.easyadmin-vich-file-actions>div,.easyadmin-vich-image-actions>div{float:left;margin-right:4px}.easyadmin-vich-file-actions:after,.easyadmin-vich-image-actions:after{clear:left;content:"";display:block}.easyadmin-vich-file-actions .field-checkbox,.easyadmin-vich-image-actions .field-checkbox{padding-top:4px}.easyadmin-vich-image-actions .form-widget{flex-basis:100%}.input-file-container{overflow:hidden;position:relative}.input-file-container [type=file]{cursor:inherit;display:block;font-size:999px;filter:opacity(0);min-height:100%;min-width:100%;opacity:0;position:absolute;right:0;text-align:right;top:0}.field-easyadmin_code_editor .form-widget{flex-basis:65%}.btn{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);cursor:pointer;text-decoration:none;white-space:nowrap}.btn:not(:disabled):not(.disabled):not(.btn-link):active,.btn:not(:disabled):not(.disabled):not(.btn-link):active:focus,.btn:not(:disabled):not(.disabled):not(.btn-link):focus,.btn:not(:disabled):not(.disabled):not(.btn-link):hover{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.1),0 3px 9px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}.btn-primary,.btn-primary:hover,.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled):focus{background-color:var(--color-primary);color:var(--text-on-primary)}.btn-secondary,.btn-secondary.disabled,.btn-secondary[disabled]{background-color:var(--white);color:var(--color-text)}.btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled):focus{background-color:var(--white);color:var(--color-text-dark)}.btn-info,.btn-info:hover,.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled):focus,.btn.btn-info{background-color:var(--color-info);color:var(--white)}.btn-success,.btn-success:hover,.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled):focus,.btn.btn-success{background-color:var(--color-success);color:var(--white)}.btn-danger,.btn-danger:hover,.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled):focus,.btn.btn-danger{background-color:var(--color-danger);color:var(--white)}.btn-warning,.btn-warning:hover,.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled):focus,.btn.btn-warning{background-color:var(--color-warning);color:var(--white)}.btn-link,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{box-shadow:none}.btn.disabled,.btn.disabled:active,.btn.disabled:active:focus,.btn.disabled:focus,.btn.disabled:hover,.btn:disabled,.btn:disabled:active,.btn:disabled:active:focus,.btn:disabled:focus,.btn:disabled:hover{box-shadow:none;cursor:not-allowed}a.btn.disabled,fieldset:disabled a.btn{pointer-events:unset}.btn>.btn-label{margin:0;cursor:inherit}.btn>.btn-label+i,.btn>i+.btn-label{margin-left:4px}.btn-group-sm>.btn,.btn-sm{padding:3px 7px}.checkbox-switch{position:relative}.checkbox-switch label{margin-bottom:0}.checkbox-switch input{display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:0;height:0%;margin:0;filter:opacity(0)}.checkbox-switch input+span{cursor:pointer;user-select:none}.checkbox-switch input+span:before{position:absolute;left:0;display:inline-block;content:"";height:20px;background:hsla(0,0%,39.2%,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.8);transition:background .2s ease-out}.checkbox-switch input+span:after{display:block;height:20px;left:0;position:absolute;text-align:center;top:0;transition:margin-left .1s ease-in-out}.checkbox-switch input:checked+span:before{transition:background .2s ease-in}.checkbox-switch input+span{padding-left:40px}.checkbox-switch input+span:before{border-radius:20px;width:40px}.checkbox-switch input+span:after{background:var(--white);border:2px solid transparent;border-radius:20px;content:"";background-clip:padding-box;width:20px}.checkbox-switch input:not(:checked)+span:after{animation:popOut .3s ease-in normal}.checkbox-switch input:checked+span:after{content:"";margin-left:20px;border:2px solid transparent;background-clip:padding-box;animation:popIn .3s ease-in normal}.checkbox-switch input:checked+span:before{background:var(--color-success)}.checkbox-switch input:not(checked)+span:before{background:var(--color-danger)}.checkbox-switch input+span:before{box-shadow:none}.checkbox-switch.disabled label{cursor:not-allowed}.checkbox-switch input:disabled+span:before{background:var(--gray-300);cursor:not-allowed}.select2-container--bootstrap .select2-selection{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);color:var(--text-color);max-width:350px;transition:box-shadow .08s ease-in,color .08s ease-in}.long .select2-container--bootstrap .select2-selection{max-width:unset!important}.short .select2-container--bootstrap .select2-selection{max-width:150px}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection,.select2-container--bootstrap .select2-dropdown{border:0;box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.select2-container--bootstrap .select2-dropdown{margin-top:1px}.select2-container--bootstrap .select2-dropdown--above{margin-top:-2px}.select2-container--bootstrap .select2-selection .select2-search--inline{margin:0}.select2-container--bootstrap .select2-selection--single{height:30px;padding:5px 24px 5px 7px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{margin:4px 0 0 7px}.select2-container--bootstrap .select2-results__option{margin-bottom:0}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:var(--body-bg);font-weight:500}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:var(--body-bg);color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple{min-height:30px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:var(--text-color);font-weight:500;position:relative;top:-1px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;margin:5px;padding:4px 7px;width:96%}.select2-search--inline .select2-search__field:focus{outline:0;border:0}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{height:30px}.has-error .form-widget .select2-container--bootstrap .select2-selection{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}body.error .error-message{max-width:500px;min-height:400px;padding:45px}body.error .error-message h1{color:var(--color-danger);font-size:var(--font-size-lg);font-weight:600}body.error .error-message h1 i{margin-right:4px}body.page-login{height:100vh;justify-content:center;overflow:hidden;position:absolute;width:100vw}.login-wrapper,body.page-login{align-items:center;display:flex}.login-wrapper{flex-direction:column;text-align:center;width:330px}.login-wrapper .main-header{display:block;padding-right:0}.login-wrapper .main-header #header-logo{font-size:24px;line-height:1.2}.login-wrapper .content{padding:30px 20px;width:100%}.login-wrapper .form-widget{flex:100%;padding-left:0}.login-wrapper .form-widget-with-icon{align-items:baseline;display:flex;flex-direction:row}.login-wrapper .form-widget-with-icon i{color:var(--gray-500);font-size:18px;margin-right:10px}.login-wrapper .form-widget input{font-size:var(--font-size-lg);height:38px;line-height:38px}.page-blank .content-wrapper{display:block}.page-content-with-padding .content-body{padding:18px 20px} /*# sourceMappingURL=app.css.map */ \ No newline at end of file diff --git a/src/Resources/public/app.css.map b/src/Resources/public/app.css.map index ac41b2ed3a..9827afbb10 100644 --- a/src/Resources/public/app.css.map +++ b/src/Resources/public/app.css.map @@ -1 +1 @@ -{"version":3,"sources":["css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./assets/css/easyadmin-theme/variables.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/@fortawesome/fontawesome-free/css/all.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/@fortawesome/fontawesome-free/css/v4-shims.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/featherlight/src/featherlight.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/select2/dist/css/select2.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/select2-bootstrap-theme/dist/select2-bootstrap.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/resolve-url-loader??ref--8-3!./node_modules/sass-loader/lib/loader.js??ref--8-4!./assets/css/app.scss"],"names":[],"mappings":"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","file":"app.css","sourcesContent":[":root{--body-max-width:1440px;--sidebar-width:200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,\"Helvetica Neue\",Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace;--font-family-base:var(--font-family-sans-serif);--font-size-base:0.875rem;--font-size-lg:1rem;--font-size-sm:0.8125rem;--body-bg:#e3e7ed;--text-color:#4c5367;--text-color-dark:#292d42;--text-color-light:#9fa9b7;--box-shadow-lg:0 7px 14px 0 rgba(59,64,94,0.1),0 3px 6px 0 rgba(0,0,0,0.07);--form-bg:#f8fafc;--fieldset-bg:#f5f7fa;--white:#fff;--gray-50:#f9fafb;--gray-100:#f0f2f4;--gray-200:#eaedf0;--gray-300:#dfe3e7;--gray-400:#ced4da;--gray-500:#adb5bd;--gray-600:#878f97;--gray-700:#484f56;--gray-800:#353b41;--gray-900:#22262b;--black:#000;--color-primary:#6174d1;--color-success:#1ea471;--color-info:#0679b7;--color-warning:#d97817;--color-danger:#cd3c63;--highlight-bg:#f8e5b9;--text-on-primary:var(--white);--text-muted:var(--gray-500);--link-color:#5c70d6;--link-hover-color:#99a6e6;--link-hover-decoration:none;--border-radius:4px;--border-width:1px;--border-style:solid;--border-color:#e3e7ee}","/*!\n * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:\"\\F26E\"}.fa-accessible-icon:before{content:\"\\F368\"}.fa-accusoft:before{content:\"\\F369\"}.fa-acquisitions-incorporated:before{content:\"\\F6AF\"}.fa-ad:before{content:\"\\F641\"}.fa-address-book:before{content:\"\\F2B9\"}.fa-address-card:before{content:\"\\F2BB\"}.fa-adjust:before{content:\"\\F042\"}.fa-adn:before{content:\"\\F170\"}.fa-adobe:before{content:\"\\F778\"}.fa-adversal:before{content:\"\\F36A\"}.fa-affiliatetheme:before{content:\"\\F36B\"}.fa-air-freshener:before{content:\"\\F5D0\"}.fa-airbnb:before{content:\"\\F834\"}.fa-algolia:before{content:\"\\F36C\"}.fa-align-center:before{content:\"\\F037\"}.fa-align-justify:before{content:\"\\F039\"}.fa-align-left:before{content:\"\\F036\"}.fa-align-right:before{content:\"\\F038\"}.fa-alipay:before{content:\"\\F642\"}.fa-allergies:before{content:\"\\F461\"}.fa-amazon:before{content:\"\\F270\"}.fa-amazon-pay:before{content:\"\\F42C\"}.fa-ambulance:before{content:\"\\F0F9\"}.fa-american-sign-language-interpreting:before{content:\"\\F2A3\"}.fa-amilia:before{content:\"\\F36D\"}.fa-anchor:before{content:\"\\F13D\"}.fa-android:before{content:\"\\F17B\"}.fa-angellist:before{content:\"\\F209\"}.fa-angle-double-down:before{content:\"\\F103\"}.fa-angle-double-left:before{content:\"\\F100\"}.fa-angle-double-right:before{content:\"\\F101\"}.fa-angle-double-up:before{content:\"\\F102\"}.fa-angle-down:before{content:\"\\F107\"}.fa-angle-left:before{content:\"\\F104\"}.fa-angle-right:before{content:\"\\F105\"}.fa-angle-up:before{content:\"\\F106\"}.fa-angry:before{content:\"\\F556\"}.fa-angrycreative:before{content:\"\\F36E\"}.fa-angular:before{content:\"\\F420\"}.fa-ankh:before{content:\"\\F644\"}.fa-app-store:before{content:\"\\F36F\"}.fa-app-store-ios:before{content:\"\\F370\"}.fa-apper:before{content:\"\\F371\"}.fa-apple:before{content:\"\\F179\"}.fa-apple-alt:before{content:\"\\F5D1\"}.fa-apple-pay:before{content:\"\\F415\"}.fa-archive:before{content:\"\\F187\"}.fa-archway:before{content:\"\\F557\"}.fa-arrow-alt-circle-down:before{content:\"\\F358\"}.fa-arrow-alt-circle-left:before{content:\"\\F359\"}.fa-arrow-alt-circle-right:before{content:\"\\F35A\"}.fa-arrow-alt-circle-up:before{content:\"\\F35B\"}.fa-arrow-circle-down:before{content:\"\\F0AB\"}.fa-arrow-circle-left:before{content:\"\\F0A8\"}.fa-arrow-circle-right:before{content:\"\\F0A9\"}.fa-arrow-circle-up:before{content:\"\\F0AA\"}.fa-arrow-down:before{content:\"\\F063\"}.fa-arrow-left:before{content:\"\\F060\"}.fa-arrow-right:before{content:\"\\F061\"}.fa-arrow-up:before{content:\"\\F062\"}.fa-arrows-alt:before{content:\"\\F0B2\"}.fa-arrows-alt-h:before{content:\"\\F337\"}.fa-arrows-alt-v:before{content:\"\\F338\"}.fa-artstation:before{content:\"\\F77A\"}.fa-assistive-listening-systems:before{content:\"\\F2A2\"}.fa-asterisk:before{content:\"\\F069\"}.fa-asymmetrik:before{content:\"\\F372\"}.fa-at:before{content:\"\\F1FA\"}.fa-atlas:before{content:\"\\F558\"}.fa-atlassian:before{content:\"\\F77B\"}.fa-atom:before{content:\"\\F5D2\"}.fa-audible:before{content:\"\\F373\"}.fa-audio-description:before{content:\"\\F29E\"}.fa-autoprefixer:before{content:\"\\F41C\"}.fa-avianex:before{content:\"\\F374\"}.fa-aviato:before{content:\"\\F421\"}.fa-award:before{content:\"\\F559\"}.fa-aws:before{content:\"\\F375\"}.fa-baby:before{content:\"\\F77C\"}.fa-baby-carriage:before{content:\"\\F77D\"}.fa-backspace:before{content:\"\\F55A\"}.fa-backward:before{content:\"\\F04A\"}.fa-bacon:before{content:\"\\F7E5\"}.fa-balance-scale:before{content:\"\\F24E\"}.fa-ban:before{content:\"\\F05E\"}.fa-band-aid:before{content:\"\\F462\"}.fa-bandcamp:before{content:\"\\F2D5\"}.fa-barcode:before{content:\"\\F02A\"}.fa-bars:before{content:\"\\F0C9\"}.fa-baseball-ball:before{content:\"\\F433\"}.fa-basketball-ball:before{content:\"\\F434\"}.fa-bath:before{content:\"\\F2CD\"}.fa-battery-empty:before{content:\"\\F244\"}.fa-battery-full:before{content:\"\\F240\"}.fa-battery-half:before{content:\"\\F242\"}.fa-battery-quarter:before{content:\"\\F243\"}.fa-battery-three-quarters:before{content:\"\\F241\"}.fa-battle-net:before{content:\"\\F835\"}.fa-bed:before{content:\"\\F236\"}.fa-beer:before{content:\"\\F0FC\"}.fa-behance:before{content:\"\\F1B4\"}.fa-behance-square:before{content:\"\\F1B5\"}.fa-bell:before{content:\"\\F0F3\"}.fa-bell-slash:before{content:\"\\F1F6\"}.fa-bezier-curve:before{content:\"\\F55B\"}.fa-bible:before{content:\"\\F647\"}.fa-bicycle:before{content:\"\\F206\"}.fa-bimobject:before{content:\"\\F378\"}.fa-binoculars:before{content:\"\\F1E5\"}.fa-biohazard:before{content:\"\\F780\"}.fa-birthday-cake:before{content:\"\\F1FD\"}.fa-bitbucket:before{content:\"\\F171\"}.fa-bitcoin:before{content:\"\\F379\"}.fa-bity:before{content:\"\\F37A\"}.fa-black-tie:before{content:\"\\F27E\"}.fa-blackberry:before{content:\"\\F37B\"}.fa-blender:before{content:\"\\F517\"}.fa-blender-phone:before{content:\"\\F6B6\"}.fa-blind:before{content:\"\\F29D\"}.fa-blog:before{content:\"\\F781\"}.fa-blogger:before{content:\"\\F37C\"}.fa-blogger-b:before{content:\"\\F37D\"}.fa-bluetooth:before{content:\"\\F293\"}.fa-bluetooth-b:before{content:\"\\F294\"}.fa-bold:before{content:\"\\F032\"}.fa-bolt:before{content:\"\\F0E7\"}.fa-bomb:before{content:\"\\F1E2\"}.fa-bone:before{content:\"\\F5D7\"}.fa-bong:before{content:\"\\F55C\"}.fa-book:before{content:\"\\F02D\"}.fa-book-dead:before{content:\"\\F6B7\"}.fa-book-medical:before{content:\"\\F7E6\"}.fa-book-open:before{content:\"\\F518\"}.fa-book-reader:before{content:\"\\F5DA\"}.fa-bookmark:before{content:\"\\F02E\"}.fa-bootstrap:before{content:\"\\F836\"}.fa-bowling-ball:before{content:\"\\F436\"}.fa-box:before{content:\"\\F466\"}.fa-box-open:before{content:\"\\F49E\"}.fa-boxes:before{content:\"\\F468\"}.fa-braille:before{content:\"\\F2A1\"}.fa-brain:before{content:\"\\F5DC\"}.fa-bread-slice:before{content:\"\\F7EC\"}.fa-briefcase:before{content:\"\\F0B1\"}.fa-briefcase-medical:before{content:\"\\F469\"}.fa-broadcast-tower:before{content:\"\\F519\"}.fa-broom:before{content:\"\\F51A\"}.fa-brush:before{content:\"\\F55D\"}.fa-btc:before{content:\"\\F15A\"}.fa-buffer:before{content:\"\\F837\"}.fa-bug:before{content:\"\\F188\"}.fa-building:before{content:\"\\F1AD\"}.fa-bullhorn:before{content:\"\\F0A1\"}.fa-bullseye:before{content:\"\\F140\"}.fa-burn:before{content:\"\\F46A\"}.fa-buromobelexperte:before{content:\"\\F37F\"}.fa-bus:before{content:\"\\F207\"}.fa-bus-alt:before{content:\"\\F55E\"}.fa-business-time:before{content:\"\\F64A\"}.fa-buysellads:before{content:\"\\F20D\"}.fa-calculator:before{content:\"\\F1EC\"}.fa-calendar:before{content:\"\\F133\"}.fa-calendar-alt:before{content:\"\\F073\"}.fa-calendar-check:before{content:\"\\F274\"}.fa-calendar-day:before{content:\"\\F783\"}.fa-calendar-minus:before{content:\"\\F272\"}.fa-calendar-plus:before{content:\"\\F271\"}.fa-calendar-times:before{content:\"\\F273\"}.fa-calendar-week:before{content:\"\\F784\"}.fa-camera:before{content:\"\\F030\"}.fa-camera-retro:before{content:\"\\F083\"}.fa-campground:before{content:\"\\F6BB\"}.fa-canadian-maple-leaf:before{content:\"\\F785\"}.fa-candy-cane:before{content:\"\\F786\"}.fa-cannabis:before{content:\"\\F55F\"}.fa-capsules:before{content:\"\\F46B\"}.fa-car:before{content:\"\\F1B9\"}.fa-car-alt:before{content:\"\\F5DE\"}.fa-car-battery:before{content:\"\\F5DF\"}.fa-car-crash:before{content:\"\\F5E1\"}.fa-car-side:before{content:\"\\F5E4\"}.fa-caret-down:before{content:\"\\F0D7\"}.fa-caret-left:before{content:\"\\F0D9\"}.fa-caret-right:before{content:\"\\F0DA\"}.fa-caret-square-down:before{content:\"\\F150\"}.fa-caret-square-left:before{content:\"\\F191\"}.fa-caret-square-right:before{content:\"\\F152\"}.fa-caret-square-up:before{content:\"\\F151\"}.fa-caret-up:before{content:\"\\F0D8\"}.fa-carrot:before{content:\"\\F787\"}.fa-cart-arrow-down:before{content:\"\\F218\"}.fa-cart-plus:before{content:\"\\F217\"}.fa-cash-register:before{content:\"\\F788\"}.fa-cat:before{content:\"\\F6BE\"}.fa-cc-amazon-pay:before{content:\"\\F42D\"}.fa-cc-amex:before{content:\"\\F1F3\"}.fa-cc-apple-pay:before{content:\"\\F416\"}.fa-cc-diners-club:before{content:\"\\F24C\"}.fa-cc-discover:before{content:\"\\F1F2\"}.fa-cc-jcb:before{content:\"\\F24B\"}.fa-cc-mastercard:before{content:\"\\F1F1\"}.fa-cc-paypal:before{content:\"\\F1F4\"}.fa-cc-stripe:before{content:\"\\F1F5\"}.fa-cc-visa:before{content:\"\\F1F0\"}.fa-centercode:before{content:\"\\F380\"}.fa-centos:before{content:\"\\F789\"}.fa-certificate:before{content:\"\\F0A3\"}.fa-chair:before{content:\"\\F6C0\"}.fa-chalkboard:before{content:\"\\F51B\"}.fa-chalkboard-teacher:before{content:\"\\F51C\"}.fa-charging-station:before{content:\"\\F5E7\"}.fa-chart-area:before{content:\"\\F1FE\"}.fa-chart-bar:before{content:\"\\F080\"}.fa-chart-line:before{content:\"\\F201\"}.fa-chart-pie:before{content:\"\\F200\"}.fa-check:before{content:\"\\F00C\"}.fa-check-circle:before{content:\"\\F058\"}.fa-check-double:before{content:\"\\F560\"}.fa-check-square:before{content:\"\\F14A\"}.fa-cheese:before{content:\"\\F7EF\"}.fa-chess:before{content:\"\\F439\"}.fa-chess-bishop:before{content:\"\\F43A\"}.fa-chess-board:before{content:\"\\F43C\"}.fa-chess-king:before{content:\"\\F43F\"}.fa-chess-knight:before{content:\"\\F441\"}.fa-chess-pawn:before{content:\"\\F443\"}.fa-chess-queen:before{content:\"\\F445\"}.fa-chess-rook:before{content:\"\\F447\"}.fa-chevron-circle-down:before{content:\"\\F13A\"}.fa-chevron-circle-left:before{content:\"\\F137\"}.fa-chevron-circle-right:before{content:\"\\F138\"}.fa-chevron-circle-up:before{content:\"\\F139\"}.fa-chevron-down:before{content:\"\\F078\"}.fa-chevron-left:before{content:\"\\F053\"}.fa-chevron-right:before{content:\"\\F054\"}.fa-chevron-up:before{content:\"\\F077\"}.fa-child:before{content:\"\\F1AE\"}.fa-chrome:before{content:\"\\F268\"}.fa-chromecast:before{content:\"\\F838\"}.fa-church:before{content:\"\\F51D\"}.fa-circle:before{content:\"\\F111\"}.fa-circle-notch:before{content:\"\\F1CE\"}.fa-city:before{content:\"\\F64F\"}.fa-clinic-medical:before{content:\"\\F7F2\"}.fa-clipboard:before{content:\"\\F328\"}.fa-clipboard-check:before{content:\"\\F46C\"}.fa-clipboard-list:before{content:\"\\F46D\"}.fa-clock:before{content:\"\\F017\"}.fa-clone:before{content:\"\\F24D\"}.fa-closed-captioning:before{content:\"\\F20A\"}.fa-cloud:before{content:\"\\F0C2\"}.fa-cloud-download-alt:before{content:\"\\F381\"}.fa-cloud-meatball:before{content:\"\\F73B\"}.fa-cloud-moon:before{content:\"\\F6C3\"}.fa-cloud-moon-rain:before{content:\"\\F73C\"}.fa-cloud-rain:before{content:\"\\F73D\"}.fa-cloud-showers-heavy:before{content:\"\\F740\"}.fa-cloud-sun:before{content:\"\\F6C4\"}.fa-cloud-sun-rain:before{content:\"\\F743\"}.fa-cloud-upload-alt:before{content:\"\\F382\"}.fa-cloudscale:before{content:\"\\F383\"}.fa-cloudsmith:before{content:\"\\F384\"}.fa-cloudversify:before{content:\"\\F385\"}.fa-cocktail:before{content:\"\\F561\"}.fa-code:before{content:\"\\F121\"}.fa-code-branch:before{content:\"\\F126\"}.fa-codepen:before{content:\"\\F1CB\"}.fa-codiepie:before{content:\"\\F284\"}.fa-coffee:before{content:\"\\F0F4\"}.fa-cog:before{content:\"\\F013\"}.fa-cogs:before{content:\"\\F085\"}.fa-coins:before{content:\"\\F51E\"}.fa-columns:before{content:\"\\F0DB\"}.fa-comment:before{content:\"\\F075\"}.fa-comment-alt:before{content:\"\\F27A\"}.fa-comment-dollar:before{content:\"\\F651\"}.fa-comment-dots:before{content:\"\\F4AD\"}.fa-comment-medical:before{content:\"\\F7F5\"}.fa-comment-slash:before{content:\"\\F4B3\"}.fa-comments:before{content:\"\\F086\"}.fa-comments-dollar:before{content:\"\\F653\"}.fa-compact-disc:before{content:\"\\F51F\"}.fa-compass:before{content:\"\\F14E\"}.fa-compress:before{content:\"\\F066\"}.fa-compress-arrows-alt:before{content:\"\\F78C\"}.fa-concierge-bell:before{content:\"\\F562\"}.fa-confluence:before{content:\"\\F78D\"}.fa-connectdevelop:before{content:\"\\F20E\"}.fa-contao:before{content:\"\\F26D\"}.fa-cookie:before{content:\"\\F563\"}.fa-cookie-bite:before{content:\"\\F564\"}.fa-copy:before{content:\"\\F0C5\"}.fa-copyright:before{content:\"\\F1F9\"}.fa-couch:before{content:\"\\F4B8\"}.fa-cpanel:before{content:\"\\F388\"}.fa-creative-commons:before{content:\"\\F25E\"}.fa-creative-commons-by:before{content:\"\\F4E7\"}.fa-creative-commons-nc:before{content:\"\\F4E8\"}.fa-creative-commons-nc-eu:before{content:\"\\F4E9\"}.fa-creative-commons-nc-jp:before{content:\"\\F4EA\"}.fa-creative-commons-nd:before{content:\"\\F4EB\"}.fa-creative-commons-pd:before{content:\"\\F4EC\"}.fa-creative-commons-pd-alt:before{content:\"\\F4ED\"}.fa-creative-commons-remix:before{content:\"\\F4EE\"}.fa-creative-commons-sa:before{content:\"\\F4EF\"}.fa-creative-commons-sampling:before{content:\"\\F4F0\"}.fa-creative-commons-sampling-plus:before{content:\"\\F4F1\"}.fa-creative-commons-share:before{content:\"\\F4F2\"}.fa-creative-commons-zero:before{content:\"\\F4F3\"}.fa-credit-card:before{content:\"\\F09D\"}.fa-critical-role:before{content:\"\\F6C9\"}.fa-crop:before{content:\"\\F125\"}.fa-crop-alt:before{content:\"\\F565\"}.fa-cross:before{content:\"\\F654\"}.fa-crosshairs:before{content:\"\\F05B\"}.fa-crow:before{content:\"\\F520\"}.fa-crown:before{content:\"\\F521\"}.fa-crutch:before{content:\"\\F7F7\"}.fa-css3:before{content:\"\\F13C\"}.fa-css3-alt:before{content:\"\\F38B\"}.fa-cube:before{content:\"\\F1B2\"}.fa-cubes:before{content:\"\\F1B3\"}.fa-cut:before{content:\"\\F0C4\"}.fa-cuttlefish:before{content:\"\\F38C\"}.fa-d-and-d:before{content:\"\\F38D\"}.fa-d-and-d-beyond:before{content:\"\\F6CA\"}.fa-dashcube:before{content:\"\\F210\"}.fa-database:before{content:\"\\F1C0\"}.fa-deaf:before{content:\"\\F2A4\"}.fa-delicious:before{content:\"\\F1A5\"}.fa-democrat:before{content:\"\\F747\"}.fa-deploydog:before{content:\"\\F38E\"}.fa-deskpro:before{content:\"\\F38F\"}.fa-desktop:before{content:\"\\F108\"}.fa-dev:before{content:\"\\F6CC\"}.fa-deviantart:before{content:\"\\F1BD\"}.fa-dharmachakra:before{content:\"\\F655\"}.fa-dhl:before{content:\"\\F790\"}.fa-diagnoses:before{content:\"\\F470\"}.fa-diaspora:before{content:\"\\F791\"}.fa-dice:before{content:\"\\F522\"}.fa-dice-d20:before{content:\"\\F6CF\"}.fa-dice-d6:before{content:\"\\F6D1\"}.fa-dice-five:before{content:\"\\F523\"}.fa-dice-four:before{content:\"\\F524\"}.fa-dice-one:before{content:\"\\F525\"}.fa-dice-six:before{content:\"\\F526\"}.fa-dice-three:before{content:\"\\F527\"}.fa-dice-two:before{content:\"\\F528\"}.fa-digg:before{content:\"\\F1A6\"}.fa-digital-ocean:before{content:\"\\F391\"}.fa-digital-tachograph:before{content:\"\\F566\"}.fa-directions:before{content:\"\\F5EB\"}.fa-discord:before{content:\"\\F392\"}.fa-discourse:before{content:\"\\F393\"}.fa-divide:before{content:\"\\F529\"}.fa-dizzy:before{content:\"\\F567\"}.fa-dna:before{content:\"\\F471\"}.fa-dochub:before{content:\"\\F394\"}.fa-docker:before{content:\"\\F395\"}.fa-dog:before{content:\"\\F6D3\"}.fa-dollar-sign:before{content:\"\\F155\"}.fa-dolly:before{content:\"\\F472\"}.fa-dolly-flatbed:before{content:\"\\F474\"}.fa-donate:before{content:\"\\F4B9\"}.fa-door-closed:before{content:\"\\F52A\"}.fa-door-open:before{content:\"\\F52B\"}.fa-dot-circle:before{content:\"\\F192\"}.fa-dove:before{content:\"\\F4BA\"}.fa-download:before{content:\"\\F019\"}.fa-draft2digital:before{content:\"\\F396\"}.fa-drafting-compass:before{content:\"\\F568\"}.fa-dragon:before{content:\"\\F6D5\"}.fa-draw-polygon:before{content:\"\\F5EE\"}.fa-dribbble:before{content:\"\\F17D\"}.fa-dribbble-square:before{content:\"\\F397\"}.fa-dropbox:before{content:\"\\F16B\"}.fa-drum:before{content:\"\\F569\"}.fa-drum-steelpan:before{content:\"\\F56A\"}.fa-drumstick-bite:before{content:\"\\F6D7\"}.fa-drupal:before{content:\"\\F1A9\"}.fa-dumbbell:before{content:\"\\F44B\"}.fa-dumpster:before{content:\"\\F793\"}.fa-dumpster-fire:before{content:\"\\F794\"}.fa-dungeon:before{content:\"\\F6D9\"}.fa-dyalog:before{content:\"\\F399\"}.fa-earlybirds:before{content:\"\\F39A\"}.fa-ebay:before{content:\"\\F4F4\"}.fa-edge:before{content:\"\\F282\"}.fa-edit:before{content:\"\\F044\"}.fa-egg:before{content:\"\\F7FB\"}.fa-eject:before{content:\"\\F052\"}.fa-elementor:before{content:\"\\F430\"}.fa-ellipsis-h:before{content:\"\\F141\"}.fa-ellipsis-v:before{content:\"\\F142\"}.fa-ello:before{content:\"\\F5F1\"}.fa-ember:before{content:\"\\F423\"}.fa-empire:before{content:\"\\F1D1\"}.fa-envelope:before{content:\"\\F0E0\"}.fa-envelope-open:before{content:\"\\F2B6\"}.fa-envelope-open-text:before{content:\"\\F658\"}.fa-envelope-square:before{content:\"\\F199\"}.fa-envira:before{content:\"\\F299\"}.fa-equals:before{content:\"\\F52C\"}.fa-eraser:before{content:\"\\F12D\"}.fa-erlang:before{content:\"\\F39D\"}.fa-ethereum:before{content:\"\\F42E\"}.fa-ethernet:before{content:\"\\F796\"}.fa-etsy:before{content:\"\\F2D7\"}.fa-euro-sign:before{content:\"\\F153\"}.fa-evernote:before{content:\"\\F839\"}.fa-exchange-alt:before{content:\"\\F362\"}.fa-exclamation:before{content:\"\\F12A\"}.fa-exclamation-circle:before{content:\"\\F06A\"}.fa-exclamation-triangle:before{content:\"\\F071\"}.fa-expand:before{content:\"\\F065\"}.fa-expand-arrows-alt:before{content:\"\\F31E\"}.fa-expeditedssl:before{content:\"\\F23E\"}.fa-external-link-alt:before{content:\"\\F35D\"}.fa-external-link-square-alt:before{content:\"\\F360\"}.fa-eye:before{content:\"\\F06E\"}.fa-eye-dropper:before{content:\"\\F1FB\"}.fa-eye-slash:before{content:\"\\F070\"}.fa-facebook:before{content:\"\\F09A\"}.fa-facebook-f:before{content:\"\\F39E\"}.fa-facebook-messenger:before{content:\"\\F39F\"}.fa-facebook-square:before{content:\"\\F082\"}.fa-fantasy-flight-games:before{content:\"\\F6DC\"}.fa-fast-backward:before{content:\"\\F049\"}.fa-fast-forward:before{content:\"\\F050\"}.fa-fax:before{content:\"\\F1AC\"}.fa-feather:before{content:\"\\F52D\"}.fa-feather-alt:before{content:\"\\F56B\"}.fa-fedex:before{content:\"\\F797\"}.fa-fedora:before{content:\"\\F798\"}.fa-female:before{content:\"\\F182\"}.fa-fighter-jet:before{content:\"\\F0FB\"}.fa-figma:before{content:\"\\F799\"}.fa-file:before{content:\"\\F15B\"}.fa-file-alt:before{content:\"\\F15C\"}.fa-file-archive:before{content:\"\\F1C6\"}.fa-file-audio:before{content:\"\\F1C7\"}.fa-file-code:before{content:\"\\F1C9\"}.fa-file-contract:before{content:\"\\F56C\"}.fa-file-csv:before{content:\"\\F6DD\"}.fa-file-download:before{content:\"\\F56D\"}.fa-file-excel:before{content:\"\\F1C3\"}.fa-file-export:before{content:\"\\F56E\"}.fa-file-image:before{content:\"\\F1C5\"}.fa-file-import:before{content:\"\\F56F\"}.fa-file-invoice:before{content:\"\\F570\"}.fa-file-invoice-dollar:before{content:\"\\F571\"}.fa-file-medical:before{content:\"\\F477\"}.fa-file-medical-alt:before{content:\"\\F478\"}.fa-file-pdf:before{content:\"\\F1C1\"}.fa-file-powerpoint:before{content:\"\\F1C4\"}.fa-file-prescription:before{content:\"\\F572\"}.fa-file-signature:before{content:\"\\F573\"}.fa-file-upload:before{content:\"\\F574\"}.fa-file-video:before{content:\"\\F1C8\"}.fa-file-word:before{content:\"\\F1C2\"}.fa-fill:before{content:\"\\F575\"}.fa-fill-drip:before{content:\"\\F576\"}.fa-film:before{content:\"\\F008\"}.fa-filter:before{content:\"\\F0B0\"}.fa-fingerprint:before{content:\"\\F577\"}.fa-fire:before{content:\"\\F06D\"}.fa-fire-alt:before{content:\"\\F7E4\"}.fa-fire-extinguisher:before{content:\"\\F134\"}.fa-firefox:before{content:\"\\F269\"}.fa-first-aid:before{content:\"\\F479\"}.fa-first-order:before{content:\"\\F2B0\"}.fa-first-order-alt:before{content:\"\\F50A\"}.fa-firstdraft:before{content:\"\\F3A1\"}.fa-fish:before{content:\"\\F578\"}.fa-fist-raised:before{content:\"\\F6DE\"}.fa-flag:before{content:\"\\F024\"}.fa-flag-checkered:before{content:\"\\F11E\"}.fa-flag-usa:before{content:\"\\F74D\"}.fa-flask:before{content:\"\\F0C3\"}.fa-flickr:before{content:\"\\F16E\"}.fa-flipboard:before{content:\"\\F44D\"}.fa-flushed:before{content:\"\\F579\"}.fa-fly:before{content:\"\\F417\"}.fa-folder:before{content:\"\\F07B\"}.fa-folder-minus:before{content:\"\\F65D\"}.fa-folder-open:before{content:\"\\F07C\"}.fa-folder-plus:before{content:\"\\F65E\"}.fa-font:before{content:\"\\F031\"}.fa-font-awesome:before{content:\"\\F2B4\"}.fa-font-awesome-alt:before{content:\"\\F35C\"}.fa-font-awesome-flag:before{content:\"\\F425\"}.fa-font-awesome-logo-full:before{content:\"\\F4E6\"}.fa-fonticons:before{content:\"\\F280\"}.fa-fonticons-fi:before{content:\"\\F3A2\"}.fa-football-ball:before{content:\"\\F44E\"}.fa-fort-awesome:before{content:\"\\F286\"}.fa-fort-awesome-alt:before{content:\"\\F3A3\"}.fa-forumbee:before{content:\"\\F211\"}.fa-forward:before{content:\"\\F04E\"}.fa-foursquare:before{content:\"\\F180\"}.fa-free-code-camp:before{content:\"\\F2C5\"}.fa-freebsd:before{content:\"\\F3A4\"}.fa-frog:before{content:\"\\F52E\"}.fa-frown:before{content:\"\\F119\"}.fa-frown-open:before{content:\"\\F57A\"}.fa-fulcrum:before{content:\"\\F50B\"}.fa-funnel-dollar:before{content:\"\\F662\"}.fa-futbol:before{content:\"\\F1E3\"}.fa-galactic-republic:before{content:\"\\F50C\"}.fa-galactic-senate:before{content:\"\\F50D\"}.fa-gamepad:before{content:\"\\F11B\"}.fa-gas-pump:before{content:\"\\F52F\"}.fa-gavel:before{content:\"\\F0E3\"}.fa-gem:before{content:\"\\F3A5\"}.fa-genderless:before{content:\"\\F22D\"}.fa-get-pocket:before{content:\"\\F265\"}.fa-gg:before{content:\"\\F260\"}.fa-gg-circle:before{content:\"\\F261\"}.fa-ghost:before{content:\"\\F6E2\"}.fa-gift:before{content:\"\\F06B\"}.fa-gifts:before{content:\"\\F79C\"}.fa-git:before{content:\"\\F1D3\"}.fa-git-alt:before{content:\"\\F841\"}.fa-git-square:before{content:\"\\F1D2\"}.fa-github:before{content:\"\\F09B\"}.fa-github-alt:before{content:\"\\F113\"}.fa-github-square:before{content:\"\\F092\"}.fa-gitkraken:before{content:\"\\F3A6\"}.fa-gitlab:before{content:\"\\F296\"}.fa-gitter:before{content:\"\\F426\"}.fa-glass-cheers:before{content:\"\\F79F\"}.fa-glass-martini:before{content:\"\\F000\"}.fa-glass-martini-alt:before{content:\"\\F57B\"}.fa-glass-whiskey:before{content:\"\\F7A0\"}.fa-glasses:before{content:\"\\F530\"}.fa-glide:before{content:\"\\F2A5\"}.fa-glide-g:before{content:\"\\F2A6\"}.fa-globe:before{content:\"\\F0AC\"}.fa-globe-africa:before{content:\"\\F57C\"}.fa-globe-americas:before{content:\"\\F57D\"}.fa-globe-asia:before{content:\"\\F57E\"}.fa-globe-europe:before{content:\"\\F7A2\"}.fa-gofore:before{content:\"\\F3A7\"}.fa-golf-ball:before{content:\"\\F450\"}.fa-goodreads:before{content:\"\\F3A8\"}.fa-goodreads-g:before{content:\"\\F3A9\"}.fa-google:before{content:\"\\F1A0\"}.fa-google-drive:before{content:\"\\F3AA\"}.fa-google-play:before{content:\"\\F3AB\"}.fa-google-plus:before{content:\"\\F2B3\"}.fa-google-plus-g:before{content:\"\\F0D5\"}.fa-google-plus-square:before{content:\"\\F0D4\"}.fa-google-wallet:before{content:\"\\F1EE\"}.fa-gopuram:before{content:\"\\F664\"}.fa-graduation-cap:before{content:\"\\F19D\"}.fa-gratipay:before{content:\"\\F184\"}.fa-grav:before{content:\"\\F2D6\"}.fa-greater-than:before{content:\"\\F531\"}.fa-greater-than-equal:before{content:\"\\F532\"}.fa-grimace:before{content:\"\\F57F\"}.fa-grin:before{content:\"\\F580\"}.fa-grin-alt:before{content:\"\\F581\"}.fa-grin-beam:before{content:\"\\F582\"}.fa-grin-beam-sweat:before{content:\"\\F583\"}.fa-grin-hearts:before{content:\"\\F584\"}.fa-grin-squint:before{content:\"\\F585\"}.fa-grin-squint-tears:before{content:\"\\F586\"}.fa-grin-stars:before{content:\"\\F587\"}.fa-grin-tears:before{content:\"\\F588\"}.fa-grin-tongue:before{content:\"\\F589\"}.fa-grin-tongue-squint:before{content:\"\\F58A\"}.fa-grin-tongue-wink:before{content:\"\\F58B\"}.fa-grin-wink:before{content:\"\\F58C\"}.fa-grip-horizontal:before{content:\"\\F58D\"}.fa-grip-lines:before{content:\"\\F7A4\"}.fa-grip-lines-vertical:before{content:\"\\F7A5\"}.fa-grip-vertical:before{content:\"\\F58E\"}.fa-gripfire:before{content:\"\\F3AC\"}.fa-grunt:before{content:\"\\F3AD\"}.fa-guitar:before{content:\"\\F7A6\"}.fa-gulp:before{content:\"\\F3AE\"}.fa-h-square:before{content:\"\\F0FD\"}.fa-hacker-news:before{content:\"\\F1D4\"}.fa-hacker-news-square:before{content:\"\\F3AF\"}.fa-hackerrank:before{content:\"\\F5F7\"}.fa-hamburger:before{content:\"\\F805\"}.fa-hammer:before{content:\"\\F6E3\"}.fa-hamsa:before{content:\"\\F665\"}.fa-hand-holding:before{content:\"\\F4BD\"}.fa-hand-holding-heart:before{content:\"\\F4BE\"}.fa-hand-holding-usd:before{content:\"\\F4C0\"}.fa-hand-lizard:before{content:\"\\F258\"}.fa-hand-middle-finger:before{content:\"\\F806\"}.fa-hand-paper:before{content:\"\\F256\"}.fa-hand-peace:before{content:\"\\F25B\"}.fa-hand-point-down:before{content:\"\\F0A7\"}.fa-hand-point-left:before{content:\"\\F0A5\"}.fa-hand-point-right:before{content:\"\\F0A4\"}.fa-hand-point-up:before{content:\"\\F0A6\"}.fa-hand-pointer:before{content:\"\\F25A\"}.fa-hand-rock:before{content:\"\\F255\"}.fa-hand-scissors:before{content:\"\\F257\"}.fa-hand-spock:before{content:\"\\F259\"}.fa-hands:before{content:\"\\F4C2\"}.fa-hands-helping:before{content:\"\\F4C4\"}.fa-handshake:before{content:\"\\F2B5\"}.fa-hanukiah:before{content:\"\\F6E6\"}.fa-hard-hat:before{content:\"\\F807\"}.fa-hashtag:before{content:\"\\F292\"}.fa-hat-wizard:before{content:\"\\F6E8\"}.fa-haykal:before{content:\"\\F666\"}.fa-hdd:before{content:\"\\F0A0\"}.fa-heading:before{content:\"\\F1DC\"}.fa-headphones:before{content:\"\\F025\"}.fa-headphones-alt:before{content:\"\\F58F\"}.fa-headset:before{content:\"\\F590\"}.fa-heart:before{content:\"\\F004\"}.fa-heart-broken:before{content:\"\\F7A9\"}.fa-heartbeat:before{content:\"\\F21E\"}.fa-helicopter:before{content:\"\\F533\"}.fa-highlighter:before{content:\"\\F591\"}.fa-hiking:before{content:\"\\F6EC\"}.fa-hippo:before{content:\"\\F6ED\"}.fa-hips:before{content:\"\\F452\"}.fa-hire-a-helper:before{content:\"\\F3B0\"}.fa-history:before{content:\"\\F1DA\"}.fa-hockey-puck:before{content:\"\\F453\"}.fa-holly-berry:before{content:\"\\F7AA\"}.fa-home:before{content:\"\\F015\"}.fa-hooli:before{content:\"\\F427\"}.fa-hornbill:before{content:\"\\F592\"}.fa-horse:before{content:\"\\F6F0\"}.fa-horse-head:before{content:\"\\F7AB\"}.fa-hospital:before{content:\"\\F0F8\"}.fa-hospital-alt:before{content:\"\\F47D\"}.fa-hospital-symbol:before{content:\"\\F47E\"}.fa-hot-tub:before{content:\"\\F593\"}.fa-hotdog:before{content:\"\\F80F\"}.fa-hotel:before{content:\"\\F594\"}.fa-hotjar:before{content:\"\\F3B1\"}.fa-hourglass:before{content:\"\\F254\"}.fa-hourglass-end:before{content:\"\\F253\"}.fa-hourglass-half:before{content:\"\\F252\"}.fa-hourglass-start:before{content:\"\\F251\"}.fa-house-damage:before{content:\"\\F6F1\"}.fa-houzz:before{content:\"\\F27C\"}.fa-hryvnia:before{content:\"\\F6F2\"}.fa-html5:before{content:\"\\F13B\"}.fa-hubspot:before{content:\"\\F3B2\"}.fa-i-cursor:before{content:\"\\F246\"}.fa-ice-cream:before{content:\"\\F810\"}.fa-icicles:before{content:\"\\F7AD\"}.fa-id-badge:before{content:\"\\F2C1\"}.fa-id-card:before{content:\"\\F2C2\"}.fa-id-card-alt:before{content:\"\\F47F\"}.fa-igloo:before{content:\"\\F7AE\"}.fa-image:before{content:\"\\F03E\"}.fa-images:before{content:\"\\F302\"}.fa-imdb:before{content:\"\\F2D8\"}.fa-inbox:before{content:\"\\F01C\"}.fa-indent:before{content:\"\\F03C\"}.fa-industry:before{content:\"\\F275\"}.fa-infinity:before{content:\"\\F534\"}.fa-info:before{content:\"\\F129\"}.fa-info-circle:before{content:\"\\F05A\"}.fa-instagram:before{content:\"\\F16D\"}.fa-intercom:before{content:\"\\F7AF\"}.fa-internet-explorer:before{content:\"\\F26B\"}.fa-invision:before{content:\"\\F7B0\"}.fa-ioxhost:before{content:\"\\F208\"}.fa-italic:before{content:\"\\F033\"}.fa-itch-io:before{content:\"\\F83A\"}.fa-itunes:before{content:\"\\F3B4\"}.fa-itunes-note:before{content:\"\\F3B5\"}.fa-java:before{content:\"\\F4E4\"}.fa-jedi:before{content:\"\\F669\"}.fa-jedi-order:before{content:\"\\F50E\"}.fa-jenkins:before{content:\"\\F3B6\"}.fa-jira:before{content:\"\\F7B1\"}.fa-joget:before{content:\"\\F3B7\"}.fa-joint:before{content:\"\\F595\"}.fa-joomla:before{content:\"\\F1AA\"}.fa-journal-whills:before{content:\"\\F66A\"}.fa-js:before{content:\"\\F3B8\"}.fa-js-square:before{content:\"\\F3B9\"}.fa-jsfiddle:before{content:\"\\F1CC\"}.fa-kaaba:before{content:\"\\F66B\"}.fa-kaggle:before{content:\"\\F5FA\"}.fa-key:before{content:\"\\F084\"}.fa-keybase:before{content:\"\\F4F5\"}.fa-keyboard:before{content:\"\\F11C\"}.fa-keycdn:before{content:\"\\F3BA\"}.fa-khanda:before{content:\"\\F66D\"}.fa-kickstarter:before{content:\"\\F3BB\"}.fa-kickstarter-k:before{content:\"\\F3BC\"}.fa-kiss:before{content:\"\\F596\"}.fa-kiss-beam:before{content:\"\\F597\"}.fa-kiss-wink-heart:before{content:\"\\F598\"}.fa-kiwi-bird:before{content:\"\\F535\"}.fa-korvue:before{content:\"\\F42F\"}.fa-landmark:before{content:\"\\F66F\"}.fa-language:before{content:\"\\F1AB\"}.fa-laptop:before{content:\"\\F109\"}.fa-laptop-code:before{content:\"\\F5FC\"}.fa-laptop-medical:before{content:\"\\F812\"}.fa-laravel:before{content:\"\\F3BD\"}.fa-lastfm:before{content:\"\\F202\"}.fa-lastfm-square:before{content:\"\\F203\"}.fa-laugh:before{content:\"\\F599\"}.fa-laugh-beam:before{content:\"\\F59A\"}.fa-laugh-squint:before{content:\"\\F59B\"}.fa-laugh-wink:before{content:\"\\F59C\"}.fa-layer-group:before{content:\"\\F5FD\"}.fa-leaf:before{content:\"\\F06C\"}.fa-leanpub:before{content:\"\\F212\"}.fa-lemon:before{content:\"\\F094\"}.fa-less:before{content:\"\\F41D\"}.fa-less-than:before{content:\"\\F536\"}.fa-less-than-equal:before{content:\"\\F537\"}.fa-level-down-alt:before{content:\"\\F3BE\"}.fa-level-up-alt:before{content:\"\\F3BF\"}.fa-life-ring:before{content:\"\\F1CD\"}.fa-lightbulb:before{content:\"\\F0EB\"}.fa-line:before{content:\"\\F3C0\"}.fa-link:before{content:\"\\F0C1\"}.fa-linkedin:before{content:\"\\F08C\"}.fa-linkedin-in:before{content:\"\\F0E1\"}.fa-linode:before{content:\"\\F2B8\"}.fa-linux:before{content:\"\\F17C\"}.fa-lira-sign:before{content:\"\\F195\"}.fa-list:before{content:\"\\F03A\"}.fa-list-alt:before{content:\"\\F022\"}.fa-list-ol:before{content:\"\\F0CB\"}.fa-list-ul:before{content:\"\\F0CA\"}.fa-location-arrow:before{content:\"\\F124\"}.fa-lock:before{content:\"\\F023\"}.fa-lock-open:before{content:\"\\F3C1\"}.fa-long-arrow-alt-down:before{content:\"\\F309\"}.fa-long-arrow-alt-left:before{content:\"\\F30A\"}.fa-long-arrow-alt-right:before{content:\"\\F30B\"}.fa-long-arrow-alt-up:before{content:\"\\F30C\"}.fa-low-vision:before{content:\"\\F2A8\"}.fa-luggage-cart:before{content:\"\\F59D\"}.fa-lyft:before{content:\"\\F3C3\"}.fa-magento:before{content:\"\\F3C4\"}.fa-magic:before{content:\"\\F0D0\"}.fa-magnet:before{content:\"\\F076\"}.fa-mail-bulk:before{content:\"\\F674\"}.fa-mailchimp:before{content:\"\\F59E\"}.fa-male:before{content:\"\\F183\"}.fa-mandalorian:before{content:\"\\F50F\"}.fa-map:before{content:\"\\F279\"}.fa-map-marked:before{content:\"\\F59F\"}.fa-map-marked-alt:before{content:\"\\F5A0\"}.fa-map-marker:before{content:\"\\F041\"}.fa-map-marker-alt:before{content:\"\\F3C5\"}.fa-map-pin:before{content:\"\\F276\"}.fa-map-signs:before{content:\"\\F277\"}.fa-markdown:before{content:\"\\F60F\"}.fa-marker:before{content:\"\\F5A1\"}.fa-mars:before{content:\"\\F222\"}.fa-mars-double:before{content:\"\\F227\"}.fa-mars-stroke:before{content:\"\\F229\"}.fa-mars-stroke-h:before{content:\"\\F22B\"}.fa-mars-stroke-v:before{content:\"\\F22A\"}.fa-mask:before{content:\"\\F6FA\"}.fa-mastodon:before{content:\"\\F4F6\"}.fa-maxcdn:before{content:\"\\F136\"}.fa-medal:before{content:\"\\F5A2\"}.fa-medapps:before{content:\"\\F3C6\"}.fa-medium:before{content:\"\\F23A\"}.fa-medium-m:before{content:\"\\F3C7\"}.fa-medkit:before{content:\"\\F0FA\"}.fa-medrt:before{content:\"\\F3C8\"}.fa-meetup:before{content:\"\\F2E0\"}.fa-megaport:before{content:\"\\F5A3\"}.fa-meh:before{content:\"\\F11A\"}.fa-meh-blank:before{content:\"\\F5A4\"}.fa-meh-rolling-eyes:before{content:\"\\F5A5\"}.fa-memory:before{content:\"\\F538\"}.fa-mendeley:before{content:\"\\F7B3\"}.fa-menorah:before{content:\"\\F676\"}.fa-mercury:before{content:\"\\F223\"}.fa-meteor:before{content:\"\\F753\"}.fa-microchip:before{content:\"\\F2DB\"}.fa-microphone:before{content:\"\\F130\"}.fa-microphone-alt:before{content:\"\\F3C9\"}.fa-microphone-alt-slash:before{content:\"\\F539\"}.fa-microphone-slash:before{content:\"\\F131\"}.fa-microscope:before{content:\"\\F610\"}.fa-microsoft:before{content:\"\\F3CA\"}.fa-minus:before{content:\"\\F068\"}.fa-minus-circle:before{content:\"\\F056\"}.fa-minus-square:before{content:\"\\F146\"}.fa-mitten:before{content:\"\\F7B5\"}.fa-mix:before{content:\"\\F3CB\"}.fa-mixcloud:before{content:\"\\F289\"}.fa-mizuni:before{content:\"\\F3CC\"}.fa-mobile:before{content:\"\\F10B\"}.fa-mobile-alt:before{content:\"\\F3CD\"}.fa-modx:before{content:\"\\F285\"}.fa-monero:before{content:\"\\F3D0\"}.fa-money-bill:before{content:\"\\F0D6\"}.fa-money-bill-alt:before{content:\"\\F3D1\"}.fa-money-bill-wave:before{content:\"\\F53A\"}.fa-money-bill-wave-alt:before{content:\"\\F53B\"}.fa-money-check:before{content:\"\\F53C\"}.fa-money-check-alt:before{content:\"\\F53D\"}.fa-monument:before{content:\"\\F5A6\"}.fa-moon:before{content:\"\\F186\"}.fa-mortar-pestle:before{content:\"\\F5A7\"}.fa-mosque:before{content:\"\\F678\"}.fa-motorcycle:before{content:\"\\F21C\"}.fa-mountain:before{content:\"\\F6FC\"}.fa-mouse-pointer:before{content:\"\\F245\"}.fa-mug-hot:before{content:\"\\F7B6\"}.fa-music:before{content:\"\\F001\"}.fa-napster:before{content:\"\\F3D2\"}.fa-neos:before{content:\"\\F612\"}.fa-network-wired:before{content:\"\\F6FF\"}.fa-neuter:before{content:\"\\F22C\"}.fa-newspaper:before{content:\"\\F1EA\"}.fa-nimblr:before{content:\"\\F5A8\"}.fa-nintendo-switch:before{content:\"\\F418\"}.fa-node:before{content:\"\\F419\"}.fa-node-js:before{content:\"\\F3D3\"}.fa-not-equal:before{content:\"\\F53E\"}.fa-notes-medical:before{content:\"\\F481\"}.fa-npm:before{content:\"\\F3D4\"}.fa-ns8:before{content:\"\\F3D5\"}.fa-nutritionix:before{content:\"\\F3D6\"}.fa-object-group:before{content:\"\\F247\"}.fa-object-ungroup:before{content:\"\\F248\"}.fa-odnoklassniki:before{content:\"\\F263\"}.fa-odnoklassniki-square:before{content:\"\\F264\"}.fa-oil-can:before{content:\"\\F613\"}.fa-old-republic:before{content:\"\\F510\"}.fa-om:before{content:\"\\F679\"}.fa-opencart:before{content:\"\\F23D\"}.fa-openid:before{content:\"\\F19B\"}.fa-opera:before{content:\"\\F26A\"}.fa-optin-monster:before{content:\"\\F23C\"}.fa-osi:before{content:\"\\F41A\"}.fa-otter:before{content:\"\\F700\"}.fa-outdent:before{content:\"\\F03B\"}.fa-page4:before{content:\"\\F3D7\"}.fa-pagelines:before{content:\"\\F18C\"}.fa-pager:before{content:\"\\F815\"}.fa-paint-brush:before{content:\"\\F1FC\"}.fa-paint-roller:before{content:\"\\F5AA\"}.fa-palette:before{content:\"\\F53F\"}.fa-palfed:before{content:\"\\F3D8\"}.fa-pallet:before{content:\"\\F482\"}.fa-paper-plane:before{content:\"\\F1D8\"}.fa-paperclip:before{content:\"\\F0C6\"}.fa-parachute-box:before{content:\"\\F4CD\"}.fa-paragraph:before{content:\"\\F1DD\"}.fa-parking:before{content:\"\\F540\"}.fa-passport:before{content:\"\\F5AB\"}.fa-pastafarianism:before{content:\"\\F67B\"}.fa-paste:before{content:\"\\F0EA\"}.fa-patreon:before{content:\"\\F3D9\"}.fa-pause:before{content:\"\\F04C\"}.fa-pause-circle:before{content:\"\\F28B\"}.fa-paw:before{content:\"\\F1B0\"}.fa-paypal:before{content:\"\\F1ED\"}.fa-peace:before{content:\"\\F67C\"}.fa-pen:before{content:\"\\F304\"}.fa-pen-alt:before{content:\"\\F305\"}.fa-pen-fancy:before{content:\"\\F5AC\"}.fa-pen-nib:before{content:\"\\F5AD\"}.fa-pen-square:before{content:\"\\F14B\"}.fa-pencil-alt:before{content:\"\\F303\"}.fa-pencil-ruler:before{content:\"\\F5AE\"}.fa-penny-arcade:before{content:\"\\F704\"}.fa-people-carry:before{content:\"\\F4CE\"}.fa-pepper-hot:before{content:\"\\F816\"}.fa-percent:before{content:\"\\F295\"}.fa-percentage:before{content:\"\\F541\"}.fa-periscope:before{content:\"\\F3DA\"}.fa-person-booth:before{content:\"\\F756\"}.fa-phabricator:before{content:\"\\F3DB\"}.fa-phoenix-framework:before{content:\"\\F3DC\"}.fa-phoenix-squadron:before{content:\"\\F511\"}.fa-phone:before{content:\"\\F095\"}.fa-phone-slash:before{content:\"\\F3DD\"}.fa-phone-square:before{content:\"\\F098\"}.fa-phone-volume:before{content:\"\\F2A0\"}.fa-php:before{content:\"\\F457\"}.fa-pied-piper:before{content:\"\\F2AE\"}.fa-pied-piper-alt:before{content:\"\\F1A8\"}.fa-pied-piper-hat:before{content:\"\\F4E5\"}.fa-pied-piper-pp:before{content:\"\\F1A7\"}.fa-piggy-bank:before{content:\"\\F4D3\"}.fa-pills:before{content:\"\\F484\"}.fa-pinterest:before{content:\"\\F0D2\"}.fa-pinterest-p:before{content:\"\\F231\"}.fa-pinterest-square:before{content:\"\\F0D3\"}.fa-pizza-slice:before{content:\"\\F818\"}.fa-place-of-worship:before{content:\"\\F67F\"}.fa-plane:before{content:\"\\F072\"}.fa-plane-arrival:before{content:\"\\F5AF\"}.fa-plane-departure:before{content:\"\\F5B0\"}.fa-play:before{content:\"\\F04B\"}.fa-play-circle:before{content:\"\\F144\"}.fa-playstation:before{content:\"\\F3DF\"}.fa-plug:before{content:\"\\F1E6\"}.fa-plus:before{content:\"\\F067\"}.fa-plus-circle:before{content:\"\\F055\"}.fa-plus-square:before{content:\"\\F0FE\"}.fa-podcast:before{content:\"\\F2CE\"}.fa-poll:before{content:\"\\F681\"}.fa-poll-h:before{content:\"\\F682\"}.fa-poo:before{content:\"\\F2FE\"}.fa-poo-storm:before{content:\"\\F75A\"}.fa-poop:before{content:\"\\F619\"}.fa-portrait:before{content:\"\\F3E0\"}.fa-pound-sign:before{content:\"\\F154\"}.fa-power-off:before{content:\"\\F011\"}.fa-pray:before{content:\"\\F683\"}.fa-praying-hands:before{content:\"\\F684\"}.fa-prescription:before{content:\"\\F5B1\"}.fa-prescription-bottle:before{content:\"\\F485\"}.fa-prescription-bottle-alt:before{content:\"\\F486\"}.fa-print:before{content:\"\\F02F\"}.fa-procedures:before{content:\"\\F487\"}.fa-product-hunt:before{content:\"\\F288\"}.fa-project-diagram:before{content:\"\\F542\"}.fa-pushed:before{content:\"\\F3E1\"}.fa-puzzle-piece:before{content:\"\\F12E\"}.fa-python:before{content:\"\\F3E2\"}.fa-qq:before{content:\"\\F1D6\"}.fa-qrcode:before{content:\"\\F029\"}.fa-question:before{content:\"\\F128\"}.fa-question-circle:before{content:\"\\F059\"}.fa-quidditch:before{content:\"\\F458\"}.fa-quinscape:before{content:\"\\F459\"}.fa-quora:before{content:\"\\F2C4\"}.fa-quote-left:before{content:\"\\F10D\"}.fa-quote-right:before{content:\"\\F10E\"}.fa-quran:before{content:\"\\F687\"}.fa-r-project:before{content:\"\\F4F7\"}.fa-radiation:before{content:\"\\F7B9\"}.fa-radiation-alt:before{content:\"\\F7BA\"}.fa-rainbow:before{content:\"\\F75B\"}.fa-random:before{content:\"\\F074\"}.fa-raspberry-pi:before{content:\"\\F7BB\"}.fa-ravelry:before{content:\"\\F2D9\"}.fa-react:before{content:\"\\F41B\"}.fa-reacteurope:before{content:\"\\F75D\"}.fa-readme:before{content:\"\\F4D5\"}.fa-rebel:before{content:\"\\F1D0\"}.fa-receipt:before{content:\"\\F543\"}.fa-recycle:before{content:\"\\F1B8\"}.fa-red-river:before{content:\"\\F3E3\"}.fa-reddit:before{content:\"\\F1A1\"}.fa-reddit-alien:before{content:\"\\F281\"}.fa-reddit-square:before{content:\"\\F1A2\"}.fa-redhat:before{content:\"\\F7BC\"}.fa-redo:before{content:\"\\F01E\"}.fa-redo-alt:before{content:\"\\F2F9\"}.fa-registered:before{content:\"\\F25D\"}.fa-renren:before{content:\"\\F18B\"}.fa-reply:before{content:\"\\F3E5\"}.fa-reply-all:before{content:\"\\F122\"}.fa-replyd:before{content:\"\\F3E6\"}.fa-republican:before{content:\"\\F75E\"}.fa-researchgate:before{content:\"\\F4F8\"}.fa-resolving:before{content:\"\\F3E7\"}.fa-restroom:before{content:\"\\F7BD\"}.fa-retweet:before{content:\"\\F079\"}.fa-rev:before{content:\"\\F5B2\"}.fa-ribbon:before{content:\"\\F4D6\"}.fa-ring:before{content:\"\\F70B\"}.fa-road:before{content:\"\\F018\"}.fa-robot:before{content:\"\\F544\"}.fa-rocket:before{content:\"\\F135\"}.fa-rocketchat:before{content:\"\\F3E8\"}.fa-rockrms:before{content:\"\\F3E9\"}.fa-route:before{content:\"\\F4D7\"}.fa-rss:before{content:\"\\F09E\"}.fa-rss-square:before{content:\"\\F143\"}.fa-ruble-sign:before{content:\"\\F158\"}.fa-ruler:before{content:\"\\F545\"}.fa-ruler-combined:before{content:\"\\F546\"}.fa-ruler-horizontal:before{content:\"\\F547\"}.fa-ruler-vertical:before{content:\"\\F548\"}.fa-running:before{content:\"\\F70C\"}.fa-rupee-sign:before{content:\"\\F156\"}.fa-sad-cry:before{content:\"\\F5B3\"}.fa-sad-tear:before{content:\"\\F5B4\"}.fa-safari:before{content:\"\\F267\"}.fa-salesforce:before{content:\"\\F83B\"}.fa-sass:before{content:\"\\F41E\"}.fa-satellite:before{content:\"\\F7BF\"}.fa-satellite-dish:before{content:\"\\F7C0\"}.fa-save:before{content:\"\\F0C7\"}.fa-schlix:before{content:\"\\F3EA\"}.fa-school:before{content:\"\\F549\"}.fa-screwdriver:before{content:\"\\F54A\"}.fa-scribd:before{content:\"\\F28A\"}.fa-scroll:before{content:\"\\F70E\"}.fa-sd-card:before{content:\"\\F7C2\"}.fa-search:before{content:\"\\F002\"}.fa-search-dollar:before{content:\"\\F688\"}.fa-search-location:before{content:\"\\F689\"}.fa-search-minus:before{content:\"\\F010\"}.fa-search-plus:before{content:\"\\F00E\"}.fa-searchengin:before{content:\"\\F3EB\"}.fa-seedling:before{content:\"\\F4D8\"}.fa-sellcast:before{content:\"\\F2DA\"}.fa-sellsy:before{content:\"\\F213\"}.fa-server:before{content:\"\\F233\"}.fa-servicestack:before{content:\"\\F3EC\"}.fa-shapes:before{content:\"\\F61F\"}.fa-share:before{content:\"\\F064\"}.fa-share-alt:before{content:\"\\F1E0\"}.fa-share-alt-square:before{content:\"\\F1E1\"}.fa-share-square:before{content:\"\\F14D\"}.fa-shekel-sign:before{content:\"\\F20B\"}.fa-shield-alt:before{content:\"\\F3ED\"}.fa-ship:before{content:\"\\F21A\"}.fa-shipping-fast:before{content:\"\\F48B\"}.fa-shirtsinbulk:before{content:\"\\F214\"}.fa-shoe-prints:before{content:\"\\F54B\"}.fa-shopping-bag:before{content:\"\\F290\"}.fa-shopping-basket:before{content:\"\\F291\"}.fa-shopping-cart:before{content:\"\\F07A\"}.fa-shopware:before{content:\"\\F5B5\"}.fa-shower:before{content:\"\\F2CC\"}.fa-shuttle-van:before{content:\"\\F5B6\"}.fa-sign:before{content:\"\\F4D9\"}.fa-sign-in-alt:before{content:\"\\F2F6\"}.fa-sign-language:before{content:\"\\F2A7\"}.fa-sign-out-alt:before{content:\"\\F2F5\"}.fa-signal:before{content:\"\\F012\"}.fa-signature:before{content:\"\\F5B7\"}.fa-sim-card:before{content:\"\\F7C4\"}.fa-simplybuilt:before{content:\"\\F215\"}.fa-sistrix:before{content:\"\\F3EE\"}.fa-sitemap:before{content:\"\\F0E8\"}.fa-sith:before{content:\"\\F512\"}.fa-skating:before{content:\"\\F7C5\"}.fa-sketch:before{content:\"\\F7C6\"}.fa-skiing:before{content:\"\\F7C9\"}.fa-skiing-nordic:before{content:\"\\F7CA\"}.fa-skull:before{content:\"\\F54C\"}.fa-skull-crossbones:before{content:\"\\F714\"}.fa-skyatlas:before{content:\"\\F216\"}.fa-skype:before{content:\"\\F17E\"}.fa-slack:before{content:\"\\F198\"}.fa-slack-hash:before{content:\"\\F3EF\"}.fa-slash:before{content:\"\\F715\"}.fa-sleigh:before{content:\"\\F7CC\"}.fa-sliders-h:before{content:\"\\F1DE\"}.fa-slideshare:before{content:\"\\F1E7\"}.fa-smile:before{content:\"\\F118\"}.fa-smile-beam:before{content:\"\\F5B8\"}.fa-smile-wink:before{content:\"\\F4DA\"}.fa-smog:before{content:\"\\F75F\"}.fa-smoking:before{content:\"\\F48D\"}.fa-smoking-ban:before{content:\"\\F54D\"}.fa-sms:before{content:\"\\F7CD\"}.fa-snapchat:before{content:\"\\F2AB\"}.fa-snapchat-ghost:before{content:\"\\F2AC\"}.fa-snapchat-square:before{content:\"\\F2AD\"}.fa-snowboarding:before{content:\"\\F7CE\"}.fa-snowflake:before{content:\"\\F2DC\"}.fa-snowman:before{content:\"\\F7D0\"}.fa-snowplow:before{content:\"\\F7D2\"}.fa-socks:before{content:\"\\F696\"}.fa-solar-panel:before{content:\"\\F5BA\"}.fa-sort:before{content:\"\\F0DC\"}.fa-sort-alpha-down:before{content:\"\\F15D\"}.fa-sort-alpha-up:before{content:\"\\F15E\"}.fa-sort-amount-down:before{content:\"\\F160\"}.fa-sort-amount-up:before{content:\"\\F161\"}.fa-sort-down:before{content:\"\\F0DD\"}.fa-sort-numeric-down:before{content:\"\\F162\"}.fa-sort-numeric-up:before{content:\"\\F163\"}.fa-sort-up:before{content:\"\\F0DE\"}.fa-soundcloud:before{content:\"\\F1BE\"}.fa-sourcetree:before{content:\"\\F7D3\"}.fa-spa:before{content:\"\\F5BB\"}.fa-space-shuttle:before{content:\"\\F197\"}.fa-speakap:before{content:\"\\F3F3\"}.fa-speaker-deck:before{content:\"\\F83C\"}.fa-spider:before{content:\"\\F717\"}.fa-spinner:before{content:\"\\F110\"}.fa-splotch:before{content:\"\\F5BC\"}.fa-spotify:before{content:\"\\F1BC\"}.fa-spray-can:before{content:\"\\F5BD\"}.fa-square:before{content:\"\\F0C8\"}.fa-square-full:before{content:\"\\F45C\"}.fa-square-root-alt:before{content:\"\\F698\"}.fa-squarespace:before{content:\"\\F5BE\"}.fa-stack-exchange:before{content:\"\\F18D\"}.fa-stack-overflow:before{content:\"\\F16C\"}.fa-stackpath:before{content:\"\\F842\"}.fa-stamp:before{content:\"\\F5BF\"}.fa-star:before{content:\"\\F005\"}.fa-star-and-crescent:before{content:\"\\F699\"}.fa-star-half:before{content:\"\\F089\"}.fa-star-half-alt:before{content:\"\\F5C0\"}.fa-star-of-david:before{content:\"\\F69A\"}.fa-star-of-life:before{content:\"\\F621\"}.fa-staylinked:before{content:\"\\F3F5\"}.fa-steam:before{content:\"\\F1B6\"}.fa-steam-square:before{content:\"\\F1B7\"}.fa-steam-symbol:before{content:\"\\F3F6\"}.fa-step-backward:before{content:\"\\F048\"}.fa-step-forward:before{content:\"\\F051\"}.fa-stethoscope:before{content:\"\\F0F1\"}.fa-sticker-mule:before{content:\"\\F3F7\"}.fa-sticky-note:before{content:\"\\F249\"}.fa-stop:before{content:\"\\F04D\"}.fa-stop-circle:before{content:\"\\F28D\"}.fa-stopwatch:before{content:\"\\F2F2\"}.fa-store:before{content:\"\\F54E\"}.fa-store-alt:before{content:\"\\F54F\"}.fa-strava:before{content:\"\\F428\"}.fa-stream:before{content:\"\\F550\"}.fa-street-view:before{content:\"\\F21D\"}.fa-strikethrough:before{content:\"\\F0CC\"}.fa-stripe:before{content:\"\\F429\"}.fa-stripe-s:before{content:\"\\F42A\"}.fa-stroopwafel:before{content:\"\\F551\"}.fa-studiovinari:before{content:\"\\F3F8\"}.fa-stumbleupon:before{content:\"\\F1A4\"}.fa-stumbleupon-circle:before{content:\"\\F1A3\"}.fa-subscript:before{content:\"\\F12C\"}.fa-subway:before{content:\"\\F239\"}.fa-suitcase:before{content:\"\\F0F2\"}.fa-suitcase-rolling:before{content:\"\\F5C1\"}.fa-sun:before{content:\"\\F185\"}.fa-superpowers:before{content:\"\\F2DD\"}.fa-superscript:before{content:\"\\F12B\"}.fa-supple:before{content:\"\\F3F9\"}.fa-surprise:before{content:\"\\F5C2\"}.fa-suse:before{content:\"\\F7D6\"}.fa-swatchbook:before{content:\"\\F5C3\"}.fa-swimmer:before{content:\"\\F5C4\"}.fa-swimming-pool:before{content:\"\\F5C5\"}.fa-symfony:before{content:\"\\F83D\"}.fa-synagogue:before{content:\"\\F69B\"}.fa-sync:before{content:\"\\F021\"}.fa-sync-alt:before{content:\"\\F2F1\"}.fa-syringe:before{content:\"\\F48E\"}.fa-table:before{content:\"\\F0CE\"}.fa-table-tennis:before{content:\"\\F45D\"}.fa-tablet:before{content:\"\\F10A\"}.fa-tablet-alt:before{content:\"\\F3FA\"}.fa-tablets:before{content:\"\\F490\"}.fa-tachometer-alt:before{content:\"\\F3FD\"}.fa-tag:before{content:\"\\F02B\"}.fa-tags:before{content:\"\\F02C\"}.fa-tape:before{content:\"\\F4DB\"}.fa-tasks:before{content:\"\\F0AE\"}.fa-taxi:before{content:\"\\F1BA\"}.fa-teamspeak:before{content:\"\\F4F9\"}.fa-teeth:before{content:\"\\F62E\"}.fa-teeth-open:before{content:\"\\F62F\"}.fa-telegram:before{content:\"\\F2C6\"}.fa-telegram-plane:before{content:\"\\F3FE\"}.fa-temperature-high:before{content:\"\\F769\"}.fa-temperature-low:before{content:\"\\F76B\"}.fa-tencent-weibo:before{content:\"\\F1D5\"}.fa-tenge:before{content:\"\\F7D7\"}.fa-terminal:before{content:\"\\F120\"}.fa-text-height:before{content:\"\\F034\"}.fa-text-width:before{content:\"\\F035\"}.fa-th:before{content:\"\\F00A\"}.fa-th-large:before{content:\"\\F009\"}.fa-th-list:before{content:\"\\F00B\"}.fa-the-red-yeti:before{content:\"\\F69D\"}.fa-theater-masks:before{content:\"\\F630\"}.fa-themeco:before{content:\"\\F5C6\"}.fa-themeisle:before{content:\"\\F2B2\"}.fa-thermometer:before{content:\"\\F491\"}.fa-thermometer-empty:before{content:\"\\F2CB\"}.fa-thermometer-full:before{content:\"\\F2C7\"}.fa-thermometer-half:before{content:\"\\F2C9\"}.fa-thermometer-quarter:before{content:\"\\F2CA\"}.fa-thermometer-three-quarters:before{content:\"\\F2C8\"}.fa-think-peaks:before{content:\"\\F731\"}.fa-thumbs-down:before{content:\"\\F165\"}.fa-thumbs-up:before{content:\"\\F164\"}.fa-thumbtack:before{content:\"\\F08D\"}.fa-ticket-alt:before{content:\"\\F3FF\"}.fa-times:before{content:\"\\F00D\"}.fa-times-circle:before{content:\"\\F057\"}.fa-tint:before{content:\"\\F043\"}.fa-tint-slash:before{content:\"\\F5C7\"}.fa-tired:before{content:\"\\F5C8\"}.fa-toggle-off:before{content:\"\\F204\"}.fa-toggle-on:before{content:\"\\F205\"}.fa-toilet:before{content:\"\\F7D8\"}.fa-toilet-paper:before{content:\"\\F71E\"}.fa-toolbox:before{content:\"\\F552\"}.fa-tools:before{content:\"\\F7D9\"}.fa-tooth:before{content:\"\\F5C9\"}.fa-torah:before{content:\"\\F6A0\"}.fa-torii-gate:before{content:\"\\F6A1\"}.fa-tractor:before{content:\"\\F722\"}.fa-trade-federation:before{content:\"\\F513\"}.fa-trademark:before{content:\"\\F25C\"}.fa-traffic-light:before{content:\"\\F637\"}.fa-train:before{content:\"\\F238\"}.fa-tram:before{content:\"\\F7DA\"}.fa-transgender:before{content:\"\\F224\"}.fa-transgender-alt:before{content:\"\\F225\"}.fa-trash:before{content:\"\\F1F8\"}.fa-trash-alt:before{content:\"\\F2ED\"}.fa-trash-restore:before{content:\"\\F829\"}.fa-trash-restore-alt:before{content:\"\\F82A\"}.fa-tree:before{content:\"\\F1BB\"}.fa-trello:before{content:\"\\F181\"}.fa-tripadvisor:before{content:\"\\F262\"}.fa-trophy:before{content:\"\\F091\"}.fa-truck:before{content:\"\\F0D1\"}.fa-truck-loading:before{content:\"\\F4DE\"}.fa-truck-monster:before{content:\"\\F63B\"}.fa-truck-moving:before{content:\"\\F4DF\"}.fa-truck-pickup:before{content:\"\\F63C\"}.fa-tshirt:before{content:\"\\F553\"}.fa-tty:before{content:\"\\F1E4\"}.fa-tumblr:before{content:\"\\F173\"}.fa-tumblr-square:before{content:\"\\F174\"}.fa-tv:before{content:\"\\F26C\"}.fa-twitch:before{content:\"\\F1E8\"}.fa-twitter:before{content:\"\\F099\"}.fa-twitter-square:before{content:\"\\F081\"}.fa-typo3:before{content:\"\\F42B\"}.fa-uber:before{content:\"\\F402\"}.fa-ubuntu:before{content:\"\\F7DF\"}.fa-uikit:before{content:\"\\F403\"}.fa-umbrella:before{content:\"\\F0E9\"}.fa-umbrella-beach:before{content:\"\\F5CA\"}.fa-underline:before{content:\"\\F0CD\"}.fa-undo:before{content:\"\\F0E2\"}.fa-undo-alt:before{content:\"\\F2EA\"}.fa-uniregistry:before{content:\"\\F404\"}.fa-universal-access:before{content:\"\\F29A\"}.fa-university:before{content:\"\\F19C\"}.fa-unlink:before{content:\"\\F127\"}.fa-unlock:before{content:\"\\F09C\"}.fa-unlock-alt:before{content:\"\\F13E\"}.fa-untappd:before{content:\"\\F405\"}.fa-upload:before{content:\"\\F093\"}.fa-ups:before{content:\"\\F7E0\"}.fa-usb:before{content:\"\\F287\"}.fa-user:before{content:\"\\F007\"}.fa-user-alt:before{content:\"\\F406\"}.fa-user-alt-slash:before{content:\"\\F4FA\"}.fa-user-astronaut:before{content:\"\\F4FB\"}.fa-user-check:before{content:\"\\F4FC\"}.fa-user-circle:before{content:\"\\F2BD\"}.fa-user-clock:before{content:\"\\F4FD\"}.fa-user-cog:before{content:\"\\F4FE\"}.fa-user-edit:before{content:\"\\F4FF\"}.fa-user-friends:before{content:\"\\F500\"}.fa-user-graduate:before{content:\"\\F501\"}.fa-user-injured:before{content:\"\\F728\"}.fa-user-lock:before{content:\"\\F502\"}.fa-user-md:before{content:\"\\F0F0\"}.fa-user-minus:before{content:\"\\F503\"}.fa-user-ninja:before{content:\"\\F504\"}.fa-user-nurse:before{content:\"\\F82F\"}.fa-user-plus:before{content:\"\\F234\"}.fa-user-secret:before{content:\"\\F21B\"}.fa-user-shield:before{content:\"\\F505\"}.fa-user-slash:before{content:\"\\F506\"}.fa-user-tag:before{content:\"\\F507\"}.fa-user-tie:before{content:\"\\F508\"}.fa-user-times:before{content:\"\\F235\"}.fa-users:before{content:\"\\F0C0\"}.fa-users-cog:before{content:\"\\F509\"}.fa-usps:before{content:\"\\F7E1\"}.fa-ussunnah:before{content:\"\\F407\"}.fa-utensil-spoon:before{content:\"\\F2E5\"}.fa-utensils:before{content:\"\\F2E7\"}.fa-vaadin:before{content:\"\\F408\"}.fa-vector-square:before{content:\"\\F5CB\"}.fa-venus:before{content:\"\\F221\"}.fa-venus-double:before{content:\"\\F226\"}.fa-venus-mars:before{content:\"\\F228\"}.fa-viacoin:before{content:\"\\F237\"}.fa-viadeo:before{content:\"\\F2A9\"}.fa-viadeo-square:before{content:\"\\F2AA\"}.fa-vial:before{content:\"\\F492\"}.fa-vials:before{content:\"\\F493\"}.fa-viber:before{content:\"\\F409\"}.fa-video:before{content:\"\\F03D\"}.fa-video-slash:before{content:\"\\F4E2\"}.fa-vihara:before{content:\"\\F6A7\"}.fa-vimeo:before{content:\"\\F40A\"}.fa-vimeo-square:before{content:\"\\F194\"}.fa-vimeo-v:before{content:\"\\F27D\"}.fa-vine:before{content:\"\\F1CA\"}.fa-vk:before{content:\"\\F189\"}.fa-vnv:before{content:\"\\F40B\"}.fa-volleyball-ball:before{content:\"\\F45F\"}.fa-volume-down:before{content:\"\\F027\"}.fa-volume-mute:before{content:\"\\F6A9\"}.fa-volume-off:before{content:\"\\F026\"}.fa-volume-up:before{content:\"\\F028\"}.fa-vote-yea:before{content:\"\\F772\"}.fa-vr-cardboard:before{content:\"\\F729\"}.fa-vuejs:before{content:\"\\F41F\"}.fa-walking:before{content:\"\\F554\"}.fa-wallet:before{content:\"\\F555\"}.fa-warehouse:before{content:\"\\F494\"}.fa-water:before{content:\"\\F773\"}.fa-wave-square:before{content:\"\\F83E\"}.fa-waze:before{content:\"\\F83F\"}.fa-weebly:before{content:\"\\F5CC\"}.fa-weibo:before{content:\"\\F18A\"}.fa-weight:before{content:\"\\F496\"}.fa-weight-hanging:before{content:\"\\F5CD\"}.fa-weixin:before{content:\"\\F1D7\"}.fa-whatsapp:before{content:\"\\F232\"}.fa-whatsapp-square:before{content:\"\\F40C\"}.fa-wheelchair:before{content:\"\\F193\"}.fa-whmcs:before{content:\"\\F40D\"}.fa-wifi:before{content:\"\\F1EB\"}.fa-wikipedia-w:before{content:\"\\F266\"}.fa-wind:before{content:\"\\F72E\"}.fa-window-close:before{content:\"\\F410\"}.fa-window-maximize:before{content:\"\\F2D0\"}.fa-window-minimize:before{content:\"\\F2D1\"}.fa-window-restore:before{content:\"\\F2D2\"}.fa-windows:before{content:\"\\F17A\"}.fa-wine-bottle:before{content:\"\\F72F\"}.fa-wine-glass:before{content:\"\\F4E3\"}.fa-wine-glass-alt:before{content:\"\\F5CE\"}.fa-wix:before{content:\"\\F5CF\"}.fa-wizards-of-the-coast:before{content:\"\\F730\"}.fa-wolf-pack-battalion:before{content:\"\\F514\"}.fa-won-sign:before{content:\"\\F159\"}.fa-wordpress:before{content:\"\\F19A\"}.fa-wordpress-simple:before{content:\"\\F411\"}.fa-wpbeginner:before{content:\"\\F297\"}.fa-wpexplorer:before{content:\"\\F2DE\"}.fa-wpforms:before{content:\"\\F298\"}.fa-wpressr:before{content:\"\\F3E4\"}.fa-wrench:before{content:\"\\F0AD\"}.fa-x-ray:before{content:\"\\F497\"}.fa-xbox:before{content:\"\\F412\"}.fa-xing:before{content:\"\\F168\"}.fa-xing-square:before{content:\"\\F169\"}.fa-y-combinator:before{content:\"\\F23B\"}.fa-yahoo:before{content:\"\\F19E\"}.fa-yammer:before{content:\"\\F840\"}.fa-yandex:before{content:\"\\F413\"}.fa-yandex-international:before{content:\"\\F414\"}.fa-yarn:before{content:\"\\F7E3\"}.fa-yelp:before{content:\"\\F1E9\"}.fa-yen-sign:before{content:\"\\F157\"}.fa-yin-yang:before{content:\"\\F6AD\"}.fa-yoast:before{content:\"\\F2B1\"}.fa-youtube:before{content:\"\\F167\"}.fa-youtube-square:before{content:\"\\F431\"}.fa-zhihu:before{content:\"\\F63F\"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\\ 5 Brands;font-style:normal;font-weight:400;font-display:auto;src:url(./fonts/fa-brands-400.8e49b728.eot);src:url(./fonts/fa-brands-400.8e49b728.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-brands-400.9f4ce3dc.woff2) format(\"woff2\"),url(./fonts/fa-brands-400.9f018d10.woff) format(\"woff\"),url(./fonts/fa-brands-400.b7d071b9.ttf) format(\"truetype\"),url(./images/fa-brands-400.38975343.svg#fontawesome) format(\"svg\")}.fab{font-family:Font Awesome\\ 5 Brands}@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:400;font-display:auto;src:url(./fonts/fa-regular-400.859001f6.eot);src:url(./fonts/fa-regular-400.859001f6.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-regular-400.7980a636.woff2) format(\"woff2\"),url(./fonts/fa-regular-400.7aaf5675.woff) format(\"woff\"),url(./fonts/fa-regular-400.f3334251.ttf) format(\"truetype\"),url(./images/fa-regular-400.da8a235b.svg#fontawesome) format(\"svg\")}.far{font-weight:400}@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:900;font-display:auto;src:url(./fonts/fa-solid-900.e2675a61.eot);src:url(./fonts/fa-solid-900.e2675a61.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-solid-900.64b3e814.woff2) format(\"woff2\"),url(./fonts/fa-solid-900.0be94a07.woff) format(\"woff\"),url(./fonts/fa-solid-900.f14c3b2f.ttf) format(\"truetype\"),url(./images/fa-solid-900.7726a281.svg#fontawesome) format(\"svg\")}.fa,.far,.fas{font-family:Font Awesome\\ 5 Free}.fa,.fas{font-weight:900}","/*!\n * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.fa.fa-glass:before{content:\"\\F000\"}.fa.fa-meetup{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-star-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-o:before{content:\"\\F005\"}.fa.fa-close:before,.fa.fa-remove:before{content:\"\\F00D\"}.fa.fa-gear:before{content:\"\\F013\"}.fa.fa-trash-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-trash-o:before{content:\"\\F2ED\"}.fa.fa-file-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-o:before{content:\"\\F15B\"}.fa.fa-clock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-clock-o:before{content:\"\\F017\"}.fa.fa-arrow-circle-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-down:before{content:\"\\F358\"}.fa.fa-arrow-circle-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-up:before{content:\"\\F35B\"}.fa.fa-play-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-play-circle-o:before{content:\"\\F144\"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:\"\\F01E\"}.fa.fa-refresh:before{content:\"\\F021\"}.fa.fa-list-alt{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-dedent:before{content:\"\\F03B\"}.fa.fa-video-camera:before{content:\"\\F03D\"}.fa.fa-picture-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-picture-o:before{content:\"\\F03E\"}.fa.fa-photo{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-photo:before{content:\"\\F03E\"}.fa.fa-image{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-image:before{content:\"\\F03E\"}.fa.fa-pencil:before{content:\"\\F303\"}.fa.fa-map-marker:before{content:\"\\F3C5\"}.fa.fa-pencil-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-pencil-square-o:before{content:\"\\F044\"}.fa.fa-share-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-share-square-o:before{content:\"\\F14D\"}.fa.fa-check-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-check-square-o:before{content:\"\\F14A\"}.fa.fa-arrows:before{content:\"\\F0B2\"}.fa.fa-times-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-circle-o:before{content:\"\\F057\"}.fa.fa-check-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-check-circle-o:before{content:\"\\F058\"}.fa.fa-mail-forward:before{content:\"\\F064\"}.fa.fa-eye,.fa.fa-eye-slash{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-warning:before{content:\"\\F071\"}.fa.fa-calendar:before{content:\"\\F073\"}.fa.fa-arrows-v:before{content:\"\\F338\"}.fa.fa-arrows-h:before{content:\"\\F337\"}.fa.fa-bar-chart{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bar-chart:before{content:\"\\F080\"}.fa.fa-bar-chart-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bar-chart-o:before{content:\"\\F080\"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-gears:before{content:\"\\F085\"}.fa.fa-thumbs-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-thumbs-o-up:before{content:\"\\F164\"}.fa.fa-thumbs-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-thumbs-o-down:before{content:\"\\F165\"}.fa.fa-heart-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-heart-o:before{content:\"\\F004\"}.fa.fa-sign-out:before{content:\"\\F2F5\"}.fa.fa-linkedin-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-linkedin-square:before{content:\"\\F08C\"}.fa.fa-thumb-tack:before{content:\"\\F08D\"}.fa.fa-external-link:before{content:\"\\F35D\"}.fa.fa-sign-in:before{content:\"\\F2F6\"}.fa.fa-github-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-lemon-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-lemon-o:before{content:\"\\F094\"}.fa.fa-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-square-o:before{content:\"\\F0C8\"}.fa.fa-bookmark-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bookmark-o:before{content:\"\\F02E\"}.fa.fa-facebook,.fa.fa-twitter{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook:before{content:\"\\F39E\"}.fa.fa-facebook-f{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook-f:before{content:\"\\F39E\"}.fa.fa-github{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-credit-card{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-feed:before{content:\"\\F09E\"}.fa.fa-hdd-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hdd-o:before{content:\"\\F0A0\"}.fa.fa-hand-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-right:before{content:\"\\F0A4\"}.fa.fa-hand-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-left:before{content:\"\\F0A5\"}.fa.fa-hand-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-up:before{content:\"\\F0A6\"}.fa.fa-hand-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-down:before{content:\"\\F0A7\"}.fa.fa-arrows-alt:before{content:\"\\F31E\"}.fa.fa-group:before{content:\"\\F0C0\"}.fa.fa-chain:before{content:\"\\F0C1\"}.fa.fa-scissors:before{content:\"\\F0C4\"}.fa.fa-files-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-files-o:before{content:\"\\F0C5\"}.fa.fa-floppy-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-floppy-o:before{content:\"\\F0C7\"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:\"\\F0C9\"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus:before{content:\"\\F0D5\"}.fa.fa-money{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-money:before{content:\"\\F3D1\"}.fa.fa-unsorted:before{content:\"\\F0DC\"}.fa.fa-sort-desc:before{content:\"\\F0DD\"}.fa.fa-sort-asc:before{content:\"\\F0DE\"}.fa.fa-linkedin{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-linkedin:before{content:\"\\F0E1\"}.fa.fa-rotate-left:before{content:\"\\F0E2\"}.fa.fa-legal:before{content:\"\\F0E3\"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:\"\\F3FD\"}.fa.fa-comment-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-comment-o:before{content:\"\\F075\"}.fa.fa-comments-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-comments-o:before{content:\"\\F086\"}.fa.fa-flash:before{content:\"\\F0E7\"}.fa.fa-clipboard,.fa.fa-paste{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-paste:before{content:\"\\F328\"}.fa.fa-lightbulb-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-lightbulb-o:before{content:\"\\F0EB\"}.fa.fa-exchange:before{content:\"\\F362\"}.fa.fa-cloud-download:before{content:\"\\F381\"}.fa.fa-cloud-upload:before{content:\"\\F382\"}.fa.fa-bell-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bell-o:before{content:\"\\F0F3\"}.fa.fa-cutlery:before{content:\"\\F2E7\"}.fa.fa-file-text-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-text-o:before{content:\"\\F15C\"}.fa.fa-building-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-building-o:before{content:\"\\F1AD\"}.fa.fa-hospital-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hospital-o:before{content:\"\\F0F8\"}.fa.fa-tablet:before{content:\"\\F3FA\"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:\"\\F3CD\"}.fa.fa-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-circle-o:before{content:\"\\F111\"}.fa.fa-mail-reply:before{content:\"\\F3E5\"}.fa.fa-github-alt{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-folder-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-folder-o:before{content:\"\\F07B\"}.fa.fa-folder-open-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-folder-open-o:before{content:\"\\F07C\"}.fa.fa-smile-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-smile-o:before{content:\"\\F118\"}.fa.fa-frown-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-frown-o:before{content:\"\\F119\"}.fa.fa-meh-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-meh-o:before{content:\"\\F11A\"}.fa.fa-keyboard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-keyboard-o:before{content:\"\\F11C\"}.fa.fa-flag-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-flag-o:before{content:\"\\F024\"}.fa.fa-mail-reply-all:before{content:\"\\F122\"}.fa.fa-star-half-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-o:before{content:\"\\F089\"}.fa.fa-star-half-empty{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-empty:before{content:\"\\F089\"}.fa.fa-star-half-full{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-full:before{content:\"\\F089\"}.fa.fa-code-fork:before{content:\"\\F126\"}.fa.fa-chain-broken:before{content:\"\\F127\"}.fa.fa-shield:before{content:\"\\F3ED\"}.fa.fa-calendar-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-o:before{content:\"\\F133\"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ticket:before{content:\"\\F3FF\"}.fa.fa-minus-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-minus-square-o:before{content:\"\\F146\"}.fa.fa-level-up:before{content:\"\\F3BF\"}.fa.fa-level-down:before{content:\"\\F3BE\"}.fa.fa-pencil-square:before{content:\"\\F14B\"}.fa.fa-external-link-square:before{content:\"\\F360\"}.fa.fa-compass{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-down:before{content:\"\\F150\"}.fa.fa-toggle-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-down:before{content:\"\\F150\"}.fa.fa-caret-square-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-up:before{content:\"\\F151\"}.fa.fa-toggle-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-up:before{content:\"\\F151\"}.fa.fa-caret-square-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-right:before{content:\"\\F152\"}.fa.fa-toggle-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-right:before{content:\"\\F152\"}.fa.fa-eur:before,.fa.fa-euro:before{content:\"\\F153\"}.fa.fa-gbp:before{content:\"\\F154\"}.fa.fa-dollar:before,.fa.fa-usd:before{content:\"\\F155\"}.fa.fa-inr:before,.fa.fa-rupee:before{content:\"\\F156\"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:\"\\F157\"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:\"\\F158\"}.fa.fa-krw:before,.fa.fa-won:before{content:\"\\F159\"}.fa.fa-bitcoin,.fa.fa-btc{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bitcoin:before{content:\"\\F15A\"}.fa.fa-file-text:before{content:\"\\F15C\"}.fa.fa-sort-alpha-asc:before{content:\"\\F15D\"}.fa.fa-sort-alpha-desc:before{content:\"\\F15E\"}.fa.fa-sort-amount-asc:before{content:\"\\F160\"}.fa.fa-sort-amount-desc:before{content:\"\\F161\"}.fa.fa-sort-numeric-asc:before{content:\"\\F162\"}.fa.fa-sort-numeric-desc:before{content:\"\\F163\"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-youtube-play:before{content:\"\\F167\"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bitbucket-square:before{content:\"\\F171\"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-long-arrow-down:before{content:\"\\F309\"}.fa.fa-long-arrow-up:before{content:\"\\F30C\"}.fa.fa-long-arrow-left:before{content:\"\\F30A\"}.fa.fa-long-arrow-right:before{content:\"\\F30B\"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-gittip:before{content:\"\\F184\"}.fa.fa-sun-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-sun-o:before{content:\"\\F185\"}.fa.fa-moon-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-moon-o:before{content:\"\\F186\"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-arrow-circle-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-right:before{content:\"\\F35A\"}.fa.fa-arrow-circle-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-left:before{content:\"\\F359\"}.fa.fa-caret-square-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-left:before{content:\"\\F191\"}.fa.fa-toggle-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-left:before{content:\"\\F191\"}.fa.fa-dot-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-dot-circle-o:before{content:\"\\F192\"}.fa.fa-vimeo-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:\"\\F195\"}.fa.fa-plus-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-plus-square-o:before{content:\"\\F0FE\"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:\"\\F19C\"}.fa.fa-mortar-board:before{content:\"\\F19D\"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-spoon:before{content:\"\\F2E5\"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-automobile:before{content:\"\\F1B9\"}.fa.fa-cab:before{content:\"\\F1BA\"}.fa.fa-envelope-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-envelope-o:before{content:\"\\F0E0\"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-file-pdf-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-pdf-o:before{content:\"\\F1C1\"}.fa.fa-file-word-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-word-o:before{content:\"\\F1C2\"}.fa.fa-file-excel-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-excel-o:before{content:\"\\F1C3\"}.fa.fa-file-powerpoint-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-powerpoint-o:before{content:\"\\F1C4\"}.fa.fa-file-image-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-image-o:before{content:\"\\F1C5\"}.fa.fa-file-photo-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-photo-o:before{content:\"\\F1C5\"}.fa.fa-file-picture-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-picture-o:before{content:\"\\F1C5\"}.fa.fa-file-archive-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-archive-o:before{content:\"\\F1C6\"}.fa.fa-file-zip-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-zip-o:before{content:\"\\F1C6\"}.fa.fa-file-audio-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-audio-o:before{content:\"\\F1C7\"}.fa.fa-file-sound-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-sound-o:before{content:\"\\F1C7\"}.fa.fa-file-video-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-video-o:before{content:\"\\F1C8\"}.fa.fa-file-movie-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-movie-o:before{content:\"\\F1C8\"}.fa.fa-file-code-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-code-o:before{content:\"\\F1C9\"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-bouy:before{content:\"\\F1CD\"}.fa.fa-life-buoy{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-buoy:before{content:\"\\F1CD\"}.fa.fa-life-saver{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-saver:before{content:\"\\F1CD\"}.fa.fa-support{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-support:before{content:\"\\F1CD\"}.fa.fa-circle-o-notch:before{content:\"\\F1CE\"}.fa.fa-ra,.fa.fa-rebel{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ra:before{content:\"\\F1D0\"}.fa.fa-resistance{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-resistance:before{content:\"\\F1D0\"}.fa.fa-empire,.fa.fa-ge{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ge:before{content:\"\\F1D1\"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-y-combinator-square:before{content:\"\\F1D4\"}.fa.fa-yc-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-yc-square:before{content:\"\\F1D4\"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-wechat:before{content:\"\\F1D7\"}.fa.fa-send:before{content:\"\\F1D8\"}.fa.fa-paper-plane-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-paper-plane-o:before{content:\"\\F1D8\"}.fa.fa-send-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-send-o:before{content:\"\\F1D8\"}.fa.fa-circle-thin{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-circle-thin:before{content:\"\\F111\"}.fa.fa-header:before{content:\"\\F1DC\"}.fa.fa-sliders:before{content:\"\\F1DE\"}.fa.fa-futbol-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-futbol-o:before{content:\"\\F1E3\"}.fa.fa-soccer-ball-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-soccer-ball-o:before{content:\"\\F1E3\"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-newspaper-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-newspaper-o:before{content:\"\\F1EA\"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bell-slash-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bell-slash-o:before{content:\"\\F1F6\"}.fa.fa-trash:before{content:\"\\F2ED\"}.fa.fa-copyright{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-eyedropper:before{content:\"\\F1FB\"}.fa.fa-area-chart:before{content:\"\\F1FE\"}.fa.fa-pie-chart:before{content:\"\\F200\"}.fa.fa-line-chart:before{content:\"\\F201\"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-cc{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-cc:before{content:\"\\F20A\"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:\"\\F20B\"}.fa.fa-meanpath{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-meanpath:before{content:\"\\F2B4\"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-diamond{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-diamond:before{content:\"\\F3A5\"}.fa.fa-intersex:before{content:\"\\F224\"}.fa.fa-facebook-official{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook-official:before{content:\"\\F09A\"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-hotel:before{content:\"\\F236\"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-yc:before{content:\"\\F23B\"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:\"\\F240\"}.fa.fa-battery-3:before{content:\"\\F241\"}.fa.fa-battery-2:before{content:\"\\F242\"}.fa.fa-battery-1:before{content:\"\\F243\"}.fa.fa-battery-0:before{content:\"\\F244\"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-sticky-note-o:before{content:\"\\F249\"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hourglass-o:before{content:\"\\F254\"}.fa.fa-hourglass-1:before{content:\"\\F251\"}.fa.fa-hourglass-2:before{content:\"\\F252\"}.fa.fa-hourglass-3:before{content:\"\\F253\"}.fa.fa-hand-rock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-rock-o:before{content:\"\\F255\"}.fa.fa-hand-grab-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-grab-o:before{content:\"\\F255\"}.fa.fa-hand-paper-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-paper-o:before{content:\"\\F256\"}.fa.fa-hand-stop-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-stop-o:before{content:\"\\F256\"}.fa.fa-hand-scissors-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-scissors-o:before{content:\"\\F257\"}.fa.fa-hand-lizard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-lizard-o:before{content:\"\\F258\"}.fa.fa-hand-spock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-spock-o:before{content:\"\\F259\"}.fa.fa-hand-pointer-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-pointer-o:before{content:\"\\F25A\"}.fa.fa-hand-peace-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-peace-o:before{content:\"\\F25B\"}.fa.fa-registered{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-television:before{content:\"\\F26C\"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-calendar-plus-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-plus-o:before{content:\"\\F271\"}.fa.fa-calendar-minus-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-minus-o:before{content:\"\\F272\"}.fa.fa-calendar-times-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-times-o:before{content:\"\\F273\"}.fa.fa-calendar-check-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-check-o:before{content:\"\\F274\"}.fa.fa-map-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-map-o:before{content:\"\\F279\"}.fa.fa-commenting:before{content:\"\\F4AD\"}.fa.fa-commenting-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-commenting-o:before{content:\"\\F4AD\"}.fa.fa-houzz,.fa.fa-vimeo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-vimeo:before{content:\"\\F27D\"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-credit-card-alt:before{content:\"\\F09D\"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-pause-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-pause-circle-o:before{content:\"\\F28B\"}.fa.fa-stop-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-stop-circle-o:before{content:\"\\F28D\"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-wheelchair-alt:before{content:\"\\F368\"}.fa.fa-question-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-question-circle-o:before{content:\"\\F059\"}.fa.fa-volume-control-phone:before{content:\"\\F2A0\"}.fa.fa-asl-interpreting:before{content:\"\\F2A3\"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:\"\\F2A4\"}.fa.fa-glide,.fa.fa-glide-g{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-signing:before{content:\"\\F2A7\"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus-official:before{content:\"\\F2B3\"}.fa.fa-google-plus-circle{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus-circle:before{content:\"\\F2B3\"}.fa.fa-fa,.fa.fa-font-awesome{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-fa:before{content:\"\\F2B4\"}.fa.fa-handshake-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-handshake-o:before{content:\"\\F2B5\"}.fa.fa-envelope-open-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-envelope-open-o:before{content:\"\\F2B6\"}.fa.fa-linode{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-address-book-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-address-book-o:before{content:\"\\F2B9\"}.fa.fa-vcard:before{content:\"\\F2BB\"}.fa.fa-address-card-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-address-card-o:before{content:\"\\F2BB\"}.fa.fa-vcard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-vcard-o:before{content:\"\\F2BB\"}.fa.fa-user-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-user-circle-o:before{content:\"\\F2BD\"}.fa.fa-user-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-user-o:before{content:\"\\F007\"}.fa.fa-id-badge{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-drivers-license:before{content:\"\\F2C2\"}.fa.fa-id-card-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-id-card-o:before{content:\"\\F2C2\"}.fa.fa-drivers-license-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-drivers-license-o:before{content:\"\\F2C2\"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:\"\\F2C7\"}.fa.fa-thermometer-3:before{content:\"\\F2C8\"}.fa.fa-thermometer-2:before{content:\"\\F2C9\"}.fa.fa-thermometer-1:before{content:\"\\F2CA\"}.fa.fa-thermometer-0:before{content:\"\\F2CB\"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:\"\\F2CD\"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-rectangle:before{content:\"\\F410\"}.fa.fa-window-close-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-window-close-o:before{content:\"\\F410\"}.fa.fa-times-rectangle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-rectangle-o:before{content:\"\\F410\"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-eercast:before{content:\"\\F2DA\"}.fa.fa-snowflake-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-snowflake-o:before{content:\"\\F2DC\"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:Font Awesome\\ 5 Brands;font-weight:400}","html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:transparent}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:\"\";display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:hsla(0,0%,100%,.3);color:#000;border:none;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:none}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}",".select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:1px solid #000;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top,#fff 50%,#eee);background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(180deg,#fff 50%,#eee);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFFFFFFF\",endColorstr=\"#FFEEEEEE\",GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top,#eee 50%,#ccc);background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(180deg,#eee 50%,#ccc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFEEEEEE\",endColorstr=\"#FFCCCCCC\",GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top,#fff,#eee 50%);background-image:-o-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(180deg,#fff 0,#eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFFFFFFF\",endColorstr=\"#FFEEEEEE\",GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top,#eee 50%,#fff);background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(180deg,#eee 50%,#fff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFEEEEEE\",endColorstr=\"#FFFFFFFF\",GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}","/*!\n * Select2 Bootstrap Theme v0.1.0-beta.10 (https://select2.github.io/select2-bootstrap-theme)\n * Copyright 2015-2017 Florian Kissling and contributors (https://github.com/select2/select2-bootstrap-theme/graphs/contributors)\n * Licensed under MIT (https://github.com/select2/select2-bootstrap-theme/blob/master/LICENSE)\n */.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px;outline:0}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#999}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#999}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#999;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#999}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:#337ab7;color:#fff}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--bootstrap .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-color:#66afe9}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 4px 4px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-color:transparent}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-right-radius:0;border-top-left-radius:0;border-top-color:transparent}.select2-container--bootstrap .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--bootstrap .select2-selection__clear:hover{color:#333}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);border-color:#66afe9;overflow-x:hidden;margin-top:-1px}.select2-container--bootstrap .select2-dropdown--above{-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175);margin-top:1px}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent;border-style:solid;border-width:4px 4px 0;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--bootstrap .select2-selection--multiple{min-height:34px;padding:0;height:auto}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:#555;background:#fff;border:1px solid #ccc;border-radius:4px;cursor:default;float:left;margin:5px 0 0 6px;padding:0 6px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 12px;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:3px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:30px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{border-width:5px 5px 0;margin-left:-10px;margin-top:-2.5px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;border-color:#66512c}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;border-color:#843534}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;border-color:#2b542c}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.select2-container--bootstrap{display:table;table-layout:fixed;position:relative;z-index:2;width:100%;margin-bottom:0}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}","*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:var(--font-family-base);font-size:.875rem;font-weight:400;line-height:1.5;color:#4c5367;text-align:left;background-color:#e3e7ed}[tabindex=\"-1\"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#5c70d6;text-decoration:none;background-color:transparent}a:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:var(--font-family-monospace);font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--text-muted);text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--text-color-dark)}.h1,h1{font-size:2.1875rem}.h2,h2{font-size:1.75rem}.h3,h3{font-size:1.53125rem}.h4,h4{font-size:1.3125rem}.h5,h5{font-size:1.09375rem}.h6,h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:\"\\2014\\A0\"}.container{max-width:540px;max-width:720px;max-width:960px;max-width:1140px}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);background-color:var(--white);background-clip:padding-box;border:1px solid #ced4da;border-radius:var(--border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:var(--text-color-dark);background-color:var(--white);border-color:#c4cbee;outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:var(--text-color-dark);background-color:var(--white)}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8125rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#4c5367;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:0}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:var(--text-muted)}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#1ea471}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(30,164,113,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#1ea471;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#1ea471;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center/8px 10px,url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1ea471}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1ea471}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1ea471}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#26cf8e;background-color:#26cf8e}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1ea471}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#cd3c63}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(205,60,99,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#cd3c63;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#cd3c63;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center/8px 10px,url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#cd3c63}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#cd3c63}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#cd3c63}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#d76583;background-color:#d76583}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#cd3c63}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}.btn{display:inline-block;font-weight:400;color:#4c5367;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:0 solid transparent;padding:4px 10px;font-size:.875rem;line-height:1.6;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4c5367;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:hover{color:#fff;background-color:#4359c8;border-color:#3951c6}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#3951c6;border-color:#374dbc}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-secondary{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:hover{color:#212529;background-color:#cdd2dd;border-color:#c5cbd8}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#212529;background-color:#c5cbd8;border-color:#bdc5d3}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-success{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:hover{color:#fff;background-color:#18835a;border-color:#167953}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#167953;border-color:#146e4b}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-info{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:hover{color:#fff;background-color:#056092;border-color:#045886}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#045886;border-color:#045079}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-warning{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:hover{color:#fff;background-color:#b66513;border-color:#ab5e12}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ab5e12;border-color:#9f5811}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-danger{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:hover{color:#fff;background-color:#b42f52;border-color:#aa2c4e}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#aa2c4e;border-color:#a02949}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#6174d1;border-color:#6174d1}.btn-outline-primary:hover{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#6174d1;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-secondary{color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:hover{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#e3e7ed;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-success{color:#1ea471;border-color:#1ea471}.btn-outline-success:hover{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#1ea471;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-info{color:#0679b7;border-color:#0679b7}.btn-outline-info:hover{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0679b7;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-warning{color:#d97817;border-color:#d97817}.btn-outline-warning:hover{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#d97817;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-danger{color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:hover{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#cd3c63;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#5c70d6;text-decoration:none}.btn-link:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}.btn-link.focus,.btn-link:focus{text-decoration:var(--link-hover-decoration);box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:7px 12px;font-size:1rem;line-height:1.5;border-radius:var(--border-radius)}.btn-group-sm>.btn,.btn-sm{padding:3px 5px;font-size:.8125rem;line-height:1.5;border-radius:var(--border-radius)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:7.5px;padding-left:7.5px}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:3.75px;padding-left:3.75px}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:9px;padding-left:9px}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.875rem;color:#4c5367;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:var(--border-width) solid var(--border-color);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--gray-900);text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#6174d1}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.8125rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);text-align:center;white-space:nowrap;background-color:var(--form-bg);border:1px solid #ced4da;border-radius:var(--border-radius)}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:var(--border-width) solid var(--border-color)}.nav-tabs .nav-item{margin-bottom:-var(--border-width)}.nav-tabs .nav-link{border:var(--border-width) solid transparent;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:transparent}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--gray-800);background-color:var(--form-bg);border-left-color:var(--border-color);border-bottom-color:transparent;border-right-color:var(--border-color);border-top-color:var(--border-color)}.nav-tabs .dropdown-menu{margin-top:-var(--border-width);border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#6174d1}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{display:inline-block;padding:.25em .4em;font-size:var(--font-size-sm);font-weight:500;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#6174d1}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#3951c6}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.badge-secondary{color:#212529;background-color:#e3e7ed}a.badge-secondary:focus,a.badge-secondary:hover{color:#212529;background-color:#c5cbd8}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.badge-success{color:#fff;background-color:#1ea471}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#167953}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.badge-info{color:#fff;background-color:#0679b7}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#045886}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.badge-warning{color:#fff;background-color:#d97817}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#ab5e12}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.badge-danger{color:#fff;background-color:#cd3c63}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#aa2c4e}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:var(--border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-right:3.8125rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#323c6d;background-color:#dfe3f6;border-color:#d3d8f2}.alert-primary hr{border-top-color:#bfc7ec}.alert-primary .alert-link{color:#22294a}.alert-secondary{color:#76787b;background-color:#f9fafb;border-color:#f7f8fa}.alert-secondary hr{border-top-color:#e7eaf0}.alert-secondary .alert-link{color:#5d5f61}.alert-success{color:#10553b;background-color:#d2ede3;border-color:#c0e5d7}.alert-success hr{border-top-color:#aedecc}.alert-success .alert-link{color:#082a1d}.alert-info{color:#033f5f;background-color:#cde4f1;border-color:#b9d9eb}.alert-info hr{border-top-color:#a5cee5}.alert-info .alert-link{color:#011e2e}.alert-warning{color:#713e0c;background-color:#f7e4d1;border-color:#f4d9be}.alert-warning hr{border-top-color:#f0cca8}.alert-warning .alert-link{color:#432507}.alert-danger{color:#6b1f33;background-color:#f5d8e0;border-color:#f1c9d3}.alert-danger hr{border-top-color:#ecb5c3}.alert-danger .alert-link{color:#431420}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:\"\"}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:var(--form-bg);background-clip:padding-box;border:1px solid var(--border-color);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:var(--black)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.6}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid var(--border-color);border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:15px 20px}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:15px 20px;border-top:1px solid var(--border-color);border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}.modal-lg,.modal-xl{max-width:900px}.modal-xl{max-width:1140px}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:\"\";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid #e3e7ee;border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:\"\";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#e3e7ee}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#e3e7ee}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:#e3e7ee}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:\"\";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#e3e7ee}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;color:var(--text-color-dark);background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#4c5367}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#6174d1!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#3951c6!important}.bg-secondary{background-color:#e3e7ed!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#c5cbd8!important}.bg-success{background-color:#1ea471!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#167953!important}.bg-info{background-color:#0679b7!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#045886!important}.bg-warning{background-color:#d97817!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ab5e12!important}.bg-danger{background-color:#cd3c63!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#aa2c4e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#6174d1!important}.border-secondary{border-color:#e3e7ed!important}.border-success{border-color:#1ea471!important}.border-info{border-color:#0679b7!important}.border-warning{border-color:#d97817!important}.border-danger{border-color:#cd3c63!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:\"\"}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:\"\"}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:\"\";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.text-monospace{font-family:var(--font-family-monospace)!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#6174d1!important}a.text-primary:focus,a.text-primary:hover{color:#3449b2!important}.text-secondary{color:#e3e7ed!important}a.text-secondary:focus,a.text-secondary:hover{color:#b6bece!important}.text-success{color:#1ea471!important}a.text-success:focus,a.text-success:hover{color:#126344!important}.text-info{color:#0679b7!important}a.text-info:focus,a.text-info:hover{color:#03486d!important}.text-warning{color:#d97817!important}a.text-warning:focus,a.text-warning:hover{color:#945210!important}.text-danger{color:#cd3c63!important}a.text-danger:focus,a.text-danger:hover{color:#962744!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#4c5367!important}.text-muted{color:var(--text-muted)!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.sf-toolbarreset{-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}body{text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:unset}.main-header{grid-area:header}.main-sidebar{grid-area:sidebar}.content-wrapper{grid-area:content-wrapper}.content{grid-area:content}#sidebar-resizer-handler{grid-area:sidebar-resizer-handler}#content-resizer-handler{grid-area:content-resizer-handler}#flash-messages{grid-area:flash-messages}.wrapper{display:grid;grid-row-gap:20px;grid-template-areas:\"header\" \"content-wrapper\";margin:20px 15px}@media (min-width:992px){.wrapper{grid-template-columns:var(--sidebar-width) auto;grid-column-gap:15px;grid-template-areas:\"header header\" \"sidebar content-wrapper\";margin-left:auto;margin-right:auto;width:calc(100% - 40px)}}body:not(.easyadmin-content-width-full) .wrapper{max-width:var(--body-max-width)}@media (min-width:992px){body.easyadmin-sidebar-width-compact .wrapper{grid-template-columns:24px auto}}.main-header{display:flex;justify-content:space-between}@media (min-width:992px){.main-header{padding-right:10px}}.main-header .navbar{display:flex}.main-header #header-logo{font-size:21px;font-weight:600;line-height:1;margin:0}.main-header #header-logo a{color:var(--text-color)}.main-header #header-logo img,.main-header #header-logo svg{max-width:100%}#navigation-toggler{background:transparent;border:0;color:var(--text-color-dark);cursor:pointer;filter:opacity(50%);font-size:17px;margin:0 5px 0 -5px;padding:0;width:24px}@media (min-width:992px){#navigation-toggler{display:none}}.main-sidebar{background:var(--body-bg);height:100vh;left:calc(-40px - var(--sidebar-width));overflow-x:hidden;overflow-y:auto;padding:15px 20px;position:absolute;top:0;transition:left .3s;z-index:1041;width:calc(40px + var(--sidebar-width))}@media (min-width:992px){.main-sidebar{height:unset;padding:0;position:static;width:var(--sidebar-width);z-index:1039}}body.easyadmin-mobile-sidebar-visible .main-sidebar{left:0}.navbar-custom-menu .user{align-items:center;color:var(--text-color-light);cursor:pointer;display:flex}.navbar-custom-menu .user-avatar{border-radius:50%;box-shadow:0 2px 5px 0 rgba(59,64,94,.1),0 1px 1px 0 rgba(0,0,0,.07);font-size:21px;max-height:21px;max-width:21px}.navbar-custom-menu .user-name{margin-left:6px}.navbar-custom-menu .user.user-is-impersonated{color:var(--color-danger)}.user-details .user-details-name{font-size:var(--font-size-base);font-weight:500;margin-bottom:0}.user-menu-wrapper .popover-body{padding:0}.user-menu-wrapper .popover-content-section{padding:12px}.user-menu-wrapper .popover-content-section+.popover-content-section{border-top:var(--border-width) var(--border-style) var(--border-color);padding-top:12px}.user-menu .user-action{display:block;font-size:var(--font-size-sm)}.user-menu .user-action+.user-action{margin-top:var(--font-size-sm)}.content-wrapper{display:grid;grid-auto-rows:max-content;grid-column-gap:0;grid-row-gap:0;grid-template-areas:\"flash-messages flash-messages flash-messages\" \"sidebar-resizer-handler content content-resizer-handler\";grid-template-columns:0 auto 0}@media (min-width:992px){.content-wrapper{grid-template-columns:10px auto 10px}}.content{background-color:var(--white);border-radius:var(--border-radius);box-shadow:var(--box-shadow-lg)}.resizer-handler{background:rgba(0,0,0,.1) 50% no-repeat url('data:image/svg+xml;utf8,');cursor:col-resize;display:none;opacity:.15;transition:opacity .7s}.resizer-handler:hover{opacity:1}@media (min-width:992px){.resizer-handler{display:block}}.resizer-handler-left{border-bottom-left-radius:var(--border-radius);border-top-left-radius:var(--border-radius)}.resizer-handler-right{border-bottom-right-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content-header{border-bottom:var(--border-width) var(--border-style) var(--border-color);display:flex;flex-direction:column;padding:15px 17px 15px 20px}.list .content-header{padding-top:12px;padding-bottom:12px}.content-header-title{align-self:center;flex:1}.content-header.has-content-help .content-header-title{align-self:flex-end}.content-header-title .title{font-size:var(--font-size-lg);line-height:24px;margin:0}.content-header .global-actions{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin-left:10px}.global-actions .btn{margin-left:15px}.batch-actions form{display:flex}.batch-actions .btn{margin-left:15px}.form-action-search .form-group{margin:0;padding:0}.form-action-search input[type=search].form-control{background-color:var(--white);background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-size:13px 13px;background-position:10px 8px;padding-left:32px;width:300px}.content-header-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-top:12px}.content-footer{background:var(--white);border-top:var(--border-width) var(--border-style) var(--border-color);padding:15px 20px}.content-body form,.content-footer{border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.content-body table{margin-bottom:0}form .content-footer{margin:20px -20px -18px}.list-pagination{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.pager .btn{display:inline-block}.pager .btn+.btn{margin-left:-2px}.pager .btn:first-child{border-top-right-radius:0;border-bottom-right-radius:0;transform:translateX(1px)}.pager .btn:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.modal-body h4{font-size:var(--font-size-lg)}.modal-footer{background:var(--white)}.boolean .label{display:inline-block;min-width:33px}body.show .form-horizontal{background:var(--form-bg)}body.show .form-horizontal .control-label{padding-top:0}body.show .form-control{border:var(--border-width) var(--border-style) var(--border-color);box-shadow:none;height:auto;min-height:30px;padding:4px 7px 5px}body.show .field-boolean .form-widget,body.show .field-float .form-widget,body.show .field-integer .form-widget{max-width:100px}body.show .field-date .form-widget,body.show .field-datetime .form-widget,body.show .field-time .form-widget{max-width:250px}body.show .field-string .form-widget{max-width:450px}body.show .field-association .form-widget,body.show .field-text .form-widget{max-width:550px}body.show .field-association ul,body.show .field-simple_array ul{margin:5px;padding-left:15px}body.show .field-text .form-widget{max-height:250px;overflow-y:auto}body.show .field-text .form-widget .form-control{min-height:60px}body.show .field-avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}@media (min-width:992px){#flash-messages{margin-left:10px;margin-right:10px}}.alert{box-shadow:var(--box-shadow-lg);margin-bottom:15px}.sidebar-menu,.sidebar-menu ul{padding-left:0}.sidebar-menu .header{color:var(--text-muted);font-size:12px;margin-top:20px;padding:7px 5px 7px 0;text-transform:uppercase}.sidebar-menu li{list-style:none}.sidebar-menu a{color:var(--text-color-dark);display:block;line-height:20px;padding:4px 5px 10px 0}.sidebar-menu .fa{color:var(--text-color-dark);filter:opacity(50%);font-size:17px;margin-right:4px;width:20px}.sidebar-menu li:not(.submenu-active).active{border-radius:var(--border-radius);font-weight:500}.sidebar-menu li:not(.submenu-active).active .fa,.sidebar-menu li:not(.submenu-active).active a{color:var(--color-primary);filter:opacity(100%)}.sidebar-menu .menu-open .treeview-icon{transform:rotate(90deg)}.treeview{position:relative}.treeview-menu{display:none;margin-bottom:12px;margin-top:-4px}.sidebar-menu .active .treeview-menu{display:block}.treeview-menu a{color:var(--text-color);font-size:var(--font-size-sm);line-height:20px;padding:3px 5px 3px 28px}.treeview-menu a .fa{color:var(--text-color);filter:opacity(50%);font-size:var(--font-size-base);margin-right:4px;width:16px}.treeview .treeview-icon{position:absolute;top:6px;right:1px;transition:transform .25s ease;width:auto}.treeview.menu-open .treeview-icon{transform:rotate(90deg)}body.easyadmin-sidebar-width-compact .main-sidebar{overflow:visible}@media (min-width:992px){body.easyadmin-sidebar-width-compact .main-sidebar{width:24px}}@media (min-width:992px){body.easyadmin-sidebar-width-compact .sidebar-menu a{padding:7px 5px 7px 0}body.easyadmin-sidebar-width-compact .sidebar-menu li .treeview-icon,body.easyadmin-sidebar-width-compact .sidebar-menu li span{display:none}body.easyadmin-sidebar-width-compact .sidebar-menu li{position:relative}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover{background:var(--body-bg);border-radius:var(--border-radius);width:var(--sidebar-width);z-index:1040}.easyadmin-sidebar-width-compact .sidebar-menu li.header{height:0;overflow:hidden;padding:0;width:0}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li:hover{width:unset}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover span{display:inline-block;left:32px;position:absolute;top:7px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu a{padding:3px 5px 3px 11px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu span{position:static}body.easyadmin-sidebar-width-compact .sidebar-menu li .fa{font-size:21px;width:24px}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li .fa{font-size:var(--font-size-base);width:16px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu{padding-top:5px;padding-bottom:5px;border-bottom-right-radius:4px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li>a>span{display:none!important}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>a>span{background:var(--body-bg);display:block!important;position:absolute;left:32px;width:calc(var(--sidebar-width) - 32px)}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu{top:32px;margin-left:0}}table.datagrid{border-spacing:0;width:100%}.datagrid thead{background:var(--form-bg)}.datagrid thead th{padding:0}.datagrid thead a,.datagrid thead span{color:var(--text-color-dark);display:block;font-weight:500;line-height:1.357;padding:8px;text-align:left;white-space:nowrap}.datagrid td:first-child,.datagrid th:first-child a,.datagrid th:first-child span{padding-left:20px}.datagrid td:last-child,.datagrid th:last-child a,.datagrid th:last-child span{padding-right:20px}.datagrid td{padding:8px}.datagrid thead .sorted a,.datagrid thead .sorted span{font-weight:700}.datagrid thead i{color:var(--text-muted);margin-left:2px}.datagrid thead .sorted i{color:var(--color-primary)}.datagrid td,.datagrid th{border-bottom:var(--border-width) var(--border-style) var(--border-color);vertical-align:middle}.datagrid tr:last-child>td{border:0}.datagrid tbody tr:hover td,.datagrid tbody tr:hover th{background:var(--form-bg)}.datagrid td.actions{text-align:right}.datagrid td.actions a{font-size:var(--font-size-sm);font-weight:500;margin-left:10px}.datagrid td.actions .fa{font-size:var(--font-size-base)}.datagrid .actions-dropdown{position:relative}.datagrid .actions-dropdown .dropdown-toggle{background:transparent!important;border:var(--border-width) solid transparent;box-shadow:none!important;padding:1px 8px 0}.datagrid .actions-dropdown .dropdown-toggle:after{display:none}.datagrid .actions-dropdown a.dropdown-item{margin:0}.datagrid .actions-dropdown a.dropdown-item i{margin-right:5px}.datagrid .actions-dropdown .dropdown-menu-right{border-top-right-radius:0;right:0;top:20px;box-shadow:var(--box-shadow-lg)}.datagrid .actions-dropdown:hover{cursor:pointer}.datagrid .actions-dropdown:hover .dropdown-toggle{background:var(--white)!important;border:var(--border-width) solid var(--border-color);border-bottom-color:var(--white);z-index:1001;position:relative;border-bottom-left-radius:0;border-bottom-right-radius:0}.datagrid .actions-dropdown:hover .dropdown-menu{display:block}.datagrid .easyadmin-thumbnail img{box-shadow:0 0 0 2px var(--white),0 0 4px 1px var(--gray-600);margin-bottom:2px;margin-top:2px;max-height:50px;max-width:100px}.datagrid td.boolean,.datagrid td.image,.datagrid th.boolean,.datagrid th.boolean a,.datagrid th.image,.datagrid th.image a{text-align:center}.datagrid td.avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}.datagrid td.country .country-flag{margin-right:2px;max-height:18px;vertical-align:text-top}.datagrid .highlight{border-radius:var(--border-radius);background:var(--highlight-bg);padding:1px}.datagrid .no-results{padding:60px 0;text-align:center}.datagrid .no-results:hover{background:transparent}#modal-filters .modal-dialog{max-width:400px}#modal-filters .modal-content{background:var(--white)}#modal-filters .modal-header{background:var(--gray-50);border-bottom-color:var(--gray-300);padding:10px 15px}#modal-filters .modal-title{color:var(--gray-700);font-size:var(--font-size-base)}#modal-filters .modal-body{border-bottom:0;padding:15px}.action-filters-button i{color:var(--text-color-light)}.action-filters-button.action-filters-applied i{color:var(--color-primary)}.action-filters-button span{font-weight:600}.action-filters-reset i{color:var(--text-color-light)}.filter-heading{align-items:center;display:flex;padding:4px 0}.filter-heading a{color:var(--link-color);cursor:pointer;flex:1;margin-left:7px}.filter-content{margin-left:15px}.filter-content .form-group,.filter-content .form-widget-compound .form-group{padding-right:5px}.filter-content .form-group:last-of-type{padding-bottom:0}.show .field-image .form-control{background:transparent;border:0;padding:0}.show .form-control .easyadmin-thumbnail img{box-shadow:0 0 0 4px var(--white),0 0 8px 2px var(--gray-600);margin:10px 7px;max-height:300px;max-width:400px}.easyadmin-thumbnail img:hover{cursor:zoom-in}.easyadmin-lightbox{display:none}.easyadmin-lightbox img{max-width:100%;width:100%}.featherlight .easyadmin-lightbox{display:block}.featherlight .easyadmin-lightbox:hover{cursor:zoom-out}.content-body .form-horizontal,.content-body form{background:var(--form-bg);padding:18px 20px}.form-group{display:flex;flex-wrap:wrap;align-items:center;padding:10px 20px}.form-group label,.form-group legend.col-form-label{align-self:self-start;color:var(--text-color);flex:30% 0 0;font-size:var(--font-size-base);font-weight:400;margin:5px 5px 0 0;text-align:right}.form-group .col-form-label{padding:0}.form-group .col-form-label.required:after,.form-group label.required:after{bottom:4px;color:var(--color-danger);content:\"\\2022\";filter:opacity(75%);position:relative;right:-2px}.form-widget{align-items:flex-start;flex:0 0 55%;flex-direction:column;padding-left:5px}.form-widget .form-help{color:var(--text-muted);display:inline-block;font-size:var(--font-size-sm);margin-bottom:0;margin-top:4px}.form-widget input.form-control,.form-widget select.form-control,.form-widget textarea.form-control{border:0;padding:3px 7px 5px;box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;max-width:350px;white-space:nowrap;word-break:keep-all;transition:box-shadow .08s ease-in,color .08s ease-in}.form-widget input.form-control:focus,.form-widget select.form-control:focus,.form-widget textarea.form-control:focus{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.form-widget textarea.form-control{height:auto;line-height:1.6;white-space:pre-wrap}.form-widget select.form-control{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);padding-left:4px;padding-right:4px}.form-widget select[multiple].form-control{height:auto}.field-checkbox .form-widget,.form-group.field-collection-action{margin-left:calc(30% + 5px);margin-bottom:0;margin-top:0}.form-group.field-collection-action{margin-left:30%}.field-checkbox .form-check{padding-left:0}.field-checkbox .form-check-label{cursor:pointer;font-size:var(--font-size-base);margin-top:0;margin-left:4px}.field-checkbox .form-check-input{margin:0;position:static}.field-date .form-widget,.field-datetime .form-widget,.field-time .form-widget{margin:0}.field-datetime .form-inline{display:flex}.datetime-widget+.datetime-widget{margin-left:10px}.datetime-widget select+select{margin-left:4px}.datetime-widget-time select{margin:0 2px}.datetime-widget-time select:first-child{margin-left:0}.datetime-widget-time select:last-child{margin-right:0}.nullable-control label,fieldset .form-group .nullable-control label{cursor:pointer;margin-top:5px}.short .form-widget{flex:0 0 20%!important}.large .form-control,.long .form-control{max-width:unset!important}.large .input.form-control{font-size:18px!important}.large textarea.form-control{height:500px;max-width:unset!important}.code input.form-control,.code textarea.form-control{font-family:monospace!important}.field-group .large .form-control,.field-group .large textarea.form-control,.field-group .long .form-control{flex:0 0 100%!important;max-width:unset!important}.field-group .large textarea.form-control{height:500px}.form-widget-compound .collection-empty{padding-top:5px}.form-widget-compound .form-group{padding:0 20px 15px 0}.form-widget-compound .form-group .form-widget{flex:0 0 100%;padding-left:0}.field-collection-item-row{display:flex;flex-direction:row}.field-collection-item-row .field-collection-item-action{flex:0 0 35px}.field-collection-item-row .field-collection-item-widget{flex:1}.field-collection-item-action .fa{font-size:21px;margin-left:4px;margin-top:4px}.field-collection-action .btn{margin-left:-5px;padding:4px 10px}.form-tabs .nav-tabs{background:var(--white);margin:-20px -20px 20px;padding-left:20px}.form-tabs .nav-tabs a,.form-tabs .nav-tabs a:hover{color:var(--gray-800);font-size:var(--font-size-sm)}.form-tabs .nav-tabs .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}.form-tabs .nav-tabs .nav-link.active{transform:translateY(1px)}.form-tabs .nav-tabs .nav-item .badge{margin-left:4px;padding:3px 6px}.form-tabs .tab-help{margin-top:-10px;margin-bottom:15px}fieldset{background:var(--fieldset-bg);border:var(--border-width) var(--border-style) var(--border-color);border-radius:var(--border-radius);margin:10px 0;padding:10px 20px 15px}fieldset>legend{border:0;font-size:var(--font-size-sm);font-weight:500;text-transform:uppercase;margin:0 0 5px -5px;padding:0 5px;width:auto}fieldset>legend .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}fieldset .form-section{padding-left:0;padding-right:0}fieldset .form-group{padding:10px 0}fieldset .form-group label,fieldset .form-group legend.col-form-label{flex:100% 0 0;margin:0 0 4px;text-align:left}fieldset .field-checkbox .form-widget,fieldset .form-group .form-widget{flex:0 0 100%;padding-left:0;padding-right:0}fieldset .field-checkbox .form-widget,fieldset .form-group.field-collection-action{margin-left:0}fieldset .form-group.field-collection-action{padding-top:0}fieldset .field-collection-action .btn{margin-left:0}fieldset .legend-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:15px;margin-top:-5px}.form-section{padding:30px 10px 20px}.form-section-empty{padding:25px 10px}.form-section h2{color:var(--gray-800);display:flex;font-size:15px;font-weight:400;margin:0 0 10px;position:relative;width:100%}.form-section h2 span{border-bottom:var(--border-width) var(--border-style) var(--border-color);flex:1;padding-bottom:7px}.form-section h2 .fa{background-color:var(--body-bg);border-radius:var(--border-radius);color:var(--text-muted);display:inline-block;font-size:var(--font-size-base);height:24px;margin-right:7px;padding:5px 3px 3px;text-align:center;width:24px}.form-section-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:0;margin-top:-4px}.form-actions{display:flex;justify-items:flex-end;flex-direction:row-reverse;padding:0}.form-actions .btn{margin-left:10px}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .form-help,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:var(--gray-800)}.has-error .form-widget input.form-control,.has-error .form-widget select.form-control,.has-error .form-widget textarea.form-control{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}form .invalid-feedback{color:var(--color-danger);font-weight:500;padding-top:6px}form .invalid-feedback .badge-danger{font-size:.6875rem;margin-right:2px;padding:3px 4px}form .invalid-feedback>.d-block+.d-block{margin-top:5px}.easyadmin-vich-image img{box-shadow:0 0 0 4px var(--white),0 0 4px 3px var(--gray-600);margin:6px 4px 12px;max-height:300px;max-width:100%}.easyadmin-vich-file-name{display:block;margin:4px 0 8px}.easyadmin-vich-file-name .fa{font-size:18px}.easyadmin-vich-file-actions>div,.easyadmin-vich-image-actions>div{float:left;margin-right:4px}.easyadmin-vich-file-actions:after,.easyadmin-vich-image-actions:after{clear:left;content:\"\";display:block}.easyadmin-vich-file-actions .field-checkbox,.easyadmin-vich-image-actions .field-checkbox{padding-top:4px}.easyadmin-vich-image-actions .form-widget{flex-basis:100%}.input-file-container{overflow:hidden;position:relative}.input-file-container [type=file]{cursor:inherit;display:block;font-size:999px;filter:opacity(0);min-height:100%;min-width:100%;opacity:0;position:absolute;right:0;text-align:right;top:0}.btn{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);cursor:pointer;text-decoration:none;white-space:nowrap}.btn:not(:disabled):not(.disabled):not(.btn-link):active,.btn:not(:disabled):not(.disabled):not(.btn-link):active:focus,.btn:not(:disabled):not(.disabled):not(.btn-link):focus,.btn:not(:disabled):not(.disabled):not(.btn-link):hover{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.1),0 3px 9px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}.btn-primary,.btn-primary:hover,.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled):focus{background-color:var(--color-primary);color:var(--text-on-primary)}.btn-secondary,.btn-secondary.disabled,.btn-secondary[disabled]{background-color:var(--white);color:var(--color-text)}.btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled):focus{background-color:var(--white);color:var(--color-text-dark)}.btn-info,.btn-info:hover,.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled):focus,.btn.btn-info{background-color:var(--color-info);color:var(--white)}.btn-success,.btn-success:hover,.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled):focus,.btn.btn-success{background-color:var(--color-success);color:var(--white)}.btn-danger,.btn-danger:hover,.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled):focus,.btn.btn-danger{background-color:var(--color-danger);color:var(--white)}.btn-warning,.btn-warning:hover,.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled):focus,.btn.btn-warning{background-color:var(--color-warning);color:var(--white)}.btn-link,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{box-shadow:none}.btn.disabled,.btn.disabled:active,.btn.disabled:active:focus,.btn.disabled:focus,.btn.disabled:hover,.btn:disabled,.btn:disabled:active,.btn:disabled:active:focus,.btn:disabled:focus,.btn:disabled:hover{box-shadow:none;cursor:not-allowed}a.btn.disabled,fieldset:disabled a.btn{pointer-events:unset}.btn>.btn-label{margin:0;cursor:inherit}.btn>.btn-label+i,.btn>i+.btn-label{margin-left:4px}.btn-group-sm>.btn,.btn-sm{padding:3px 7px}.checkbox-switch{position:relative}.checkbox-switch label{margin-bottom:0}.checkbox-switch input{display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:0;height:0%;margin:0;filter:opacity(0)}.checkbox-switch input+span{cursor:pointer;user-select:none}.checkbox-switch input+span:before{position:absolute;left:0;display:inline-block;content:\"\";height:20px;background:hsla(0,0%,39.2%,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.8);transition:background .2s ease-out}.checkbox-switch input+span:after{display:block;height:20px;left:0;position:absolute;text-align:center;top:0;transition:margin-left .1s ease-in-out}.checkbox-switch input:checked+span:before{transition:background .2s ease-in}.checkbox-switch input+span{padding-left:40px}.checkbox-switch input+span:before{border-radius:20px;width:40px}.checkbox-switch input+span:after{background:var(--white);border:2px solid transparent;border-radius:20px;content:\"\";background-clip:padding-box;width:20px}.checkbox-switch input:not(:checked)+span:after{animation:popOut .3s ease-in normal}.checkbox-switch input:checked+span:after{content:\"\";margin-left:20px;border:2px solid transparent;background-clip:padding-box;animation:popIn .3s ease-in normal}.checkbox-switch input:checked+span:before{background:var(--color-success)}.checkbox-switch input:not(checked)+span:before{background:var(--color-danger)}.checkbox-switch input+span:before{box-shadow:none}.checkbox-switch.disabled label{cursor:not-allowed}.checkbox-switch input:disabled+span:before{background:var(--gray-300);cursor:not-allowed}.select2-container--bootstrap .select2-selection{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);color:var(--text-color);max-width:350px;transition:box-shadow .08s ease-in,color .08s ease-in}.long .select2-container--bootstrap .select2-selection{max-width:unset!important}.short .select2-container--bootstrap .select2-selection{max-width:150px}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection,.select2-container--bootstrap .select2-dropdown{border:0;box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.select2-container--bootstrap .select2-dropdown{margin-top:1px}.select2-container--bootstrap .select2-dropdown--above{margin-top:-2px}.select2-container--bootstrap .select2-selection .select2-search--inline{margin:0}.select2-container--bootstrap .select2-selection--single{height:30px;padding:5px 24px 5px 7px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{margin:4px 0 0 7px}.select2-container--bootstrap .select2-results__option{margin-bottom:0}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:var(--body-bg);font-weight:500}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:var(--body-bg);color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple{min-height:30px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:var(--text-color);font-weight:500;position:relative;top:-1px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;margin:5px;padding:4px 7px;width:96%}.select2-search--inline .select2-search__field:focus{outline:0;border:0}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{height:30px}.has-error .form-widget .select2-container--bootstrap .select2-selection{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}body.error .error-message{max-width:500px;min-height:400px;padding:45px}body.error .error-message h1{color:var(--color-danger);font-size:var(--font-size-lg);font-weight:600}body.error .error-message h1 i{margin-right:4px}body.page-login{height:100vh;justify-content:center;overflow:hidden;position:absolute;width:100vw}.login-wrapper,body.page-login{align-items:center;display:flex}.login-wrapper{flex-direction:column;text-align:center;width:330px}.login-wrapper .main-header{display:block;padding-right:0}.login-wrapper .main-header #header-logo{font-size:24px;line-height:1.2}.login-wrapper .content{padding:30px 20px;width:100%}.login-wrapper .form-widget{flex:100%;padding-left:0}.login-wrapper .form-widget-with-icon{align-items:baseline;display:flex;flex-direction:row}.login-wrapper .form-widget-with-icon i{color:var(--gray-500);font-size:18px;margin-right:10px}.login-wrapper .form-widget input{font-size:var(--font-size-lg);height:38px;line-height:38px}.page-blank .content-wrapper{display:block}.page-content-with-padding .content-body{padding:18px 20px}"]} \ No newline at end of file +{"version":3,"sources":["css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./assets/css/easyadmin-theme/variables.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/@fortawesome/fontawesome-free/css/all.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/@fortawesome/fontawesome-free/css/v4-shims.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/featherlight/src/featherlight.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/select2/dist/css/select2.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/select2-bootstrap-theme/dist/select2-bootstrap.css","css ./node_modules/css-loader??ref--8-1!./node_modules/postcss-loader/src??ref--8-2!./node_modules/resolve-url-loader??ref--8-3!./node_modules/sass-loader/lib/loader.js??ref--8-4!./assets/css/app.scss"],"names":[],"mappings":"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","file":"app.css","sourcesContent":[":root{--body-max-width:1440px;--sidebar-width:200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,\"Helvetica Neue\",Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace;--font-family-base:var(--font-family-sans-serif);--font-size-base:0.875rem;--font-size-lg:1rem;--font-size-sm:0.8125rem;--body-bg:#e3e7ed;--text-color:#4c5367;--text-color-dark:#292d42;--text-color-light:#9fa9b7;--box-shadow-lg:0 7px 14px 0 rgba(59,64,94,0.1),0 3px 6px 0 rgba(0,0,0,0.07);--form-bg:#f8fafc;--fieldset-bg:#f5f7fa;--white:#fff;--gray-50:#f9fafb;--gray-100:#f0f2f4;--gray-200:#eaedf0;--gray-300:#dfe3e7;--gray-400:#ced4da;--gray-500:#adb5bd;--gray-600:#878f97;--gray-700:#484f56;--gray-800:#353b41;--gray-900:#22262b;--black:#000;--color-primary:#6174d1;--color-success:#1ea471;--color-info:#0679b7;--color-warning:#d97817;--color-danger:#cd3c63;--highlight-bg:#f8e5b9;--text-on-primary:var(--white);--text-muted:var(--gray-500);--link-color:#5c70d6;--link-hover-color:#99a6e6;--link-hover-decoration:none;--border-radius:4px;--border-width:1px;--border-style:solid;--border-color:#e3e7ee}","/*!\n * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:\"\\F26E\"}.fa-accessible-icon:before{content:\"\\F368\"}.fa-accusoft:before{content:\"\\F369\"}.fa-acquisitions-incorporated:before{content:\"\\F6AF\"}.fa-ad:before{content:\"\\F641\"}.fa-address-book:before{content:\"\\F2B9\"}.fa-address-card:before{content:\"\\F2BB\"}.fa-adjust:before{content:\"\\F042\"}.fa-adn:before{content:\"\\F170\"}.fa-adobe:before{content:\"\\F778\"}.fa-adversal:before{content:\"\\F36A\"}.fa-affiliatetheme:before{content:\"\\F36B\"}.fa-air-freshener:before{content:\"\\F5D0\"}.fa-airbnb:before{content:\"\\F834\"}.fa-algolia:before{content:\"\\F36C\"}.fa-align-center:before{content:\"\\F037\"}.fa-align-justify:before{content:\"\\F039\"}.fa-align-left:before{content:\"\\F036\"}.fa-align-right:before{content:\"\\F038\"}.fa-alipay:before{content:\"\\F642\"}.fa-allergies:before{content:\"\\F461\"}.fa-amazon:before{content:\"\\F270\"}.fa-amazon-pay:before{content:\"\\F42C\"}.fa-ambulance:before{content:\"\\F0F9\"}.fa-american-sign-language-interpreting:before{content:\"\\F2A3\"}.fa-amilia:before{content:\"\\F36D\"}.fa-anchor:before{content:\"\\F13D\"}.fa-android:before{content:\"\\F17B\"}.fa-angellist:before{content:\"\\F209\"}.fa-angle-double-down:before{content:\"\\F103\"}.fa-angle-double-left:before{content:\"\\F100\"}.fa-angle-double-right:before{content:\"\\F101\"}.fa-angle-double-up:before{content:\"\\F102\"}.fa-angle-down:before{content:\"\\F107\"}.fa-angle-left:before{content:\"\\F104\"}.fa-angle-right:before{content:\"\\F105\"}.fa-angle-up:before{content:\"\\F106\"}.fa-angry:before{content:\"\\F556\"}.fa-angrycreative:before{content:\"\\F36E\"}.fa-angular:before{content:\"\\F420\"}.fa-ankh:before{content:\"\\F644\"}.fa-app-store:before{content:\"\\F36F\"}.fa-app-store-ios:before{content:\"\\F370\"}.fa-apper:before{content:\"\\F371\"}.fa-apple:before{content:\"\\F179\"}.fa-apple-alt:before{content:\"\\F5D1\"}.fa-apple-pay:before{content:\"\\F415\"}.fa-archive:before{content:\"\\F187\"}.fa-archway:before{content:\"\\F557\"}.fa-arrow-alt-circle-down:before{content:\"\\F358\"}.fa-arrow-alt-circle-left:before{content:\"\\F359\"}.fa-arrow-alt-circle-right:before{content:\"\\F35A\"}.fa-arrow-alt-circle-up:before{content:\"\\F35B\"}.fa-arrow-circle-down:before{content:\"\\F0AB\"}.fa-arrow-circle-left:before{content:\"\\F0A8\"}.fa-arrow-circle-right:before{content:\"\\F0A9\"}.fa-arrow-circle-up:before{content:\"\\F0AA\"}.fa-arrow-down:before{content:\"\\F063\"}.fa-arrow-left:before{content:\"\\F060\"}.fa-arrow-right:before{content:\"\\F061\"}.fa-arrow-up:before{content:\"\\F062\"}.fa-arrows-alt:before{content:\"\\F0B2\"}.fa-arrows-alt-h:before{content:\"\\F337\"}.fa-arrows-alt-v:before{content:\"\\F338\"}.fa-artstation:before{content:\"\\F77A\"}.fa-assistive-listening-systems:before{content:\"\\F2A2\"}.fa-asterisk:before{content:\"\\F069\"}.fa-asymmetrik:before{content:\"\\F372\"}.fa-at:before{content:\"\\F1FA\"}.fa-atlas:before{content:\"\\F558\"}.fa-atlassian:before{content:\"\\F77B\"}.fa-atom:before{content:\"\\F5D2\"}.fa-audible:before{content:\"\\F373\"}.fa-audio-description:before{content:\"\\F29E\"}.fa-autoprefixer:before{content:\"\\F41C\"}.fa-avianex:before{content:\"\\F374\"}.fa-aviato:before{content:\"\\F421\"}.fa-award:before{content:\"\\F559\"}.fa-aws:before{content:\"\\F375\"}.fa-baby:before{content:\"\\F77C\"}.fa-baby-carriage:before{content:\"\\F77D\"}.fa-backspace:before{content:\"\\F55A\"}.fa-backward:before{content:\"\\F04A\"}.fa-bacon:before{content:\"\\F7E5\"}.fa-balance-scale:before{content:\"\\F24E\"}.fa-ban:before{content:\"\\F05E\"}.fa-band-aid:before{content:\"\\F462\"}.fa-bandcamp:before{content:\"\\F2D5\"}.fa-barcode:before{content:\"\\F02A\"}.fa-bars:before{content:\"\\F0C9\"}.fa-baseball-ball:before{content:\"\\F433\"}.fa-basketball-ball:before{content:\"\\F434\"}.fa-bath:before{content:\"\\F2CD\"}.fa-battery-empty:before{content:\"\\F244\"}.fa-battery-full:before{content:\"\\F240\"}.fa-battery-half:before{content:\"\\F242\"}.fa-battery-quarter:before{content:\"\\F243\"}.fa-battery-three-quarters:before{content:\"\\F241\"}.fa-battle-net:before{content:\"\\F835\"}.fa-bed:before{content:\"\\F236\"}.fa-beer:before{content:\"\\F0FC\"}.fa-behance:before{content:\"\\F1B4\"}.fa-behance-square:before{content:\"\\F1B5\"}.fa-bell:before{content:\"\\F0F3\"}.fa-bell-slash:before{content:\"\\F1F6\"}.fa-bezier-curve:before{content:\"\\F55B\"}.fa-bible:before{content:\"\\F647\"}.fa-bicycle:before{content:\"\\F206\"}.fa-bimobject:before{content:\"\\F378\"}.fa-binoculars:before{content:\"\\F1E5\"}.fa-biohazard:before{content:\"\\F780\"}.fa-birthday-cake:before{content:\"\\F1FD\"}.fa-bitbucket:before{content:\"\\F171\"}.fa-bitcoin:before{content:\"\\F379\"}.fa-bity:before{content:\"\\F37A\"}.fa-black-tie:before{content:\"\\F27E\"}.fa-blackberry:before{content:\"\\F37B\"}.fa-blender:before{content:\"\\F517\"}.fa-blender-phone:before{content:\"\\F6B6\"}.fa-blind:before{content:\"\\F29D\"}.fa-blog:before{content:\"\\F781\"}.fa-blogger:before{content:\"\\F37C\"}.fa-blogger-b:before{content:\"\\F37D\"}.fa-bluetooth:before{content:\"\\F293\"}.fa-bluetooth-b:before{content:\"\\F294\"}.fa-bold:before{content:\"\\F032\"}.fa-bolt:before{content:\"\\F0E7\"}.fa-bomb:before{content:\"\\F1E2\"}.fa-bone:before{content:\"\\F5D7\"}.fa-bong:before{content:\"\\F55C\"}.fa-book:before{content:\"\\F02D\"}.fa-book-dead:before{content:\"\\F6B7\"}.fa-book-medical:before{content:\"\\F7E6\"}.fa-book-open:before{content:\"\\F518\"}.fa-book-reader:before{content:\"\\F5DA\"}.fa-bookmark:before{content:\"\\F02E\"}.fa-bootstrap:before{content:\"\\F836\"}.fa-bowling-ball:before{content:\"\\F436\"}.fa-box:before{content:\"\\F466\"}.fa-box-open:before{content:\"\\F49E\"}.fa-boxes:before{content:\"\\F468\"}.fa-braille:before{content:\"\\F2A1\"}.fa-brain:before{content:\"\\F5DC\"}.fa-bread-slice:before{content:\"\\F7EC\"}.fa-briefcase:before{content:\"\\F0B1\"}.fa-briefcase-medical:before{content:\"\\F469\"}.fa-broadcast-tower:before{content:\"\\F519\"}.fa-broom:before{content:\"\\F51A\"}.fa-brush:before{content:\"\\F55D\"}.fa-btc:before{content:\"\\F15A\"}.fa-buffer:before{content:\"\\F837\"}.fa-bug:before{content:\"\\F188\"}.fa-building:before{content:\"\\F1AD\"}.fa-bullhorn:before{content:\"\\F0A1\"}.fa-bullseye:before{content:\"\\F140\"}.fa-burn:before{content:\"\\F46A\"}.fa-buromobelexperte:before{content:\"\\F37F\"}.fa-bus:before{content:\"\\F207\"}.fa-bus-alt:before{content:\"\\F55E\"}.fa-business-time:before{content:\"\\F64A\"}.fa-buysellads:before{content:\"\\F20D\"}.fa-calculator:before{content:\"\\F1EC\"}.fa-calendar:before{content:\"\\F133\"}.fa-calendar-alt:before{content:\"\\F073\"}.fa-calendar-check:before{content:\"\\F274\"}.fa-calendar-day:before{content:\"\\F783\"}.fa-calendar-minus:before{content:\"\\F272\"}.fa-calendar-plus:before{content:\"\\F271\"}.fa-calendar-times:before{content:\"\\F273\"}.fa-calendar-week:before{content:\"\\F784\"}.fa-camera:before{content:\"\\F030\"}.fa-camera-retro:before{content:\"\\F083\"}.fa-campground:before{content:\"\\F6BB\"}.fa-canadian-maple-leaf:before{content:\"\\F785\"}.fa-candy-cane:before{content:\"\\F786\"}.fa-cannabis:before{content:\"\\F55F\"}.fa-capsules:before{content:\"\\F46B\"}.fa-car:before{content:\"\\F1B9\"}.fa-car-alt:before{content:\"\\F5DE\"}.fa-car-battery:before{content:\"\\F5DF\"}.fa-car-crash:before{content:\"\\F5E1\"}.fa-car-side:before{content:\"\\F5E4\"}.fa-caret-down:before{content:\"\\F0D7\"}.fa-caret-left:before{content:\"\\F0D9\"}.fa-caret-right:before{content:\"\\F0DA\"}.fa-caret-square-down:before{content:\"\\F150\"}.fa-caret-square-left:before{content:\"\\F191\"}.fa-caret-square-right:before{content:\"\\F152\"}.fa-caret-square-up:before{content:\"\\F151\"}.fa-caret-up:before{content:\"\\F0D8\"}.fa-carrot:before{content:\"\\F787\"}.fa-cart-arrow-down:before{content:\"\\F218\"}.fa-cart-plus:before{content:\"\\F217\"}.fa-cash-register:before{content:\"\\F788\"}.fa-cat:before{content:\"\\F6BE\"}.fa-cc-amazon-pay:before{content:\"\\F42D\"}.fa-cc-amex:before{content:\"\\F1F3\"}.fa-cc-apple-pay:before{content:\"\\F416\"}.fa-cc-diners-club:before{content:\"\\F24C\"}.fa-cc-discover:before{content:\"\\F1F2\"}.fa-cc-jcb:before{content:\"\\F24B\"}.fa-cc-mastercard:before{content:\"\\F1F1\"}.fa-cc-paypal:before{content:\"\\F1F4\"}.fa-cc-stripe:before{content:\"\\F1F5\"}.fa-cc-visa:before{content:\"\\F1F0\"}.fa-centercode:before{content:\"\\F380\"}.fa-centos:before{content:\"\\F789\"}.fa-certificate:before{content:\"\\F0A3\"}.fa-chair:before{content:\"\\F6C0\"}.fa-chalkboard:before{content:\"\\F51B\"}.fa-chalkboard-teacher:before{content:\"\\F51C\"}.fa-charging-station:before{content:\"\\F5E7\"}.fa-chart-area:before{content:\"\\F1FE\"}.fa-chart-bar:before{content:\"\\F080\"}.fa-chart-line:before{content:\"\\F201\"}.fa-chart-pie:before{content:\"\\F200\"}.fa-check:before{content:\"\\F00C\"}.fa-check-circle:before{content:\"\\F058\"}.fa-check-double:before{content:\"\\F560\"}.fa-check-square:before{content:\"\\F14A\"}.fa-cheese:before{content:\"\\F7EF\"}.fa-chess:before{content:\"\\F439\"}.fa-chess-bishop:before{content:\"\\F43A\"}.fa-chess-board:before{content:\"\\F43C\"}.fa-chess-king:before{content:\"\\F43F\"}.fa-chess-knight:before{content:\"\\F441\"}.fa-chess-pawn:before{content:\"\\F443\"}.fa-chess-queen:before{content:\"\\F445\"}.fa-chess-rook:before{content:\"\\F447\"}.fa-chevron-circle-down:before{content:\"\\F13A\"}.fa-chevron-circle-left:before{content:\"\\F137\"}.fa-chevron-circle-right:before{content:\"\\F138\"}.fa-chevron-circle-up:before{content:\"\\F139\"}.fa-chevron-down:before{content:\"\\F078\"}.fa-chevron-left:before{content:\"\\F053\"}.fa-chevron-right:before{content:\"\\F054\"}.fa-chevron-up:before{content:\"\\F077\"}.fa-child:before{content:\"\\F1AE\"}.fa-chrome:before{content:\"\\F268\"}.fa-chromecast:before{content:\"\\F838\"}.fa-church:before{content:\"\\F51D\"}.fa-circle:before{content:\"\\F111\"}.fa-circle-notch:before{content:\"\\F1CE\"}.fa-city:before{content:\"\\F64F\"}.fa-clinic-medical:before{content:\"\\F7F2\"}.fa-clipboard:before{content:\"\\F328\"}.fa-clipboard-check:before{content:\"\\F46C\"}.fa-clipboard-list:before{content:\"\\F46D\"}.fa-clock:before{content:\"\\F017\"}.fa-clone:before{content:\"\\F24D\"}.fa-closed-captioning:before{content:\"\\F20A\"}.fa-cloud:before{content:\"\\F0C2\"}.fa-cloud-download-alt:before{content:\"\\F381\"}.fa-cloud-meatball:before{content:\"\\F73B\"}.fa-cloud-moon:before{content:\"\\F6C3\"}.fa-cloud-moon-rain:before{content:\"\\F73C\"}.fa-cloud-rain:before{content:\"\\F73D\"}.fa-cloud-showers-heavy:before{content:\"\\F740\"}.fa-cloud-sun:before{content:\"\\F6C4\"}.fa-cloud-sun-rain:before{content:\"\\F743\"}.fa-cloud-upload-alt:before{content:\"\\F382\"}.fa-cloudscale:before{content:\"\\F383\"}.fa-cloudsmith:before{content:\"\\F384\"}.fa-cloudversify:before{content:\"\\F385\"}.fa-cocktail:before{content:\"\\F561\"}.fa-code:before{content:\"\\F121\"}.fa-code-branch:before{content:\"\\F126\"}.fa-codepen:before{content:\"\\F1CB\"}.fa-codiepie:before{content:\"\\F284\"}.fa-coffee:before{content:\"\\F0F4\"}.fa-cog:before{content:\"\\F013\"}.fa-cogs:before{content:\"\\F085\"}.fa-coins:before{content:\"\\F51E\"}.fa-columns:before{content:\"\\F0DB\"}.fa-comment:before{content:\"\\F075\"}.fa-comment-alt:before{content:\"\\F27A\"}.fa-comment-dollar:before{content:\"\\F651\"}.fa-comment-dots:before{content:\"\\F4AD\"}.fa-comment-medical:before{content:\"\\F7F5\"}.fa-comment-slash:before{content:\"\\F4B3\"}.fa-comments:before{content:\"\\F086\"}.fa-comments-dollar:before{content:\"\\F653\"}.fa-compact-disc:before{content:\"\\F51F\"}.fa-compass:before{content:\"\\F14E\"}.fa-compress:before{content:\"\\F066\"}.fa-compress-arrows-alt:before{content:\"\\F78C\"}.fa-concierge-bell:before{content:\"\\F562\"}.fa-confluence:before{content:\"\\F78D\"}.fa-connectdevelop:before{content:\"\\F20E\"}.fa-contao:before{content:\"\\F26D\"}.fa-cookie:before{content:\"\\F563\"}.fa-cookie-bite:before{content:\"\\F564\"}.fa-copy:before{content:\"\\F0C5\"}.fa-copyright:before{content:\"\\F1F9\"}.fa-couch:before{content:\"\\F4B8\"}.fa-cpanel:before{content:\"\\F388\"}.fa-creative-commons:before{content:\"\\F25E\"}.fa-creative-commons-by:before{content:\"\\F4E7\"}.fa-creative-commons-nc:before{content:\"\\F4E8\"}.fa-creative-commons-nc-eu:before{content:\"\\F4E9\"}.fa-creative-commons-nc-jp:before{content:\"\\F4EA\"}.fa-creative-commons-nd:before{content:\"\\F4EB\"}.fa-creative-commons-pd:before{content:\"\\F4EC\"}.fa-creative-commons-pd-alt:before{content:\"\\F4ED\"}.fa-creative-commons-remix:before{content:\"\\F4EE\"}.fa-creative-commons-sa:before{content:\"\\F4EF\"}.fa-creative-commons-sampling:before{content:\"\\F4F0\"}.fa-creative-commons-sampling-plus:before{content:\"\\F4F1\"}.fa-creative-commons-share:before{content:\"\\F4F2\"}.fa-creative-commons-zero:before{content:\"\\F4F3\"}.fa-credit-card:before{content:\"\\F09D\"}.fa-critical-role:before{content:\"\\F6C9\"}.fa-crop:before{content:\"\\F125\"}.fa-crop-alt:before{content:\"\\F565\"}.fa-cross:before{content:\"\\F654\"}.fa-crosshairs:before{content:\"\\F05B\"}.fa-crow:before{content:\"\\F520\"}.fa-crown:before{content:\"\\F521\"}.fa-crutch:before{content:\"\\F7F7\"}.fa-css3:before{content:\"\\F13C\"}.fa-css3-alt:before{content:\"\\F38B\"}.fa-cube:before{content:\"\\F1B2\"}.fa-cubes:before{content:\"\\F1B3\"}.fa-cut:before{content:\"\\F0C4\"}.fa-cuttlefish:before{content:\"\\F38C\"}.fa-d-and-d:before{content:\"\\F38D\"}.fa-d-and-d-beyond:before{content:\"\\F6CA\"}.fa-dashcube:before{content:\"\\F210\"}.fa-database:before{content:\"\\F1C0\"}.fa-deaf:before{content:\"\\F2A4\"}.fa-delicious:before{content:\"\\F1A5\"}.fa-democrat:before{content:\"\\F747\"}.fa-deploydog:before{content:\"\\F38E\"}.fa-deskpro:before{content:\"\\F38F\"}.fa-desktop:before{content:\"\\F108\"}.fa-dev:before{content:\"\\F6CC\"}.fa-deviantart:before{content:\"\\F1BD\"}.fa-dharmachakra:before{content:\"\\F655\"}.fa-dhl:before{content:\"\\F790\"}.fa-diagnoses:before{content:\"\\F470\"}.fa-diaspora:before{content:\"\\F791\"}.fa-dice:before{content:\"\\F522\"}.fa-dice-d20:before{content:\"\\F6CF\"}.fa-dice-d6:before{content:\"\\F6D1\"}.fa-dice-five:before{content:\"\\F523\"}.fa-dice-four:before{content:\"\\F524\"}.fa-dice-one:before{content:\"\\F525\"}.fa-dice-six:before{content:\"\\F526\"}.fa-dice-three:before{content:\"\\F527\"}.fa-dice-two:before{content:\"\\F528\"}.fa-digg:before{content:\"\\F1A6\"}.fa-digital-ocean:before{content:\"\\F391\"}.fa-digital-tachograph:before{content:\"\\F566\"}.fa-directions:before{content:\"\\F5EB\"}.fa-discord:before{content:\"\\F392\"}.fa-discourse:before{content:\"\\F393\"}.fa-divide:before{content:\"\\F529\"}.fa-dizzy:before{content:\"\\F567\"}.fa-dna:before{content:\"\\F471\"}.fa-dochub:before{content:\"\\F394\"}.fa-docker:before{content:\"\\F395\"}.fa-dog:before{content:\"\\F6D3\"}.fa-dollar-sign:before{content:\"\\F155\"}.fa-dolly:before{content:\"\\F472\"}.fa-dolly-flatbed:before{content:\"\\F474\"}.fa-donate:before{content:\"\\F4B9\"}.fa-door-closed:before{content:\"\\F52A\"}.fa-door-open:before{content:\"\\F52B\"}.fa-dot-circle:before{content:\"\\F192\"}.fa-dove:before{content:\"\\F4BA\"}.fa-download:before{content:\"\\F019\"}.fa-draft2digital:before{content:\"\\F396\"}.fa-drafting-compass:before{content:\"\\F568\"}.fa-dragon:before{content:\"\\F6D5\"}.fa-draw-polygon:before{content:\"\\F5EE\"}.fa-dribbble:before{content:\"\\F17D\"}.fa-dribbble-square:before{content:\"\\F397\"}.fa-dropbox:before{content:\"\\F16B\"}.fa-drum:before{content:\"\\F569\"}.fa-drum-steelpan:before{content:\"\\F56A\"}.fa-drumstick-bite:before{content:\"\\F6D7\"}.fa-drupal:before{content:\"\\F1A9\"}.fa-dumbbell:before{content:\"\\F44B\"}.fa-dumpster:before{content:\"\\F793\"}.fa-dumpster-fire:before{content:\"\\F794\"}.fa-dungeon:before{content:\"\\F6D9\"}.fa-dyalog:before{content:\"\\F399\"}.fa-earlybirds:before{content:\"\\F39A\"}.fa-ebay:before{content:\"\\F4F4\"}.fa-edge:before{content:\"\\F282\"}.fa-edit:before{content:\"\\F044\"}.fa-egg:before{content:\"\\F7FB\"}.fa-eject:before{content:\"\\F052\"}.fa-elementor:before{content:\"\\F430\"}.fa-ellipsis-h:before{content:\"\\F141\"}.fa-ellipsis-v:before{content:\"\\F142\"}.fa-ello:before{content:\"\\F5F1\"}.fa-ember:before{content:\"\\F423\"}.fa-empire:before{content:\"\\F1D1\"}.fa-envelope:before{content:\"\\F0E0\"}.fa-envelope-open:before{content:\"\\F2B6\"}.fa-envelope-open-text:before{content:\"\\F658\"}.fa-envelope-square:before{content:\"\\F199\"}.fa-envira:before{content:\"\\F299\"}.fa-equals:before{content:\"\\F52C\"}.fa-eraser:before{content:\"\\F12D\"}.fa-erlang:before{content:\"\\F39D\"}.fa-ethereum:before{content:\"\\F42E\"}.fa-ethernet:before{content:\"\\F796\"}.fa-etsy:before{content:\"\\F2D7\"}.fa-euro-sign:before{content:\"\\F153\"}.fa-evernote:before{content:\"\\F839\"}.fa-exchange-alt:before{content:\"\\F362\"}.fa-exclamation:before{content:\"\\F12A\"}.fa-exclamation-circle:before{content:\"\\F06A\"}.fa-exclamation-triangle:before{content:\"\\F071\"}.fa-expand:before{content:\"\\F065\"}.fa-expand-arrows-alt:before{content:\"\\F31E\"}.fa-expeditedssl:before{content:\"\\F23E\"}.fa-external-link-alt:before{content:\"\\F35D\"}.fa-external-link-square-alt:before{content:\"\\F360\"}.fa-eye:before{content:\"\\F06E\"}.fa-eye-dropper:before{content:\"\\F1FB\"}.fa-eye-slash:before{content:\"\\F070\"}.fa-facebook:before{content:\"\\F09A\"}.fa-facebook-f:before{content:\"\\F39E\"}.fa-facebook-messenger:before{content:\"\\F39F\"}.fa-facebook-square:before{content:\"\\F082\"}.fa-fantasy-flight-games:before{content:\"\\F6DC\"}.fa-fast-backward:before{content:\"\\F049\"}.fa-fast-forward:before{content:\"\\F050\"}.fa-fax:before{content:\"\\F1AC\"}.fa-feather:before{content:\"\\F52D\"}.fa-feather-alt:before{content:\"\\F56B\"}.fa-fedex:before{content:\"\\F797\"}.fa-fedora:before{content:\"\\F798\"}.fa-female:before{content:\"\\F182\"}.fa-fighter-jet:before{content:\"\\F0FB\"}.fa-figma:before{content:\"\\F799\"}.fa-file:before{content:\"\\F15B\"}.fa-file-alt:before{content:\"\\F15C\"}.fa-file-archive:before{content:\"\\F1C6\"}.fa-file-audio:before{content:\"\\F1C7\"}.fa-file-code:before{content:\"\\F1C9\"}.fa-file-contract:before{content:\"\\F56C\"}.fa-file-csv:before{content:\"\\F6DD\"}.fa-file-download:before{content:\"\\F56D\"}.fa-file-excel:before{content:\"\\F1C3\"}.fa-file-export:before{content:\"\\F56E\"}.fa-file-image:before{content:\"\\F1C5\"}.fa-file-import:before{content:\"\\F56F\"}.fa-file-invoice:before{content:\"\\F570\"}.fa-file-invoice-dollar:before{content:\"\\F571\"}.fa-file-medical:before{content:\"\\F477\"}.fa-file-medical-alt:before{content:\"\\F478\"}.fa-file-pdf:before{content:\"\\F1C1\"}.fa-file-powerpoint:before{content:\"\\F1C4\"}.fa-file-prescription:before{content:\"\\F572\"}.fa-file-signature:before{content:\"\\F573\"}.fa-file-upload:before{content:\"\\F574\"}.fa-file-video:before{content:\"\\F1C8\"}.fa-file-word:before{content:\"\\F1C2\"}.fa-fill:before{content:\"\\F575\"}.fa-fill-drip:before{content:\"\\F576\"}.fa-film:before{content:\"\\F008\"}.fa-filter:before{content:\"\\F0B0\"}.fa-fingerprint:before{content:\"\\F577\"}.fa-fire:before{content:\"\\F06D\"}.fa-fire-alt:before{content:\"\\F7E4\"}.fa-fire-extinguisher:before{content:\"\\F134\"}.fa-firefox:before{content:\"\\F269\"}.fa-first-aid:before{content:\"\\F479\"}.fa-first-order:before{content:\"\\F2B0\"}.fa-first-order-alt:before{content:\"\\F50A\"}.fa-firstdraft:before{content:\"\\F3A1\"}.fa-fish:before{content:\"\\F578\"}.fa-fist-raised:before{content:\"\\F6DE\"}.fa-flag:before{content:\"\\F024\"}.fa-flag-checkered:before{content:\"\\F11E\"}.fa-flag-usa:before{content:\"\\F74D\"}.fa-flask:before{content:\"\\F0C3\"}.fa-flickr:before{content:\"\\F16E\"}.fa-flipboard:before{content:\"\\F44D\"}.fa-flushed:before{content:\"\\F579\"}.fa-fly:before{content:\"\\F417\"}.fa-folder:before{content:\"\\F07B\"}.fa-folder-minus:before{content:\"\\F65D\"}.fa-folder-open:before{content:\"\\F07C\"}.fa-folder-plus:before{content:\"\\F65E\"}.fa-font:before{content:\"\\F031\"}.fa-font-awesome:before{content:\"\\F2B4\"}.fa-font-awesome-alt:before{content:\"\\F35C\"}.fa-font-awesome-flag:before{content:\"\\F425\"}.fa-font-awesome-logo-full:before{content:\"\\F4E6\"}.fa-fonticons:before{content:\"\\F280\"}.fa-fonticons-fi:before{content:\"\\F3A2\"}.fa-football-ball:before{content:\"\\F44E\"}.fa-fort-awesome:before{content:\"\\F286\"}.fa-fort-awesome-alt:before{content:\"\\F3A3\"}.fa-forumbee:before{content:\"\\F211\"}.fa-forward:before{content:\"\\F04E\"}.fa-foursquare:before{content:\"\\F180\"}.fa-free-code-camp:before{content:\"\\F2C5\"}.fa-freebsd:before{content:\"\\F3A4\"}.fa-frog:before{content:\"\\F52E\"}.fa-frown:before{content:\"\\F119\"}.fa-frown-open:before{content:\"\\F57A\"}.fa-fulcrum:before{content:\"\\F50B\"}.fa-funnel-dollar:before{content:\"\\F662\"}.fa-futbol:before{content:\"\\F1E3\"}.fa-galactic-republic:before{content:\"\\F50C\"}.fa-galactic-senate:before{content:\"\\F50D\"}.fa-gamepad:before{content:\"\\F11B\"}.fa-gas-pump:before{content:\"\\F52F\"}.fa-gavel:before{content:\"\\F0E3\"}.fa-gem:before{content:\"\\F3A5\"}.fa-genderless:before{content:\"\\F22D\"}.fa-get-pocket:before{content:\"\\F265\"}.fa-gg:before{content:\"\\F260\"}.fa-gg-circle:before{content:\"\\F261\"}.fa-ghost:before{content:\"\\F6E2\"}.fa-gift:before{content:\"\\F06B\"}.fa-gifts:before{content:\"\\F79C\"}.fa-git:before{content:\"\\F1D3\"}.fa-git-alt:before{content:\"\\F841\"}.fa-git-square:before{content:\"\\F1D2\"}.fa-github:before{content:\"\\F09B\"}.fa-github-alt:before{content:\"\\F113\"}.fa-github-square:before{content:\"\\F092\"}.fa-gitkraken:before{content:\"\\F3A6\"}.fa-gitlab:before{content:\"\\F296\"}.fa-gitter:before{content:\"\\F426\"}.fa-glass-cheers:before{content:\"\\F79F\"}.fa-glass-martini:before{content:\"\\F000\"}.fa-glass-martini-alt:before{content:\"\\F57B\"}.fa-glass-whiskey:before{content:\"\\F7A0\"}.fa-glasses:before{content:\"\\F530\"}.fa-glide:before{content:\"\\F2A5\"}.fa-glide-g:before{content:\"\\F2A6\"}.fa-globe:before{content:\"\\F0AC\"}.fa-globe-africa:before{content:\"\\F57C\"}.fa-globe-americas:before{content:\"\\F57D\"}.fa-globe-asia:before{content:\"\\F57E\"}.fa-globe-europe:before{content:\"\\F7A2\"}.fa-gofore:before{content:\"\\F3A7\"}.fa-golf-ball:before{content:\"\\F450\"}.fa-goodreads:before{content:\"\\F3A8\"}.fa-goodreads-g:before{content:\"\\F3A9\"}.fa-google:before{content:\"\\F1A0\"}.fa-google-drive:before{content:\"\\F3AA\"}.fa-google-play:before{content:\"\\F3AB\"}.fa-google-plus:before{content:\"\\F2B3\"}.fa-google-plus-g:before{content:\"\\F0D5\"}.fa-google-plus-square:before{content:\"\\F0D4\"}.fa-google-wallet:before{content:\"\\F1EE\"}.fa-gopuram:before{content:\"\\F664\"}.fa-graduation-cap:before{content:\"\\F19D\"}.fa-gratipay:before{content:\"\\F184\"}.fa-grav:before{content:\"\\F2D6\"}.fa-greater-than:before{content:\"\\F531\"}.fa-greater-than-equal:before{content:\"\\F532\"}.fa-grimace:before{content:\"\\F57F\"}.fa-grin:before{content:\"\\F580\"}.fa-grin-alt:before{content:\"\\F581\"}.fa-grin-beam:before{content:\"\\F582\"}.fa-grin-beam-sweat:before{content:\"\\F583\"}.fa-grin-hearts:before{content:\"\\F584\"}.fa-grin-squint:before{content:\"\\F585\"}.fa-grin-squint-tears:before{content:\"\\F586\"}.fa-grin-stars:before{content:\"\\F587\"}.fa-grin-tears:before{content:\"\\F588\"}.fa-grin-tongue:before{content:\"\\F589\"}.fa-grin-tongue-squint:before{content:\"\\F58A\"}.fa-grin-tongue-wink:before{content:\"\\F58B\"}.fa-grin-wink:before{content:\"\\F58C\"}.fa-grip-horizontal:before{content:\"\\F58D\"}.fa-grip-lines:before{content:\"\\F7A4\"}.fa-grip-lines-vertical:before{content:\"\\F7A5\"}.fa-grip-vertical:before{content:\"\\F58E\"}.fa-gripfire:before{content:\"\\F3AC\"}.fa-grunt:before{content:\"\\F3AD\"}.fa-guitar:before{content:\"\\F7A6\"}.fa-gulp:before{content:\"\\F3AE\"}.fa-h-square:before{content:\"\\F0FD\"}.fa-hacker-news:before{content:\"\\F1D4\"}.fa-hacker-news-square:before{content:\"\\F3AF\"}.fa-hackerrank:before{content:\"\\F5F7\"}.fa-hamburger:before{content:\"\\F805\"}.fa-hammer:before{content:\"\\F6E3\"}.fa-hamsa:before{content:\"\\F665\"}.fa-hand-holding:before{content:\"\\F4BD\"}.fa-hand-holding-heart:before{content:\"\\F4BE\"}.fa-hand-holding-usd:before{content:\"\\F4C0\"}.fa-hand-lizard:before{content:\"\\F258\"}.fa-hand-middle-finger:before{content:\"\\F806\"}.fa-hand-paper:before{content:\"\\F256\"}.fa-hand-peace:before{content:\"\\F25B\"}.fa-hand-point-down:before{content:\"\\F0A7\"}.fa-hand-point-left:before{content:\"\\F0A5\"}.fa-hand-point-right:before{content:\"\\F0A4\"}.fa-hand-point-up:before{content:\"\\F0A6\"}.fa-hand-pointer:before{content:\"\\F25A\"}.fa-hand-rock:before{content:\"\\F255\"}.fa-hand-scissors:before{content:\"\\F257\"}.fa-hand-spock:before{content:\"\\F259\"}.fa-hands:before{content:\"\\F4C2\"}.fa-hands-helping:before{content:\"\\F4C4\"}.fa-handshake:before{content:\"\\F2B5\"}.fa-hanukiah:before{content:\"\\F6E6\"}.fa-hard-hat:before{content:\"\\F807\"}.fa-hashtag:before{content:\"\\F292\"}.fa-hat-wizard:before{content:\"\\F6E8\"}.fa-haykal:before{content:\"\\F666\"}.fa-hdd:before{content:\"\\F0A0\"}.fa-heading:before{content:\"\\F1DC\"}.fa-headphones:before{content:\"\\F025\"}.fa-headphones-alt:before{content:\"\\F58F\"}.fa-headset:before{content:\"\\F590\"}.fa-heart:before{content:\"\\F004\"}.fa-heart-broken:before{content:\"\\F7A9\"}.fa-heartbeat:before{content:\"\\F21E\"}.fa-helicopter:before{content:\"\\F533\"}.fa-highlighter:before{content:\"\\F591\"}.fa-hiking:before{content:\"\\F6EC\"}.fa-hippo:before{content:\"\\F6ED\"}.fa-hips:before{content:\"\\F452\"}.fa-hire-a-helper:before{content:\"\\F3B0\"}.fa-history:before{content:\"\\F1DA\"}.fa-hockey-puck:before{content:\"\\F453\"}.fa-holly-berry:before{content:\"\\F7AA\"}.fa-home:before{content:\"\\F015\"}.fa-hooli:before{content:\"\\F427\"}.fa-hornbill:before{content:\"\\F592\"}.fa-horse:before{content:\"\\F6F0\"}.fa-horse-head:before{content:\"\\F7AB\"}.fa-hospital:before{content:\"\\F0F8\"}.fa-hospital-alt:before{content:\"\\F47D\"}.fa-hospital-symbol:before{content:\"\\F47E\"}.fa-hot-tub:before{content:\"\\F593\"}.fa-hotdog:before{content:\"\\F80F\"}.fa-hotel:before{content:\"\\F594\"}.fa-hotjar:before{content:\"\\F3B1\"}.fa-hourglass:before{content:\"\\F254\"}.fa-hourglass-end:before{content:\"\\F253\"}.fa-hourglass-half:before{content:\"\\F252\"}.fa-hourglass-start:before{content:\"\\F251\"}.fa-house-damage:before{content:\"\\F6F1\"}.fa-houzz:before{content:\"\\F27C\"}.fa-hryvnia:before{content:\"\\F6F2\"}.fa-html5:before{content:\"\\F13B\"}.fa-hubspot:before{content:\"\\F3B2\"}.fa-i-cursor:before{content:\"\\F246\"}.fa-ice-cream:before{content:\"\\F810\"}.fa-icicles:before{content:\"\\F7AD\"}.fa-id-badge:before{content:\"\\F2C1\"}.fa-id-card:before{content:\"\\F2C2\"}.fa-id-card-alt:before{content:\"\\F47F\"}.fa-igloo:before{content:\"\\F7AE\"}.fa-image:before{content:\"\\F03E\"}.fa-images:before{content:\"\\F302\"}.fa-imdb:before{content:\"\\F2D8\"}.fa-inbox:before{content:\"\\F01C\"}.fa-indent:before{content:\"\\F03C\"}.fa-industry:before{content:\"\\F275\"}.fa-infinity:before{content:\"\\F534\"}.fa-info:before{content:\"\\F129\"}.fa-info-circle:before{content:\"\\F05A\"}.fa-instagram:before{content:\"\\F16D\"}.fa-intercom:before{content:\"\\F7AF\"}.fa-internet-explorer:before{content:\"\\F26B\"}.fa-invision:before{content:\"\\F7B0\"}.fa-ioxhost:before{content:\"\\F208\"}.fa-italic:before{content:\"\\F033\"}.fa-itch-io:before{content:\"\\F83A\"}.fa-itunes:before{content:\"\\F3B4\"}.fa-itunes-note:before{content:\"\\F3B5\"}.fa-java:before{content:\"\\F4E4\"}.fa-jedi:before{content:\"\\F669\"}.fa-jedi-order:before{content:\"\\F50E\"}.fa-jenkins:before{content:\"\\F3B6\"}.fa-jira:before{content:\"\\F7B1\"}.fa-joget:before{content:\"\\F3B7\"}.fa-joint:before{content:\"\\F595\"}.fa-joomla:before{content:\"\\F1AA\"}.fa-journal-whills:before{content:\"\\F66A\"}.fa-js:before{content:\"\\F3B8\"}.fa-js-square:before{content:\"\\F3B9\"}.fa-jsfiddle:before{content:\"\\F1CC\"}.fa-kaaba:before{content:\"\\F66B\"}.fa-kaggle:before{content:\"\\F5FA\"}.fa-key:before{content:\"\\F084\"}.fa-keybase:before{content:\"\\F4F5\"}.fa-keyboard:before{content:\"\\F11C\"}.fa-keycdn:before{content:\"\\F3BA\"}.fa-khanda:before{content:\"\\F66D\"}.fa-kickstarter:before{content:\"\\F3BB\"}.fa-kickstarter-k:before{content:\"\\F3BC\"}.fa-kiss:before{content:\"\\F596\"}.fa-kiss-beam:before{content:\"\\F597\"}.fa-kiss-wink-heart:before{content:\"\\F598\"}.fa-kiwi-bird:before{content:\"\\F535\"}.fa-korvue:before{content:\"\\F42F\"}.fa-landmark:before{content:\"\\F66F\"}.fa-language:before{content:\"\\F1AB\"}.fa-laptop:before{content:\"\\F109\"}.fa-laptop-code:before{content:\"\\F5FC\"}.fa-laptop-medical:before{content:\"\\F812\"}.fa-laravel:before{content:\"\\F3BD\"}.fa-lastfm:before{content:\"\\F202\"}.fa-lastfm-square:before{content:\"\\F203\"}.fa-laugh:before{content:\"\\F599\"}.fa-laugh-beam:before{content:\"\\F59A\"}.fa-laugh-squint:before{content:\"\\F59B\"}.fa-laugh-wink:before{content:\"\\F59C\"}.fa-layer-group:before{content:\"\\F5FD\"}.fa-leaf:before{content:\"\\F06C\"}.fa-leanpub:before{content:\"\\F212\"}.fa-lemon:before{content:\"\\F094\"}.fa-less:before{content:\"\\F41D\"}.fa-less-than:before{content:\"\\F536\"}.fa-less-than-equal:before{content:\"\\F537\"}.fa-level-down-alt:before{content:\"\\F3BE\"}.fa-level-up-alt:before{content:\"\\F3BF\"}.fa-life-ring:before{content:\"\\F1CD\"}.fa-lightbulb:before{content:\"\\F0EB\"}.fa-line:before{content:\"\\F3C0\"}.fa-link:before{content:\"\\F0C1\"}.fa-linkedin:before{content:\"\\F08C\"}.fa-linkedin-in:before{content:\"\\F0E1\"}.fa-linode:before{content:\"\\F2B8\"}.fa-linux:before{content:\"\\F17C\"}.fa-lira-sign:before{content:\"\\F195\"}.fa-list:before{content:\"\\F03A\"}.fa-list-alt:before{content:\"\\F022\"}.fa-list-ol:before{content:\"\\F0CB\"}.fa-list-ul:before{content:\"\\F0CA\"}.fa-location-arrow:before{content:\"\\F124\"}.fa-lock:before{content:\"\\F023\"}.fa-lock-open:before{content:\"\\F3C1\"}.fa-long-arrow-alt-down:before{content:\"\\F309\"}.fa-long-arrow-alt-left:before{content:\"\\F30A\"}.fa-long-arrow-alt-right:before{content:\"\\F30B\"}.fa-long-arrow-alt-up:before{content:\"\\F30C\"}.fa-low-vision:before{content:\"\\F2A8\"}.fa-luggage-cart:before{content:\"\\F59D\"}.fa-lyft:before{content:\"\\F3C3\"}.fa-magento:before{content:\"\\F3C4\"}.fa-magic:before{content:\"\\F0D0\"}.fa-magnet:before{content:\"\\F076\"}.fa-mail-bulk:before{content:\"\\F674\"}.fa-mailchimp:before{content:\"\\F59E\"}.fa-male:before{content:\"\\F183\"}.fa-mandalorian:before{content:\"\\F50F\"}.fa-map:before{content:\"\\F279\"}.fa-map-marked:before{content:\"\\F59F\"}.fa-map-marked-alt:before{content:\"\\F5A0\"}.fa-map-marker:before{content:\"\\F041\"}.fa-map-marker-alt:before{content:\"\\F3C5\"}.fa-map-pin:before{content:\"\\F276\"}.fa-map-signs:before{content:\"\\F277\"}.fa-markdown:before{content:\"\\F60F\"}.fa-marker:before{content:\"\\F5A1\"}.fa-mars:before{content:\"\\F222\"}.fa-mars-double:before{content:\"\\F227\"}.fa-mars-stroke:before{content:\"\\F229\"}.fa-mars-stroke-h:before{content:\"\\F22B\"}.fa-mars-stroke-v:before{content:\"\\F22A\"}.fa-mask:before{content:\"\\F6FA\"}.fa-mastodon:before{content:\"\\F4F6\"}.fa-maxcdn:before{content:\"\\F136\"}.fa-medal:before{content:\"\\F5A2\"}.fa-medapps:before{content:\"\\F3C6\"}.fa-medium:before{content:\"\\F23A\"}.fa-medium-m:before{content:\"\\F3C7\"}.fa-medkit:before{content:\"\\F0FA\"}.fa-medrt:before{content:\"\\F3C8\"}.fa-meetup:before{content:\"\\F2E0\"}.fa-megaport:before{content:\"\\F5A3\"}.fa-meh:before{content:\"\\F11A\"}.fa-meh-blank:before{content:\"\\F5A4\"}.fa-meh-rolling-eyes:before{content:\"\\F5A5\"}.fa-memory:before{content:\"\\F538\"}.fa-mendeley:before{content:\"\\F7B3\"}.fa-menorah:before{content:\"\\F676\"}.fa-mercury:before{content:\"\\F223\"}.fa-meteor:before{content:\"\\F753\"}.fa-microchip:before{content:\"\\F2DB\"}.fa-microphone:before{content:\"\\F130\"}.fa-microphone-alt:before{content:\"\\F3C9\"}.fa-microphone-alt-slash:before{content:\"\\F539\"}.fa-microphone-slash:before{content:\"\\F131\"}.fa-microscope:before{content:\"\\F610\"}.fa-microsoft:before{content:\"\\F3CA\"}.fa-minus:before{content:\"\\F068\"}.fa-minus-circle:before{content:\"\\F056\"}.fa-minus-square:before{content:\"\\F146\"}.fa-mitten:before{content:\"\\F7B5\"}.fa-mix:before{content:\"\\F3CB\"}.fa-mixcloud:before{content:\"\\F289\"}.fa-mizuni:before{content:\"\\F3CC\"}.fa-mobile:before{content:\"\\F10B\"}.fa-mobile-alt:before{content:\"\\F3CD\"}.fa-modx:before{content:\"\\F285\"}.fa-monero:before{content:\"\\F3D0\"}.fa-money-bill:before{content:\"\\F0D6\"}.fa-money-bill-alt:before{content:\"\\F3D1\"}.fa-money-bill-wave:before{content:\"\\F53A\"}.fa-money-bill-wave-alt:before{content:\"\\F53B\"}.fa-money-check:before{content:\"\\F53C\"}.fa-money-check-alt:before{content:\"\\F53D\"}.fa-monument:before{content:\"\\F5A6\"}.fa-moon:before{content:\"\\F186\"}.fa-mortar-pestle:before{content:\"\\F5A7\"}.fa-mosque:before{content:\"\\F678\"}.fa-motorcycle:before{content:\"\\F21C\"}.fa-mountain:before{content:\"\\F6FC\"}.fa-mouse-pointer:before{content:\"\\F245\"}.fa-mug-hot:before{content:\"\\F7B6\"}.fa-music:before{content:\"\\F001\"}.fa-napster:before{content:\"\\F3D2\"}.fa-neos:before{content:\"\\F612\"}.fa-network-wired:before{content:\"\\F6FF\"}.fa-neuter:before{content:\"\\F22C\"}.fa-newspaper:before{content:\"\\F1EA\"}.fa-nimblr:before{content:\"\\F5A8\"}.fa-nintendo-switch:before{content:\"\\F418\"}.fa-node:before{content:\"\\F419\"}.fa-node-js:before{content:\"\\F3D3\"}.fa-not-equal:before{content:\"\\F53E\"}.fa-notes-medical:before{content:\"\\F481\"}.fa-npm:before{content:\"\\F3D4\"}.fa-ns8:before{content:\"\\F3D5\"}.fa-nutritionix:before{content:\"\\F3D6\"}.fa-object-group:before{content:\"\\F247\"}.fa-object-ungroup:before{content:\"\\F248\"}.fa-odnoklassniki:before{content:\"\\F263\"}.fa-odnoklassniki-square:before{content:\"\\F264\"}.fa-oil-can:before{content:\"\\F613\"}.fa-old-republic:before{content:\"\\F510\"}.fa-om:before{content:\"\\F679\"}.fa-opencart:before{content:\"\\F23D\"}.fa-openid:before{content:\"\\F19B\"}.fa-opera:before{content:\"\\F26A\"}.fa-optin-monster:before{content:\"\\F23C\"}.fa-osi:before{content:\"\\F41A\"}.fa-otter:before{content:\"\\F700\"}.fa-outdent:before{content:\"\\F03B\"}.fa-page4:before{content:\"\\F3D7\"}.fa-pagelines:before{content:\"\\F18C\"}.fa-pager:before{content:\"\\F815\"}.fa-paint-brush:before{content:\"\\F1FC\"}.fa-paint-roller:before{content:\"\\F5AA\"}.fa-palette:before{content:\"\\F53F\"}.fa-palfed:before{content:\"\\F3D8\"}.fa-pallet:before{content:\"\\F482\"}.fa-paper-plane:before{content:\"\\F1D8\"}.fa-paperclip:before{content:\"\\F0C6\"}.fa-parachute-box:before{content:\"\\F4CD\"}.fa-paragraph:before{content:\"\\F1DD\"}.fa-parking:before{content:\"\\F540\"}.fa-passport:before{content:\"\\F5AB\"}.fa-pastafarianism:before{content:\"\\F67B\"}.fa-paste:before{content:\"\\F0EA\"}.fa-patreon:before{content:\"\\F3D9\"}.fa-pause:before{content:\"\\F04C\"}.fa-pause-circle:before{content:\"\\F28B\"}.fa-paw:before{content:\"\\F1B0\"}.fa-paypal:before{content:\"\\F1ED\"}.fa-peace:before{content:\"\\F67C\"}.fa-pen:before{content:\"\\F304\"}.fa-pen-alt:before{content:\"\\F305\"}.fa-pen-fancy:before{content:\"\\F5AC\"}.fa-pen-nib:before{content:\"\\F5AD\"}.fa-pen-square:before{content:\"\\F14B\"}.fa-pencil-alt:before{content:\"\\F303\"}.fa-pencil-ruler:before{content:\"\\F5AE\"}.fa-penny-arcade:before{content:\"\\F704\"}.fa-people-carry:before{content:\"\\F4CE\"}.fa-pepper-hot:before{content:\"\\F816\"}.fa-percent:before{content:\"\\F295\"}.fa-percentage:before{content:\"\\F541\"}.fa-periscope:before{content:\"\\F3DA\"}.fa-person-booth:before{content:\"\\F756\"}.fa-phabricator:before{content:\"\\F3DB\"}.fa-phoenix-framework:before{content:\"\\F3DC\"}.fa-phoenix-squadron:before{content:\"\\F511\"}.fa-phone:before{content:\"\\F095\"}.fa-phone-slash:before{content:\"\\F3DD\"}.fa-phone-square:before{content:\"\\F098\"}.fa-phone-volume:before{content:\"\\F2A0\"}.fa-php:before{content:\"\\F457\"}.fa-pied-piper:before{content:\"\\F2AE\"}.fa-pied-piper-alt:before{content:\"\\F1A8\"}.fa-pied-piper-hat:before{content:\"\\F4E5\"}.fa-pied-piper-pp:before{content:\"\\F1A7\"}.fa-piggy-bank:before{content:\"\\F4D3\"}.fa-pills:before{content:\"\\F484\"}.fa-pinterest:before{content:\"\\F0D2\"}.fa-pinterest-p:before{content:\"\\F231\"}.fa-pinterest-square:before{content:\"\\F0D3\"}.fa-pizza-slice:before{content:\"\\F818\"}.fa-place-of-worship:before{content:\"\\F67F\"}.fa-plane:before{content:\"\\F072\"}.fa-plane-arrival:before{content:\"\\F5AF\"}.fa-plane-departure:before{content:\"\\F5B0\"}.fa-play:before{content:\"\\F04B\"}.fa-play-circle:before{content:\"\\F144\"}.fa-playstation:before{content:\"\\F3DF\"}.fa-plug:before{content:\"\\F1E6\"}.fa-plus:before{content:\"\\F067\"}.fa-plus-circle:before{content:\"\\F055\"}.fa-plus-square:before{content:\"\\F0FE\"}.fa-podcast:before{content:\"\\F2CE\"}.fa-poll:before{content:\"\\F681\"}.fa-poll-h:before{content:\"\\F682\"}.fa-poo:before{content:\"\\F2FE\"}.fa-poo-storm:before{content:\"\\F75A\"}.fa-poop:before{content:\"\\F619\"}.fa-portrait:before{content:\"\\F3E0\"}.fa-pound-sign:before{content:\"\\F154\"}.fa-power-off:before{content:\"\\F011\"}.fa-pray:before{content:\"\\F683\"}.fa-praying-hands:before{content:\"\\F684\"}.fa-prescription:before{content:\"\\F5B1\"}.fa-prescription-bottle:before{content:\"\\F485\"}.fa-prescription-bottle-alt:before{content:\"\\F486\"}.fa-print:before{content:\"\\F02F\"}.fa-procedures:before{content:\"\\F487\"}.fa-product-hunt:before{content:\"\\F288\"}.fa-project-diagram:before{content:\"\\F542\"}.fa-pushed:before{content:\"\\F3E1\"}.fa-puzzle-piece:before{content:\"\\F12E\"}.fa-python:before{content:\"\\F3E2\"}.fa-qq:before{content:\"\\F1D6\"}.fa-qrcode:before{content:\"\\F029\"}.fa-question:before{content:\"\\F128\"}.fa-question-circle:before{content:\"\\F059\"}.fa-quidditch:before{content:\"\\F458\"}.fa-quinscape:before{content:\"\\F459\"}.fa-quora:before{content:\"\\F2C4\"}.fa-quote-left:before{content:\"\\F10D\"}.fa-quote-right:before{content:\"\\F10E\"}.fa-quran:before{content:\"\\F687\"}.fa-r-project:before{content:\"\\F4F7\"}.fa-radiation:before{content:\"\\F7B9\"}.fa-radiation-alt:before{content:\"\\F7BA\"}.fa-rainbow:before{content:\"\\F75B\"}.fa-random:before{content:\"\\F074\"}.fa-raspberry-pi:before{content:\"\\F7BB\"}.fa-ravelry:before{content:\"\\F2D9\"}.fa-react:before{content:\"\\F41B\"}.fa-reacteurope:before{content:\"\\F75D\"}.fa-readme:before{content:\"\\F4D5\"}.fa-rebel:before{content:\"\\F1D0\"}.fa-receipt:before{content:\"\\F543\"}.fa-recycle:before{content:\"\\F1B8\"}.fa-red-river:before{content:\"\\F3E3\"}.fa-reddit:before{content:\"\\F1A1\"}.fa-reddit-alien:before{content:\"\\F281\"}.fa-reddit-square:before{content:\"\\F1A2\"}.fa-redhat:before{content:\"\\F7BC\"}.fa-redo:before{content:\"\\F01E\"}.fa-redo-alt:before{content:\"\\F2F9\"}.fa-registered:before{content:\"\\F25D\"}.fa-renren:before{content:\"\\F18B\"}.fa-reply:before{content:\"\\F3E5\"}.fa-reply-all:before{content:\"\\F122\"}.fa-replyd:before{content:\"\\F3E6\"}.fa-republican:before{content:\"\\F75E\"}.fa-researchgate:before{content:\"\\F4F8\"}.fa-resolving:before{content:\"\\F3E7\"}.fa-restroom:before{content:\"\\F7BD\"}.fa-retweet:before{content:\"\\F079\"}.fa-rev:before{content:\"\\F5B2\"}.fa-ribbon:before{content:\"\\F4D6\"}.fa-ring:before{content:\"\\F70B\"}.fa-road:before{content:\"\\F018\"}.fa-robot:before{content:\"\\F544\"}.fa-rocket:before{content:\"\\F135\"}.fa-rocketchat:before{content:\"\\F3E8\"}.fa-rockrms:before{content:\"\\F3E9\"}.fa-route:before{content:\"\\F4D7\"}.fa-rss:before{content:\"\\F09E\"}.fa-rss-square:before{content:\"\\F143\"}.fa-ruble-sign:before{content:\"\\F158\"}.fa-ruler:before{content:\"\\F545\"}.fa-ruler-combined:before{content:\"\\F546\"}.fa-ruler-horizontal:before{content:\"\\F547\"}.fa-ruler-vertical:before{content:\"\\F548\"}.fa-running:before{content:\"\\F70C\"}.fa-rupee-sign:before{content:\"\\F156\"}.fa-sad-cry:before{content:\"\\F5B3\"}.fa-sad-tear:before{content:\"\\F5B4\"}.fa-safari:before{content:\"\\F267\"}.fa-salesforce:before{content:\"\\F83B\"}.fa-sass:before{content:\"\\F41E\"}.fa-satellite:before{content:\"\\F7BF\"}.fa-satellite-dish:before{content:\"\\F7C0\"}.fa-save:before{content:\"\\F0C7\"}.fa-schlix:before{content:\"\\F3EA\"}.fa-school:before{content:\"\\F549\"}.fa-screwdriver:before{content:\"\\F54A\"}.fa-scribd:before{content:\"\\F28A\"}.fa-scroll:before{content:\"\\F70E\"}.fa-sd-card:before{content:\"\\F7C2\"}.fa-search:before{content:\"\\F002\"}.fa-search-dollar:before{content:\"\\F688\"}.fa-search-location:before{content:\"\\F689\"}.fa-search-minus:before{content:\"\\F010\"}.fa-search-plus:before{content:\"\\F00E\"}.fa-searchengin:before{content:\"\\F3EB\"}.fa-seedling:before{content:\"\\F4D8\"}.fa-sellcast:before{content:\"\\F2DA\"}.fa-sellsy:before{content:\"\\F213\"}.fa-server:before{content:\"\\F233\"}.fa-servicestack:before{content:\"\\F3EC\"}.fa-shapes:before{content:\"\\F61F\"}.fa-share:before{content:\"\\F064\"}.fa-share-alt:before{content:\"\\F1E0\"}.fa-share-alt-square:before{content:\"\\F1E1\"}.fa-share-square:before{content:\"\\F14D\"}.fa-shekel-sign:before{content:\"\\F20B\"}.fa-shield-alt:before{content:\"\\F3ED\"}.fa-ship:before{content:\"\\F21A\"}.fa-shipping-fast:before{content:\"\\F48B\"}.fa-shirtsinbulk:before{content:\"\\F214\"}.fa-shoe-prints:before{content:\"\\F54B\"}.fa-shopping-bag:before{content:\"\\F290\"}.fa-shopping-basket:before{content:\"\\F291\"}.fa-shopping-cart:before{content:\"\\F07A\"}.fa-shopware:before{content:\"\\F5B5\"}.fa-shower:before{content:\"\\F2CC\"}.fa-shuttle-van:before{content:\"\\F5B6\"}.fa-sign:before{content:\"\\F4D9\"}.fa-sign-in-alt:before{content:\"\\F2F6\"}.fa-sign-language:before{content:\"\\F2A7\"}.fa-sign-out-alt:before{content:\"\\F2F5\"}.fa-signal:before{content:\"\\F012\"}.fa-signature:before{content:\"\\F5B7\"}.fa-sim-card:before{content:\"\\F7C4\"}.fa-simplybuilt:before{content:\"\\F215\"}.fa-sistrix:before{content:\"\\F3EE\"}.fa-sitemap:before{content:\"\\F0E8\"}.fa-sith:before{content:\"\\F512\"}.fa-skating:before{content:\"\\F7C5\"}.fa-sketch:before{content:\"\\F7C6\"}.fa-skiing:before{content:\"\\F7C9\"}.fa-skiing-nordic:before{content:\"\\F7CA\"}.fa-skull:before{content:\"\\F54C\"}.fa-skull-crossbones:before{content:\"\\F714\"}.fa-skyatlas:before{content:\"\\F216\"}.fa-skype:before{content:\"\\F17E\"}.fa-slack:before{content:\"\\F198\"}.fa-slack-hash:before{content:\"\\F3EF\"}.fa-slash:before{content:\"\\F715\"}.fa-sleigh:before{content:\"\\F7CC\"}.fa-sliders-h:before{content:\"\\F1DE\"}.fa-slideshare:before{content:\"\\F1E7\"}.fa-smile:before{content:\"\\F118\"}.fa-smile-beam:before{content:\"\\F5B8\"}.fa-smile-wink:before{content:\"\\F4DA\"}.fa-smog:before{content:\"\\F75F\"}.fa-smoking:before{content:\"\\F48D\"}.fa-smoking-ban:before{content:\"\\F54D\"}.fa-sms:before{content:\"\\F7CD\"}.fa-snapchat:before{content:\"\\F2AB\"}.fa-snapchat-ghost:before{content:\"\\F2AC\"}.fa-snapchat-square:before{content:\"\\F2AD\"}.fa-snowboarding:before{content:\"\\F7CE\"}.fa-snowflake:before{content:\"\\F2DC\"}.fa-snowman:before{content:\"\\F7D0\"}.fa-snowplow:before{content:\"\\F7D2\"}.fa-socks:before{content:\"\\F696\"}.fa-solar-panel:before{content:\"\\F5BA\"}.fa-sort:before{content:\"\\F0DC\"}.fa-sort-alpha-down:before{content:\"\\F15D\"}.fa-sort-alpha-up:before{content:\"\\F15E\"}.fa-sort-amount-down:before{content:\"\\F160\"}.fa-sort-amount-up:before{content:\"\\F161\"}.fa-sort-down:before{content:\"\\F0DD\"}.fa-sort-numeric-down:before{content:\"\\F162\"}.fa-sort-numeric-up:before{content:\"\\F163\"}.fa-sort-up:before{content:\"\\F0DE\"}.fa-soundcloud:before{content:\"\\F1BE\"}.fa-sourcetree:before{content:\"\\F7D3\"}.fa-spa:before{content:\"\\F5BB\"}.fa-space-shuttle:before{content:\"\\F197\"}.fa-speakap:before{content:\"\\F3F3\"}.fa-speaker-deck:before{content:\"\\F83C\"}.fa-spider:before{content:\"\\F717\"}.fa-spinner:before{content:\"\\F110\"}.fa-splotch:before{content:\"\\F5BC\"}.fa-spotify:before{content:\"\\F1BC\"}.fa-spray-can:before{content:\"\\F5BD\"}.fa-square:before{content:\"\\F0C8\"}.fa-square-full:before{content:\"\\F45C\"}.fa-square-root-alt:before{content:\"\\F698\"}.fa-squarespace:before{content:\"\\F5BE\"}.fa-stack-exchange:before{content:\"\\F18D\"}.fa-stack-overflow:before{content:\"\\F16C\"}.fa-stackpath:before{content:\"\\F842\"}.fa-stamp:before{content:\"\\F5BF\"}.fa-star:before{content:\"\\F005\"}.fa-star-and-crescent:before{content:\"\\F699\"}.fa-star-half:before{content:\"\\F089\"}.fa-star-half-alt:before{content:\"\\F5C0\"}.fa-star-of-david:before{content:\"\\F69A\"}.fa-star-of-life:before{content:\"\\F621\"}.fa-staylinked:before{content:\"\\F3F5\"}.fa-steam:before{content:\"\\F1B6\"}.fa-steam-square:before{content:\"\\F1B7\"}.fa-steam-symbol:before{content:\"\\F3F6\"}.fa-step-backward:before{content:\"\\F048\"}.fa-step-forward:before{content:\"\\F051\"}.fa-stethoscope:before{content:\"\\F0F1\"}.fa-sticker-mule:before{content:\"\\F3F7\"}.fa-sticky-note:before{content:\"\\F249\"}.fa-stop:before{content:\"\\F04D\"}.fa-stop-circle:before{content:\"\\F28D\"}.fa-stopwatch:before{content:\"\\F2F2\"}.fa-store:before{content:\"\\F54E\"}.fa-store-alt:before{content:\"\\F54F\"}.fa-strava:before{content:\"\\F428\"}.fa-stream:before{content:\"\\F550\"}.fa-street-view:before{content:\"\\F21D\"}.fa-strikethrough:before{content:\"\\F0CC\"}.fa-stripe:before{content:\"\\F429\"}.fa-stripe-s:before{content:\"\\F42A\"}.fa-stroopwafel:before{content:\"\\F551\"}.fa-studiovinari:before{content:\"\\F3F8\"}.fa-stumbleupon:before{content:\"\\F1A4\"}.fa-stumbleupon-circle:before{content:\"\\F1A3\"}.fa-subscript:before{content:\"\\F12C\"}.fa-subway:before{content:\"\\F239\"}.fa-suitcase:before{content:\"\\F0F2\"}.fa-suitcase-rolling:before{content:\"\\F5C1\"}.fa-sun:before{content:\"\\F185\"}.fa-superpowers:before{content:\"\\F2DD\"}.fa-superscript:before{content:\"\\F12B\"}.fa-supple:before{content:\"\\F3F9\"}.fa-surprise:before{content:\"\\F5C2\"}.fa-suse:before{content:\"\\F7D6\"}.fa-swatchbook:before{content:\"\\F5C3\"}.fa-swimmer:before{content:\"\\F5C4\"}.fa-swimming-pool:before{content:\"\\F5C5\"}.fa-symfony:before{content:\"\\F83D\"}.fa-synagogue:before{content:\"\\F69B\"}.fa-sync:before{content:\"\\F021\"}.fa-sync-alt:before{content:\"\\F2F1\"}.fa-syringe:before{content:\"\\F48E\"}.fa-table:before{content:\"\\F0CE\"}.fa-table-tennis:before{content:\"\\F45D\"}.fa-tablet:before{content:\"\\F10A\"}.fa-tablet-alt:before{content:\"\\F3FA\"}.fa-tablets:before{content:\"\\F490\"}.fa-tachometer-alt:before{content:\"\\F3FD\"}.fa-tag:before{content:\"\\F02B\"}.fa-tags:before{content:\"\\F02C\"}.fa-tape:before{content:\"\\F4DB\"}.fa-tasks:before{content:\"\\F0AE\"}.fa-taxi:before{content:\"\\F1BA\"}.fa-teamspeak:before{content:\"\\F4F9\"}.fa-teeth:before{content:\"\\F62E\"}.fa-teeth-open:before{content:\"\\F62F\"}.fa-telegram:before{content:\"\\F2C6\"}.fa-telegram-plane:before{content:\"\\F3FE\"}.fa-temperature-high:before{content:\"\\F769\"}.fa-temperature-low:before{content:\"\\F76B\"}.fa-tencent-weibo:before{content:\"\\F1D5\"}.fa-tenge:before{content:\"\\F7D7\"}.fa-terminal:before{content:\"\\F120\"}.fa-text-height:before{content:\"\\F034\"}.fa-text-width:before{content:\"\\F035\"}.fa-th:before{content:\"\\F00A\"}.fa-th-large:before{content:\"\\F009\"}.fa-th-list:before{content:\"\\F00B\"}.fa-the-red-yeti:before{content:\"\\F69D\"}.fa-theater-masks:before{content:\"\\F630\"}.fa-themeco:before{content:\"\\F5C6\"}.fa-themeisle:before{content:\"\\F2B2\"}.fa-thermometer:before{content:\"\\F491\"}.fa-thermometer-empty:before{content:\"\\F2CB\"}.fa-thermometer-full:before{content:\"\\F2C7\"}.fa-thermometer-half:before{content:\"\\F2C9\"}.fa-thermometer-quarter:before{content:\"\\F2CA\"}.fa-thermometer-three-quarters:before{content:\"\\F2C8\"}.fa-think-peaks:before{content:\"\\F731\"}.fa-thumbs-down:before{content:\"\\F165\"}.fa-thumbs-up:before{content:\"\\F164\"}.fa-thumbtack:before{content:\"\\F08D\"}.fa-ticket-alt:before{content:\"\\F3FF\"}.fa-times:before{content:\"\\F00D\"}.fa-times-circle:before{content:\"\\F057\"}.fa-tint:before{content:\"\\F043\"}.fa-tint-slash:before{content:\"\\F5C7\"}.fa-tired:before{content:\"\\F5C8\"}.fa-toggle-off:before{content:\"\\F204\"}.fa-toggle-on:before{content:\"\\F205\"}.fa-toilet:before{content:\"\\F7D8\"}.fa-toilet-paper:before{content:\"\\F71E\"}.fa-toolbox:before{content:\"\\F552\"}.fa-tools:before{content:\"\\F7D9\"}.fa-tooth:before{content:\"\\F5C9\"}.fa-torah:before{content:\"\\F6A0\"}.fa-torii-gate:before{content:\"\\F6A1\"}.fa-tractor:before{content:\"\\F722\"}.fa-trade-federation:before{content:\"\\F513\"}.fa-trademark:before{content:\"\\F25C\"}.fa-traffic-light:before{content:\"\\F637\"}.fa-train:before{content:\"\\F238\"}.fa-tram:before{content:\"\\F7DA\"}.fa-transgender:before{content:\"\\F224\"}.fa-transgender-alt:before{content:\"\\F225\"}.fa-trash:before{content:\"\\F1F8\"}.fa-trash-alt:before{content:\"\\F2ED\"}.fa-trash-restore:before{content:\"\\F829\"}.fa-trash-restore-alt:before{content:\"\\F82A\"}.fa-tree:before{content:\"\\F1BB\"}.fa-trello:before{content:\"\\F181\"}.fa-tripadvisor:before{content:\"\\F262\"}.fa-trophy:before{content:\"\\F091\"}.fa-truck:before{content:\"\\F0D1\"}.fa-truck-loading:before{content:\"\\F4DE\"}.fa-truck-monster:before{content:\"\\F63B\"}.fa-truck-moving:before{content:\"\\F4DF\"}.fa-truck-pickup:before{content:\"\\F63C\"}.fa-tshirt:before{content:\"\\F553\"}.fa-tty:before{content:\"\\F1E4\"}.fa-tumblr:before{content:\"\\F173\"}.fa-tumblr-square:before{content:\"\\F174\"}.fa-tv:before{content:\"\\F26C\"}.fa-twitch:before{content:\"\\F1E8\"}.fa-twitter:before{content:\"\\F099\"}.fa-twitter-square:before{content:\"\\F081\"}.fa-typo3:before{content:\"\\F42B\"}.fa-uber:before{content:\"\\F402\"}.fa-ubuntu:before{content:\"\\F7DF\"}.fa-uikit:before{content:\"\\F403\"}.fa-umbrella:before{content:\"\\F0E9\"}.fa-umbrella-beach:before{content:\"\\F5CA\"}.fa-underline:before{content:\"\\F0CD\"}.fa-undo:before{content:\"\\F0E2\"}.fa-undo-alt:before{content:\"\\F2EA\"}.fa-uniregistry:before{content:\"\\F404\"}.fa-universal-access:before{content:\"\\F29A\"}.fa-university:before{content:\"\\F19C\"}.fa-unlink:before{content:\"\\F127\"}.fa-unlock:before{content:\"\\F09C\"}.fa-unlock-alt:before{content:\"\\F13E\"}.fa-untappd:before{content:\"\\F405\"}.fa-upload:before{content:\"\\F093\"}.fa-ups:before{content:\"\\F7E0\"}.fa-usb:before{content:\"\\F287\"}.fa-user:before{content:\"\\F007\"}.fa-user-alt:before{content:\"\\F406\"}.fa-user-alt-slash:before{content:\"\\F4FA\"}.fa-user-astronaut:before{content:\"\\F4FB\"}.fa-user-check:before{content:\"\\F4FC\"}.fa-user-circle:before{content:\"\\F2BD\"}.fa-user-clock:before{content:\"\\F4FD\"}.fa-user-cog:before{content:\"\\F4FE\"}.fa-user-edit:before{content:\"\\F4FF\"}.fa-user-friends:before{content:\"\\F500\"}.fa-user-graduate:before{content:\"\\F501\"}.fa-user-injured:before{content:\"\\F728\"}.fa-user-lock:before{content:\"\\F502\"}.fa-user-md:before{content:\"\\F0F0\"}.fa-user-minus:before{content:\"\\F503\"}.fa-user-ninja:before{content:\"\\F504\"}.fa-user-nurse:before{content:\"\\F82F\"}.fa-user-plus:before{content:\"\\F234\"}.fa-user-secret:before{content:\"\\F21B\"}.fa-user-shield:before{content:\"\\F505\"}.fa-user-slash:before{content:\"\\F506\"}.fa-user-tag:before{content:\"\\F507\"}.fa-user-tie:before{content:\"\\F508\"}.fa-user-times:before{content:\"\\F235\"}.fa-users:before{content:\"\\F0C0\"}.fa-users-cog:before{content:\"\\F509\"}.fa-usps:before{content:\"\\F7E1\"}.fa-ussunnah:before{content:\"\\F407\"}.fa-utensil-spoon:before{content:\"\\F2E5\"}.fa-utensils:before{content:\"\\F2E7\"}.fa-vaadin:before{content:\"\\F408\"}.fa-vector-square:before{content:\"\\F5CB\"}.fa-venus:before{content:\"\\F221\"}.fa-venus-double:before{content:\"\\F226\"}.fa-venus-mars:before{content:\"\\F228\"}.fa-viacoin:before{content:\"\\F237\"}.fa-viadeo:before{content:\"\\F2A9\"}.fa-viadeo-square:before{content:\"\\F2AA\"}.fa-vial:before{content:\"\\F492\"}.fa-vials:before{content:\"\\F493\"}.fa-viber:before{content:\"\\F409\"}.fa-video:before{content:\"\\F03D\"}.fa-video-slash:before{content:\"\\F4E2\"}.fa-vihara:before{content:\"\\F6A7\"}.fa-vimeo:before{content:\"\\F40A\"}.fa-vimeo-square:before{content:\"\\F194\"}.fa-vimeo-v:before{content:\"\\F27D\"}.fa-vine:before{content:\"\\F1CA\"}.fa-vk:before{content:\"\\F189\"}.fa-vnv:before{content:\"\\F40B\"}.fa-volleyball-ball:before{content:\"\\F45F\"}.fa-volume-down:before{content:\"\\F027\"}.fa-volume-mute:before{content:\"\\F6A9\"}.fa-volume-off:before{content:\"\\F026\"}.fa-volume-up:before{content:\"\\F028\"}.fa-vote-yea:before{content:\"\\F772\"}.fa-vr-cardboard:before{content:\"\\F729\"}.fa-vuejs:before{content:\"\\F41F\"}.fa-walking:before{content:\"\\F554\"}.fa-wallet:before{content:\"\\F555\"}.fa-warehouse:before{content:\"\\F494\"}.fa-water:before{content:\"\\F773\"}.fa-wave-square:before{content:\"\\F83E\"}.fa-waze:before{content:\"\\F83F\"}.fa-weebly:before{content:\"\\F5CC\"}.fa-weibo:before{content:\"\\F18A\"}.fa-weight:before{content:\"\\F496\"}.fa-weight-hanging:before{content:\"\\F5CD\"}.fa-weixin:before{content:\"\\F1D7\"}.fa-whatsapp:before{content:\"\\F232\"}.fa-whatsapp-square:before{content:\"\\F40C\"}.fa-wheelchair:before{content:\"\\F193\"}.fa-whmcs:before{content:\"\\F40D\"}.fa-wifi:before{content:\"\\F1EB\"}.fa-wikipedia-w:before{content:\"\\F266\"}.fa-wind:before{content:\"\\F72E\"}.fa-window-close:before{content:\"\\F410\"}.fa-window-maximize:before{content:\"\\F2D0\"}.fa-window-minimize:before{content:\"\\F2D1\"}.fa-window-restore:before{content:\"\\F2D2\"}.fa-windows:before{content:\"\\F17A\"}.fa-wine-bottle:before{content:\"\\F72F\"}.fa-wine-glass:before{content:\"\\F4E3\"}.fa-wine-glass-alt:before{content:\"\\F5CE\"}.fa-wix:before{content:\"\\F5CF\"}.fa-wizards-of-the-coast:before{content:\"\\F730\"}.fa-wolf-pack-battalion:before{content:\"\\F514\"}.fa-won-sign:before{content:\"\\F159\"}.fa-wordpress:before{content:\"\\F19A\"}.fa-wordpress-simple:before{content:\"\\F411\"}.fa-wpbeginner:before{content:\"\\F297\"}.fa-wpexplorer:before{content:\"\\F2DE\"}.fa-wpforms:before{content:\"\\F298\"}.fa-wpressr:before{content:\"\\F3E4\"}.fa-wrench:before{content:\"\\F0AD\"}.fa-x-ray:before{content:\"\\F497\"}.fa-xbox:before{content:\"\\F412\"}.fa-xing:before{content:\"\\F168\"}.fa-xing-square:before{content:\"\\F169\"}.fa-y-combinator:before{content:\"\\F23B\"}.fa-yahoo:before{content:\"\\F19E\"}.fa-yammer:before{content:\"\\F840\"}.fa-yandex:before{content:\"\\F413\"}.fa-yandex-international:before{content:\"\\F414\"}.fa-yarn:before{content:\"\\F7E3\"}.fa-yelp:before{content:\"\\F1E9\"}.fa-yen-sign:before{content:\"\\F157\"}.fa-yin-yang:before{content:\"\\F6AD\"}.fa-yoast:before{content:\"\\F2B1\"}.fa-youtube:before{content:\"\\F167\"}.fa-youtube-square:before{content:\"\\F431\"}.fa-zhihu:before{content:\"\\F63F\"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\\ 5 Brands;font-style:normal;font-weight:400;font-display:auto;src:url(./fonts/fa-brands-400.8e49b728.eot);src:url(./fonts/fa-brands-400.8e49b728.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-brands-400.9f4ce3dc.woff2) format(\"woff2\"),url(./fonts/fa-brands-400.9f018d10.woff) format(\"woff\"),url(./fonts/fa-brands-400.b7d071b9.ttf) format(\"truetype\"),url(./images/fa-brands-400.38975343.svg#fontawesome) format(\"svg\")}.fab{font-family:Font Awesome\\ 5 Brands}@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:400;font-display:auto;src:url(./fonts/fa-regular-400.859001f6.eot);src:url(./fonts/fa-regular-400.859001f6.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-regular-400.7980a636.woff2) format(\"woff2\"),url(./fonts/fa-regular-400.7aaf5675.woff) format(\"woff\"),url(./fonts/fa-regular-400.f3334251.ttf) format(\"truetype\"),url(./images/fa-regular-400.da8a235b.svg#fontawesome) format(\"svg\")}.far{font-weight:400}@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:900;font-display:auto;src:url(./fonts/fa-solid-900.e2675a61.eot);src:url(./fonts/fa-solid-900.e2675a61.eot?#iefix) format(\"embedded-opentype\"),url(./fonts/fa-solid-900.64b3e814.woff2) format(\"woff2\"),url(./fonts/fa-solid-900.0be94a07.woff) format(\"woff\"),url(./fonts/fa-solid-900.f14c3b2f.ttf) format(\"truetype\"),url(./images/fa-solid-900.7726a281.svg#fontawesome) format(\"svg\")}.fa,.far,.fas{font-family:Font Awesome\\ 5 Free}.fa,.fas{font-weight:900}","/*!\n * Font Awesome Free 5.8.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.fa.fa-glass:before{content:\"\\F000\"}.fa.fa-meetup{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-star-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-o:before{content:\"\\F005\"}.fa.fa-close:before,.fa.fa-remove:before{content:\"\\F00D\"}.fa.fa-gear:before{content:\"\\F013\"}.fa.fa-trash-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-trash-o:before{content:\"\\F2ED\"}.fa.fa-file-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-o:before{content:\"\\F15B\"}.fa.fa-clock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-clock-o:before{content:\"\\F017\"}.fa.fa-arrow-circle-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-down:before{content:\"\\F358\"}.fa.fa-arrow-circle-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-up:before{content:\"\\F35B\"}.fa.fa-play-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-play-circle-o:before{content:\"\\F144\"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:\"\\F01E\"}.fa.fa-refresh:before{content:\"\\F021\"}.fa.fa-list-alt{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-dedent:before{content:\"\\F03B\"}.fa.fa-video-camera:before{content:\"\\F03D\"}.fa.fa-picture-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-picture-o:before{content:\"\\F03E\"}.fa.fa-photo{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-photo:before{content:\"\\F03E\"}.fa.fa-image{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-image:before{content:\"\\F03E\"}.fa.fa-pencil:before{content:\"\\F303\"}.fa.fa-map-marker:before{content:\"\\F3C5\"}.fa.fa-pencil-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-pencil-square-o:before{content:\"\\F044\"}.fa.fa-share-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-share-square-o:before{content:\"\\F14D\"}.fa.fa-check-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-check-square-o:before{content:\"\\F14A\"}.fa.fa-arrows:before{content:\"\\F0B2\"}.fa.fa-times-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-circle-o:before{content:\"\\F057\"}.fa.fa-check-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-check-circle-o:before{content:\"\\F058\"}.fa.fa-mail-forward:before{content:\"\\F064\"}.fa.fa-eye,.fa.fa-eye-slash{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-warning:before{content:\"\\F071\"}.fa.fa-calendar:before{content:\"\\F073\"}.fa.fa-arrows-v:before{content:\"\\F338\"}.fa.fa-arrows-h:before{content:\"\\F337\"}.fa.fa-bar-chart{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bar-chart:before{content:\"\\F080\"}.fa.fa-bar-chart-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bar-chart-o:before{content:\"\\F080\"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-gears:before{content:\"\\F085\"}.fa.fa-thumbs-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-thumbs-o-up:before{content:\"\\F164\"}.fa.fa-thumbs-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-thumbs-o-down:before{content:\"\\F165\"}.fa.fa-heart-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-heart-o:before{content:\"\\F004\"}.fa.fa-sign-out:before{content:\"\\F2F5\"}.fa.fa-linkedin-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-linkedin-square:before{content:\"\\F08C\"}.fa.fa-thumb-tack:before{content:\"\\F08D\"}.fa.fa-external-link:before{content:\"\\F35D\"}.fa.fa-sign-in:before{content:\"\\F2F6\"}.fa.fa-github-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-lemon-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-lemon-o:before{content:\"\\F094\"}.fa.fa-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-square-o:before{content:\"\\F0C8\"}.fa.fa-bookmark-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bookmark-o:before{content:\"\\F02E\"}.fa.fa-facebook,.fa.fa-twitter{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook:before{content:\"\\F39E\"}.fa.fa-facebook-f{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook-f:before{content:\"\\F39E\"}.fa.fa-github{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-credit-card{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-feed:before{content:\"\\F09E\"}.fa.fa-hdd-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hdd-o:before{content:\"\\F0A0\"}.fa.fa-hand-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-right:before{content:\"\\F0A4\"}.fa.fa-hand-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-left:before{content:\"\\F0A5\"}.fa.fa-hand-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-up:before{content:\"\\F0A6\"}.fa.fa-hand-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-o-down:before{content:\"\\F0A7\"}.fa.fa-arrows-alt:before{content:\"\\F31E\"}.fa.fa-group:before{content:\"\\F0C0\"}.fa.fa-chain:before{content:\"\\F0C1\"}.fa.fa-scissors:before{content:\"\\F0C4\"}.fa.fa-files-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-files-o:before{content:\"\\F0C5\"}.fa.fa-floppy-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-floppy-o:before{content:\"\\F0C7\"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:\"\\F0C9\"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus:before{content:\"\\F0D5\"}.fa.fa-money{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-money:before{content:\"\\F3D1\"}.fa.fa-unsorted:before{content:\"\\F0DC\"}.fa.fa-sort-desc:before{content:\"\\F0DD\"}.fa.fa-sort-asc:before{content:\"\\F0DE\"}.fa.fa-linkedin{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-linkedin:before{content:\"\\F0E1\"}.fa.fa-rotate-left:before{content:\"\\F0E2\"}.fa.fa-legal:before{content:\"\\F0E3\"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:\"\\F3FD\"}.fa.fa-comment-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-comment-o:before{content:\"\\F075\"}.fa.fa-comments-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-comments-o:before{content:\"\\F086\"}.fa.fa-flash:before{content:\"\\F0E7\"}.fa.fa-clipboard,.fa.fa-paste{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-paste:before{content:\"\\F328\"}.fa.fa-lightbulb-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-lightbulb-o:before{content:\"\\F0EB\"}.fa.fa-exchange:before{content:\"\\F362\"}.fa.fa-cloud-download:before{content:\"\\F381\"}.fa.fa-cloud-upload:before{content:\"\\F382\"}.fa.fa-bell-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bell-o:before{content:\"\\F0F3\"}.fa.fa-cutlery:before{content:\"\\F2E7\"}.fa.fa-file-text-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-text-o:before{content:\"\\F15C\"}.fa.fa-building-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-building-o:before{content:\"\\F1AD\"}.fa.fa-hospital-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hospital-o:before{content:\"\\F0F8\"}.fa.fa-tablet:before{content:\"\\F3FA\"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:\"\\F3CD\"}.fa.fa-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-circle-o:before{content:\"\\F111\"}.fa.fa-mail-reply:before{content:\"\\F3E5\"}.fa.fa-github-alt{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-folder-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-folder-o:before{content:\"\\F07B\"}.fa.fa-folder-open-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-folder-open-o:before{content:\"\\F07C\"}.fa.fa-smile-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-smile-o:before{content:\"\\F118\"}.fa.fa-frown-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-frown-o:before{content:\"\\F119\"}.fa.fa-meh-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-meh-o:before{content:\"\\F11A\"}.fa.fa-keyboard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-keyboard-o:before{content:\"\\F11C\"}.fa.fa-flag-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-flag-o:before{content:\"\\F024\"}.fa.fa-mail-reply-all:before{content:\"\\F122\"}.fa.fa-star-half-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-o:before{content:\"\\F089\"}.fa.fa-star-half-empty{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-empty:before{content:\"\\F089\"}.fa.fa-star-half-full{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-star-half-full:before{content:\"\\F089\"}.fa.fa-code-fork:before{content:\"\\F126\"}.fa.fa-chain-broken:before{content:\"\\F127\"}.fa.fa-shield:before{content:\"\\F3ED\"}.fa.fa-calendar-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-o:before{content:\"\\F133\"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ticket:before{content:\"\\F3FF\"}.fa.fa-minus-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-minus-square-o:before{content:\"\\F146\"}.fa.fa-level-up:before{content:\"\\F3BF\"}.fa.fa-level-down:before{content:\"\\F3BE\"}.fa.fa-pencil-square:before{content:\"\\F14B\"}.fa.fa-external-link-square:before{content:\"\\F360\"}.fa.fa-compass{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-down:before{content:\"\\F150\"}.fa.fa-toggle-down{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-down:before{content:\"\\F150\"}.fa.fa-caret-square-o-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-up:before{content:\"\\F151\"}.fa.fa-toggle-up{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-up:before{content:\"\\F151\"}.fa.fa-caret-square-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-right:before{content:\"\\F152\"}.fa.fa-toggle-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-right:before{content:\"\\F152\"}.fa.fa-eur:before,.fa.fa-euro:before{content:\"\\F153\"}.fa.fa-gbp:before{content:\"\\F154\"}.fa.fa-dollar:before,.fa.fa-usd:before{content:\"\\F155\"}.fa.fa-inr:before,.fa.fa-rupee:before{content:\"\\F156\"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:\"\\F157\"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:\"\\F158\"}.fa.fa-krw:before,.fa.fa-won:before{content:\"\\F159\"}.fa.fa-bitcoin,.fa.fa-btc{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bitcoin:before{content:\"\\F15A\"}.fa.fa-file-text:before{content:\"\\F15C\"}.fa.fa-sort-alpha-asc:before{content:\"\\F15D\"}.fa.fa-sort-alpha-desc:before{content:\"\\F15E\"}.fa.fa-sort-amount-asc:before{content:\"\\F160\"}.fa.fa-sort-amount-desc:before{content:\"\\F161\"}.fa.fa-sort-numeric-asc:before{content:\"\\F162\"}.fa.fa-sort-numeric-desc:before{content:\"\\F163\"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-youtube-play:before{content:\"\\F167\"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bitbucket-square:before{content:\"\\F171\"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-long-arrow-down:before{content:\"\\F309\"}.fa.fa-long-arrow-up:before{content:\"\\F30C\"}.fa.fa-long-arrow-left:before{content:\"\\F30A\"}.fa.fa-long-arrow-right:before{content:\"\\F30B\"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-gittip:before{content:\"\\F184\"}.fa.fa-sun-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-sun-o:before{content:\"\\F185\"}.fa.fa-moon-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-moon-o:before{content:\"\\F186\"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-arrow-circle-o-right{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-right:before{content:\"\\F35A\"}.fa.fa-arrow-circle-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-arrow-circle-o-left:before{content:\"\\F359\"}.fa.fa-caret-square-o-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-caret-square-o-left:before{content:\"\\F191\"}.fa.fa-toggle-left{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-toggle-left:before{content:\"\\F191\"}.fa.fa-dot-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-dot-circle-o:before{content:\"\\F192\"}.fa.fa-vimeo-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:\"\\F195\"}.fa.fa-plus-square-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-plus-square-o:before{content:\"\\F0FE\"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:\"\\F19C\"}.fa.fa-mortar-board:before{content:\"\\F19D\"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-spoon:before{content:\"\\F2E5\"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-automobile:before{content:\"\\F1B9\"}.fa.fa-cab:before{content:\"\\F1BA\"}.fa.fa-envelope-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-envelope-o:before{content:\"\\F0E0\"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-file-pdf-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-pdf-o:before{content:\"\\F1C1\"}.fa.fa-file-word-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-word-o:before{content:\"\\F1C2\"}.fa.fa-file-excel-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-excel-o:before{content:\"\\F1C3\"}.fa.fa-file-powerpoint-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-powerpoint-o:before{content:\"\\F1C4\"}.fa.fa-file-image-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-image-o:before{content:\"\\F1C5\"}.fa.fa-file-photo-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-photo-o:before{content:\"\\F1C5\"}.fa.fa-file-picture-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-picture-o:before{content:\"\\F1C5\"}.fa.fa-file-archive-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-archive-o:before{content:\"\\F1C6\"}.fa.fa-file-zip-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-zip-o:before{content:\"\\F1C6\"}.fa.fa-file-audio-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-audio-o:before{content:\"\\F1C7\"}.fa.fa-file-sound-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-sound-o:before{content:\"\\F1C7\"}.fa.fa-file-video-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-video-o:before{content:\"\\F1C8\"}.fa.fa-file-movie-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-movie-o:before{content:\"\\F1C8\"}.fa.fa-file-code-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-file-code-o:before{content:\"\\F1C9\"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-bouy:before{content:\"\\F1CD\"}.fa.fa-life-buoy{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-buoy:before{content:\"\\F1CD\"}.fa.fa-life-saver{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-life-saver:before{content:\"\\F1CD\"}.fa.fa-support{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-support:before{content:\"\\F1CD\"}.fa.fa-circle-o-notch:before{content:\"\\F1CE\"}.fa.fa-ra,.fa.fa-rebel{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ra:before{content:\"\\F1D0\"}.fa.fa-resistance{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-resistance:before{content:\"\\F1D0\"}.fa.fa-empire,.fa.fa-ge{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-ge:before{content:\"\\F1D1\"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-y-combinator-square:before{content:\"\\F1D4\"}.fa.fa-yc-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-yc-square:before{content:\"\\F1D4\"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-wechat:before{content:\"\\F1D7\"}.fa.fa-send:before{content:\"\\F1D8\"}.fa.fa-paper-plane-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-paper-plane-o:before{content:\"\\F1D8\"}.fa.fa-send-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-send-o:before{content:\"\\F1D8\"}.fa.fa-circle-thin{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-circle-thin:before{content:\"\\F111\"}.fa.fa-header:before{content:\"\\F1DC\"}.fa.fa-sliders:before{content:\"\\F1DE\"}.fa.fa-futbol-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-futbol-o:before{content:\"\\F1E3\"}.fa.fa-soccer-ball-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-soccer-ball-o:before{content:\"\\F1E3\"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-newspaper-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-newspaper-o:before{content:\"\\F1EA\"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-bell-slash-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-bell-slash-o:before{content:\"\\F1F6\"}.fa.fa-trash:before{content:\"\\F2ED\"}.fa.fa-copyright{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-eyedropper:before{content:\"\\F1FB\"}.fa.fa-area-chart:before{content:\"\\F1FE\"}.fa.fa-pie-chart:before{content:\"\\F200\"}.fa.fa-line-chart:before{content:\"\\F201\"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-cc{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-cc:before{content:\"\\F20A\"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:\"\\F20B\"}.fa.fa-meanpath{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-meanpath:before{content:\"\\F2B4\"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-diamond{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-diamond:before{content:\"\\F3A5\"}.fa.fa-intersex:before{content:\"\\F224\"}.fa.fa-facebook-official{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-facebook-official:before{content:\"\\F09A\"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-hotel:before{content:\"\\F236\"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-yc:before{content:\"\\F23B\"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:\"\\F240\"}.fa.fa-battery-3:before{content:\"\\F241\"}.fa.fa-battery-2:before{content:\"\\F242\"}.fa.fa-battery-1:before{content:\"\\F243\"}.fa.fa-battery-0:before{content:\"\\F244\"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-sticky-note-o:before{content:\"\\F249\"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hourglass-o:before{content:\"\\F254\"}.fa.fa-hourglass-1:before{content:\"\\F251\"}.fa.fa-hourglass-2:before{content:\"\\F252\"}.fa.fa-hourglass-3:before{content:\"\\F253\"}.fa.fa-hand-rock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-rock-o:before{content:\"\\F255\"}.fa.fa-hand-grab-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-grab-o:before{content:\"\\F255\"}.fa.fa-hand-paper-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-paper-o:before{content:\"\\F256\"}.fa.fa-hand-stop-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-stop-o:before{content:\"\\F256\"}.fa.fa-hand-scissors-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-scissors-o:before{content:\"\\F257\"}.fa.fa-hand-lizard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-lizard-o:before{content:\"\\F258\"}.fa.fa-hand-spock-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-spock-o:before{content:\"\\F259\"}.fa.fa-hand-pointer-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-pointer-o:before{content:\"\\F25A\"}.fa.fa-hand-peace-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-hand-peace-o:before{content:\"\\F25B\"}.fa.fa-registered{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-television:before{content:\"\\F26C\"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-calendar-plus-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-plus-o:before{content:\"\\F271\"}.fa.fa-calendar-minus-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-minus-o:before{content:\"\\F272\"}.fa.fa-calendar-times-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-times-o:before{content:\"\\F273\"}.fa.fa-calendar-check-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-calendar-check-o:before{content:\"\\F274\"}.fa.fa-map-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-map-o:before{content:\"\\F279\"}.fa.fa-commenting:before{content:\"\\F4AD\"}.fa.fa-commenting-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-commenting-o:before{content:\"\\F4AD\"}.fa.fa-houzz,.fa.fa-vimeo{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-vimeo:before{content:\"\\F27D\"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-credit-card-alt:before{content:\"\\F09D\"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-pause-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-pause-circle-o:before{content:\"\\F28B\"}.fa.fa-stop-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-stop-circle-o:before{content:\"\\F28D\"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-wheelchair-alt:before{content:\"\\F368\"}.fa.fa-question-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-question-circle-o:before{content:\"\\F059\"}.fa.fa-volume-control-phone:before{content:\"\\F2A0\"}.fa.fa-asl-interpreting:before{content:\"\\F2A3\"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:\"\\F2A4\"}.fa.fa-glide,.fa.fa-glide-g{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-signing:before{content:\"\\F2A7\"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus-official:before{content:\"\\F2B3\"}.fa.fa-google-plus-circle{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-google-plus-circle:before{content:\"\\F2B3\"}.fa.fa-fa,.fa.fa-font-awesome{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-fa:before{content:\"\\F2B4\"}.fa.fa-handshake-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-handshake-o:before{content:\"\\F2B5\"}.fa.fa-envelope-open-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-envelope-open-o:before{content:\"\\F2B6\"}.fa.fa-linode{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-address-book-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-address-book-o:before{content:\"\\F2B9\"}.fa.fa-vcard:before{content:\"\\F2BB\"}.fa.fa-address-card-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-address-card-o:before{content:\"\\F2BB\"}.fa.fa-vcard-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-vcard-o:before{content:\"\\F2BB\"}.fa.fa-user-circle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-user-circle-o:before{content:\"\\F2BD\"}.fa.fa-user-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-user-o:before{content:\"\\F007\"}.fa.fa-id-badge{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-drivers-license:before{content:\"\\F2C2\"}.fa.fa-id-card-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-id-card-o:before{content:\"\\F2C2\"}.fa.fa-drivers-license-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-drivers-license-o:before{content:\"\\F2C2\"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:\"\\F2C7\"}.fa.fa-thermometer-3:before{content:\"\\F2C8\"}.fa.fa-thermometer-2:before{content:\"\\F2C9\"}.fa.fa-thermometer-1:before{content:\"\\F2CA\"}.fa.fa-thermometer-0:before{content:\"\\F2CB\"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:\"\\F2CD\"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-rectangle:before{content:\"\\F410\"}.fa.fa-window-close-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-window-close-o:before{content:\"\\F410\"}.fa.fa-times-rectangle-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-times-rectangle-o:before{content:\"\\F410\"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:Font Awesome\\ 5 Brands;font-weight:400}.fa.fa-eercast:before{content:\"\\F2DA\"}.fa.fa-snowflake-o{font-family:Font Awesome\\ 5 Free;font-weight:400}.fa.fa-snowflake-o:before{content:\"\\F2DC\"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:Font Awesome\\ 5 Brands;font-weight:400}","html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:transparent}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:\"\";display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:hsla(0,0%,100%,.3);color:#000;border:none;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:none}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}",".select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:1px solid #000;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top,#fff 50%,#eee);background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(180deg,#fff 50%,#eee);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFFFFFFF\",endColorstr=\"#FFEEEEEE\",GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top,#eee 50%,#ccc);background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(180deg,#eee 50%,#ccc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFEEEEEE\",endColorstr=\"#FFCCCCCC\",GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top,#fff,#eee 50%);background-image:-o-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(180deg,#fff 0,#eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFFFFFFF\",endColorstr=\"#FFEEEEEE\",GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top,#eee 50%,#fff);background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(180deg,#eee 50%,#fff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#FFEEEEEE\",endColorstr=\"#FFFFFFFF\",GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}","/*!\n * Select2 Bootstrap Theme v0.1.0-beta.10 (https://select2.github.io/select2-bootstrap-theme)\n * Copyright 2015-2017 Florian Kissling and contributors (https://github.com/select2/select2-bootstrap-theme/graphs/contributors)\n * Licensed under MIT (https://github.com/select2/select2-bootstrap-theme/blob/master/LICENSE)\n */.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px;outline:0}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);background-color:#fff;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#999}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#999}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#999;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#999}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#777;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:#f5f5f5;color:#262626}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:#337ab7;color:#fff}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{margin-left:-12px;padding-left:24px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-24px;padding-left:36px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-36px;padding-left:48px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-48px;padding-left:60px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-60px;padding-left:72px}.select2-container--bootstrap .select2-results__group{color:#777;display:block;padding:6px 12px;font-size:12px;line-height:1.42857143;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-color:#66afe9}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 4px 4px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-color:transparent}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-right-radius:0;border-top-left-radius:0;border-top-color:transparent}.select2-container--bootstrap .select2-selection__clear{color:#999;cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--bootstrap .select2-selection__clear:hover{color:#333}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:#eee}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);border-color:#66afe9;overflow-x:hidden;margin-top:-1px}.select2-container--bootstrap .select2-dropdown--above{-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175);margin-top:1px}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:34px;line-height:1.42857143;padding:6px 24px 6px 12px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;bottom:0;right:12px;top:0;width:4px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{border-color:#999 transparent transparent;border-style:solid;border-width:4px 4px 0;height:0;left:0;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:#555;padding:0}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--bootstrap .select2-selection--multiple{min-height:34px;padding:0;height:auto}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;line-height:1.42857143;list-style:none;margin:0;overflow:hidden;padding:0;width:100%;text-overflow:ellipsis;white-space:nowrap}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left;margin-top:5px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:#555;background:#fff;border:1px solid #ccc;border-radius:4px;cursor:default;float:left;margin:5px 0 0 6px;padding:0 6px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{background:transparent;padding:0 12px;height:32px;line-height:1.42857143;margin-top:0;min-width:5em}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:3px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 22px 5px 10px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:30px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{font-size:12px;line-height:1.5;margin:4px 0 0 5px;padding:0 5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{padding:0 10px;font-size:12px;height:28px;line-height:1.5}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 31px 10px 16px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{border-width:5px 5px 0;margin-left:-10px;margin-top:-2.5px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{font-size:18px;line-height:1.3333333;border-radius:4px;margin:9px 0 0 8px;padding:0 10px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{padding:0 16px;font-size:18px;height:44px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #999;border-width:0 5px 5px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-left:24px;padding-right:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{left:12px;right:auto}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:0;margin-right:6px}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;border-color:#66512c}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;border-color:#843534}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;border-color:#2b542c}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-bottom-right-radius:0;border-top-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-bottom-left-radius:0;border-top-left-radius:0}.input-group>.select2-container--bootstrap{display:table;table-layout:fixed;position:relative;z-index:2;width:100%;margin-bottom:0}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}","*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:var(--font-family-base);font-size:.875rem;font-weight:400;line-height:1.5;color:#4c5367;text-align:left;background-color:#e3e7ed}[tabindex=\"-1\"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#5c70d6;text-decoration:none;background-color:transparent}a:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:var(--font-family-monospace);font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:var(--text-muted);text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--text-color-dark)}.h1,h1{font-size:2.1875rem}.h2,h2{font-size:1.75rem}.h3,h3{font-size:1.53125rem}.h4,h4{font-size:1.3125rem}.h5,h5{font-size:1.09375rem}.h6,h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer:before{content:\"\\2014\\A0\"}.container{max-width:540px;max-width:720px;max-width:960px;max-width:1140px}.container,.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);background-color:var(--white);background-clip:padding-box;border:1px solid #ced4da;border-radius:var(--border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:var(--text-color-dark);background-color:var(--white);border-color:#c4cbee;outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:var(--text-color-dark);background-color:var(--white)}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8125rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#4c5367;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size],textarea.form-control{height:auto}.form-group{margin-bottom:0}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:var(--text-muted)}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#1ea471}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(30,164,113,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#1ea471;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#1ea471;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center/8px 10px,url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231ea471' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E\") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#1ea471}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#1ea471}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#1ea471}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#26cf8e;background-color:#26cf8e}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#1ea471}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#1ea471;box-shadow:0 0 0 .2rem rgba(30,164,113,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#cd3c63}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8125rem;line-height:1.5;color:#fff;background-color:rgba(205,60,99,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#cd3c63;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\");background-repeat:no-repeat;background-position:100% calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#cd3c63;padding-right:calc((3em + 2.25rem)/4 + 1.75rem);background:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right .75rem center/8px 10px,url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cd3c63' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23cd3c63' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E\") var(--white) no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#cd3c63}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#cd3c63}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before{border-color:#cd3c63}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before{border-color:#d76583;background-color:#d76583}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#cd3c63}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#cd3c63;box-shadow:0 0 0 .2rem rgba(205,60,99,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}.form-inline label{justify-content:center}.form-inline .form-group,.form-inline label{display:flex;align-items:center;margin-bottom:0}.form-inline .form-group{flex:0 0 auto;flex-flow:row wrap}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}.btn{display:inline-block;font-weight:400;color:#4c5367;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:0 solid transparent;padding:4px 10px;font-size:.875rem;line-height:1.6;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#4c5367;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:hover{color:#fff;background-color:#4359c8;border-color:#3951c6}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#3951c6;border-color:#374dbc}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(121,137,216,.5)}.btn-secondary{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:hover{color:#212529;background-color:#cdd2dd;border-color:#c5cbd8}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#212529;background-color:#c5cbd8;border-color:#bdc5d3}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(198,201,207,.5)}.btn-success{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:hover{color:#fff;background-color:#18835a;border-color:#167953}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#167953;border-color:#146e4b}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(64,177,134,.5)}.btn-info{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:hover{color:#fff;background-color:#056092;border-color:#045886}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#045886;border-color:#045079}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(43,141,194,.5)}.btn-warning{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:hover{color:#fff;background-color:#b66513;border-color:#ab5e12}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#d97817;border-color:#d97817}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ab5e12;border-color:#9f5811}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,140,58,.5)}.btn-danger{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:hover{color:#fff;background-color:#b42f52;border-color:#aa2c4e}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#aa2c4e;border-color:#a02949}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212,90,122,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#6174d1;border-color:#6174d1}.btn-outline-primary:hover{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#6174d1;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#6174d1;border-color:#6174d1}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.btn-outline-secondary{color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:hover{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#e3e7ed;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#e3e7ed;border-color:#e3e7ed}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.btn-outline-success{color:#1ea471;border-color:#1ea471}.btn-outline-success:hover{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#1ea471;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#1ea471;border-color:#1ea471}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.btn-outline-info{color:#0679b7;border-color:#0679b7}.btn-outline-info:hover{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0679b7;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#0679b7;border-color:#0679b7}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.btn-outline-warning{color:#d97817;border-color:#d97817}.btn-outline-warning:hover{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#d97817;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#d97817;border-color:#d97817}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.btn-outline-danger{color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:hover{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#cd3c63;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#cd3c63;border-color:#cd3c63}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#5c70d6;text-decoration:none}.btn-link:hover{color:#99a6e6;text-decoration:var(--link-hover-decoration)}.btn-link.focus,.btn-link:focus{text-decoration:var(--link-hover-decoration);box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:7px 12px;font-size:1rem;line-height:1.5;border-radius:var(--border-radius)}.btn-group-sm>.btn,.btn-sm{padding:3px 5px;font-size:.8125rem;line-height:1.5;border-radius:var(--border-radius)}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:7.5px;padding-left:7.5px}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:3.75px;padding-left:3.75px}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:9px;padding-left:9px}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.875rem;color:#4c5367;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:var(--border-width) solid var(--border-color);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--gray-900);text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#6174d1}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.8125rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--text-color-dark);text-align:center;white-space:nowrap;background-color:var(--form-bg);border:1px solid #ced4da;border-radius:var(--border-radius)}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.8125rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:var(--border-width) solid var(--border-color)}.nav-tabs .nav-item{margin-bottom:-var(--border-width)}.nav-tabs .nav-link{border:var(--border-width) solid transparent;border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:transparent}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--gray-800);background-color:var(--form-bg);border-left-color:var(--border-color);border-bottom-color:transparent;border-right-color:var(--border-color);border-top-color:var(--border-color)}.nav-tabs .dropdown-menu{margin-top:-var(--border-width);border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#6174d1}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{display:inline-block;padding:.25em .4em;font-size:var(--font-size-sm);font-weight:500;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--border-radius);transition:all .08s ease-in}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#6174d1}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#3951c6}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(97,116,209,.5)}.badge-secondary{color:#212529;background-color:#e3e7ed}a.badge-secondary:focus,a.badge-secondary:hover{color:#212529;background-color:#c5cbd8}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(227,231,237,.5)}.badge-success{color:#fff;background-color:#1ea471}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#167953}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(30,164,113,.5)}.badge-info{color:#fff;background-color:#0679b7}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#045886}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(6,121,183,.5)}.badge-warning{color:#fff;background-color:#d97817}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#ab5e12}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(217,120,23,.5)}.badge-danger{color:#fff;background-color:#cd3c63}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#aa2c4e}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(205,60,99,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:var(--border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:500}.alert-dismissible{padding-right:3.8125rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#323c6d;background-color:#dfe3f6;border-color:#d3d8f2}.alert-primary hr{border-top-color:#bfc7ec}.alert-primary .alert-link{color:#22294a}.alert-secondary{color:#76787b;background-color:#f9fafb;border-color:#f7f8fa}.alert-secondary hr{border-top-color:#e7eaf0}.alert-secondary .alert-link{color:#5d5f61}.alert-success{color:#10553b;background-color:#d2ede3;border-color:#c0e5d7}.alert-success hr{border-top-color:#aedecc}.alert-success .alert-link{color:#082a1d}.alert-info{color:#033f5f;background-color:#cde4f1;border-color:#b9d9eb}.alert-info hr{border-top-color:#a5cee5}.alert-info .alert-link{color:#011e2e}.alert-warning{color:#713e0c;background-color:#f7e4d1;border-color:#f4d9be}.alert-warning hr{border-top-color:#f0cca8}.alert-warning .alert-link{color:#432507}.alert-danger{color:#6b1f33;background-color:#f5d8e0;border-color:#f1c9d3}.alert-danger hr{border-top-color:#ecb5c3}.alert-danger .alert-link{color:#431420}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);content:\"\"}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:var(--form-bg);background-clip:padding-box;border:1px solid var(--border-color);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:var(--black)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.6}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid var(--border-color);border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:15px 20px}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:15px 20px;border-top:1px solid var(--border-color);border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}.modal-lg,.modal-xl{max-width:900px}.modal-xl{max-width:1140px}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:\"\";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:var(--font-family-base);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8125rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid #e3e7ee;border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:\"\";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:#e3e7ee}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:#e3e7ee}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem + -1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:#e3e7ee}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:\"\";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem + -1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:#e3e7ee}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;color:var(--text-color-dark);background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#4c5367}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#6174d1!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#3951c6!important}.bg-secondary{background-color:#e3e7ed!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#c5cbd8!important}.bg-success{background-color:#1ea471!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#167953!important}.bg-info{background-color:#0679b7!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#045886!important}.bg-warning{background-color:#d97817!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ab5e12!important}.bg-danger{background-color:#cd3c63!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#aa2c4e!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#6174d1!important}.border-secondary{border-color:#e3e7ed!important}.border-success{border-color:#1ea471!important}.border-info{border-color:#0679b7!important}.border-warning{border-color:#d97817!important}.border-danger{border-color:#cd3c63!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:\"\"}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:\"\"}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:\"\";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.text-monospace{font-family:var(--font-family-monospace)!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#6174d1!important}a.text-primary:focus,a.text-primary:hover{color:#3449b2!important}.text-secondary{color:#e3e7ed!important}a.text-secondary:focus,a.text-secondary:hover{color:#b6bece!important}.text-success{color:#1ea471!important}a.text-success:focus,a.text-success:hover{color:#126344!important}.text-info{color:#0679b7!important}a.text-info:focus,a.text-info:hover{color:#03486d!important}.text-warning{color:#d97817!important}a.text-warning:focus,a.text-warning:hover{color:#945210!important}.text-danger{color:#cd3c63!important}a.text-danger:focus,a.text-danger:hover{color:#962744!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#4c5367!important}.text-muted{color:var(--text-muted)!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.sf-toolbarreset{-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}body{text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:unset}.main-header{grid-area:header}.main-sidebar{grid-area:sidebar}.content-wrapper{grid-area:content-wrapper}.content{grid-area:content}#sidebar-resizer-handler{grid-area:sidebar-resizer-handler}#content-resizer-handler{grid-area:content-resizer-handler}#flash-messages{grid-area:flash-messages}.wrapper{display:grid;grid-row-gap:20px;grid-template-areas:\"header\" \"content-wrapper\";margin:20px 15px}@media (min-width:992px){.wrapper{grid-template-columns:var(--sidebar-width) auto;grid-column-gap:15px;grid-template-areas:\"header header\" \"sidebar content-wrapper\";margin-left:auto;margin-right:auto;width:calc(100% - 40px)}}body:not(.easyadmin-content-width-full) .wrapper{max-width:var(--body-max-width)}@media (min-width:992px){body.easyadmin-sidebar-width-compact .wrapper{grid-template-columns:24px auto}}.main-header{display:flex;justify-content:space-between}@media (min-width:992px){.main-header{padding-right:10px}}.main-header .navbar{display:flex}.main-header #header-logo{font-size:21px;font-weight:600;line-height:1;margin:0}.main-header #header-logo a{color:var(--text-color)}.main-header #header-logo img,.main-header #header-logo svg{max-width:100%}#navigation-toggler{background:transparent;border:0;color:var(--text-color-dark);cursor:pointer;filter:opacity(50%);font-size:17px;margin:0 5px 0 -5px;padding:0;width:24px}@media (min-width:992px){#navigation-toggler{display:none}}.main-sidebar{background:var(--body-bg);height:100vh;left:calc(-40px - var(--sidebar-width));overflow-x:hidden;overflow-y:auto;padding:15px 20px;position:absolute;top:0;transition:left .3s;z-index:1041;width:calc(40px + var(--sidebar-width))}@media (min-width:992px){.main-sidebar{height:unset;padding:0;position:static;width:var(--sidebar-width);z-index:1039}}body.easyadmin-mobile-sidebar-visible .main-sidebar{left:0}.navbar-custom-menu .user{align-items:center;color:var(--text-color-light);cursor:pointer;display:flex}.navbar-custom-menu .user-avatar{border-radius:50%;box-shadow:0 2px 5px 0 rgba(59,64,94,.1),0 1px 1px 0 rgba(0,0,0,.07);font-size:21px;max-height:21px;max-width:21px}.navbar-custom-menu .user-name{margin-left:6px}.navbar-custom-menu .user.user-is-impersonated{color:var(--color-danger)}.user-details .user-details-name{font-size:var(--font-size-base);font-weight:500;margin-bottom:0}.user-menu-wrapper .popover-body{padding:0}.user-menu-wrapper .popover-content-section{padding:12px}.user-menu-wrapper .popover-content-section+.popover-content-section{border-top:var(--border-width) var(--border-style) var(--border-color);padding-top:12px}.user-menu .user-action{display:block;font-size:var(--font-size-sm)}.user-menu .user-action+.user-action{margin-top:var(--font-size-sm)}.content-wrapper{display:grid;grid-auto-rows:max-content;grid-column-gap:0;grid-row-gap:0;grid-template-areas:\"flash-messages flash-messages flash-messages\" \"sidebar-resizer-handler content content-resizer-handler\";grid-template-columns:0 auto 0}@media (min-width:992px){.content-wrapper{grid-template-columns:10px auto 10px}}.content{background-color:var(--white);border-radius:var(--border-radius);box-shadow:var(--box-shadow-lg)}.resizer-handler{background:rgba(0,0,0,.1) 50% no-repeat url('data:image/svg+xml;utf8,');cursor:col-resize;display:none;opacity:.15;transition:opacity .7s}.resizer-handler:hover{opacity:1}@media (min-width:992px){.resizer-handler{display:block}}.resizer-handler-left{border-bottom-left-radius:var(--border-radius);border-top-left-radius:var(--border-radius)}.resizer-handler-right{border-bottom-right-radius:var(--border-radius);border-top-right-radius:var(--border-radius)}.content-header{border-bottom:var(--border-width) var(--border-style) var(--border-color);display:flex;flex-direction:column;padding:15px 17px 15px 20px}.list .content-header{padding-top:12px;padding-bottom:12px}.content-header-title{align-self:center;flex:1}.content-header.has-content-help .content-header-title{align-self:flex-end}.content-header-title .title{font-size:var(--font-size-lg);line-height:24px;margin:0}.content-header .global-actions{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin-left:10px}.global-actions .btn{margin-left:15px}.batch-actions form{display:flex}.batch-actions .btn{margin-left:15px}.form-action-search .form-group{margin:0;padding:0}.form-action-search input[type=search].form-control{background-color:var(--white);background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-size:13px 13px;background-position:10px 8px;padding-left:32px;width:300px}.content-header-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-top:12px}.content-footer{background:var(--white);border-top:var(--border-width) var(--border-style) var(--border-color);padding:15px 20px}.content-body form,.content-footer{border-bottom-left-radius:var(--border-radius);border-bottom-right-radius:var(--border-radius)}.content-body table{margin-bottom:0}form .content-footer{margin:20px -20px -18px}.list-pagination{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.pager .btn{display:inline-block}.pager .btn+.btn{margin-left:-2px}.pager .btn:first-child{border-top-right-radius:0;border-bottom-right-radius:0;transform:translateX(1px)}.pager .btn:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.modal-body h4{font-size:var(--font-size-lg)}.modal-footer{background:var(--white)}.boolean .label{display:inline-block;min-width:33px}body.show .form-horizontal{background:var(--form-bg)}body.show .form-horizontal .control-label{padding-top:0}body.show .form-control{border:var(--border-width) var(--border-style) var(--border-color);box-shadow:none;height:auto;min-height:30px;padding:4px 7px 5px}body.show .field-boolean .form-widget,body.show .field-float .form-widget,body.show .field-integer .form-widget{max-width:100px}body.show .field-date .form-widget,body.show .field-datetime .form-widget,body.show .field-time .form-widget{max-width:250px}body.show .field-string .form-widget{max-width:450px}body.show .field-association .form-widget,body.show .field-text .form-widget{max-width:550px}body.show .field-association ul,body.show .field-simple_array ul{margin:5px;padding-left:15px}body.show .field-text .form-widget{max-height:250px;overflow-y:auto}body.show .field-text .form-widget .form-control{min-height:60px}body.show .field-avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}@media (min-width:992px){#flash-messages{margin-left:10px;margin-right:10px}}.alert{box-shadow:var(--box-shadow-lg);margin-bottom:15px}.sidebar-menu,.sidebar-menu ul{padding-left:0}.sidebar-menu .header{color:var(--text-muted);font-size:12px;margin-top:20px;padding:7px 5px 7px 0;text-transform:uppercase}.sidebar-menu li{list-style:none}.sidebar-menu a{color:var(--text-color-dark);display:block;line-height:20px;padding:4px 5px 10px 0}.sidebar-menu .fa{color:var(--text-color-dark);filter:opacity(50%);font-size:17px;margin-right:4px;width:20px}.sidebar-menu li:not(.submenu-active).active{border-radius:var(--border-radius);font-weight:500}.sidebar-menu li:not(.submenu-active).active .fa,.sidebar-menu li:not(.submenu-active).active a{color:var(--color-primary);filter:opacity(100%)}.sidebar-menu .menu-open .treeview-icon{transform:rotate(90deg)}.treeview{position:relative}.treeview-menu{display:none;margin-bottom:12px;margin-top:-4px}.sidebar-menu .active .treeview-menu{display:block}.treeview-menu a{color:var(--text-color);font-size:var(--font-size-sm);line-height:20px;padding:3px 5px 3px 28px}.treeview-menu a .fa{color:var(--text-color);filter:opacity(50%);font-size:var(--font-size-base);margin-right:4px;width:16px}.treeview .treeview-icon{position:absolute;top:6px;right:1px;transition:transform .25s ease;width:auto}.treeview.menu-open .treeview-icon{transform:rotate(90deg)}body.easyadmin-sidebar-width-compact .main-sidebar{overflow:visible}@media (min-width:992px){body.easyadmin-sidebar-width-compact .main-sidebar{width:24px}}@media (min-width:992px){body.easyadmin-sidebar-width-compact .sidebar-menu a{padding:7px 5px 7px 0}body.easyadmin-sidebar-width-compact .sidebar-menu li .treeview-icon,body.easyadmin-sidebar-width-compact .sidebar-menu li span{display:none}body.easyadmin-sidebar-width-compact .sidebar-menu li{position:relative}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover{background:var(--body-bg);border-radius:var(--border-radius);width:var(--sidebar-width);z-index:1040}.easyadmin-sidebar-width-compact .sidebar-menu li.header{height:0;overflow:hidden;padding:0;width:0}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li:hover{width:unset}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover span{display:inline-block;left:32px;position:absolute;top:7px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu a{padding:3px 5px 3px 11px}body.easyadmin-sidebar-width-compact .sidebar-menu li:hover .treeview-menu span{position:static}body.easyadmin-sidebar-width-compact .sidebar-menu li .fa{font-size:21px;width:24px}body.easyadmin-sidebar-width-compact .sidebar-menu .treeview-menu li .fa{font-size:var(--font-size-base);width:16px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu{padding-top:5px;padding-bottom:5px;border-bottom-right-radius:4px}.easyadmin-sidebar-width-compact .sidebar-menu>li>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li>a>span{display:none!important}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu,.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>a>span{background:var(--body-bg);display:block!important;position:absolute;left:32px;width:calc(var(--sidebar-width) - 32px)}.easyadmin-sidebar-width-compact .sidebar-menu>li:hover>.treeview-menu{top:32px;margin-left:0}}table.datagrid{border-spacing:0;width:100%}.datagrid thead{background:var(--form-bg)}.datagrid thead th{padding:0}.datagrid thead a,.datagrid thead span{color:var(--text-color-dark);display:block;font-weight:500;line-height:1.357;padding:8px;text-align:left;white-space:nowrap}.datagrid td:first-child,.datagrid th:first-child a,.datagrid th:first-child span{padding-left:20px}.datagrid td:last-child,.datagrid th:last-child a,.datagrid th:last-child span{padding-right:20px}.datagrid td{padding:8px}.datagrid thead .sorted a,.datagrid thead .sorted span{font-weight:700}.datagrid thead i{color:var(--text-muted);margin-left:2px}.datagrid thead .sorted i{color:var(--color-primary)}.datagrid td,.datagrid th{border-bottom:var(--border-width) var(--border-style) var(--border-color);vertical-align:middle}.datagrid tr:last-child>td{border:0}.datagrid tbody tr:hover td,.datagrid tbody tr:hover th{background:var(--form-bg)}.datagrid td.actions{text-align:right}.datagrid td.actions a{font-size:var(--font-size-sm);font-weight:500;margin-left:10px}.datagrid td.actions .fa{font-size:var(--font-size-base)}.datagrid .actions-dropdown{position:relative}.datagrid .actions-dropdown .dropdown-toggle{background:transparent!important;border:var(--border-width) solid transparent;box-shadow:none!important;padding:1px 8px 0}.datagrid .actions-dropdown .dropdown-toggle:after{display:none}.datagrid .actions-dropdown a.dropdown-item{margin:0}.datagrid .actions-dropdown a.dropdown-item i{margin-right:5px}.datagrid .actions-dropdown .dropdown-menu-right{border-top-right-radius:0;right:0;top:20px;box-shadow:var(--box-shadow-lg)}.datagrid .actions-dropdown:hover{cursor:pointer}.datagrid .actions-dropdown:hover .dropdown-toggle{background:var(--white)!important;border:var(--border-width) solid var(--border-color);border-bottom-color:var(--white);z-index:1001;position:relative;border-bottom-left-radius:0;border-bottom-right-radius:0}.datagrid .actions-dropdown:hover .dropdown-menu{display:block}.datagrid .easyadmin-thumbnail img{box-shadow:0 0 0 2px var(--white),0 0 4px 1px var(--gray-600);margin-bottom:2px;margin-top:2px;max-height:50px;max-width:100px}.datagrid td.boolean,.datagrid td.image,.datagrid th.boolean,.datagrid th.boolean a,.datagrid th.image,.datagrid th.image a{text-align:center}.datagrid td.avatar .image-avatar{border-radius:50%;border:0;box-shadow:none}.datagrid td.country .country-flag{margin-right:2px;max-height:18px;vertical-align:text-top}.datagrid .highlight{border-radius:var(--border-radius);background:var(--highlight-bg);padding:1px}.datagrid .no-results{padding:60px 0;text-align:center}.datagrid .no-results:hover{background:transparent}#modal-filters .modal-dialog{max-width:400px}#modal-filters .modal-content{background:var(--white)}#modal-filters .modal-header{background:var(--gray-50);border-bottom-color:var(--gray-300);padding:10px 15px}#modal-filters .modal-title{color:var(--gray-700);font-size:var(--font-size-base)}#modal-filters .modal-body{border-bottom:0;padding:15px}.action-filters-button i{color:var(--text-color-light)}.action-filters-button.action-filters-applied i{color:var(--color-primary)}.action-filters-button span{font-weight:600}.action-filters-reset i{color:var(--text-color-light)}.filter-heading{align-items:center;display:flex;padding:4px 0}.filter-heading a{color:var(--link-color);cursor:pointer;flex:1;margin-left:7px}.filter-content{margin-left:15px}.filter-content .form-group,.filter-content .form-widget-compound .form-group{padding-right:5px}.filter-content .form-group:last-of-type{padding-bottom:0}.show .field-image .form-control{background:transparent;border:0;padding:0}.show .form-control .easyadmin-thumbnail img{box-shadow:0 0 0 4px var(--white),0 0 8px 2px var(--gray-600);margin:10px 7px;max-height:300px;max-width:400px}.easyadmin-thumbnail img:hover{cursor:zoom-in}.easyadmin-lightbox{display:none}.easyadmin-lightbox img{max-width:100%;width:100%}.featherlight .easyadmin-lightbox{display:block}.featherlight .easyadmin-lightbox:hover{cursor:zoom-out}.content-body .form-horizontal,.content-body form{background:var(--form-bg);padding:18px 20px}.form-group{display:flex;flex-wrap:wrap;align-items:center;padding:10px 20px}.form-group label,.form-group legend.col-form-label{align-self:self-start;color:var(--text-color);flex:30% 0 0;font-size:var(--font-size-base);font-weight:400;margin:5px 5px 0 0;text-align:right}.form-group .col-form-label{padding:0}.form-group .col-form-label.required:after,.form-group label.required:after{bottom:4px;color:var(--color-danger);content:\"\\2022\";filter:opacity(75%);position:relative;right:-2px}.form-widget{align-items:flex-start;flex:0 0 55%;flex-direction:column;padding-left:5px}.form-widget .form-help{color:var(--text-muted);display:inline-block;font-size:var(--font-size-sm);margin-bottom:0;margin-top:4px}.form-widget input.form-control,.form-widget select.form-control,.form-widget textarea.form-control{border:0;padding:3px 7px 5px;box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;max-width:350px;white-space:nowrap;word-break:keep-all;transition:box-shadow .08s ease-in,color .08s ease-in}.form-widget input.form-control:focus,.form-widget select.form-control:focus,.form-widget textarea.form-control:focus{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.form-widget textarea.form-control{height:auto;line-height:1.6;white-space:pre-wrap}.form-widget select.form-control{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);padding-left:4px;padding-right:4px}.form-widget select[multiple].form-control{height:auto}.field-checkbox .form-widget,.form-group.field-collection-action{margin-left:calc(30% + 5px);margin-bottom:0;margin-top:0}.form-group.field-collection-action{margin-left:30%}.field-checkbox .form-check{padding-left:0}.field-checkbox .form-check-label{cursor:pointer;font-size:var(--font-size-base);margin-top:0;margin-left:4px}.field-checkbox .form-check-input{margin:0;position:static}.field-date .form-widget,.field-datetime .form-widget,.field-time .form-widget{margin:0}.field-datetime .form-inline{display:flex}.datetime-widget+.datetime-widget{margin-left:10px}.datetime-widget select+select{margin-left:4px}.datetime-widget-time select{margin:0 2px}.datetime-widget-time select:first-child{margin-left:0}.datetime-widget-time select:last-child{margin-right:0}.nullable-control label,fieldset .form-group .nullable-control label{cursor:pointer;margin-top:5px}.short .form-widget{flex:0 0 20%!important}.large .form-control,.long .form-control{max-width:unset!important}.large .input.form-control{font-size:18px!important}.large textarea.form-control{height:500px;max-width:unset!important}.code input.form-control,.code textarea.form-control{font-family:monospace!important}.field-group .large .form-control,.field-group .large textarea.form-control,.field-group .long .form-control{flex:0 0 100%!important;max-width:unset!important}.field-group .large textarea.form-control{height:500px}.form-widget-compound .collection-empty{padding-top:5px}.form-widget-compound .form-group{padding:0 20px 15px 0}.form-widget-compound .form-group .form-widget{flex:0 0 100%;padding-left:0}.field-collection-item-row{display:flex;flex-direction:row}.field-collection-item-row .field-collection-item-action{flex:0 0 35px}.field-collection-item-row .field-collection-item-widget{flex:1}.field-collection-item-action .fa{font-size:21px;margin-left:4px;margin-top:4px}.field-collection-action .btn{margin-left:-5px;padding:4px 10px}.form-tabs .nav-tabs{background:var(--white);margin:-20px -20px 20px;padding-left:20px}.form-tabs .nav-tabs a,.form-tabs .nav-tabs a:hover{color:var(--gray-800);font-size:var(--font-size-sm)}.form-tabs .nav-tabs .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}.form-tabs .nav-tabs .nav-link.active{transform:translateY(1px)}.form-tabs .nav-tabs .nav-item .badge{margin-left:4px;padding:3px 6px}.form-tabs .tab-help{margin-top:-10px;margin-bottom:15px}fieldset{background:var(--fieldset-bg);border:var(--border-width) var(--border-style) var(--border-color);border-radius:var(--border-radius);margin:10px 0;padding:10px 20px 15px}fieldset>legend{border:0;font-size:var(--font-size-sm);font-weight:500;text-transform:uppercase;margin:0 0 5px -5px;padding:0 5px;width:auto}fieldset>legend .fa{color:var(--text-muted);font-size:var(--font-size-lg);margin-right:4px}fieldset .form-section{padding-left:0;padding-right:0}fieldset .form-group{padding:10px 0}fieldset .form-group label,fieldset .form-group legend.col-form-label{flex:100% 0 0;margin:0 0 4px;text-align:left}fieldset .field-checkbox .form-widget,fieldset .form-group .form-widget{flex:0 0 100%;padding-left:0;padding-right:0}fieldset .field-checkbox .form-widget,fieldset .form-group.field-collection-action{margin-left:0}fieldset .form-group.field-collection-action{padding-top:0}fieldset .field-collection-action .btn{margin-left:0}fieldset .legend-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:15px;margin-top:-5px}.form-section{padding:30px 10px 20px}.form-section-empty{padding:25px 10px}.form-section h2{color:var(--gray-800);display:flex;font-size:15px;font-weight:400;margin:0 0 10px;position:relative;width:100%}.form-section h2 span{border-bottom:var(--border-width) var(--border-style) var(--border-color);flex:1;padding-bottom:7px}.form-section h2 .fa{background-color:var(--body-bg);border-radius:var(--border-radius);color:var(--text-muted);display:inline-block;font-size:var(--font-size-base);height:24px;margin-right:7px;padding:5px 3px 3px;text-align:center;width:24px}.form-section-help{color:var(--text-muted);font-size:var(--font-size-sm);margin-bottom:0;margin-top:-4px}.form-actions{display:flex;justify-items:flex-end;flex-direction:row-reverse;padding:0}.form-actions .btn{margin-left:10px}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .form-help,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:var(--gray-800)}.has-error .form-widget input.form-control,.has-error .form-widget select.form-control,.has-error .form-widget textarea.form-control{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}form .invalid-feedback{color:var(--color-danger);font-weight:500;padding-top:6px}form .invalid-feedback .badge-danger{font-size:.6875rem;margin-right:2px;padding:3px 4px}form .invalid-feedback>.d-block+.d-block{margin-top:5px}.easyadmin-vich-image img{box-shadow:0 0 0 4px var(--white),0 0 4px 3px var(--gray-600);margin:6px 4px 12px;max-height:300px;max-width:100%}.easyadmin-vich-file-name{display:block;margin:4px 0 8px}.easyadmin-vich-file-name .fa{font-size:18px}.easyadmin-vich-file-actions>div,.easyadmin-vich-image-actions>div{float:left;margin-right:4px}.easyadmin-vich-file-actions:after,.easyadmin-vich-image-actions:after{clear:left;content:\"\";display:block}.easyadmin-vich-file-actions .field-checkbox,.easyadmin-vich-image-actions .field-checkbox{padding-top:4px}.easyadmin-vich-image-actions .form-widget{flex-basis:100%}.input-file-container{overflow:hidden;position:relative}.input-file-container [type=file]{cursor:inherit;display:block;font-size:999px;filter:opacity(0);min-height:100%;min-width:100%;opacity:0;position:absolute;right:0;text-align:right;top:0}.field-easyadmin_code_editor .form-widget{flex-basis:65%}.btn{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.07),0 1px 2px 0 rgba(0,0,0,.08);cursor:pointer;text-decoration:none;white-space:nowrap}.btn:not(:disabled):not(.disabled):not(.btn-link):active,.btn:not(:disabled):not(.disabled):not(.btn-link):active:focus,.btn:not(:disabled):not(.disabled):not(.btn-link):focus,.btn:not(:disabled):not(.disabled):not(.btn-link):hover{box-shadow:0 0 0 1px rgba(43,45,80,.1),0 2px 5px 0 rgba(43,45,80,.1),0 3px 9px 0 rgba(43,45,80,.08),0 1px 1.5px 0 rgba(0,0,0,.08),0 1px 2px 0 rgba(0,0,0,.08)}.btn-primary,.btn-primary:hover,.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled):focus{background-color:var(--color-primary);color:var(--text-on-primary)}.btn-secondary,.btn-secondary.disabled,.btn-secondary[disabled]{background-color:var(--white);color:var(--color-text)}.btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled):focus{background-color:var(--white);color:var(--color-text-dark)}.btn-info,.btn-info:hover,.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled):focus,.btn.btn-info{background-color:var(--color-info);color:var(--white)}.btn-success,.btn-success:hover,.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled):focus,.btn.btn-success{background-color:var(--color-success);color:var(--white)}.btn-danger,.btn-danger:hover,.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled):focus,.btn.btn-danger{background-color:var(--color-danger);color:var(--white)}.btn-warning,.btn-warning:hover,.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled):focus,.btn.btn-warning{background-color:var(--color-warning);color:var(--white)}.btn-link,.btn-link:active,.btn-link:active:focus,.btn-link:focus,.btn-link:hover{box-shadow:none}.btn.disabled,.btn.disabled:active,.btn.disabled:active:focus,.btn.disabled:focus,.btn.disabled:hover,.btn:disabled,.btn:disabled:active,.btn:disabled:active:focus,.btn:disabled:focus,.btn:disabled:hover{box-shadow:none;cursor:not-allowed}a.btn.disabled,fieldset:disabled a.btn{pointer-events:unset}.btn>.btn-label{margin:0;cursor:inherit}.btn>.btn-label+i,.btn>i+.btn-label{margin-left:4px}.btn-group-sm>.btn,.btn-sm{padding:3px 7px}.checkbox-switch{position:relative}.checkbox-switch label{margin-bottom:0}.checkbox-switch input{display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:0;height:0%;margin:0;filter:opacity(0)}.checkbox-switch input+span{cursor:pointer;user-select:none}.checkbox-switch input+span:before{position:absolute;left:0;display:inline-block;content:\"\";height:20px;background:hsla(0,0%,39.2%,.2);box-shadow:inset 0 0 5px rgba(0,0,0,.8);transition:background .2s ease-out}.checkbox-switch input+span:after{display:block;height:20px;left:0;position:absolute;text-align:center;top:0;transition:margin-left .1s ease-in-out}.checkbox-switch input:checked+span:before{transition:background .2s ease-in}.checkbox-switch input+span{padding-left:40px}.checkbox-switch input+span:before{border-radius:20px;width:40px}.checkbox-switch input+span:after{background:var(--white);border:2px solid transparent;border-radius:20px;content:\"\";background-clip:padding-box;width:20px}.checkbox-switch input:not(:checked)+span:after{animation:popOut .3s ease-in normal}.checkbox-switch input:checked+span:after{content:\"\";margin-left:20px;border:2px solid transparent;background-clip:padding-box;animation:popIn .3s ease-in normal}.checkbox-switch input:checked+span:before{background:var(--color-success)}.checkbox-switch input:not(checked)+span:before{background:var(--color-danger)}.checkbox-switch input+span:before{box-shadow:none}.checkbox-switch.disabled label{cursor:not-allowed}.checkbox-switch input:disabled+span:before{background:var(--gray-300);cursor:not-allowed}.select2-container--bootstrap .select2-selection{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);color:var(--text-color);max-width:350px;transition:box-shadow .08s ease-in,color .08s ease-in}.long .select2-container--bootstrap .select2-selection{max-width:unset!important}.short .select2-container--bootstrap .select2-selection{max-width:150px}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection,.select2-container--bootstrap .select2-dropdown{border:0;box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(6,122,184,.2),0 0 0 2px rgba(6,122,184,.25),0 1px 1px rgba(0,0,0,.08);outline:0}.select2-container--bootstrap .select2-dropdown{margin-top:1px}.select2-container--bootstrap .select2-dropdown--above{margin-top:-2px}.select2-container--bootstrap .select2-selection .select2-search--inline{margin:0}.select2-container--bootstrap .select2-selection--single{height:30px;padding:5px 24px 5px 7px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{margin:4px 0 0 7px}.select2-container--bootstrap .select2-results__option{margin-bottom:0}.select2-container--bootstrap .select2-results__option[aria-selected=true]{background-color:var(--body-bg);font-weight:500}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{background-color:var(--body-bg);color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple{min-height:30px}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{color:var(--text-color)}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{color:var(--text-color);font-weight:500;position:relative;top:-1px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{border:0;border-radius:var(--border-radius);box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);height:30px;margin:5px;padding:4px 7px;width:96%}.select2-search--inline .select2-search__field:focus{outline:0;border:0}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{height:30px}.has-error .form-widget .select2-container--bootstrap .select2-selection{box-shadow:0 0 0 1px rgba(43,45,80,0),0 0 0 1px rgba(183,6,32,.2),0 0 0 2px rgba(183,6,32,.25),0 1px 1px rgba(0,0,0,.08)}body.error .error-message{max-width:500px;min-height:400px;padding:45px}body.error .error-message h1{color:var(--color-danger);font-size:var(--font-size-lg);font-weight:600}body.error .error-message h1 i{margin-right:4px}body.page-login{height:100vh;justify-content:center;overflow:hidden;position:absolute;width:100vw}.login-wrapper,body.page-login{align-items:center;display:flex}.login-wrapper{flex-direction:column;text-align:center;width:330px}.login-wrapper .main-header{display:block;padding-right:0}.login-wrapper .main-header #header-logo{font-size:24px;line-height:1.2}.login-wrapper .content{padding:30px 20px;width:100%}.login-wrapper .form-widget{flex:100%;padding-left:0}.login-wrapper .form-widget-with-icon{align-items:baseline;display:flex;flex-direction:row}.login-wrapper .form-widget-with-icon i{color:var(--gray-500);font-size:18px;margin-right:10px}.login-wrapper .form-widget input{font-size:var(--font-size-lg);height:38px;line-height:38px}.page-blank .content-wrapper{display:block}.page-content-with-padding .content-body{padding:18px 20px}"]} \ No newline at end of file diff --git a/src/Resources/public/app.js b/src/Resources/public/app.js index 04f64ff96b..d300a952c6 100644 --- a/src/Resources/public/app.js +++ b/src/Resources/public/app.js @@ -90,4 +90,4 @@ function(e){var t,n,i,r,o,s,a,l,c,u,d,p,h,f,g,m,v,y,b,w="sizzle"+1*new Date,_=e. * Version: 1.9.0 * Date: 13th August 2014 */ -var t;(t=e).fn.areYouSure=function(e){var n=t.extend({message:"You have unsaved changes!",dirtyClass:"dirty",change:null,silent:!1,addRemoveFieldsMarksDirty:!1,fieldEvents:"change keyup propertychange input",fieldSelector:":input:not(input[type=submit]):not(input[type=button])"},e),i=function(e){if(e.hasClass("ays-ignore")||e.hasClass("aysIgnore")||e.attr("data-ays-ignore")||void 0===e.attr("name"))return null;if(e.is(":disabled"))return"ays-disabled";var n,i=e.attr("type");switch(e.is("select")&&(i="select"),i){case"checkbox":case"radio":n=e.is(":checked");break;case"select":n="",e.find("option").each(function(e){var i=t(this);i.is(":selected")&&(n+=i.val())});break;default:n=e.val()}return n},r=function(e){e.data("ays-orig",i(e))},o=function(e){var r=function(e){var t=e.data("ays-orig");return void 0!==t&&i(e)!=t},o=t(this).is("form")?t(this):t(this).parents("form");if(r(t(e.target)))a(o,!0);else{if($fields=o.find(n.fieldSelector),n.addRemoveFieldsMarksDirty&&o.data("ays-orig-field-count")!=$fields.length)return void a(o,!0);var s=!1;$fields.each(function(){if($field=t(this),r($field))return s=!0,!1}),a(o,s)}},s=function(e){var i=e.find(n.fieldSelector);t(i).each(function(){r(t(this))}),t(i).unbind(n.fieldEvents,o),t(i).bind(n.fieldEvents,o),e.data("ays-orig-field-count",t(i).length),a(e,!1)},a=function(e,t){var i=t!=e.hasClass(n.dirtyClass);e.toggleClass(n.dirtyClass,t),i&&(n.change&&n.change.call(e,e),t&&e.trigger("dirty.areYouSure",[e]),t||e.trigger("clean.areYouSure",[e]),e.trigger("change.areYouSure",[e]))},l=function(){var e=t(this),i=e.find(n.fieldSelector);t(i).each(function(){var e=t(this);e.data("ays-orig")||(r(e),e.bind(n.fieldEvents,o))}),e.trigger("checkform.areYouSure")},c=function(){s(t(this))};return n.silent||window.aysUnloadSet||(window.aysUnloadSet=!0,t(window).bind("beforeunload",function(){if($dirtyForms=t("form").filter("."+n.dirtyClass),0!=$dirtyForms.length){if(navigator.userAgent.toLowerCase().match(/msie|chrome/)){if(window.aysHasPrompted)return;window.aysHasPrompted=!0,window.setTimeout(function(){window.aysHasPrompted=!1},900)}return n.message}})),this.each(function(e){if(t(this).is("form")){var i=t(this);i.submit(function(){i.removeClass(n.dirtyClass)}),i.bind("reset",function(){a(i,!1)}),i.bind("rescan.areYouSure",l),i.bind("reinitialize.areYouSure",c),i.bind("checkform.areYouSure",o),s(i)}})}}).call(this,n("EVdn"))},XENs:function(e,t,n){},dkvM:function(e,t,n){"use strict";var i=n("EVdn"),r=n.n(i),o=n("PsVt");const s="4.3.1",a="bs.tab",l=`.${a}`,c=r.a.fn.tab,u={HIDE:`hide${l}`,HIDDEN:`hidden${l}`,SHOW:`show${l}`,SHOWN:`shown${l}`,CLICK_DATA_API:`click${l}.data-api`},d={DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active",DISABLED:"disabled",FADE:"fade",SHOW:"show"},p={DROPDOWN:".dropdown",NAV_LIST_GROUP:".nav, .list-group",ACTIVE:".active",ACTIVE_UL:"> li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"};class h{constructor(e){this._element=e}static get VERSION(){return s}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&r()(this._element).hasClass(d.ACTIVE)||r()(this._element).hasClass(d.DISABLED))return;let e,t;const n=r()(this._element).closest(p.NAV_LIST_GROUP)[0],i=o.a.getSelectorFromElement(this._element);if(n){const e="UL"===n.nodeName||"OL"===n.nodeName?p.ACTIVE_UL:p.ACTIVE;t=(t=r.a.makeArray(r()(n).find(e)))[t.length-1]}const s=r.a.Event(u.HIDE,{relatedTarget:this._element}),a=r.a.Event(u.SHOW,{relatedTarget:t});if(t&&r()(t).trigger(s),r()(this._element).trigger(a),a.isDefaultPrevented()||s.isDefaultPrevented())return;i&&(e=document.querySelector(i)),this._activate(this._element,n);const l=()=>{const e=r.a.Event(u.HIDDEN,{relatedTarget:this._element}),n=r.a.Event(u.SHOWN,{relatedTarget:t});r()(t).trigger(e),r()(this._element).trigger(n)};e?this._activate(e,e.parentNode,l):l()}dispose(){r.a.removeData(this._element,a),this._element=null}_activate(e,t,n){const i=(!t||"UL"!==t.nodeName&&"OL"!==t.nodeName?r()(t).children(p.ACTIVE):r()(t).find(p.ACTIVE_UL))[0],s=n&&i&&r()(i).hasClass(d.FADE),a=()=>this._transitionComplete(e,i,n);if(i&&s){const e=o.a.getTransitionDurationFromElement(i);r()(i).removeClass(d.SHOW).one(o.a.TRANSITION_END,a).emulateTransitionEnd(e)}else a()}_transitionComplete(e,t,n){if(t){r()(t).removeClass(d.ACTIVE);const e=r()(t.parentNode).find(p.DROPDOWN_ACTIVE_CHILD)[0];e&&r()(e).removeClass(d.ACTIVE),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!1)}if(r()(e).addClass(d.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),o.a.reflow(e),e.classList.contains(d.FADE)&&e.classList.add(d.SHOW),e.parentNode&&r()(e.parentNode).hasClass(d.DROPDOWN_MENU)){const t=r()(e).closest(p.DROPDOWN)[0];if(t){const e=[].slice.call(t.querySelectorAll(p.DROPDOWN_TOGGLE));r()(e).addClass(d.ACTIVE)}e.setAttribute("aria-expanded",!0)}n&&n()}static _jQueryInterface(e){return this.each(function(){const t=r()(this);let n=t.data(a);if(n||(n=new h(this),t.data(a,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError(`No method named "${e}"`);n[e]()}})}}r()(document).on(u.CLICK_DATA_API,p.DATA_TOGGLE,function(e){e.preventDefault(),h._jQueryInterface.call(r()(this),"show")}),r.a.fn.tab=h._jQueryInterface,r.a.fn.tab.Constructor=h,r.a.fn.tab.noConflict=(()=>(r.a.fn.tab=c,h._jQueryInterface))},ng4s:function(e,t,n){"use strict";n.r(t),function(e,t){n("Adff"),n("dkvM"),n("9e8n"),n("urH6"),n("Ke6o"),n("B5w2"),n("C6pt"),n("WyS6"),n("W8rw"),n("2hVI"),n("DjPg");function i(){t("[data-easyadmin-autocomplete-url]").each(function(){var e=t(this),n=e.data("easyadmin-autocomplete-url");e.select2({theme:"bootstrap",ajax:{url:n,dataType:"json",delay:250,data:function(e){return{query:e.term,page:e.page}},processResults:function(e,t){return{results:e.results,pagination:{more:e.has_next_page}}},cache:!0},placeholder:"",allowClear:!0,minimumInputLength:1})})}n("XENs"),e.$=e.jQuery=n("EVdn"),window.addEventListener("load",function(){var e;t('[data-toggle="popover"]').popover(),t('[data-toggle="dropdown"]').dropdown(),t(".collapse").collapse(),e=function(){var e=t(this);e.closest(".form-group").find('select, input[type="date"], input[type="time"], input[type="datetime-local"]').each(function(){var n=e.is(":checked");t(this).prop("disabled",n),n?t(this).closest(".datetime-widget").slideUp({duration:200}):t(this).closest(".datetime-widget").slideDown({duration:200})})},t(".nullable-control :checkbox").bind("change",e).each(e),i(),t(document).on("easyadmin.collection.item-added",i),function(){var e=document.getElementById("sidebar-resizer-handler"),t=document.getElementById("content-resizer-handler");null!==e&&e.addEventListener("click",function(){var e=localStorage.getItem("easyadmin/sidebar/width")||"normal",t="normal"==e?"compact":"normal";document.querySelector("body").classList.remove("easyadmin-sidebar-width-"+e),document.querySelector("body").classList.add("easyadmin-sidebar-width-"+t),localStorage.setItem("easyadmin/sidebar/width",t)});null!==t&&t.addEventListener("click",function(){var e=localStorage.getItem("easyadmin/content/width")||"normal",t="normal"==e?"full":"normal";document.querySelector("body").classList.remove("easyadmin-content-width-"+e),document.querySelector("body").classList.add("easyadmin-content-width-"+t),localStorage.setItem("easyadmin/content/width",t)})}(),function(){var e,t=document.getElementById("navigation-toggler"),n="easyadmin-mobile-sidebar-visible";if(null===t)return;t.addEventListener("click",function(){document.querySelector("body").classList.toggle(n),document.querySelector("body").classList.contains(n)?((e=document.createElement("div")).classList.add("modal-backdrop","fade","show"),e.onclick=function(){document.querySelector("body").classList.remove(n),document.body.removeChild(e),e=null},document.body.appendChild(e)):e&&(document.body.removeChild(e),e=null)})}()})}.call(this,n("yLpj"),n("EVdn"))},urH6:function(e,t,n){"use strict";var i=n("EVdn"),r=n.n(i),o=n("9e8n");const s="popover",a="4.3.1",l="bs.popover",c=`.${l}`,u=r.a.fn[s],d="bs-popover",p=new RegExp(`(^|\\s)${d}\\S+`,"g"),h={...o.a.Default,placement:"right",trigger:"click",content:"",template:''},f={...o.a.DefaultType,content:"(string|element|function)"},g={FADE:"fade",SHOW:"show"},m={TITLE:".popover-header",CONTENT:".popover-body"},v={HIDE:`hide${c}`,HIDDEN:`hidden${c}`,SHOW:`show${c}`,SHOWN:`shown${c}`,INSERTED:`inserted${c}`,CLICK:`click${c}`,FOCUSIN:`focusin${c}`,FOCUSOUT:`focusout${c}`,MOUSEENTER:`mouseenter${c}`,MOUSELEAVE:`mouseleave${c}`};class y extends o.a{static get VERSION(){return a}static get Default(){return h}static get NAME(){return s}static get DATA_KEY(){return l}static get Event(){return v}static get EVENT_KEY(){return c}static get DefaultType(){return f}isWithContent(){return this.getTitle()||this._getContent()}addAttachmentClass(e){r()(this.getTipElement()).addClass(`${d}-${e}`)}getTipElement(){return this.tip=this.tip||r()(this.config.template)[0],this.tip}setContent(){const e=r()(this.getTipElement());this.setElementContent(e.find(m.TITLE),this.getTitle());let t=this._getContent();"function"==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find(m.CONTENT),t),e.removeClass(`${g.FADE} ${g.SHOW}`)}_getContent(){return this.element.getAttribute("data-content")||this.config.content}_cleanTipClass(){const e=r()(this.getTipElement()),t=e.attr("class").match(p);null!==t&&t.length>0&&e.removeClass(t.join(""))}static _jQueryInterface(e){return this.each(function(){let t=r()(this).data(l);const n="object"==typeof e?e:null;if((t||!/dispose|hide/.test(e))&&(t||(t=new y(this,n),r()(this).data(l,t)),"string"==typeof e)){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}})}}r.a.fn[s]=y._jQueryInterface,r.a.fn[s].Constructor=y,r.a.fn[s].noConflict=(()=>(r.a.fn[s]=u,y._jQueryInterface))},yLpj:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n}}); \ No newline at end of file +var t;(t=e).fn.areYouSure=function(e){var n=t.extend({message:"You have unsaved changes!",dirtyClass:"dirty",change:null,silent:!1,addRemoveFieldsMarksDirty:!1,fieldEvents:"change keyup propertychange input",fieldSelector:":input:not(input[type=submit]):not(input[type=button])"},e),i=function(e){if(e.hasClass("ays-ignore")||e.hasClass("aysIgnore")||e.attr("data-ays-ignore")||void 0===e.attr("name"))return null;if(e.is(":disabled"))return"ays-disabled";var n,i=e.attr("type");switch(e.is("select")&&(i="select"),i){case"checkbox":case"radio":n=e.is(":checked");break;case"select":n="",e.find("option").each(function(e){var i=t(this);i.is(":selected")&&(n+=i.val())});break;default:n=e.val()}return n},r=function(e){e.data("ays-orig",i(e))},o=function(e){var r=function(e){var t=e.data("ays-orig");return void 0!==t&&i(e)!=t},o=t(this).is("form")?t(this):t(this).parents("form");if(r(t(e.target)))a(o,!0);else{if($fields=o.find(n.fieldSelector),n.addRemoveFieldsMarksDirty&&o.data("ays-orig-field-count")!=$fields.length)return void a(o,!0);var s=!1;$fields.each(function(){if($field=t(this),r($field))return s=!0,!1}),a(o,s)}},s=function(e){var i=e.find(n.fieldSelector);t(i).each(function(){r(t(this))}),t(i).unbind(n.fieldEvents,o),t(i).bind(n.fieldEvents,o),e.data("ays-orig-field-count",t(i).length),a(e,!1)},a=function(e,t){var i=t!=e.hasClass(n.dirtyClass);e.toggleClass(n.dirtyClass,t),i&&(n.change&&n.change.call(e,e),t&&e.trigger("dirty.areYouSure",[e]),t||e.trigger("clean.areYouSure",[e]),e.trigger("change.areYouSure",[e]))},l=function(){var e=t(this),i=e.find(n.fieldSelector);t(i).each(function(){var e=t(this);e.data("ays-orig")||(r(e),e.bind(n.fieldEvents,o))}),e.trigger("checkform.areYouSure")},c=function(){s(t(this))};return n.silent||window.aysUnloadSet||(window.aysUnloadSet=!0,t(window).bind("beforeunload",function(){if($dirtyForms=t("form").filter("."+n.dirtyClass),0!=$dirtyForms.length){if(navigator.userAgent.toLowerCase().match(/msie|chrome/)){if(window.aysHasPrompted)return;window.aysHasPrompted=!0,window.setTimeout(function(){window.aysHasPrompted=!1},900)}return n.message}})),this.each(function(e){if(t(this).is("form")){var i=t(this);i.submit(function(){i.removeClass(n.dirtyClass)}),i.bind("reset",function(){a(i,!1)}),i.bind("rescan.areYouSure",l),i.bind("reinitialize.areYouSure",c),i.bind("checkform.areYouSure",o),s(i)}})}}).call(this,n("EVdn"))},XENs:function(e,t,n){},dkvM:function(e,t,n){"use strict";var i=n("EVdn"),r=n.n(i),o=n("PsVt");const s="4.3.1",a="bs.tab",l=`.${a}`,c=r.a.fn.tab,u={HIDE:`hide${l}`,HIDDEN:`hidden${l}`,SHOW:`show${l}`,SHOWN:`shown${l}`,CLICK_DATA_API:`click${l}.data-api`},d={DROPDOWN_MENU:"dropdown-menu",ACTIVE:"active",DISABLED:"disabled",FADE:"fade",SHOW:"show"},p={DROPDOWN:".dropdown",NAV_LIST_GROUP:".nav, .list-group",ACTIVE:".active",ACTIVE_UL:"> li > .active",DATA_TOGGLE:'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',DROPDOWN_TOGGLE:".dropdown-toggle",DROPDOWN_ACTIVE_CHILD:"> .dropdown-menu .active"};class h{constructor(e){this._element=e}static get VERSION(){return s}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&r()(this._element).hasClass(d.ACTIVE)||r()(this._element).hasClass(d.DISABLED))return;let e,t;const n=r()(this._element).closest(p.NAV_LIST_GROUP)[0],i=o.a.getSelectorFromElement(this._element);if(n){const e="UL"===n.nodeName||"OL"===n.nodeName?p.ACTIVE_UL:p.ACTIVE;t=(t=r.a.makeArray(r()(n).find(e)))[t.length-1]}const s=r.a.Event(u.HIDE,{relatedTarget:this._element}),a=r.a.Event(u.SHOW,{relatedTarget:t});if(t&&r()(t).trigger(s),r()(this._element).trigger(a),a.isDefaultPrevented()||s.isDefaultPrevented())return;i&&(e=document.querySelector(i)),this._activate(this._element,n);const l=()=>{const e=r.a.Event(u.HIDDEN,{relatedTarget:this._element}),n=r.a.Event(u.SHOWN,{relatedTarget:t});r()(t).trigger(e),r()(this._element).trigger(n)};e?this._activate(e,e.parentNode,l):l()}dispose(){r.a.removeData(this._element,a),this._element=null}_activate(e,t,n){const i=(!t||"UL"!==t.nodeName&&"OL"!==t.nodeName?r()(t).children(p.ACTIVE):r()(t).find(p.ACTIVE_UL))[0],s=n&&i&&r()(i).hasClass(d.FADE),a=()=>this._transitionComplete(e,i,n);if(i&&s){const e=o.a.getTransitionDurationFromElement(i);r()(i).removeClass(d.SHOW).one(o.a.TRANSITION_END,a).emulateTransitionEnd(e)}else a()}_transitionComplete(e,t,n){if(t){r()(t).removeClass(d.ACTIVE);const e=r()(t.parentNode).find(p.DROPDOWN_ACTIVE_CHILD)[0];e&&r()(e).removeClass(d.ACTIVE),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!1)}if(r()(e).addClass(d.ACTIVE),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!0),o.a.reflow(e),e.classList.contains(d.FADE)&&e.classList.add(d.SHOW),e.parentNode&&r()(e.parentNode).hasClass(d.DROPDOWN_MENU)){const t=r()(e).closest(p.DROPDOWN)[0];if(t){const e=[].slice.call(t.querySelectorAll(p.DROPDOWN_TOGGLE));r()(e).addClass(d.ACTIVE)}e.setAttribute("aria-expanded",!0)}n&&n()}static _jQueryInterface(e){return this.each(function(){const t=r()(this);let n=t.data(a);if(n||(n=new h(this),t.data(a,n)),"string"==typeof e){if(void 0===n[e])throw new TypeError(`No method named "${e}"`);n[e]()}})}}r()(document).on(u.CLICK_DATA_API,p.DATA_TOGGLE,function(e){e.preventDefault(),h._jQueryInterface.call(r()(this),"show")}),r.a.fn.tab=h._jQueryInterface,r.a.fn.tab.Constructor=h,r.a.fn.tab.noConflict=(()=>(r.a.fn.tab=c,h._jQueryInterface))},ng4s:function(e,t,n){"use strict";n.r(t),function(e,t){n("Adff"),n("dkvM"),n("9e8n"),n("urH6"),n("Ke6o"),n("B5w2"),n("C6pt"),n("WyS6"),n("W8rw"),n("2hVI"),n("DjPg");function i(){t("[data-easyadmin-autocomplete-url]").each(function(){var e=t(this),n=e.data("easyadmin-autocomplete-url");e.select2({theme:"bootstrap",ajax:{url:n,dataType:"json",delay:250,data:function(e){return{query:e.term,page:e.page}},processResults:function(e,t){return{results:e.results,pagination:{more:e.has_next_page}}},cache:!0},placeholder:"",allowClear:!0,minimumInputLength:1})})}n("XENs"),e.$=e.jQuery=n("EVdn"),window.addEventListener("load",function(){var e;t('[data-toggle="popover"]').popover(),t('[data-toggle="dropdown"]').dropdown(),t(".collapse").collapse(),e=function(){var e=t(this);e.closest(".form-group").find('select, input[type="date"], input[type="time"], input[type="datetime-local"]').each(function(){var n=e.is(":checked");t(this).prop("disabled",n),n?t(this).closest(".datetime-widget").slideUp({duration:200}):t(this).closest(".datetime-widget").slideDown({duration:200})})},t(".nullable-control :checkbox").bind("change",e).each(e),i(),t(document).on("easyadmin.collection.item-added",i),function(){var e=document.getElementById("sidebar-resizer-handler"),t=document.getElementById("content-resizer-handler");null!==e&&e.addEventListener("click",function(){var e=localStorage.getItem("easyadmin/sidebar/width")||"normal",t="normal"==e?"compact":"normal";document.querySelector("body").classList.remove("easyadmin-sidebar-width-"+e),document.querySelector("body").classList.add("easyadmin-sidebar-width-"+t),localStorage.setItem("easyadmin/sidebar/width",t)});null!==t&&t.addEventListener("click",function(){var e=localStorage.getItem("easyadmin/content/width")||"normal",t="normal"==e?"full":"normal";document.querySelector("body").classList.remove("easyadmin-content-width-"+e),document.querySelector("body").classList.add("easyadmin-content-width-"+t),localStorage.setItem("easyadmin/content/width",t)})}(),function(){var e,t=document.getElementById("navigation-toggler"),n="easyadmin-mobile-sidebar-visible";if(null===t)return;t.addEventListener("click",function(){document.querySelector("body").classList.toggle(n),document.querySelector("body").classList.contains(n)?((e=document.createElement("div")).classList.add("modal-backdrop","fade","show"),e.onclick=function(){document.querySelector("body").classList.remove(n),document.body.removeChild(e),e=null},document.body.appendChild(e)):e&&(document.body.removeChild(e),e=null)})}(),function(){var e=document.querySelectorAll("[data-easyadmin-code-editor]");if(0===e.length)return;var t=document.createElement("script");t.setAttribute("src",e[0].dataset.jsUrl);var n=document.createElement("link");n.setAttribute("rel","stylesheet"),n.setAttribute("href",e[0].dataset.cssUrl),document.querySelector("head").appendChild(n),document.querySelector("body").appendChild(t)}()})}.call(this,n("yLpj"),n("EVdn"))},urH6:function(e,t,n){"use strict";var i=n("EVdn"),r=n.n(i),o=n("9e8n");const s="popover",a="4.3.1",l="bs.popover",c=`.${l}`,u=r.a.fn[s],d="bs-popover",p=new RegExp(`(^|\\s)${d}\\S+`,"g"),h={...o.a.Default,placement:"right",trigger:"click",content:"",template:''},f={...o.a.DefaultType,content:"(string|element|function)"},g={FADE:"fade",SHOW:"show"},m={TITLE:".popover-header",CONTENT:".popover-body"},v={HIDE:`hide${c}`,HIDDEN:`hidden${c}`,SHOW:`show${c}`,SHOWN:`shown${c}`,INSERTED:`inserted${c}`,CLICK:`click${c}`,FOCUSIN:`focusin${c}`,FOCUSOUT:`focusout${c}`,MOUSEENTER:`mouseenter${c}`,MOUSELEAVE:`mouseleave${c}`};class y extends o.a{static get VERSION(){return a}static get Default(){return h}static get NAME(){return s}static get DATA_KEY(){return l}static get Event(){return v}static get EVENT_KEY(){return c}static get DefaultType(){return f}isWithContent(){return this.getTitle()||this._getContent()}addAttachmentClass(e){r()(this.getTipElement()).addClass(`${d}-${e}`)}getTipElement(){return this.tip=this.tip||r()(this.config.template)[0],this.tip}setContent(){const e=r()(this.getTipElement());this.setElementContent(e.find(m.TITLE),this.getTitle());let t=this._getContent();"function"==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find(m.CONTENT),t),e.removeClass(`${g.FADE} ${g.SHOW}`)}_getContent(){return this.element.getAttribute("data-content")||this.config.content}_cleanTipClass(){const e=r()(this.getTipElement()),t=e.attr("class").match(p);null!==t&&t.length>0&&e.removeClass(t.join(""))}static _jQueryInterface(e){return this.each(function(){let t=r()(this).data(l);const n="object"==typeof e?e:null;if((t||!/dispose|hide/.test(e))&&(t||(t=new y(this,n),r()(this).data(l,t)),"string"==typeof e)){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e]()}})}}r.a.fn[s]=y._jQueryInterface,r.a.fn[s].Constructor=y,r.a.fn[s].noConflict=(()=>(r.a.fn[s]=u,y._jQueryInterface))},yLpj:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n}}); \ No newline at end of file diff --git a/src/Resources/public/entrypoints.json b/src/Resources/public/entrypoints.json index 20f584b0cf..0bd564407b 100644 --- a/src/Resources/public/entrypoints.json +++ b/src/Resources/public/entrypoints.json @@ -23,6 +23,14 @@ "js": [ "./bootstrap-all.js" ] + }, + "form-type-code-editor": { + "css": [ + "./form-type-code-editor.css" + ], + "js": [ + "./form-type-code-editor.js" + ] } } } \ No newline at end of file diff --git a/src/Resources/public/form-type-code-editor.css b/src/Resources/public/form-type-code-editor.css new file mode 100644 index 0000000000..876b26ac8d --- /dev/null +++ b/src/Resources/public/form-type-code-editor.css @@ -0,0 +1,2 @@ +.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}.CodeMirror{font:13px/1.5 SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Ubuntu Mono,Courier New,monospace;height:auto;min-height:45px}.CodeMirror-wrap{box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);border-radius:var(--border-radius)}.CodeMirror-gutters{background:var(--gray-100)}.CodeMirror-linenumber{color:var(--text-muted)}.CodeMirror-lines{padding-bottom:5px} +/*# sourceMappingURL=form-type-code-editor.css.map */ \ No newline at end of file diff --git a/src/Resources/public/form-type-code-editor.css.map b/src/Resources/public/form-type-code-editor.css.map new file mode 100644 index 0000000000..22ca7c109b --- /dev/null +++ b/src/Resources/public/form-type-code-editor.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["css ./node_modules/css-loader??ref--5-1!./node_modules/postcss-loader/src??ref--5-2!./node_modules/codemirror/lib/codemirror.css","css ./node_modules/css-loader??ref--5-1!./node_modules/postcss-loader/src??ref--5-2!./assets/css/form-type-code-editor.css"],"names":[],"mappings":"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","file":"form-type-code-editor.css","sourcesContent":[".CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,.5)}.cm-animate-fat-cursor,.cm-fat-cursor-mark{-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-invalidchar,.cm-s-default .cm-error{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:\"\"}span.CodeMirror-selectedtext{background:none}",".CodeMirror{font:13px/1.5 SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Ubuntu Mono,Courier New,monospace;height:auto;min-height:45px}.CodeMirror-wrap{box-shadow:0 0 0 1px rgba(43,45,80,.16),0 0 0 1px rgba(6,122,184,0),0 0 0 2px rgba(6,122,184,0),0 1px 1px rgba(0,0,0,.08);border-radius:var(--border-radius)}.CodeMirror-gutters{background:var(--gray-100)}.CodeMirror-linenumber{color:var(--text-muted)}.CodeMirror-lines{padding-bottom:5px}"]} \ No newline at end of file diff --git a/src/Resources/public/form-type-code-editor.js b/src/Resources/public/form-type-code-editor.js new file mode 100644 index 0000000000..f60dabb996 --- /dev/null +++ b/src/Resources/public/form-type-code-editor.js @@ -0,0 +1 @@ +!function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="./",r(r.s="d8GY")}({"+dQi":function(e,t,r){!function(e){"use strict";e.defineMode("javascript",function(t,r){var n,i,o=t.indentUnit,a=r.statementIndent,l=r.jsonld,s=r.json||l,c=r.typescript,u=r.wordCharacters||/[\w$\xa1-\uffff]/,d=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),r=e("keyword b"),n=e("keyword c"),i=e("keyword d"),o=e("operator"),a={type:"atom",style:"atom"};return{if:e("if"),while:t,with:t,else:r,do:r,try:r,finally:r,return:i,break:i,continue:i,new:e("new"),delete:n,void:n,throw:n,debugger:e("debugger"),var:e("var"),const:e("var"),let:e("var"),function:e("function"),catch:e("catch"),for:e("for"),switch:e("switch"),case:e("case"),default:e("default"),in:o,typeof:o,instanceof:o,true:a,false:a,null:a,undefined:a,NaN:a,Infinity:a,this:e("this"),class:e("class"),super:e("atom"),yield:n,export:e("export"),import:e("import"),extends:n,await:n}}(),p=/[+\-*&%=<>!?|~^@]/,f=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function m(e,t,r){return n=e,i=r,t}function h(e,t){var r,n=e.next();if('"'==n||"'"==n)return t.tokenize=(r=n,function(e,t){var n,i=!1;if(l&&"@"==e.peek()&&e.match(f))return t.tokenize=h,m("jsonld-keyword","meta");for(;null!=(n=e.next())&&(n!=r||i);)i=!i&&"\\"==n;return i||(t.tokenize=h),m("string","string")}),t.tokenize(e,t);if("."==n&&e.match(/^\d+(?:[eE][+\-]?\d+)?/))return m("number","number");if("."==n&&e.match(".."))return m("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(n))return m(n);if("="==n&&e.eat(">"))return m("=>","operator");if("0"==n&&e.match(/^(?:x[\da-f]+|o[0-7]+|b[01]+)n?/i))return m("number","number");if(/\d/.test(n))return e.match(/^\d*(?:n|(?:\.\d*)?(?:[eE][+\-]?\d+)?)?/),m("number","number");if("/"==n)return e.eat("*")?(t.tokenize=g,g(e,t)):e.eat("/")?(e.skipToEnd(),m("comment","comment")):Ke(e,t,1)?(function(e){for(var t,r=!1,n=!1;null!=(t=e.next());){if(!r){if("/"==t&&!n)return;"["==t?n=!0:n&&"]"==t&&(n=!1)}r=!r&&"\\"==t}}(e),e.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),m("regexp","string-2")):(e.eat("="),m("operator","operator",e.current()));if("`"==n)return t.tokenize=v,v(e,t);if("#"==n)return e.skipToEnd(),m("error","error");if(p.test(n))return">"==n&&t.lexical&&">"==t.lexical.type||(e.eat("=")?"!"!=n&&"="!=n||e.eat("="):/[<>*+\-]/.test(n)&&(e.eat(n),">"==n&&e.eat(n))),m("operator","operator",e.current());if(u.test(n)){e.eatWhile(u);var i=e.current();if("."!=t.lastType){if(d.propertyIsEnumerable(i)){var o=d[i];return m(o.type,o.style,i)}if("async"==i&&e.match(/^(\s|\/\*.*?\*\/)*[\[\(\w]/,!1))return m("async","keyword",i)}return m("variable","variable",i)}}function g(e,t){for(var r,n=!1;r=e.next();){if("/"==r&&n){t.tokenize=h;break}n="*"==r}return m("comment","comment")}function v(e,t){for(var r,n=!1;null!=(r=e.next());){if(!n&&("`"==r||"$"==r&&e.eat("{"))){t.tokenize=h;break}n=!n&&"\\"==r}return m("quasi","string-2",e.current())}var y="([{}])";function x(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var r=e.string.indexOf("=>",e.start);if(!(r<0)){if(c){var n=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(e.string.slice(e.start,r));n&&(r=n.index)}for(var i=0,o=!1,a=r-1;a>=0;--a){var l=e.string.charAt(a),s=y.indexOf(l);if(s>=0&&s<3){if(!i){++a;break}if(0==--i){"("==l&&(o=!0);break}}else if(s>=3&&s<6)++i;else if(u.test(l))o=!0;else{if(/["'\/]/.test(l))return;if(o&&!i){++a;break}}}o&&!i&&(t.fatArrowAt=a)}}var b={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,"jsonld-keyword":!0};function _(e,t,r,n,i,o){this.indented=e,this.column=t,this.type=r,this.prev=i,this.info=o,null!=n&&(this.align=n)}function k(e,t){for(var r=e.localVars;r;r=r.next)if(r.name==t)return!0;for(var n=e.context;n;n=n.prev)for(var r=n.vars;r;r=r.next)if(r.name==t)return!0}var w={state:null,column:null,marked:null,cc:null};function S(){for(var e=arguments.length-1;e>=0;e--)w.cc.push(arguments[e])}function C(){return S.apply(null,arguments),!0}function M(e,t){for(var r=t;r;r=r.next)if(r.name==e)return!0;return!1}function T(e){var t=w.state;if(w.marked="def",t.context)if("var"==t.lexical.info&&t.context&&t.context.block){var n=function e(t,r){if(r){if(r.block){var n=e(t,r.prev);return n?n==r.prev?r:new D(n,r.vars,!0):null}return M(t,r.vars)?r:new D(r.prev,new z(t,r.vars),!1)}return null}(e,t.context);if(null!=n)return void(t.context=n)}else if(!M(e,t.localVars))return void(t.localVars=new z(e,t.localVars));r.globalVars&&!M(e,t.globalVars)&&(t.globalVars=new z(e,t.globalVars))}function L(e){return"public"==e||"private"==e||"protected"==e||"abstract"==e||"readonly"==e}function D(e,t,r){this.prev=e,this.vars=t,this.block=r}function z(e,t){this.name=e,this.next=t}var A=new z("this",new z("arguments",null));function N(){w.state.context=new D(w.state.context,w.state.localVars,!1),w.state.localVars=A}function q(){w.state.context=new D(w.state.context,w.state.localVars,!0),w.state.localVars=null}function F(){w.state.localVars=w.state.context.vars,w.state.context=w.state.context.prev}function E(e,t){var r=function(){var r=w.state,n=r.indented;if("stat"==r.lexical.type)n=r.lexical.indented;else for(var i=r.lexical;i&&")"==i.type&&i.align;i=i.prev)n=i.indented;r.lexical=new _(n,w.stream.column(),e,null,r.lexical,t)};return r.lex=!0,r}function O(){var e=w.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function I(e){return function t(r){return r==e?C():";"==e||"}"==r||")"==r||"]"==r?S():C(t)}}function P(e,t){return"var"==e?C(E("vardef",t),ye,I(";"),O):"keyword a"==e?C(E("form"),H,P,O):"keyword b"==e?C(E("form"),P,O):"keyword d"==e?w.stream.match(/^\s*$/,!1)?C():C(E("stat"),$,I(";"),O):"debugger"==e?C(I(";")):"{"==e?C(E("}"),q,ae,O,F):";"==e?C():"if"==e?("else"==w.state.lexical.info&&w.state.cc[w.state.cc.length-1]==O&&w.state.cc.pop()(),C(E("form"),H,P,O,Se)):"function"==e?C(Le):"for"==e?C(E("form"),Ce,P,O):"class"==e||c&&"interface"==t?(w.marked="keyword",C(E("form","class"==e?e:t),qe,O)):"variable"==e?c&&"declare"==t?(w.marked="keyword",C(P)):c&&("module"==t||"enum"==t||"type"==t)&&w.stream.match(/^\s*\w/,!1)?(w.marked="keyword","enum"==t?C(Ue):"type"==t?C(ze,I("operator"),ue,I(";")):C(E("form"),xe,I("{"),E("}"),ae,O,O)):c&&"namespace"==t?(w.marked="keyword",C(E("form"),j,P,O)):c&&"abstract"==t?(w.marked="keyword",C(P)):C(E("stat"),J):"switch"==e?C(E("form"),H,I("{"),E("}","switch"),q,ae,O,O,F):"case"==e?C(j,I(":")):"default"==e?C(I(":")):"catch"==e?C(E("form"),N,W,P,O,F):"export"==e?C(E("stat"),Ie,O):"import"==e?C(E("stat"),We,O):"async"==e?C(P):"@"==t?C(j,P):S(E("stat"),j,I(";"),O)}function W(e){if("("==e)return C(Ae,I(")"))}function j(e,t){return R(e,t,!1)}function B(e,t){return R(e,t,!0)}function H(e){return"("!=e?S():C(E(")"),j,I(")"),O)}function R(e,t,r){if(w.state.fatArrowAt==w.stream.start){var n=r?Y:X;if("("==e)return C(N,E(")"),ie(Ae,")"),O,I("=>"),n,F);if("variable"==e)return S(N,xe,I("=>"),n,F)}var i=r?V:U;return b.hasOwnProperty(e)?C(i):"function"==e?C(Le,i):"class"==e||c&&"interface"==t?(w.marked="keyword",C(E("form"),Ne,O)):"keyword c"==e||"async"==e?C(r?B:j):"("==e?C(E(")"),$,I(")"),O,i):"operator"==e||"spread"==e?C(r?B:j):"["==e?C(E("]"),$e,O,i):"{"==e?oe(te,"}",null,i):"quasi"==e?S(K,i):"new"==e?C(function(e){return function(t){return"."==t?C(e?Z:Q):"variable"==t&&c?C(he,e?V:U):S(e?B:j)}}(r)):"import"==e?C(j):C()}function $(e){return e.match(/[;\}\)\],]/)?S():S(j)}function U(e,t){return","==e?C(j):V(e,t,!1)}function V(e,t,r){var n=0==r?U:V,i=0==r?j:B;return"=>"==e?C(N,r?Y:X,F):"operator"==e?/\+\+|--/.test(t)||c&&"!"==t?C(n):c&&"<"==t&&w.stream.match(/^([^>]|<.*?>)*>\s*\(/,!1)?C(E(">"),ie(ue,">"),O,n):"?"==t?C(j,I(":"),i):C(i):"quasi"==e?S(K,n):";"!=e?"("==e?oe(B,")","call",n):"."==e?C(ee,n):"["==e?C(E("]"),$,I("]"),O,n):c&&"as"==t?(w.marked="keyword",C(ue,n)):"regexp"==e?(w.state.lastType=w.marked="operator",w.stream.backUp(w.stream.pos-w.stream.start-1),C(i)):void 0:void 0}function K(e,t){return"quasi"!=e?S():"${"!=t.slice(t.length-2)?C(K):C(j,G)}function G(e){if("}"==e)return w.marked="string-2",w.state.tokenize=v,C(K)}function X(e){return x(w.stream,w.state),S("{"==e?P:j)}function Y(e){return x(w.stream,w.state),S("{"==e?P:B)}function Q(e,t){if("target"==t)return w.marked="keyword",C(U)}function Z(e,t){if("target"==t)return w.marked="keyword",C(V)}function J(e){return":"==e?C(O,P):S(U,I(";"),O)}function ee(e){if("variable"==e)return w.marked="property",C()}function te(e,t){return"async"==e?(w.marked="property",C(te)):"variable"==e||"keyword"==w.style?(w.marked="property","get"==t||"set"==t?C(re):(c&&w.state.fatArrowAt==w.stream.start&&(r=w.stream.match(/^\s*:\s*/,!1))&&(w.state.fatArrowAt=w.stream.pos+r[0].length),C(ne))):"number"==e||"string"==e?(w.marked=l?"property":w.style+" property",C(ne)):"jsonld-keyword"==e?C(ne):c&&L(t)?(w.marked="keyword",C(te)):"["==e?C(j,le,I("]"),ne):"spread"==e?C(B,ne):"*"==t?(w.marked="keyword",C(te)):":"==e?S(ne):void 0;var r}function re(e){return"variable"!=e?S(ne):(w.marked="property",C(Le))}function ne(e){return":"==e?C(B):"("==e?S(Le):void 0}function ie(e,t,r){function n(i,o){if(r?r.indexOf(i)>-1:","==i){var a=w.state.lexical;return"call"==a.info&&(a.pos=(a.pos||0)+1),C(function(r,n){return r==t||n==t?S():S(e)},n)}return i==t||o==t?C():r&&r.indexOf(";")>-1?S(e):C(I(t))}return function(r,i){return r==t||i==t?C():S(e,n)}}function oe(e,t,r){for(var n=3;n"),ue):void 0}function de(e){if("=>"==e)return C(ue)}function pe(e,t){return"variable"==e||"keyword"==w.style?(w.marked="property",C(pe)):"?"==t||"number"==e||"string"==e?C(pe):":"==e?C(ue):"["==e?C(I("variable"),le,I("]"),pe):"("==e?S(De,pe):void 0}function fe(e,t){return"variable"==e&&w.stream.match(/^\s*[?:]/,!1)||"?"==t?C(fe):":"==e?C(ue):"spread"==e?C(fe):S(ue)}function me(e,t){return"<"==t?C(E(">"),ie(ue,">"),O,me):"|"==t||"."==e||"&"==t?C(ue):"["==e?C(ue,I("]"),me):"extends"==t||"implements"==t?(w.marked="keyword",C(ue)):"?"==t?C(ue,I(":"),ue):void 0}function he(e,t){if("<"==t)return C(E(">"),ie(ue,">"),O,me)}function ge(){return S(ue,ve)}function ve(e,t){if("="==t)return C(ue)}function ye(e,t){return"enum"==t?(w.marked="keyword",C(Ue)):S(xe,le,ke,we)}function xe(e,t){return c&&L(t)?(w.marked="keyword",C(xe)):"variable"==e?(T(t),C()):"spread"==e?C(xe):"["==e?oe(_e,"]"):"{"==e?oe(be,"}"):void 0}function be(e,t){return"variable"!=e||w.stream.match(/^\s*:/,!1)?("variable"==e&&(w.marked="property"),"spread"==e?C(xe):"}"==e?S():"["==e?C(j,I("]"),I(":"),be):C(I(":"),xe,ke)):(T(t),C(ke))}function _e(){return S(xe,ke)}function ke(e,t){if("="==t)return C(B)}function we(e){if(","==e)return C(ye)}function Se(e,t){if("keyword b"==e&&"else"==t)return C(E("form","else"),P,O)}function Ce(e,t){return"await"==t?C(Ce):"("==e?C(E(")"),Me,O):void 0}function Me(e){return"var"==e?C(ye,Te):"variable"==e?C(Te):S(Te)}function Te(e,t){return")"==e?C():";"==e?C(Te):"in"==t||"of"==t?(w.marked="keyword",C(j,Te)):S(j,Te)}function Le(e,t){return"*"==t?(w.marked="keyword",C(Le)):"variable"==e?(T(t),C(Le)):"("==e?C(N,E(")"),ie(Ae,")"),O,se,P,F):c&&"<"==t?C(E(">"),ie(ge,">"),O,Le):void 0}function De(e,t){return"*"==t?(w.marked="keyword",C(De)):"variable"==e?(T(t),C(De)):"("==e?C(N,E(")"),ie(Ae,")"),O,se,F):c&&"<"==t?C(E(">"),ie(ge,">"),O,De):void 0}function ze(e,t){return"keyword"==e||"variable"==e?(w.marked="type",C(ze)):"<"==t?C(E(">"),ie(ge,">"),O):void 0}function Ae(e,t){return"@"==t&&C(j,Ae),"spread"==e?C(Ae):c&&L(t)?(w.marked="keyword",C(Ae)):c&&"this"==e?C(le,ke):S(xe,le,ke)}function Ne(e,t){return"variable"==e?qe(e,t):Fe(e,t)}function qe(e,t){if("variable"==e)return T(t),C(Fe)}function Fe(e,t){return"<"==t?C(E(">"),ie(ge,">"),O,Fe):"extends"==t||"implements"==t||c&&","==e?("implements"==t&&(w.marked="keyword"),C(c?ue:j,Fe)):"{"==e?C(E("}"),Ee,O):void 0}function Ee(e,t){return"async"==e||"variable"==e&&("static"==t||"get"==t||"set"==t||c&&L(t))&&w.stream.match(/^\s+[\w$\xa1-\uffff]/,!1)?(w.marked="keyword",C(Ee)):"variable"==e||"keyword"==w.style?(w.marked="property",C(c?Oe:Le,Ee)):"number"==e||"string"==e?C(c?Oe:Le,Ee):"["==e?C(j,le,I("]"),c?Oe:Le,Ee):"*"==t?(w.marked="keyword",C(Ee)):c&&"("==e?S(De,Ee):";"==e||","==e?C(Ee):"}"==e?C():"@"==t?C(j,Ee):void 0}function Oe(e,t){if("?"==t)return C(Oe);if(":"==e)return C(ue,ke);if("="==t)return C(B);var r=w.state.lexical.prev,n=r&&"interface"==r.info;return S(n?De:Le)}function Ie(e,t){return"*"==t?(w.marked="keyword",C(Re,I(";"))):"default"==t?(w.marked="keyword",C(j,I(";"))):"{"==e?C(ie(Pe,"}"),Re,I(";")):S(P)}function Pe(e,t){return"as"==t?(w.marked="keyword",C(I("variable"))):"variable"==e?S(B,Pe):void 0}function We(e){return"string"==e?C():"("==e?S(j):S(je,Be,Re)}function je(e,t){return"{"==e?oe(je,"}"):("variable"==e&&T(t),"*"==t&&(w.marked="keyword"),C(He))}function Be(e){if(","==e)return C(je,Be)}function He(e,t){if("as"==t)return w.marked="keyword",C(je)}function Re(e,t){if("from"==t)return w.marked="keyword",C(j)}function $e(e){return"]"==e?C():S(ie(B,"]"))}function Ue(){return S(E("form"),xe,I("{"),E("}"),ie(Ve,"}"),O,O)}function Ve(){return S(xe,ke)}function Ke(e,t,r){return t.tokenize==h&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(t.lastType)||"quasi"==t.lastType&&/\{\s*$/.test(e.string.slice(0,e.pos-(r||0)))}return F.lex=!0,O.lex=!0,{startState:function(e){var t={tokenize:h,lastType:"sof",cc:[],lexical:new _((e||0)-o,0,"block",!1),localVars:r.localVars,context:r.localVars&&new D(null,null,!1),indented:e||0};return r.globalVars&&"object"==typeof r.globalVars&&(t.globalVars=r.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),x(e,t)),t.tokenize!=g&&e.eatSpace())return null;var r=t.tokenize(e,t);return"comment"==n?r:(t.lastType="operator"!=n||"++"!=i&&"--"!=i?n:"incdec",function(e,t,r,n,i){var o=e.cc;for(w.state=e,w.stream=i,w.marked=null,w.cc=o,w.style=t,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;){var a=o.length?o.pop():s?j:P;if(a(r,n)){for(;o.length&&o[o.length-1].lex;)o.pop()();return w.marked?w.marked:"variable"==r&&k(e,n)?"variable-2":t}}}(t,r,n,i,e))},indent:function(t,n){if(t.tokenize==g)return e.Pass;if(t.tokenize!=h)return 0;var i,l=n&&n.charAt(0),s=t.lexical;if(!/^\s*else\b/.test(n))for(var c=t.cc.length-1;c>=0;--c){var u=t.cc[c];if(u==O)s=s.prev;else if(u!=Se)break}for(;("stat"==s.type||"form"==s.type)&&("}"==l||(i=t.cc[t.cc.length-1])&&(i==U||i==V)&&!/^[,\.=+\-*:?[\(]/.test(n));)s=s.prev;a&&")"==s.type&&"stat"==s.prev.type&&(s=s.prev);var d=s.type,f=l==d;return"vardef"==d?s.indented+("operator"==t.lastType||","==t.lastType?s.info.length+1:0):"form"==d&&"{"==l?s.indented:"form"==d?s.indented+o:"stat"==d?s.indented+(function(e,t){return"operator"==e.lastType||","==e.lastType||p.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}(t,n)?a||o:0):"switch"!=s.info||f||0==r.doubleIndentSwitch?s.align?s.column+(f?0:1):s.indented+(f?0:o):s.indented+(/^(?:case|default)\b/.test(n)?o:2*o)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:s?null:"/*",blockCommentEnd:s?null:"*/",blockCommentContinue:s?null:" * ",lineComment:s?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:s?"json":"javascript",jsonldMode:l,jsonMode:s,expressionAllowed:Ke,skipExpression:function(e){var t=e.cc[e.cc.length-1];t!=j&&t!=B||e.cc.pop()}}}),e.registerHelper("wordChars","javascript",/[\w$]/),e.defineMIME("text/javascript","javascript"),e.defineMIME("text/ecmascript","javascript"),e.defineMIME("application/javascript","javascript"),e.defineMIME("application/x-javascript","javascript"),e.defineMIME("application/ecmascript","javascript"),e.defineMIME("application/json",{name:"javascript",json:!0}),e.defineMIME("application/x-json",{name:"javascript",json:!0}),e.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),e.defineMIME("text/typescript",{name:"javascript",typescript:!0}),e.defineMIME("application/typescript",{name:"javascript",typescript:!0})}(r("VrN/"))},"/9rB":function(e,t,r){!function(e){"use strict";function t(e){for(var t;null!=(t=e.next());)if("`"==t&&!e.eat("`"))return"variable-2";return e.backUp(e.current().length-1),e.eatWhile(/\w/)?"variable-2":null}function r(e){return e.eat("@")&&(e.match(/^session\./),e.match(/^local\./),e.match(/^global\./)),e.eat("'")?(e.match(/^.*'/),"variable-2"):e.eat('"')?(e.match(/^.*"/),"variable-2"):e.eat("`")?(e.match(/^.*`/),"variable-2"):e.match(/^[0-9a-zA-Z$\.\_]+/)?"variable-2":null}function n(e){return e.eat("N")?"atom":e.match(/^[a-zA-Z.#!?]/)?"variable-2":null}e.defineMode("sql",function(t,r){var n=r.client||{},l=r.atoms||{false:!0,true:!0,null:!0},s=r.builtin||o(a),c=r.keywords||o(i),u=r.operatorChars||/^[*+\-%<>!=&|~^\/]/,d=r.support||{},p=r.hooks||{},f=r.dateSQL||{date:!0,time:!0,timestamp:!0},m=!1!==r.backslashStringEscapes,h=r.brackets||/^[\{}\(\)\[\]]/,g=r.punctuation||/^[;.,:]/;function v(e,t){var r,i=e.next();if(p[i]){var o=p[i](e,t);if(!1!==o)return o}if(d.hexNumber&&("0"==i&&e.match(/^[xX][0-9a-fA-F]+/)||("x"==i||"X"==i)&&e.match(/^'[0-9a-fA-F]+'/)))return"number";if(d.binaryNumber&&(("b"==i||"B"==i)&&e.match(/^'[01]+'/)||"0"==i&&e.match(/^b[01]+/)))return"number";if(i.charCodeAt(0)>47&&i.charCodeAt(0)<58)return e.match(/^[0-9]*(\.[0-9]+)?([eE][-+]?[0-9]+)?/),d.decimallessFloat&&e.match(/^\.(?!\.)/),"number";if("?"==i&&(e.eatSpace()||e.eol()||e.eat(";")))return"variable-3";if("'"==i||'"'==i&&d.doubleQuote)return t.tokenize=(r=i,function(e,t){for(var n,i=!1;null!=(n=e.next());){if(n==r&&!i){t.tokenize=v;break}i=m&&!i&&"\\"==n}return"string"}),t.tokenize(e,t);if((d.nCharCast&&("n"==i||"N"==i)||d.charsetCast&&"_"==i&&e.match(/[a-z][a-z0-9]*/i))&&("'"==e.peek()||'"'==e.peek()))return"keyword";if(d.commentSlashSlash&&"/"==i&&e.eat("/"))return e.skipToEnd(),"comment";if(d.commentHash&&"#"==i||"-"==i&&e.eat("-")&&(!d.commentSpaceRequired||e.eat(" ")))return e.skipToEnd(),"comment";if("/"==i&&e.eat("*"))return t.tokenize=function e(t){return function(r,n){var i=r.match(/^.*?(\/\*|\*\/)/);return i?"/*"==i[1]?n.tokenize=e(t+1):n.tokenize=t>1?e(t-1):v:r.skipToEnd(),"comment"}}(1),t.tokenize(e,t);if("."!=i){if(u.test(i))return e.eatWhile(u),"operator";if(h.test(i))return"bracket";if(g.test(i))return e.eatWhile(g),"punctuation";if("{"==i&&(e.match(/^( )*(d|D|t|T|ts|TS)( )*'[^']*'( )*}/)||e.match(/^( )*(d|D|t|T|ts|TS)( )*"[^"]*"( )*}/)))return"number";e.eatWhile(/^[_\w\d]/);var a=e.current().toLowerCase();return f.hasOwnProperty(a)&&(e.match(/^( )+'[^']*'/)||e.match(/^( )+"[^"]*"/))?"number":l.hasOwnProperty(a)?"atom":s.hasOwnProperty(a)?"builtin":c.hasOwnProperty(a)?"keyword":n.hasOwnProperty(a)?"string-2":null}return d.zerolessFloat&&e.match(/^(?:\d+(?:e[+-]?\d+)?)/i)?"number":e.match(/^\.+/)?null:d.ODBCdotTable&&e.match(/^[\w\d_]+/)?"variable-2":void 0}function y(e,t,r){t.context={prev:t.context,indent:e.indentation(),col:e.column(),type:r}}return{startState:function(){return{tokenize:v,context:null}},token:function(e,t){if(e.sol()&&t.context&&null==t.context.align&&(t.context.align=!1),t.tokenize==v&&e.eatSpace())return null;var r=t.tokenize(e,t);if("comment"==r)return r;t.context&&null==t.context.align&&(t.context.align=!0);var n=e.current();return"("==n?y(e,t,")"):"["==n?y(e,t,"]"):t.context&&t.context.type==n&&function(e){e.indent=e.context.indent,e.context=e.context.prev}(t),r},indent:function(r,n){var i=r.context;if(!i)return e.Pass;var o=n.charAt(0)==i.type;return i.align?i.col+(o?0:1):i.indent+(o?0:t.indentUnit)},blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:d.commentSlashSlash?"//":d.commentHash?"#":"--",closeBrackets:"()[]{}''\"\"``"}});var i="alter and as asc between by count create delete desc distinct drop from group having in insert into is join like not on or order select set table union update values where limit ";function o(e){for(var t={},r=e.split(" "),n=0;n!=^\&|\/]/,brackets:/^[\{}\(\)]/,punctuation:/^[;.,:\/]/,backslashStringEscapes:!1,dateSQL:o("date datetimeoffset datetime2 smalldatetime datetime time"),hooks:{"@":r}}),e.defineMIME("text/x-mysql",{name:"sql",client:o("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"),keywords:o(i+"accessible action add after algorithm all analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general get global grant grants group group_concat handler hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show signal slave slow smallint snapshot soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),builtin:o("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),atoms:o("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^]/,dateSQL:o("date time timestamp"),support:o("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"),hooks:{"@":r,"`":t,"\\":n}}),e.defineMIME("text/x-mariadb",{name:"sql",client:o("charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee"),keywords:o(i+"accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group groupby_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat"),builtin:o("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric"),atoms:o("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^]/,dateSQL:o("date time timestamp"),support:o("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired"),hooks:{"@":r,"`":t,"\\":n}}),e.defineMIME("text/x-sqlite",{name:"sql",client:o("auth backup bail binary changes check clone databases dbinfo dump echo eqp exit explain fullschema headers help import imposter indexes iotrace limit lint load log mode nullvalue once open output print prompt quit read restore save scanstats schema separator session shell show stats system tables testcase timeout timer trace vfsinfo vfslist vfsname width"),keywords:o(i+"abort action add after all analyze attach autoincrement before begin cascade case cast check collate column commit conflict constraint cross current_date current_time current_timestamp database default deferrable deferred detach each else end escape except exclusive exists explain fail for foreign full glob if ignore immediate index indexed initially inner instead intersect isnull key left limit match natural no notnull null of offset outer plan pragma primary query raise recursive references regexp reindex release rename replace restrict right rollback row savepoint temp temporary then to transaction trigger unique using vacuum view virtual when with without"),builtin:o("bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text clob bigint int int2 int8 integer float double char varchar date datetime year unsigned signed numeric real"),atoms:o("null current_date current_time current_timestamp"),operatorChars:/^[*+\-%<>!=&|\/~]/,dateSQL:o("date time timestamp datetime"),support:o("decimallessFloat zerolessFloat"),identifierQuote:'"',hooks:{"@":r,":":r,"?":r,$:r,'"':function(e){for(var t;null!=(t=e.next());)if('"'==t&&!e.eat('"'))return"variable-2";return e.backUp(e.current().length-1),e.eatWhile(/\w/)?"variable-2":null},"`":t}}),e.defineMIME("text/x-cassandra",{name:"sql",client:{},keywords:o("add all allow alter and any apply as asc authorize batch begin by clustering columnfamily compact consistency count create custom delete desc distinct drop each_quorum exists filtering from grant if in index insert into key keyspace keyspaces level limit local_one local_quorum modify nan norecursive nosuperuser not of on one order password permission permissions primary quorum rename revoke schema select set storage superuser table three to token truncate ttl two type unlogged update use user users using values where with writetime"),builtin:o("ascii bigint blob boolean counter decimal double float frozen inet int list map static text timestamp timeuuid tuple uuid varchar varint"),atoms:o("false true infinity NaN"),operatorChars:/^[<>=]/,dateSQL:{},support:o("commentSlashSlash decimallessFloat"),hooks:{}}),e.defineMIME("text/x-plsql",{name:"sql",client:o("appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define describe echo editfile embedded escape exec execute feedback flagger flush heading headsep instance linesize lno loboffset logsource long longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar release repfooter repheader serveroutput shiftinout show showmode size spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout time timing trimout trimspool ttitle underline verify version wrap"),keywords:o("abort accept access add all alter and any array arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body boolean by case cast char char_base check close cluster clusters colauth column comment commit compress connect connected constant constraint crash create current currval cursor data_base database date dba deallocate debugoff debugon decimal declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry escape exception exception_init exchange exclusive exists exit external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging long loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base object of off offline on online only open option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw read rebuild record ref references refresh release rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate session set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work"),builtin:o("abs acos add_months ascii asin atan atan2 average bfile bfilename bigserial bit blob ceil character chartorowid chr clob concat convert cos cosh count dec decode deref dual dump dup_val_on_index empty error exp false float floor found glb greatest hextoraw initcap instr instrb int integer isopen last_day least length lengthb ln lower lpad ltrim lub make_ref max min mlslabel mod months_between natural naturaln nchar nclob new_time next_day nextval nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower nls_sort nls_upper nlssort no_data_found notfound null number numeric nvarchar2 nvl others power rawtohex real reftohex round rowcount rowidtochar rowtype rpad rtrim serial sign signtype sin sinh smallint soundex sqlcode sqlerrm sqrt stddev string substr substrb sum sysdate tan tanh to_char text to_date to_label to_multi_byte to_number to_single_byte translate true trunc uid unlogged upper user userenv varchar varchar2 variance varying vsize xml"),operatorChars:/^[*\/+\-%<>!=~]/,dateSQL:o("date time timestamp"),support:o("doubleQuote nCharCast zerolessFloat binaryNumber hexNumber")}),e.defineMIME("text/x-hive",{name:"sql",keywords:o("select alter $elem$ $key$ $value$ add after all analyze and archive as asc before between binary both bucket buckets by cascade case cast change cluster clustered clusterstatus collection column columns comment compute concatenate continue create cross cursor data database databases dbproperties deferred delete delimited desc describe directory disable distinct distribute drop else enable end escaped exclusive exists explain export extended external fetch fields fileformat first format formatted from full function functions grant group having hold_ddltime idxproperties if import in index indexes inpath inputdriver inputformat insert intersect into is items join keys lateral left like limit lines load local location lock locks mapjoin materialized minus msck no_drop nocompress not of offline on option or order out outer outputdriver outputformat overwrite partition partitioned partitions percent plus preserve procedure purge range rcfile read readonly reads rebuild recordreader recordwriter recover reduce regexp rename repair replace restrict revoke right rlike row schema schemas semi sequencefile serde serdeproperties set shared show show_database sort sorted ssl statistics stored streamtable table tables tablesample tblproperties temporary terminated textfile then tmp to touch transform trigger unarchive undo union uniquejoin unlock update use using utc utc_tmestamp view when where while with admin authorization char compact compactions conf cube current current_date current_timestamp day decimal defined dependency directories elem_type exchange file following for grouping hour ignore inner interval jar less logical macro minute month more none noscan over owner partialscan preceding pretty principals protection reload rewrite role roles rollup rows second server sets skewed transactions truncate unbounded unset uri user values window year"),builtin:o("bool boolean long timestamp tinyint smallint bigint int float double date datetime unsigned string array struct map uniontype key_type utctimestamp value_type varchar"),atoms:o("false true null unknown"),operatorChars:/^[*+\-%<>!=]/,dateSQL:o("date timestamp"),support:o("ODBCdotTable doubleQuote binaryNumber hexNumber")}),e.defineMIME("text/x-pgsql",{name:"sql",client:o("source"),keywords:o(i+"a abort abs absent absolute access according action ada add admin after aggregate alias all allocate also alter always analyse analyze and any are array array_agg array_max_cardinality as asc asensitive assert assertion assignment asymmetric at atomic attach attribute attributes authorization avg backward base64 before begin begin_frame begin_partition bernoulli between bigint binary bit bit_length blob blocked bom boolean both breadth by c cache call called cardinality cascade cascaded case cast catalog catalog_name ceil ceiling chain char char_length character character_length character_set_catalog character_set_name character_set_schema characteristics characters check checkpoint class class_origin clob close cluster coalesce cobol collate collation collation_catalog collation_name collation_schema collect column column_name columns command_function command_function_code comment comments commit committed concurrently condition condition_number configuration conflict connect connection connection_name constant constraint constraint_catalog constraint_name constraint_schema constraints constructor contains content continue control conversion convert copy corr corresponding cost count covar_pop covar_samp create cross csv cube cume_dist current current_catalog current_date current_default_transform_group current_path current_role current_row current_schema current_time current_timestamp current_transform_group_for_type current_user cursor cursor_name cycle data database datalink datatype date datetime_interval_code datetime_interval_precision day db deallocate debug dec decimal declare default defaults deferrable deferred defined definer degree delete delimiter delimiters dense_rank depends depth deref derived desc describe descriptor detach detail deterministic diagnostics dictionary disable discard disconnect dispatch distinct dlnewcopy dlpreviouscopy dlurlcomplete dlurlcompleteonly dlurlcompletewrite dlurlpath dlurlpathonly dlurlpathwrite dlurlscheme dlurlserver dlvalue do document domain double drop dump dynamic dynamic_function dynamic_function_code each element else elseif elsif empty enable encoding encrypted end end_frame end_partition endexec enforced enum equals errcode error escape event every except exception exclude excluding exclusive exec execute exists exit exp explain expression extension external extract false family fetch file filter final first first_value flag float floor following for force foreach foreign fortran forward found frame_row free freeze from fs full function functions fusion g general generated get global go goto grant granted greatest group grouping groups handler having header hex hierarchy hint hold hour id identity if ignore ilike immediate immediately immutable implementation implicit import in include including increment indent index indexes indicator info inherit inherits initially inline inner inout input insensitive insert instance instantiable instead int integer integrity intersect intersection interval into invoker is isnull isolation join k key key_member key_type label lag language large last last_value lateral lead leading leakproof least left length level library like like_regex limit link listen ln load local localtime localtimestamp location locator lock locked log logged loop lower m map mapping match matched materialized max max_cardinality maxvalue member merge message message_length message_octet_length message_text method min minute minvalue mod mode modifies module month more move multiset mumps name names namespace national natural nchar nclob nesting new next nfc nfd nfkc nfkd nil no none normalize normalized not nothing notice notify notnull nowait nth_value ntile null nullable nullif nulls number numeric object occurrences_regex octet_length octets of off offset oids old on only open operator option options or order ordering ordinality others out outer output over overlaps overlay overriding owned owner p pad parallel parameter parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema parser partial partition pascal passing passthrough password path percent percent_rank percentile_cont percentile_disc perform period permission pg_context pg_datatype_name pg_exception_context pg_exception_detail pg_exception_hint placing plans pli policy portion position position_regex power precedes preceding precision prepare prepared preserve primary print_strict_params prior privileges procedural procedure procedures program public publication query quote raise range rank read reads real reassign recheck recovery recursive ref references referencing refresh regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy regr_syy reindex relative release rename repeatable replace replica requiring reset respect restart restore restrict result result_oid return returned_cardinality returned_length returned_octet_length returned_sqlstate returning returns reverse revoke right role rollback rollup routine routine_catalog routine_name routine_schema routines row row_count row_number rows rowtype rule savepoint scale schema schema_name schemas scope scope_catalog scope_name scope_schema scroll search second section security select selective self sensitive sequence sequences serializable server server_name session session_user set setof sets share show similar simple size skip slice smallint snapshot some source space specific specific_name specifictype sql sqlcode sqlerror sqlexception sqlstate sqlwarning sqrt stable stacked standalone start state statement static statistics stddev_pop stddev_samp stdin stdout storage strict strip structure style subclass_origin submultiset subscription substring substring_regex succeeds sum symmetric sysid system system_time system_user t table table_name tables tablesample tablespace temp template temporary text then ties time timestamp timezone_hour timezone_minute to token top_level_count trailing transaction transaction_active transactions_committed transactions_rolled_back transform transforms translate translate_regex translation treat trigger trigger_catalog trigger_name trigger_schema trim trim_array true truncate trusted type types uescape unbounded uncommitted under unencrypted union unique unknown unlink unlisten unlogged unnamed unnest until untyped update upper uri usage use_column use_variable user user_defined_type_catalog user_defined_type_code user_defined_type_name user_defined_type_schema using vacuum valid validate validator value value_of values var_pop var_samp varbinary varchar variable_conflict variadic varying verbose version versioning view views volatile warning when whenever where while whitespace width_bucket window with within without work wrapper write xml xmlagg xmlattributes xmlbinary xmlcast xmlcomment xmlconcat xmldeclaration xmldocument xmlelement xmlexists xmlforest xmliterate xmlnamespaces xmlparse xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltext xmlvalidate year yes zone"),builtin:o("bigint int8 bigserial serial8 bit varying varbit boolean bool box bytea character char varchar cidr circle date double precision float8 inet integer int int4 interval json jsonb line lseg macaddr macaddr8 money numeric decimal path pg_lsn point polygon real float4 smallint int2 smallserial serial2 serial serial4 text time without zone with timetz timestamp timestamptz tsquery tsvector txid_snapshot uuid xml"),atoms:o("false true null unknown"),operatorChars:/^[*\/+\-%<>!=&|^\/#@?~]/,dateSQL:o("date time timestamp"),support:o("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber nCharCast charsetCast")}),e.defineMIME("text/x-gql",{name:"sql",keywords:o("ancestor and asc by contains desc descendant distinct from group has in is limit offset on order select superset where"),atoms:o("false true"),builtin:o("blob datetime first key __key__ string integer double boolean null"),operatorChars:/^[*+\-%<>!=]/}),e.defineMIME("text/x-gpsql",{name:"sql",client:o("source"),keywords:o("abort absolute access action active add admin after aggregate all also alter always analyse analyze and any array as asc assertion assignment asymmetric at authorization backward before begin between bigint binary bit boolean both by cache called cascade cascaded case cast chain char character characteristics check checkpoint class close cluster coalesce codegen collate column comment commit committed concurrency concurrently configuration connection constraint constraints contains content continue conversion copy cost cpu_rate_limit create createdb createexttable createrole createuser cross csv cube current current_catalog current_date current_role current_schema current_time current_timestamp current_user cursor cycle data database day deallocate dec decimal declare decode default defaults deferrable deferred definer delete delimiter delimiters deny desc dictionary disable discard distinct distributed do document domain double drop dxl each else enable encoding encrypted end enum errors escape every except exchange exclude excluding exclusive execute exists explain extension external extract false family fetch fields filespace fill filter first float following for force foreign format forward freeze from full function global grant granted greatest group group_id grouping handler hash having header hold host hour identity if ignore ilike immediate immutable implicit in including inclusive increment index indexes inherit inherits initially inline inner inout input insensitive insert instead int integer intersect interval into invoker is isnull isolation join key language large last leading least left level like limit list listen load local localtime localtimestamp location lock log login mapping master match maxvalue median merge minute minvalue missing mode modifies modify month move name names national natural nchar new newline next no nocreatedb nocreateexttable nocreaterole nocreateuser noinherit nologin none noovercommit nosuperuser not nothing notify notnull nowait null nullif nulls numeric object of off offset oids old on only operator option options or order ordered others out outer over overcommit overlaps overlay owned owner parser partial partition partitions passing password percent percentile_cont percentile_disc placing plans position preceding precision prepare prepared preserve primary prior privileges procedural procedure protocol queue quote randomly range read readable reads real reassign recheck recursive ref references reindex reject relative release rename repeatable replace replica reset resource restart restrict returning returns revoke right role rollback rollup rootpartition row rows rule savepoint scatter schema scroll search second security segment select sequence serializable session session_user set setof sets share show similar simple smallint some split sql stable standalone start statement statistics stdin stdout storage strict strip subpartition subpartitions substring superuser symmetric sysid system table tablespace temp template temporary text then threshold ties time timestamp to trailing transaction treat trigger trim true truncate trusted type unbounded uncommitted unencrypted union unique unknown unlisten until update user using vacuum valid validation validator value values varchar variadic varying verbose version view volatile web when where whitespace window with within without work writable write xml xmlattributes xmlconcat xmlelement xmlexists xmlforest xmlparse xmlpi xmlroot xmlserialize year yes zone"),builtin:o("bigint int8 bigserial serial8 bit varying varbit boolean bool box bytea character char varchar cidr circle date double precision float float8 inet integer int int4 interval json jsonb line lseg macaddr macaddr8 money numeric decimal path pg_lsn point polygon real float4 smallint int2 smallserial serial2 serial serial4 text time without zone with timetz timestamp timestamptz tsquery tsvector txid_snapshot uuid xml"),atoms:o("false true null unknown"),operatorChars:/^[*+\-%<>!=&|^\/#@?~]/,dateSQL:o("date time timestamp"),support:o("ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber nCharCast charsetCast")}),e.defineMIME("text/x-sparksql",{name:"sql",keywords:o("add after all alter analyze and anti archive array as asc at between bucket buckets by cache cascade case cast change clear cluster clustered codegen collection column columns comment commit compact compactions compute concatenate cost create cross cube current current_date current_timestamp database databases datata dbproperties defined delete delimited deny desc describe dfs directories distinct distribute drop else end escaped except exchange exists explain export extended external false fields fileformat first following for format formatted from full function functions global grant group grouping having if ignore import in index indexes inner inpath inputformat insert intersect interval into is items join keys last lateral lazy left like limit lines list load local location lock locks logical macro map minus msck natural no not null nulls of on optimize option options or order out outer outputformat over overwrite partition partitioned partitions percent preceding principals purge range recordreader recordwriter recover reduce refresh regexp rename repair replace reset restrict revoke right rlike role roles rollback rollup row rows schema schemas select semi separated serde serdeproperties set sets show skewed sort sorted start statistics stored stratify struct table tables tablesample tblproperties temp temporary terminated then to touch transaction transactions transform true truncate unarchive unbounded uncache union unlock unset use using values view when where window with"),builtin:o("tinyint smallint int bigint boolean float double string binary timestamp decimal array map struct uniontype delimited serde sequencefile textfile rcfile inputformat outputformat"),atoms:o("false true null"),operatorChars:/^[*\/+\-%<>!=~&|^]/,dateSQL:o("date time timestamp"),support:o("ODBCdotTable doubleQuote zerolessFloat")}),e.defineMIME("text/x-esper",{name:"sql",client:o("source"),keywords:o("alter and as asc between by count create delete desc distinct drop from group having in insert into is join like not on or order select set table union update values where limit after all and as at asc avedev avg between by case cast coalesce count create current_timestamp day days delete define desc distinct else end escape events every exists false first from full group having hour hours in inner insert instanceof into irstream is istream join last lastweekday left limit like max match_recognize matches median measures metadatasql min minute minutes msec millisecond milliseconds not null offset on or order outer output partition pattern prev prior regexp retain-union retain-intersection right rstream sec second seconds select set some snapshot sql stddev sum then true unidirectional until update variable weekday when where window"),builtin:{},atoms:o("false true null"),operatorChars:/^[*+\-%<>!=&|^\/#@?~]/,dateSQL:o("time"),support:o("decimallessFloat zerolessFloat binaryNumber hexNumber")})}(r("VrN/"))},"0gIM":function(e,t,r){var n,i;n=r("VrN/"),r("ztCB"),i=2,n.defineMode("yaml-frontmatter",function(e,t){var r=n.getMode(e,"yaml"),o=n.getMode(e,t&&t.base||"gfm");function a(e){return e.state==i?o:r}return{startState:function(){return{state:0,inner:n.startState(r)}},copyState:function(e){return{state:e.state,inner:n.copyState(a(e),e.inner)}},token:function(e,t){if(0==t.state)return e.match(/---/,!1)?(t.state=1,r.token(e,t.inner)):(t.state=i,t.inner=n.startState(o),o.token(e,t.inner));if(1==t.state){var a=e.sol()&&e.match(/---/,!1),l=r.token(e,t.inner);return a&&(t.state=i,t.inner=n.startState(o)),l}return o.token(e,t.inner)},innerMode:function(e){return{mode:a(e),state:e.inner}},blankLine:function(e){var t=a(e);if(t.blankLine)return t.blankLine(e.inner)}}})},"1eCo":function(e,t,r){!function(e){"use strict";var t={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},r={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,allowMissingTagName:!1,caseFold:!1};e.defineMode("xml",function(n,i){var o,a,l=n.indentUnit,s={},c=i.htmlMode?t:r;for(var u in c)s[u]=c[u];for(var u in i)s[u]=i[u];function d(e,t){function r(r){return t.tokenize=r,r(e,t)}var n=e.next();return"<"==n?e.eat("!")?e.eat("[")?e.match("CDATA[")?r(f("atom","]]>")):null:e.match("--")?r(f("comment","--\x3e")):e.match("DOCTYPE",!0,!0)?(e.eatWhile(/[\w\._\-]/),r(function e(t){return function(r,n){for(var i;null!=(i=r.next());){if("<"==i)return n.tokenize=e(t+1),n.tokenize(r,n);if(">"==i){if(1==t){n.tokenize=d;break}return n.tokenize=e(t-1),n.tokenize(r,n)}}return"meta"}}(1))):null:e.eat("?")?(e.eatWhile(/[\w\._\-]/),t.tokenize=f("meta","?>"),"meta"):(o=e.eat("/")?"closeTag":"openTag",t.tokenize=p,"tag bracket"):"&"==n?(e.eat("#")?e.eat("x")?e.eatWhile(/[a-fA-F\d]/)&&e.eat(";"):e.eatWhile(/[\d]/)&&e.eat(";"):e.eatWhile(/[\w\.\-:]/)&&e.eat(";"))?"atom":"error":(e.eatWhile(/[^&<]/),null)}function p(e,t){var r,n,i=e.next();if(">"==i||"/"==i&&e.eat(">"))return t.tokenize=d,o=">"==i?"endTag":"selfcloseTag","tag bracket";if("="==i)return o="equals",null;if("<"==i){t.tokenize=d,t.state=v,t.tagName=t.tagStart=null;var a=t.tokenize(e,t);return a?a+" tag error":"tag error"}return/[\'\"]/.test(i)?(t.tokenize=(r=i,(n=function(e,t){for(;!e.eol();)if(e.next()==r){t.tokenize=p;break}return"string"}).isInAttribute=!0,n),t.stringStartCol=e.column(),t.tokenize(e,t)):(e.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function f(e,t){return function(r,n){for(;!r.eol();){if(r.match(t)){n.tokenize=d;break}r.next()}return e}}function m(e,t,r){this.prev=e.context,this.tagName=t,this.indent=e.indented,this.startOfLine=r,(s.doNotIndent.hasOwnProperty(t)||e.context&&e.context.noIndent)&&(this.noIndent=!0)}function h(e){e.context&&(e.context=e.context.prev)}function g(e,t){for(var r;;){if(!e.context)return;if(r=e.context.tagName,!s.contextGrabbers.hasOwnProperty(r)||!s.contextGrabbers[r].hasOwnProperty(t))return;h(e)}}function v(e,t,r){return"openTag"==e?(r.tagStart=t.column(),y):"closeTag"==e?x:v}function y(e,t,r){return"word"==e?(r.tagName=t.current(),a="tag",k):s.allowMissingTagName&&"endTag"==e?(a="tag bracket",k(e,0,r)):(a="error",y)}function x(e,t,r){if("word"==e){var n=t.current();return r.context&&r.context.tagName!=n&&s.implicitlyClosed.hasOwnProperty(r.context.tagName)&&h(r),r.context&&r.context.tagName==n||!1===s.matchClosing?(a="tag",b):(a="tag error",_)}return s.allowMissingTagName&&"endTag"==e?(a="tag bracket",b(e,0,r)):(a="error",_)}function b(e,t,r){return"endTag"!=e?(a="error",b):(h(r),v)}function _(e,t,r){return a="error",b(e,0,r)}function k(e,t,r){if("word"==e)return a="attribute",w;if("endTag"==e||"selfcloseTag"==e){var n=r.tagName,i=r.tagStart;return r.tagName=r.tagStart=null,"selfcloseTag"==e||s.autoSelfClosers.hasOwnProperty(n)?g(r,n):(g(r,n),r.context=new m(r,n,i==r.indented)),v}return a="error",k}function w(e,t,r){return"equals"==e?S:(s.allowMissing||(a="error"),k(e,0,r))}function S(e,t,r){return"string"==e?C:"word"==e&&s.allowUnquoted?(a="string",k):(a="error",k(e,0,r))}function C(e,t,r){return"string"==e?C:k(e,0,r)}return d.isInText=!0,{startState:function(e){var t={tokenize:d,state:v,indented:e||0,tagName:null,tagStart:null,context:null};return null!=e&&(t.baseIndent=e),t},token:function(e,t){if(!t.tagName&&e.sol()&&(t.indented=e.indentation()),e.eatSpace())return null;o=null;var r=t.tokenize(e,t);return(r||o)&&"comment"!=r&&(a=null,t.state=t.state(o||r,e,t),a&&(r="error"==a?r+" error":a)),r},indent:function(t,r,n){var i=t.context;if(t.tokenize.isInAttribute)return t.tagStart==t.indented?t.stringStartCol+1:t.indented+l;if(i&&i.noIndent)return e.Pass;if(t.tokenize!=p&&t.tokenize!=d)return n?n.match(/^(\s*)/)[0].length:0;if(t.tagName)return!1!==s.multilineTagIndentPastTag?t.tagStart+t.tagName.length+2:t.tagStart+l*(s.multilineTagIndentFactor||1);if(s.alignCDATA&&/$/,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",configuration:s.htmlMode?"html":"xml",helperType:s.htmlMode?"html":"xml",skipAttribute:function(e){e.state==S&&(e.state=k)}}}),e.defineMIME("text/xml","xml"),e.defineMIME("application/xml","xml"),e.mimeModes.hasOwnProperty("text/html")||e.defineMIME("text/html",{name:"xml",htmlMode:!0})}(r("VrN/"))},"1p+/":function(e,t,r){!function(e){"use strict";var t={script:[["lang",/(javascript|babel)/i,"javascript"],["type",/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i,"javascript"],["type",/./,"text/plain"],[null,null,"javascript"]],style:[["lang",/^css$/i,"css"],["type",/^(text\/)?(x-)?(stylesheet|css)$/i,"css"],["type",/./,"text/plain"],[null,null,"css"]]},r={};function n(e,t){var n=e.match(function(e){var t=r[e];return t||(r[e]=new RegExp("\\s+"+e+"\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*"))}(t));return n?/^\s*(.*?)\s*$/.exec(n[2])[1]:""}function i(e,t){return new RegExp((t?"^":"")+"","i")}function o(e,t){for(var r in e)for(var n=t[r]||(t[r]=[]),i=e[r],o=i.length-1;o>=0;o--)n.unshift(i[o])}e.defineMode("htmlmixed",function(r,a){var l=e.getMode(r,{name:"xml",htmlMode:!0,multilineTagIndentFactor:a.multilineTagIndentFactor,multilineTagIndentPastTag:a.multilineTagIndentPastTag}),s={},c=a&&a.tags,u=a&&a.scriptTypes;if(o(t,s),c&&o(c,s),u)for(var d=u.length-1;d>=0;d--)s.script.unshift(["type",u[d].matches,u[d].mode]);function p(t,o){var a,c=l.token(t,o.htmlState),u=/\btag\b/.test(c);if(u&&!/[<>\s\/]/.test(t.current())&&(a=o.htmlState.tagName&&o.htmlState.tagName.toLowerCase())&&s.hasOwnProperty(a))o.inTag=a+" ";else if(o.inTag&&u&&/>$/.test(t.current())){var d=/^([\S]+) (.*)/.exec(o.inTag);o.inTag=null;var f=">"==t.current()&&function(e,t){for(var r=0;r-1?e.backUp(n.length-i):n.match(/<\/?$/)&&(e.backUp(n.length),e.match(t,!1)||e.match(n)),r}(e,g,t.localMode.token(e,t.localState))},o.localMode=m,o.localState=e.startState(m,l.indent(o.htmlState,"",""))}else o.inTag&&(o.inTag+=t.current(),t.eol()&&(o.inTag+=" "));return c}return{startState:function(){var t=e.startState(l);return{token:p,inTag:null,localMode:null,localState:null,htmlState:t}},copyState:function(t){var r;return t.localState&&(r=e.copyState(t.localMode,t.localState)),{token:t.token,inTag:t.inTag,localMode:t.localMode,localState:r,htmlState:e.copyState(l,t.htmlState)}},token:function(e,t){return t.token(e,t)},indent:function(t,r,n){return!t.localMode||/^\s*<\//.test(r)?l.indent(t.htmlState,r,n):t.localMode.indent?t.localMode.indent(t.localState,r,n):e.Pass},innerMode:function(e){return{state:e.localState||e.htmlState,mode:e.localMode||l}}}},"xml","javascript","css"),e.defineMIME("text/html","htmlmixed")}(r("VrN/"),r("1eCo"),r("+dQi"),r("ewDg"))},"6wyt":function(e,t,r){!function(e){"use strict";e.multiplexingMode=function(t){var r=Array.prototype.slice.call(arguments,1);function n(e,t,r,n){if("string"==typeof t){var i=e.indexOf(t,r);return n&&i>-1?i+t.length:i}var o=t.exec(r?e.slice(r):e);return o?o.index+r+(n?o[0].length:0):-1}return{startState:function(){return{outer:e.startState(t),innerActive:null,inner:null}},copyState:function(r){return{outer:e.copyState(t,r.outer),innerActive:r.innerActive,inner:r.innerActive&&e.copyState(r.innerActive.mode,r.inner)}},token:function(i,o){if(o.innerActive){var a=o.innerActive,l=i.string;if(!a.close&&i.sol())return o.innerActive=o.inner=null,this.token(i,o);var s=a.close?n(l,a.close,i.pos,a.parseDelimiters):-1;if(s==i.pos&&!a.parseDelimiters)return i.match(a.close),o.innerActive=o.inner=null,a.delimStyle&&a.delimStyle+" "+a.delimStyle+"-close";s>-1&&(i.string=l.slice(0,s));var c=a.mode.token(i,o.inner);return s>-1&&(i.string=l),s==i.pos&&a.parseDelimiters&&(o.innerActive=o.inner=null),a.innerStyle&&(c=c?c+" "+a.innerStyle:a.innerStyle),c}for(var u=1/0,l=i.string,d=0;d-1&&t.substring(i+1,t.length);if(o)return e.findModeByExtension(o)},e.findModeByName=function(t){t=t.toLowerCase();for(var r=0;r1&&e.eat("$");var r=e.next();return/['"({]/.test(r)?(t.tokens[0]=a(r,"("==r?"quote":"{"==r?"def":"string"),c(e,t)):(/\d/.test(r)||e.eatWhile(/\w/),t.tokens.shift(),"def")};function c(e,r){return(r.tokens[0]||function(e,r){if(e.eatSpace())return null;var n=e.sol(),i=e.next();if("\\"===i)return e.next(),null;if("'"===i||'"'===i||"`"===i)return r.tokens.unshift(a(i,"`"===i?"quote":"string")),c(e,r);if("#"===i)return n&&e.eat("!")?(e.skipToEnd(),"meta"):(e.skipToEnd(),"comment");if("$"===i)return r.tokens.unshift(s),c(e,r);if("+"===i||"="===i)return"operator";if("-"===i)return e.eat("-"),e.eatWhile(/\w/),"attribute";if(/\d/.test(i)&&(e.eatWhile(/\d/),e.eol()||!/\w/.test(e.peek())))return"number";e.eatWhile(/[\w-]/);var o=e.current();return"="===e.peek()&&/\w+/.test(o)?"def":t.hasOwnProperty(o)?t[o]:null})(e,r)}return{startState:function(){return{tokens:[]}},token:function(e,t){return c(e,t)},closeBrackets:"()[]{}''\"\"``",lineComment:"#",fold:"brace"}}),e.defineMIME("text/x-sh","shell"),e.defineMIME("application/x-sh","shell")}(r("VrN/"))},R6x9:function(e,t,r){!function(e){"use strict";var t="from",r=new RegExp("^(\\s*)\\b("+t+")\\b","i"),n=["run","cmd","entrypoint","shell"],i=new RegExp("^(\\s*)("+n.join("|")+")(\\s+\\[)","i"),o="expose",a=new RegExp("^(\\s*)("+o+")(\\s+)","i"),l="("+[t,o].concat(n).concat(["arg","from","maintainer","label","env","add","copy","volume","user","workdir","onbuild","stopsignal","healthcheck","shell"]).join("|")+")",s=new RegExp("^(\\s*)"+l+"(\\s*)(#.*)?$","i"),c=new RegExp("^(\\s*)"+l+"(\\s+)","i");e.defineSimpleMode("dockerfile",{start:[{regex:/^\s*#.*$/,sol:!0,token:"comment"},{regex:r,token:[null,"keyword"],sol:!0,next:"from"},{regex:s,token:[null,"keyword",null,"error"],sol:!0},{regex:i,token:[null,"keyword",null],sol:!0,next:"array"},{regex:a,token:[null,"keyword",null],sol:!0,next:"expose"},{regex:c,token:[null,"keyword",null],sol:!0,next:"arguments"},{regex:/./,token:null}],from:[{regex:/\s*$/,token:null,next:"start"},{regex:/(\s*)(#.*)$/,token:[null,"error"],next:"start"},{regex:/(\s*\S+\s+)(as)/i,token:[null,"keyword"],next:"start"},{token:null,next:"start"}],single:[{regex:/(?:[^\\']|\\.)/,token:"string"},{regex:/'/,token:"string",pop:!0}],double:[{regex:/(?:[^\\"]|\\.)/,token:"string"},{regex:/"/,token:"string",pop:!0}],array:[{regex:/\]/,token:null,next:"start"},{regex:/"(?:[^\\"]|\\.)*"?/,token:"string"}],expose:[{regex:/\d+$/,token:"number",next:"start"},{regex:/[^\d]+$/,token:null,next:"start"},{regex:/\d+/,token:"number"},{regex:/[^\d]+/,token:null},{token:null,next:"start"}],arguments:[{regex:/^\s*#.*$/,sol:!0,token:"comment"},{regex:/"(?:[^\\"]|\\.)*"?$/,token:"string",next:"start"},{regex:/"/,token:"string",push:"double"},{regex:/'(?:[^\\']|\\.)*'?$/,token:"string",next:"start"},{regex:/'/,token:"string",push:"single"},{regex:/[^#"']+[\\`]$/,token:null},{regex:/[^#"']+$/,token:null,next:"start"},{regex:/[^#"']+/,token:null},{token:null,next:"start"}],meta:{lineComment:"#"}}),e.defineMIME("text/x-dockerfile","dockerfile")}(r("VrN/"),r("dq4f"))},RNWO:function(e,t,r){!function(e){"use strict";function t(e){for(var t={},r=e.split(" "),n=0;n\w/,!1)&&(t.tokenize=r([[["->",null]],[[/[\w]+/,"variable"]]],n,i)),"variable-2";for(var o=!1;!e.eol()&&(o||!1===i||!e.match("{$",!1)&&!e.match(/^(\$[a-zA-Z_][a-zA-Z0-9_]*|\$\{)/,!1));){if(!o&&e.match(n)){t.tokenize=null,t.tokStack.pop(),t.tokStack.pop();break}o="\\"==e.next()&&!o}return"string"}(n,i,e,t)}}var i="abstract and array as break case catch class clone const continue declare default do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final for foreach function global goto if implements interface instanceof namespace new or private protected public static switch throw trait try use var while xor die echo empty exit eval include include_once isset list require require_once return print unset __halt_compiler self static parent yield insteadof finally",o="true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__",a="func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents file_put_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists array_intersect_key array_combine array_column pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once json_decode json_encode json_last_error json_last_error_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl_pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mysqli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_error mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_direct mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_select_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count";e.registerHelper("hintWords","php",[i,o,a].join(" ").split(" ")),e.registerHelper("wordChars","php",/[\w$]/);var l={name:"clike",helperType:"php",keywords:t(i),blockKeywords:t("catch do else elseif for foreach if switch try while finally"),defKeywords:t("class function interface namespace trait"),atoms:t(o),builtin:t(a),multiLineStrings:!0,hooks:{$:function(e){return e.eatWhile(/[\w\$_]/),"variable-2"},"<":function(e,t){var r;if(r=e.match(/<<\s*/)){var i=e.eat(/['"]/);e.eatWhile(/[\w\.]/);var o=e.current().slice(r[0].length+(i?2:1));if(i&&e.eat(i),o)return(t.tokStack||(t.tokStack=[])).push(o,0),t.tokenize=n(o,"'"!=i),"string"}return!1},"#":function(e){for(;!e.eol()&&!e.match("?>",!1);)e.next();return"comment"},"/":function(e){if(e.eat("/")){for(;!e.eol()&&!e.match("?>",!1);)e.next();return"comment"}return!1},'"':function(e,t){return(t.tokStack||(t.tokStack=[])).push('"',0),t.tokenize=n('"'),"string"},"{":function(e,t){return t.tokStack&&t.tokStack.length&&t.tokStack[t.tokStack.length-1]++,!1},"}":function(e,t){return t.tokStack&&t.tokStack.length>0&&!--t.tokStack[t.tokStack.length-1]&&(t.tokenize=n(t.tokStack[t.tokStack.length-2])),!1}}};e.defineMode("php",function(t,r){var n=e.getMode(t,r&&r.htmlMode||"text/html"),i=e.getMode(t,l);return{startState:function(){var t=e.startState(n),o=r.startOpen?e.startState(i):null;return{html:t,php:o,curMode:r.startOpen?i:n,curState:r.startOpen?o:t,pending:null}},copyState:function(t){var r,o=t.html,a=e.copyState(n,o),l=t.php,s=l&&e.copyState(i,l);return r=t.curMode==n?a:s,{html:a,php:s,curMode:t.curMode,curState:r,pending:t.pending}},token:function(t,r){var o=r.curMode==i;if(t.sol()&&r.pending&&'"'!=r.pending&&"'"!=r.pending&&(r.pending=null),o)return o&&null==r.php.tokenize&&t.match("?>")?(r.curMode=n,r.curState=r.html,r.php.context.prev||(r.php=null),"meta"):i.token(t,r.curState);if(t.match(/^<\?\w*/))return r.curMode=i,r.php||(r.php=e.startState(i,n.indent(r.html,"",""))),r.curState=r.php,"meta";if('"'==r.pending||"'"==r.pending){for(;!t.eol()&&t.next()!=r.pending;);var a="string"}else if(r.pending&&t.pos/.test(s)?r.pending=l[0]:r.pending={end:t.pos,style:a},t.backUp(s.length-c)),a},indent:function(e,t,r){return e.curMode!=i&&/^\s*<\//.test(t)||e.curMode==i&&/^\?>/.test(t)?n.indent(e.html,t,r):e.curMode.indent(e.curState,t,r)},blockCommentStart:"/*",blockCommentEnd:"*/",lineComment:"//",innerMode:function(e){return{state:e.curState,mode:e.curMode}}}},"htmlmixed","clike"),e.defineMIME("application/x-httpd-php","php"),e.defineMIME("application/x-httpd-php-open",{name:"php",startOpen:!0}),e.defineMIME("text/x-php",l)}(r("VrN/"),r("1p+/"),r("S6bl"))},S6bl:function(e,t,r){!function(e){"use strict";function t(e,t,r,n,i,o){this.indented=e,this.column=t,this.type=r,this.info=n,this.align=i,this.prev=o}function r(e,r,n,i){var o=e.indented;return e.context&&"statement"==e.context.type&&"statement"!=n&&(o=e.context.indented),e.context=new t(o,r,n,i,null,e.context)}function n(e){var t=e.context.type;return")"!=t&&"]"!=t&&"}"!=t||(e.indented=e.context.indented),e.context=e.context.prev}function i(e,t,r){return"variable"==t.prevToken||"type"==t.prevToken||!!/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(e.string.slice(0,r))||!(!t.typeAtEndOfLine||e.column()!=e.indentation())||void 0}function o(e){for(;;){if(!e||"top"==e.type)return!0;if("}"==e.type&&"namespace"!=e.prev.info)return!1;e=e.prev}}function a(e){for(var t={},r=e.split(" "),n=0;n!?|\/]/,D=s.isIdentifierChar||/[\w\$_\xa1-\uffff]/,z=s.isReservedIdentifier||!1;function A(e,t){var r,n=e.next();if(b[n]){var i=b[n](e,t);if(!1!==i)return i}if('"'==n||"'"==n)return t.tokenize=(r=n,function(e,t){for(var n,i=!1,o=!1;null!=(n=e.next());){if(n==r&&!i){o=!0;break}i=!i&&"\\"==n}return(o||!i&&!_)&&(t.tokenize=null),"string"}),t.tokenize(e,t);if(C.test(n))return c=n,null;if(M.test(n)){if(e.backUp(1),e.match(T))return"number";e.next()}if("/"==n){if(e.eat("*"))return t.tokenize=N,N(e,t);if(e.eat("/"))return e.skipToEnd(),"comment"}if(L.test(n)){for(;!e.match(/^\/[\/*]/,!1)&&e.eat(L););return"operator"}if(e.eatWhile(D),S)for(;e.match(S);)e.eatWhile(D);var o=e.current();return l(m,o)?(l(v,o)&&(c="newstatement"),l(y,o)&&(u=!0),"keyword"):l(h,o)?"type":l(g,o)||z&&z(o)?(l(v,o)&&(c="newstatement"),"builtin"):l(x,o)?"atom":"variable"}function N(e,t){for(var r,n=!1;r=e.next();){if("/"==r&&n){t.tokenize=null;break}n="*"==r}return"comment"}function q(e,t){s.typeFirstDefinitions&&e.eol()&&o(t.context)&&(t.typeAtEndOfLine=i(e,t,e.pos))}return{startState:function(e){return{tokenize:null,context:new t((e||0)-d,0,"top",null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(e,t){var a=t.context;if(e.sol()&&(null==a.align&&(a.align=!1),t.indented=e.indentation(),t.startOfLine=!0),e.eatSpace())return q(e,t),null;c=u=null;var l=(t.tokenize||A)(e,t);if("comment"==l||"meta"==l)return l;if(null==a.align&&(a.align=!0),";"==c||":"==c||","==c&&e.match(/^\s*(?:\/\/.*)?$/,!1))for(;"statement"==t.context.type;)n(t);else if("{"==c)r(t,e.column(),"}");else if("["==c)r(t,e.column(),"]");else if("("==c)r(t,e.column(),")");else if("}"==c){for(;"statement"==a.type;)a=n(t);for("}"==a.type&&(a=n(t));"statement"==a.type;)a=n(t)}else c==a.type?n(t):k&&(("}"==a.type||"top"==a.type)&&";"!=c||"statement"==a.type&&"newstatement"==c)&&r(t,e.column(),"statement",e.current());if("variable"==l&&("def"==t.prevToken||s.typeFirstDefinitions&&i(e,t,e.start)&&o(t.context)&&e.match(/^\s*\(/,!1))&&(l="def"),b.token){var d=b.token(e,t,l);void 0!==d&&(l=d)}return"def"==l&&!1===s.styleDefs&&(l="variable"),t.startOfLine=!1,t.prevToken=u?"def":l||c,q(e,t),l},indent:function(t,r){if(t.tokenize!=A&&null!=t.tokenize||t.typeAtEndOfLine)return e.Pass;var n=t.context,i=r&&r.charAt(0),o=i==n.type;if("statement"==n.type&&"}"==i&&(n=n.prev),s.dontIndentStatements)for(;"statement"==n.type&&s.dontIndentStatements.test(n.info);)n=n.prev;if(b.indent){var a=b.indent(t,n,r,d);if("number"==typeof a)return a}var l=n.prev&&"switch"==n.prev.info;if(s.allmanIndentation&&/[{(]/.test(i)){for(;"top"!=n.type&&"}"!=n.type;)n=n.prev;return n.indented}return"statement"==n.type?n.indented+("{"==i?0:p):!n.align||f&&")"==n.type?")"!=n.type||o?n.indented+(o?0:d)+(o||!l||/^(?:case|default)\b/.test(r)?0:d):n.indented+p:n.column+(o?0:1)},electricInput:w?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:"//",fold:"brace"}});var s="auto if break case register continue return default do sizeof static else struct switch extern typedef union for goto while enum const volatile inline restrict asm fortran",c=a("int long char short double float unsigned signed void bool"),u=a("SEL instancetype id Class Protocol BOOL");function d(e){return l(c,e)||/.+_t$/.test(e)}var p="case do else for if switch while struct enum union";function f(e,t){if(!t.startOfLine)return!1;for(var r,n=null;r=e.peek();){if("\\"==r&&e.match(/^.$/)){n=f;break}if("/"==r&&e.match(/^\/[\/\*]/,!1))break;e.next()}return t.tokenize=n,"meta"}function m(e,t){return"type"==t.prevToken&&"type"}function h(e){return!(!e||e.length<2||"_"!=e[0]||"_"!=e[1]&&e[1]===e[1].toLowerCase())}function g(e){return e.eatWhile(/[\w\.']/),"number"}function v(e,t){if(e.backUp(1),e.match(/(R|u8R|uR|UR|LR)/)){var r=e.match(/"([^\s\\()]{0,16})\(/);return!!r&&(t.cpp11RawStringDelim=r[1],t.tokenize=x,x(e,t))}return e.match(/(u8|u|U|L)/)?!!e.match(/["']/,!1)&&"string":(e.next(),!1)}function y(e,t){for(var r;null!=(r=e.next());)if('"'==r&&!e.eat('"')){t.tokenize=null;break}return"string"}function x(e,t){var r=t.cpp11RawStringDelim.replace(/[^\w\s]/g,"\\$&"),n=e.match(new RegExp(".*?\\)"+r+'"'));return n?t.tokenize=null:e.skipToEnd(),"string"}function b(t,r){"string"==typeof t&&(t=[t]);var n=[];function i(e){if(e)for(var t in e)e.hasOwnProperty(t)&&n.push(t)}i(r.keywords),i(r.types),i(r.builtin),i(r.atoms),n.length&&(r.helperType=t[0],e.registerHelper("hintWords",t[0],n));for(var o=0;o!?|\/#:@]/,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return!!e.match('""')&&(t.tokenize=_,t.tokenize(e,t))},"'":function(e){return e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},"=":function(e,r){var n=r.context;return!("}"!=n.type||!n.align||!e.eat(">"))&&(r.context=new t(n.indented,n.column,n.type,n.info,null,n.prev),"operator")},"/":function(e,t){return!!e.eat("*")&&(t.tokenize=function e(t){return function(r,n){for(var i;i=r.next();){if("*"==i&&r.eat("/")){if(1==t){n.tokenize=null;break}return n.tokenize=e(t-1),n.tokenize(r,n)}if("/"==i&&r.eat("*"))return n.tokenize=e(t+1),n.tokenize(r,n)}return"comment"}}(1),t.tokenize(e,t))}},modeProps:{closeBrackets:{pairs:'()[]{}""',triples:'"'}}}),b("text/x-kotlin",{name:"clike",keywords:a("package as typealias class interface this super val operator var fun for is in This throw return annotation break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend actual expect setparam"),types:a("Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy LazyThreadSafetyMode LongArray Nothing ShortArray Unit"),intendSwitch:!1,indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,blockKeywords:a("catch class do else finally for if where try while enum"),defKeywords:a("class val var object interface fun"),atoms:a("true false null this"),hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},"*":function(e,t){return"."==t.prevToken?"variable":"operator"},'"':function(e,t){var r;return t.tokenize=(r=e.match('""'),function(e,t){for(var n,i=!1,o=!1;!e.eol();){if(!r&&!i&&e.match('"')){o=!0;break}if(r&&e.match('"""')){o=!0;break}n=e.next(),!i&&"$"==n&&e.match("{")&&e.skipTo("}"),i=!i&&"\\"==n&&!r}return!o&&r||(t.tokenize=null),"string"}),t.tokenize(e,t)},indent:function(e,t,r,n){var i=r&&r.charAt(0);return"}"!=e.prevToken&&")"!=e.prevToken||""!=r?"operator"==e.prevToken&&"}"!=r||"variable"==e.prevToken&&"."==i||("}"==e.prevToken||")"==e.prevToken)&&"."==i?2*n+t.indented:t.align&&"}"==t.type?t.indented+(e.context.type==(r||"").charAt(0)?0:n):void 0:e.indented}},modeProps:{closeBrackets:{triples:'"'}}}),b(["x-shader/x-vertex","x-shader/x-fragment"],{name:"clike",keywords:a("sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout"),types:a("float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4"),blockKeywords:a("for while do if else struct"),builtin:a("radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4"),atoms:a("true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers"),indentSwitch:!1,hooks:{"#":f},modeProps:{fold:["brace","include"]}}),b("text/x-nesc",{name:"clike",keywords:a(s+" as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends"),types:d,blockKeywords:a(p),atoms:a("null true false"),hooks:{"#":f},modeProps:{fold:["brace","include"]}}),b("text/x-objectivec",{name:"clike",keywords:a(s+" bycopy byref in inout oneway out self super atomic nonatomic retain copy readwrite readonly strong weak assign typeof nullable nonnull null_resettable _cmd @interface @implementation @end @protocol @encode @property @synthesize @dynamic @class @public @package @private @protected @required @optional @try @catch @finally @import @selector @encode @defs @synchronized @autoreleasepool @compatibility_alias @available"),types:function(e){return d(e)||l(u,e)},builtin:a("FOUNDATION_EXPORT FOUNDATION_EXTERN NS_INLINE NS_FORMAT_FUNCTION NS_RETURNS_RETAINED NS_ERROR_ENUM NS_RETURNS_NOT_RETAINED NS_RETURNS_INNER_POINTER NS_DESIGNATED_INITIALIZER NS_ENUM NS_OPTIONS NS_REQUIRES_NIL_TERMINATION NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_SWIFT_NAME NS_REFINED_FOR_SWIFT"),blockKeywords:a(p+" @synthesize @try @catch @finally @autoreleasepool @synchronized"),defKeywords:a("struct enum union @interface @implementation @protocol @class"),dontIndentStatements:/^@.*$/,typeFirstDefinitions:!0,atoms:a("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:h,hooks:{"#":f,"*":m},modeProps:{fold:["brace","include"]}}),b("text/x-squirrel",{name:"clike",keywords:a("base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static"),types:d,blockKeywords:a("case catch class else for foreach if switch try while"),defKeywords:a("function local class"),typeFirstDefinitions:!0,atoms:a("true false null"),hooks:{"#":f},modeProps:{fold:["brace","include"]}});var k=null;b("text/x-ceylon",{name:"clike",keywords:a("abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while"),types:function(e){var t=e.charAt(0);return t===t.toUpperCase()&&t!==t.toLowerCase()},blockKeywords:a("case catch class dynamic else finally for function if interface module new object switch try while"),defKeywords:a("class dynamic function interface module object package value"),builtin:a("abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable"),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:a("true false null larger smaller equal empty finished"),indentSwitch:!1,styleDefs:!1,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return t.tokenize=function e(t){return function(r,n){for(var i,o=!1,a=!1;!r.eol();){if(!o&&r.match('"')&&("single"==t||r.match('""'))){a=!0;break}if(!o&&r.match("``")){k=e(t),a=!0;break}i=r.next(),o="single"==t&&!o&&"\\"==i}return a&&(n.tokenize=null),"string"}}(e.match('""')?"triple":"single"),t.tokenize(e,t)},"`":function(e,t){return!(!k||!e.match("`"))&&(t.tokenize=k,k=null,t.tokenize(e,t))},"'":function(e){return e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom"},token:function(e,t,r){if(("variable"==r||"type"==r)&&"."==t.prevToken)return"variable-2"}},modeProps:{fold:["brace","import"],closeBrackets:{triples:'"'}}})}(r("VrN/"))},"SII/":function(e,t,r){!function(e){"use strict";e.defineMode("twig:inner",function(){var e=["and","as","autoescape","endautoescape","block","do","endblock","else","elseif","extends","for","endfor","embed","endembed","filter","endfilter","flush","from","if","endif","in","is","include","import","not","or","set","spaceless","endspaceless","with","endwith","trans","endtrans","blocktrans","endblocktrans","macro","endmacro","use","verbatim","endverbatim"],t=/^[+\-*&%=<>!?|~^]/,r=/^[:\[\(\{]/,n=["true","false","null","empty","defined","divisibleby","divisible by","even","odd","iterable","sameas","same as"],i=/^(\d[+\-\*\/])?\d+(\.\d+)?/;return e=new RegExp("(("+e.join(")|(")+"))\\b"),n=new RegExp("(("+n.join(")|(")+"))\\b"),{startState:function(){return{}},token:function(o,a){return function(o,a){var l=o.peek();if(a.incomment)return o.skipTo("#}")?(o.eatWhile(/\#|}/),a.incomment=!1):o.skipToEnd(),"comment";if(a.intag){if(a.operator){if(a.operator=!1,o.match(n))return"atom";if(o.match(i))return"number"}if(a.sign){if(a.sign=!1,o.match(n))return"atom";if(o.match(i))return"number"}if(a.instring)return l==a.instring&&(a.instring=!1),o.next(),"string";if("'"==l||'"'==l)return a.instring=l,o.next(),"string";if(o.match(a.intag+"}")||o.eat("-")&&o.match(a.intag+"}"))return a.intag=!1,"tag";if(o.match(t))return a.operator=!0,"operator";if(o.match(r))a.sign=!0;else if(o.eat(" ")||o.sol()){if(o.match(e))return"keyword";if(o.match(n))return"atom";if(o.match(i))return"number";o.sol()&&o.next()}else o.next();return"variable"}if(o.eat("{")){if(o.eat("#"))return a.incomment=!0,o.skipTo("#}")?(o.eatWhile(/\#|}/),a.incomment=!1):o.skipToEnd(),"comment";if(l=o.eat(/\{|%/))return a.intag=l,"{"==l&&(a.intag="}"),o.eat("-"),"tag"}o.next()}(o,a)}}}),e.defineMode("twig",function(t,r){var n=e.getMode(t,"twig:inner");return r&&r.base?e.multiplexingMode(e.getMode(t,r.base),{open:/\{[{#%]/,close:/[}#%]\}/,mode:n,parseDelimiters:!0}):n}),e.defineMIME("text/x-twig","twig")}(r("VrN/"),r("6wyt"))},SzGY:function(e,t,r){},"VrN/":function(e,t,r){e.exports=function(){"use strict";var e=navigator.userAgent,t=navigator.platform,r=/gecko\/\d/i.test(e),n=/MSIE \d/.test(e),i=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(e),o=/Edge\/(\d+)/.exec(e),a=n||i||o,l=a&&(n?document.documentMode||6:+(o||i)[1]),s=!o&&/WebKit\//.test(e),c=s&&/Qt\/\d+\.\d+/.test(e),u=!o&&/Chrome\//.test(e),d=/Opera\//.test(e),p=/Apple Computer/.test(navigator.vendor),f=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(e),m=/PhantomJS/.test(e),h=!o&&/AppleWebKit/.test(e)&&/Mobile\/\w+/.test(e),g=/Android/.test(e),v=h||g||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(e),y=h||/Mac/.test(t),x=/\bCrOS\b/.test(e),b=/win/i.test(t),_=d&&e.match(/Version\/(\d*\.\d*)/);_&&(_=Number(_[1])),_&&_>=15&&(d=!1,s=!0);var k=y&&(c||d&&(null==_||_<12.11)),w=r||a&&l>=9;function S(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var C,M=function(e,t){var r=e.className,n=S(t).exec(r);if(n){var i=r.slice(n.index+n[0].length);e.className=r.slice(0,n.index)+(i?n[1]+i:"")}};function T(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function L(e,t){return T(e).appendChild(t)}function D(e,t,r,n){var i=document.createElement(e);if(r&&(i.className=r),n&&(i.style.cssText=n),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return a+(t-o);a+=l-o,a+=r-a%r,o=l+1}}h?E=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:a&&(E=function(e){try{e.select()}catch(e){}});var W=function(){this.id=null};function j(e,t){for(var r=0;r=t)return n+Math.min(a,t-i);if(i+=o-n,n=o+1,(i+=r-i%r)>=t)return n}}var K=[""];function G(e){for(;K.length<=e;)K.push(X(K)+" ");return K[e]}function X(e){return e[e.length-1]}function Y(e,t){for(var r=[],n=0;n"€"&&(e.toUpperCase()!=e.toLowerCase()||J.test(e))}function te(e,t){return t?!!(t.source.indexOf("\\w")>-1&&ee(e))||t.test(e):ee(e)}function re(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var ne=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function ie(e){return e.charCodeAt(0)>=768&&ne.test(e)}function oe(e,t,r){for(;(r<0?t>0:tr?-1:1;;){if(t==r)return t;var i=(t+r)/2,o=n<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:r;e(o)?r=o:t=o+n}}var le=null;function se(e,t,r){var n;le=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&"before"==r?n=i:le=i),o.from==t&&(o.from!=o.to&&"before"!=r?n=i:le=i)}return null!=n?n:le}var ce=function(){var e="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",t="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";var r=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,n=/[stwN]/,i=/[LRr]/,o=/[Lb1n]/,a=/[1n]/;function l(e,t,r){this.level=e,this.from=t,this.to=r}return function(s,c){var u,d="ltr"==c?"L":"R";if(0==s.length||"ltr"==c&&!r.test(s))return!1;for(var p=s.length,f=[],m=0;m-1&&(n[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function he(e,t){var r=fe(e,t);if(r.length)for(var n=Array.prototype.slice.call(arguments,2),i=0;i0}function xe(e){e.prototype.on=function(e,t){pe(this,e,t)},e.prototype.off=function(e,t){me(this,e,t)}}function be(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function _e(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function ke(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function we(e){be(e),_e(e)}function Se(e){return e.target||e.srcElement}function Ce(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),y&&e.ctrlKey&&1==t&&(t=3),t}var Me,Te,Le=function(){if(a&&l<9)return!1;var e=D("div");return"draggable"in e||"dragDrop"in e}();function De(e){if(null==Me){var t=D("span","​");L(e,D("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(Me=t.offsetWidth<=1&&t.offsetHeight>2&&!(a&&l<8))}var r=Me?D("span","​"):D("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return r.setAttribute("cm-text",""),r}function ze(e){if(null!=Te)return Te;var t=L(e,document.createTextNode("AخA")),r=C(t,0,1).getBoundingClientRect(),n=C(t,1,2).getBoundingClientRect();return T(e),!(!r||r.left==r.right)&&(Te=n.right-r.right<3)}var Ae,Ne=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,r=[],n=e.length;t<=n;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(r.push(o.slice(0,a)),t+=a+1):(r.push(o),t=i+1)}return r}:function(e){return e.split(/\r\n?|\n/)},qe=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(e){return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch(e){}return!(!t||t.parentElement()!=e)&&0!=t.compareEndPoints("StartToEnd",t)},Fe="oncopy"in(Ae=D("div"))||(Ae.setAttribute("oncopy","return;"),"function"==typeof Ae.oncopy),Ee=null,Oe={},Ie={};function Pe(e){if("string"==typeof e&&Ie.hasOwnProperty(e))e=Ie[e];else if(e&&"string"==typeof e.name&&Ie.hasOwnProperty(e.name)){var t=Ie[e.name];"string"==typeof t&&(t={name:t}),(e=Z(t,e)).name=t.name}else{if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Pe("application/xml");if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Pe("application/json")}return"string"==typeof e?{name:e}:e||{name:"null"}}function We(e,t){t=Pe(t);var r=Oe[t.name];if(!r)return We(e,"text/plain");var n=r(e,t);if(je.hasOwnProperty(t.name)){var i=je[t.name];for(var o in i)i.hasOwnProperty(o)&&(n.hasOwnProperty(o)&&(n["_"+o]=n[o]),n[o]=i[o])}if(n.name=t.name,t.helperType&&(n.helperType=t.helperType),t.modeProps)for(var a in t.modeProps)n[a]=t.modeProps[a];return n}var je={};function Be(e,t){var r=je.hasOwnProperty(e)?je[e]:je[e]={};I(t,r)}function He(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var r={};for(var n in t){var i=t[n];i instanceof Array&&(i=i.concat([])),r[n]=i}return r}function Re(e,t){for(var r;e.innerMode&&(r=e.innerMode(t))&&r.mode!=e;)t=r.state,e=r.mode;return r||{mode:e,state:t}}function $e(e,t,r){return!e.startState||e.startState(t,r)}var Ue=function(e,t,r){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=r};function Ve(e,t){if((t-=e.first)<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var r=e;!r.lines;)for(var n=0;;++n){var i=r.children[n],o=i.chunkSize();if(t=e.first&&tr?et(r,Ve(e,r).text.length):function(e,t){var r=e.ch;return null==r||r>t?et(e.line,t):r<0?et(e.line,0):e}(t,Ve(e,t.line).text.length)}function st(e,t){for(var r=[],n=0;n=this.string.length},Ue.prototype.sol=function(){return this.pos==this.lineStart},Ue.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},Ue.prototype.next=function(){if(this.post},Ue.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},Ue.prototype.skipToEnd=function(){this.pos=this.string.length},Ue.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},Ue.prototype.backUp=function(e){this.pos-=e},Ue.prototype.column=function(){return this.lastColumnPos0?null:(n&&!1!==t&&(this.pos+=n[0].length),n)}var i=function(e){return r?e.toLowerCase():e},o=this.string.substr(this.pos,e.length);if(i(o)==i(e))return!1!==t&&(this.pos+=e.length),!0},Ue.prototype.current=function(){return this.string.slice(this.start,this.pos)},Ue.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},Ue.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},Ue.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var ct=function(e,t){this.state=e,this.lookAhead=t},ut=function(e,t,r,n){this.state=t,this.doc=e,this.line=r,this.maxLookAhead=n||0,this.baseTokens=null,this.baseTokenPos=1};function dt(e,t,r,n){var i=[e.state.modeGen],o={};bt(e,t.text,e.doc.mode,r,function(e,t){return i.push(e,t)},o,n);for(var a=r.state,l=function(n){r.baseTokens=i;var l=e.state.overlays[n],s=1,c=0;r.state=!0,bt(e,t.text,l.mode,r,function(e,t){for(var r=s;ce&&i.splice(s,1,e,i[s+1],n),s+=2,c=Math.min(e,n)}if(t)if(l.opaque)i.splice(r,s-r,e,"overlay "+t),s=r+2;else for(;re.options.maxHighlightLength&&He(e.doc.mode,n.state),o=dt(e,t,n);i&&(n.state=i),t.stateAfter=n.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),r===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function ft(e,t,r){var n=e.doc,i=e.display;if(!n.mode.startState)return new ut(n,!0,t);var o=function(e,t,r){for(var n,i,o=e.doc,a=r?-1:t-(e.doc.mode.innerMode?1e3:100),l=t;l>a;--l){if(l<=o.first)return o.first;var s=Ve(o,l-1),c=s.stateAfter;if(c&&(!r||l+(c instanceof ct?c.lookAhead:0)<=o.modeFrontier))return l;var u=P(s.text,null,e.options.tabSize);(null==i||n>u)&&(i=l-1,n=u)}return i}(e,t,r),a=o>n.first&&Ve(n,o-1).stateAfter,l=a?ut.fromSaved(n,a,o):new ut(n,$e(n.mode),o);return n.iter(o,t,function(r){mt(e,r.text,l);var n=l.line;r.stateAfter=n==t-1||n%5==0||n>=i.viewFrom&&nt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}ut.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},ut.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},ut.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},ut.fromSaved=function(e,t,r){return t instanceof ct?new ut(e,He(e.mode,t.state),r,t.lookAhead):new ut(e,He(e.mode,t),r)},ut.prototype.save=function(e){var t=!1!==e?He(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new ct(t,this.maxLookAhead):t};var vt=function(e,t,r){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=r};function yt(e,t,r,n){var i,o=e.doc,a=o.mode;t=lt(o,t);var l,s=Ve(o,t.line),c=ft(e,t.line,r),u=new Ue(s.text,e.options.tabSize,c);for(n&&(l=[]);(n||u.pose.options.maxHighlightLength?(l=!1,a&&mt(e,t,n,d.pos),d.pos=t.length,s=null):s=xt(gt(r,d,n.state,p),o),p){var f=p[0].name;f&&(s="m-"+(s?f+" "+s:f))}if(!l||u!=s){for(;c=t:o.to>t);(n||(n=[])).push(new wt(a,o.from,s?null:o.to))}}return n}(r,i,a),s=function(e,t,r){var n;if(e)for(var i=0;i=t:o.to>t);if(l||o.from==t&&"bookmark"==a.type&&(!r||o.marker.insertLeft)){var s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from0&&l)for(var b=0;bt)&&(!r||Nt(r,o.marker)<0)&&(r=o.marker)}return r}function It(e,t,r,n,i){var o=Ve(e,t),a=kt&&o.markedSpans;if(a)for(var l=0;l=0&&d<=0||u<=0&&d>=0)&&(u<=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?tt(c.to,r)>=0:tt(c.to,r)>0)||u>=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?tt(c.from,n)<=0:tt(c.from,n)<0)))return!0}}}function Pt(e){for(var t;t=Ft(e);)e=t.find(-1,!0).line;return e}function Wt(e,t){var r=Ve(e,t),n=Pt(r);return r==n?t:Ye(n)}function jt(e,t){if(t>e.lastLine())return t;var r,n=Ve(e,t);if(!Bt(e,n))return t;for(;r=Et(n);)n=r.find(1,!0).line;return Ye(n)+1}function Bt(e,t){var r=kt&&t.markedSpans;if(r)for(var n=void 0,i=0;it.maxLineLength&&(t.maxLineLength=r,t.maxLine=e)})}var Vt=function(e,t,r){this.text=e,Dt(this,t),this.height=r?r(this):1};function Kt(e){e.parent=null,Lt(e)}Vt.prototype.lineNo=function(){return Ye(this)},xe(Vt);var Gt={},Xt={};function Yt(e,t){if(!e||/^\s*$/.test(e))return null;var r=t.addModeClass?Xt:Gt;return r[e]||(r[e]=e.replace(/\S+/g,"cm-$&"))}function Qt(e,t){var r=z("span",null,null,s?"padding-right: .1px":null),n={pre:z("pre",[r],"CodeMirror-line"),content:r,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,a=void 0;n.pos=0,n.addToken=Jt,ze(e.display.measure)&&(a=ue(o,e.doc.direction))&&(n.addToken=er(n.addToken,a)),n.map=[];var l=t!=e.display.externalMeasured&&Ye(o);rr(o,n,pt(e,o,l)),o.styleClasses&&(o.styleClasses.bgClass&&(n.bgClass=F(o.styleClasses.bgClass,n.bgClass||"")),o.styleClasses.textClass&&(n.textClass=F(o.styleClasses.textClass,n.textClass||""))),0==n.map.length&&n.map.push(0,0,n.content.appendChild(De(e.display.measure))),0==i?(t.measure.map=n.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(n.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(s){var c=n.content.lastChild;(/\bcm-tab\b/.test(c.className)||c.querySelector&&c.querySelector(".cm-tab"))&&(n.content.className="cm-tab-wrap-hack")}return he(e,"renderLine",e,t.line,n.pre),n.pre.className&&(n.textClass=F(n.pre.className,n.textClass||"")),n}function Zt(e){var t=D("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Jt(e,t,r,n,i,o,s){if(t){var c,u=e.splitSpaces?function(e,t){if(e.length>1&&!/ /.test(e))return e;for(var r=t,n="",i=0;ic&&d.from<=c);p++);if(d.to>=u)return e(r,n,i,o,a,l,s);e(r,n.slice(0,d.to-c),i,o,null,l,s),o=null,n=n.slice(d.to-c),c=d.to}}}function tr(e,t,r,n){var i=!n&&r.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!n&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",r.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function rr(e,t,r){var n=e.markedSpans,i=e.text,o=0;if(n)for(var a,l,s,c,u,d,p,f=i.length,m=0,h=1,g="",v=0;;){if(v==m){s=c=u=l="",p=null,d=null,v=1/0;for(var y=[],x=void 0,b=0;bm||k.collapsed&&_.to==m&&_.from==m)){if(null!=_.to&&_.to!=m&&v>_.to&&(v=_.to,c=""),k.className&&(s+=" "+k.className),k.css&&(l=(l?l+";":"")+k.css),k.startStyle&&_.from==m&&(u+=" "+k.startStyle),k.endStyle&&_.to==v&&(x||(x=[])).push(k.endStyle,_.to),k.title&&((p||(p={})).title=k.title),k.attributes)for(var w in k.attributes)(p||(p={}))[w]=k.attributes[w];k.collapsed&&(!d||Nt(d.marker,k)<0)&&(d=_)}else _.from>m&&v>_.from&&(v=_.from)}if(x)for(var S=0;S=f)break;for(var M=Math.min(f,v);;){if(g){var T=m+g.length;if(!d){var L=T>M?g.slice(0,M-m):g;t.addToken(t,L,a?a+s:s,u,m+L.length==v?c:"",l,p)}if(T>=M){g=g.slice(M-m),m=M;break}m=T,u=""}g=i.slice(o,o=r[h++]),a=Yt(r[h++],t.cm.options)}}else for(var D=1;Dr)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function Dr(e,t,r,n){return Nr(e,Ar(e,t),r,n)}function zr(e,t){if(t>=e.display.viewFrom&&t=r.lineN&&t2&&o.push((s.bottom+c.top)/2-r.top)}}o.push(r.bottom-r.top)}}(e,t.view,t.rect),t.hasHeights=!0),(o=function(e,t,r,n){var i,o=Er(t.map,r,n),s=o.node,c=o.start,u=o.end,d=o.collapse;if(3==s.nodeType){for(var p=0;p<4;p++){for(;c&&ie(t.line.text.charAt(o.coverStart+c));)--c;for(;o.coverStart+u1}(e))return t;var r=screen.logicalXDPI/screen.deviceXDPI,n=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*r,right:t.right*r,top:t.top*n,bottom:t.bottom*n}}(e.display.measure,i))}else{var f;c>0&&(d=n="right"),i=e.options.lineWrapping&&(f=s.getClientRects()).length>1?f["right"==n?f.length-1:0]:s.getBoundingClientRect()}if(a&&l<9&&!c&&(!i||!i.left&&!i.right)){var m=s.parentNode.getClientRects()[0];i=m?{left:m.left,right:m.left+tn(e.display),top:m.top,bottom:m.bottom}:Fr}for(var h=i.top-t.rect.top,g=i.bottom-t.rect.top,v=(h+g)/2,y=t.view.measure.heights,x=0;xt)&&(i=(o=s-l)-1,t>=s&&(a="right")),null!=i){if(n=e[c+2],l==s&&r==(n.insertLeft?"left":"right")&&(a=r),"left"==r&&0==i)for(;c&&e[c-2]==e[c-3]&&e[c-1].insertLeft;)n=e[2+(c-=3)],a="left";if("right"==r&&i==s-l)for(;c=0&&(r=e[i]).left==r.right;i--);return r}function Ir(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t=n.text.length?(s=n.text.length,c="before"):s<=0&&(s=0,c="after"),!l)return a("before"==c?s-1:s,"before"==c);function u(e,t,r){var n=l[t],i=1==n.level;return a(r?e-1:e,i!=r)}var d=se(l,s,c),p=le,f=u(s,d,"before"==c);return null!=p&&(f.other=u(s,p,"before"!=c)),f}function Kr(e,t){var r=0;t=lt(e.doc,t),e.options.lineWrapping||(r=tn(e.display)*t.ch);var n=Ve(e.doc,t.line),i=Rt(n)+kr(e.display);return{left:r,right:r,top:i,bottom:i+n.height}}function Gr(e,t,r,n,i){var o=et(e,t,r);return o.xRel=i,n&&(o.outside=!0),o}function Xr(e,t,r){var n=e.doc;if((r+=e.display.viewOffset)<0)return Gr(n.first,0,null,!0,-1);var i=Qe(n,r),o=n.first+n.size-1;if(i>o)return Gr(n.first+n.size-1,Ve(n,o).text.length,null,!0,1);t<0&&(t=0);for(var a=Ve(n,i);;){var l=Jr(e,a,i,t,r),s=Ot(a,l.ch+(l.xRel>0?1:0));if(!s)return l;var c=s.find(1);if(c.line==i)return c;a=Ve(n,i=c.line)}}function Yr(e,t,r,n){n-=Hr(t);var i=t.text.length,o=ae(function(t){return Nr(e,r,t-1).bottom<=n},i,0);return i=ae(function(t){return Nr(e,r,t).top>n},o,i),{begin:o,end:i}}function Qr(e,t,r,n){r||(r=Ar(e,t));var i=Rr(e,t,Nr(e,r,n),"line").top;return Yr(e,t,r,i)}function Zr(e,t,r,n){return!(e.bottom<=r)&&(e.top>r||(n?e.left:e.right)>t)}function Jr(e,t,r,n,i){i-=Rt(t);var o=Ar(e,t),a=Hr(t),l=0,s=t.text.length,c=!0,u=ue(t,e.doc.direction);if(u){var d=(e.options.lineWrapping?function(e,t,r,n,i,o,a){var l=Yr(e,t,n,a),s=l.begin,c=l.end;/\s/.test(t.text.charAt(c-1))&&c--;for(var u=null,d=null,p=0;p=c||f.to<=s)){var m=1!=f.level,h=Nr(e,n,m?Math.min(c,f.to)-1:Math.max(s,f.from)).right,g=hg)&&(u=f,d=g)}}return u||(u=i[i.length-1]),u.fromc&&(u={from:u.from,to:c,level:u.level}),u}:function(e,t,r,n,i,o,a){var l=ae(function(l){var s=i[l],c=1!=s.level;return Zr(Vr(e,et(r,c?s.to:s.from,c?"before":"after"),"line",t,n),o,a,!0)},0,i.length-1),s=i[l];if(l>0){var c=1!=s.level,u=Vr(e,et(r,c?s.from:s.to,c?"after":"before"),"line",t,n);Zr(u,o,a,!0)&&u.top>a&&(s=i[l-1])}return s})(e,t,r,o,u,n,i);c=1!=d.level,l=c?d.from:d.to-1,s=c?d.to:d.from-1}var p,f,m=null,h=null,g=ae(function(t){var r=Nr(e,o,t);return r.top+=a,r.bottom+=a,!!Zr(r,n,i,!1)&&(r.top<=i&&r.left<=n&&(m=t,h=r),!0)},l,s),v=!1;if(h){var y=n-h.left=b.bottom}return g=oe(t.text,g,1),Gr(r,g,f,v,n-p)}function en(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==qr){qr=D("pre");for(var t=0;t<49;++t)qr.appendChild(document.createTextNode("x")),qr.appendChild(D("br"));qr.appendChild(document.createTextNode("x"))}L(e.measure,qr);var r=qr.offsetHeight/50;return r>3&&(e.cachedTextHeight=r),T(e.measure),r||1}function tn(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=D("span","xxxxxxxxxx"),r=D("pre",[t]);L(e.measure,r);var n=t.getBoundingClientRect(),i=(n.right-n.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function rn(e){for(var t=e.display,r={},n={},i=t.gutters.clientLeft,o=t.gutters.firstChild,a=0;o;o=o.nextSibling,++a){var l=e.display.gutterSpecs[a].className;r[l]=o.offsetLeft+o.clientLeft+i,n[l]=o.clientWidth}return{fixedPos:nn(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:r,gutterWidth:n,wrapperWidth:t.wrapper.clientWidth}}function nn(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function on(e){var t=en(e.display),r=e.options.lineWrapping,n=r&&Math.max(5,e.display.scroller.clientWidth/tn(e.display)-3);return function(i){if(Bt(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a=e.display.viewTo)return null;if((t-=e.display.viewFrom)<0)return null;for(var r=e.display.view,n=0;nt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)kt&&Wt(e.doc,t)i.viewFrom?dn(e):(i.viewFrom+=n,i.viewTo+=n);else if(t<=i.viewFrom&&r>=i.viewTo)dn(e);else if(t<=i.viewFrom){var o=pn(e,r,r+n,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=n):dn(e)}else if(r>=i.viewTo){var a=pn(e,t,t,-1);a?(i.view=i.view.slice(0,a.index),i.viewTo=a.lineN):dn(e)}else{var l=pn(e,t,t,-1),s=pn(e,r,r+n,1);l&&s?(i.view=i.view.slice(0,l.index).concat(ir(e,l.lineN,s.lineN)).concat(i.view.slice(s.index)),i.viewTo+=n):dn(e)}var c=i.externalMeasured;c&&(r=i.lineN&&t=n.viewTo)){var o=n.view[sn(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==j(a,r)&&a.push(r)}}}function dn(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function pn(e,t,r,n){var i,o=sn(e,t),a=e.display.view;if(!kt||r==e.doc.first+e.doc.size)return{index:o,lineN:r};for(var l=e.display.viewFrom,s=0;s0){if(o==a.length-1)return null;i=l+a[o].size-t,o++}else i=l-t;t+=i,r+=i}for(;Wt(e.doc,r)!=r;){if(o==(n<0?0:a.length-1))return null;r+=n*a[o-(n<0?1:0)].size,o+=n}return{index:o,lineN:r}}function fn(e){for(var t=e.display.view,r=0,n=0;n=e.display.viewTo||l.to().linet||t==r&&a.to==t)&&(n(Math.max(a.from,t),Math.min(a.to,r),1==a.level?"rtl":"ltr",o),i=!0)}i||n(t,r,"ltr")}(h,r||0,null==n?p:n,function(e,t,i,d){var g="ltr"==i,v=f(e,g?"left":"right"),y=f(t-1,g?"right":"left"),x=null==r&&0==e,b=null==n&&t==p,_=0==d,k=!h||d==h.length-1;if(y.top-v.top<=3){var w=(c?x:b)&&_,S=(c?b:x)&&k,C=w?l:(g?v:y).left,M=S?s:(g?y:v).right;u(C,v.top,M-C,v.bottom)}else{var T,L,D,z;g?(T=c&&x&&_?l:v.left,L=c?s:m(e,i,"before"),D=c?l:m(t,i,"after"),z=c&&b&&k?s:y.right):(T=c?m(e,i,"before"):l,L=!c&&x&&_?s:v.right,D=!c&&b&&k?l:y.left,z=c?m(t,i,"after"):s),u(T,v.top,L-T,v.bottom),v.bottom0?t.blinker=setInterval(function(){return t.cursorDiv.style.visibility=(r=!r)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function bn(e){e.state.focused||(e.display.input.focus(),kn(e))}function _n(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,wn(e))},100)}function kn(e,t){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1),"nocursor"!=e.options.readOnly&&(e.state.focused||(he(e,"focus",e,t),e.state.focused=!0,q(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),s&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),xn(e))}function wn(e,t){e.state.delayingBlurEvent||(e.state.focused&&(he(e,"blur",e,t),e.state.focused=!1,M(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function Sn(e){for(var t=e.display,r=t.lineDiv.offsetTop,n=0;n.005||p<-.005)&&(Xe(i.line,s),Cn(i.line),i.rest))for(var f=0;fe.display.sizerWidth){var m=Math.ceil(c/tn(e.display));m>e.display.maxLineLength&&(e.display.maxLineLength=m,e.display.maxLine=i.line,e.display.maxLineChanged=!0)}}}}function Cn(e){if(e.widgets)for(var t=0;t=a&&(o=Qe(t,Rt(Ve(t,s))-e.wrapper.clientHeight),a=s)}return{from:o,to:Math.max(a,o+1)}}function Tn(e,t){var r=e.display,n=en(e.display);t.top<0&&(t.top=0);var i=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:r.scroller.scrollTop,o=Tr(e),a={};t.bottom-t.top>o&&(t.bottom=t.top+o);var l=e.doc.height+wr(r),s=t.topl-n;if(t.topi+o){var u=Math.min(t.top,(c?l:t.bottom)-o);u!=i&&(a.scrollTop=u)}var d=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:r.scroller.scrollLeft,p=Mr(e)-(e.options.fixedGutter?r.gutters.offsetWidth:0),f=t.right-t.left>p;return f&&(t.right=t.left+p),t.left<10?a.scrollLeft=0:t.leftp+d-3&&(a.scrollLeft=t.right+(f?0:10)-p),a}function Ln(e,t){null!=t&&(An(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Dn(e){An(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function zn(e,t,r){null==t&&null==r||An(e),null!=t&&(e.curOp.scrollLeft=t),null!=r&&(e.curOp.scrollTop=r)}function An(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var r=Kr(e,t.from),n=Kr(e,t.to);Nn(e,r,n,t.margin)}}function Nn(e,t,r,n){var i=Tn(e,{left:Math.min(t.left,r.left),top:Math.min(t.top,r.top)-n,right:Math.max(t.right,r.right),bottom:Math.max(t.bottom,r.bottom)+n});zn(e,i.scrollLeft,i.scrollTop)}function qn(e,t){Math.abs(e.doc.scrollTop-t)<2||(r||oi(e,{top:t}),Fn(e,t,!0),r&&oi(e),ei(e,100))}function Fn(e,t,r){t=Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t),(e.display.scroller.scrollTop!=t||r)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function En(e,t,r,n){t=Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth),(r?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!n||(e.doc.scrollLeft=t,si(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function On(e){var t=e.display,r=t.gutters.offsetWidth,n=Math.round(e.doc.height+wr(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?r:0,docHeight:n,scrollHeight:n+Cr(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:r}}var In=function(e,t,r){this.cm=r;var n=this.vert=D("div",[D("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=D("div",[D("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");n.tabIndex=i.tabIndex=-1,e(n),e(i),pe(n,"scroll",function(){n.clientHeight&&t(n.scrollTop,"vertical")}),pe(i,"scroll",function(){i.clientWidth&&t(i.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,a&&l<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};In.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,r=e.scrollHeight>e.clientHeight+1,n=e.nativeBarWidth;if(r){this.vert.style.display="block",this.vert.style.bottom=t?n+"px":"0";var i=e.viewHeight-(t?n:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=r?n+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(r?n:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==n&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:r?n:0,bottom:t?n:0}},In.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},In.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},In.prototype.zeroWidthHack=function(){var e=y&&!f?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new W,this.disableVert=new W},In.prototype.enableZeroWidthBar=function(e,t,r){e.style.pointerEvents="auto",t.set(1e3,function n(){var i=e.getBoundingClientRect(),o="vert"==r?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1);o!=e?e.style.pointerEvents="none":t.set(1e3,n)})},In.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var Pn=function(){};function Wn(e,t){t||(t=On(e));var r=e.display.barWidth,n=e.display.barHeight;jn(e,t);for(var i=0;i<4&&r!=e.display.barWidth||n!=e.display.barHeight;i++)r!=e.display.barWidth&&e.options.lineWrapping&&Sn(e),jn(e,On(e)),r=e.display.barWidth,n=e.display.barHeight}function jn(e,t){var r=e.display,n=r.scrollbars.update(t);r.sizer.style.paddingRight=(r.barWidth=n.right)+"px",r.sizer.style.paddingBottom=(r.barHeight=n.bottom)+"px",r.heightForcer.style.borderBottom=n.bottom+"px solid transparent",n.right&&n.bottom?(r.scrollbarFiller.style.display="block",r.scrollbarFiller.style.height=n.bottom+"px",r.scrollbarFiller.style.width=n.right+"px"):r.scrollbarFiller.style.display="",n.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(r.gutterFiller.style.display="block",r.gutterFiller.style.height=n.bottom+"px",r.gutterFiller.style.width=t.gutterWidth+"px"):r.gutterFiller.style.display=""}Pn.prototype.update=function(){return{bottom:0,right:0}},Pn.prototype.setScrollLeft=function(){},Pn.prototype.setScrollTop=function(){},Pn.prototype.clear=function(){};var Bn={native:In,null:Pn};function Hn(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&M(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new Bn[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),pe(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,r){"horizontal"==r?En(e,t):qn(e,t)},e),e.display.scrollbars.addClass&&q(e.display.wrapper,e.display.scrollbars.addClass)}var Rn=0;function $n(e){var t;e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Rn},t=e.curOp,or?or.ops.push(t):t.ownsGroup=or={ops:[t],delayedCallbacks:[]}}function Un(e){var t=e.curOp;t&&function(e,t){var r=e.ownsGroup;if(r)try{!function(e){var t=e.delayedCallbacks,r=0;do{for(;r=r.viewTo)||r.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new ri(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function Kn(e){var t=e.cm,r=t.display;e.updatedDisplay&&Sn(t),e.barMeasure=On(t),r.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Dr(t,r.maxLine,r.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(r.scroller.clientWidth,r.sizer.offsetLeft+e.adjustWidthTo+Cr(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,r.sizer.offsetLeft+e.adjustWidthTo-Mr(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=r.input.prepareSelection())}function Gn(e){var t=e.cm;null!=e.adjustWidthTo&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft1&&(a=!0)),null!=c.scrollLeft&&(En(e,c.scrollLeft),Math.abs(e.doc.scrollLeft-d)>1&&(a=!0)),!a)break}return i}(t,lt(n,e.scrollToPos.from),lt(n,e.scrollToPos.to),e.scrollToPos.margin);!function(e,t){if(!ge(e,"scrollCursorIntoView")){var r=e.display,n=r.sizer.getBoundingClientRect(),i=null;if(t.top+n.top<0?i=!0:t.bottom+n.top>(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!m){var o=D("div","​",null,"position: absolute;\n top: "+(t.top-r.viewOffset-kr(e.display))+"px;\n height: "+(t.bottom-t.top+Cr(e)+r.barHeight)+"px;\n left: "+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}}(t,i)}var o=e.maybeHiddenMarkers,a=e.maybeUnhiddenMarkers;if(o)for(var l=0;l=e.display.viewTo)){var r=+new Date+e.options.workTime,n=ft(e,t.highlightFrontier),i=[];t.iter(n.line,Math.min(t.first+t.size,e.display.viewTo+500),function(o){if(n.line>=e.display.viewFrom){var a=o.styles,l=o.text.length>e.options.maxHighlightLength?He(t.mode,n.state):null,s=dt(e,o,n,!0);l&&(n.state=l),o.styles=s.styles;var c=o.styleClasses,u=s.classes;u?o.styleClasses=u:c&&(o.styleClasses=null);for(var d=!a||a.length!=o.styles.length||c!=u&&(!c||!u||c.bgClass!=u.bgClass||c.textClass!=u.textClass),p=0;!d&&pr)return ei(e,e.options.workDelay),!0}),t.highlightFrontier=n.line,t.modeFrontier=Math.max(t.modeFrontier,n.line),i.length&&Yn(e,function(){for(var t=0;t=r.viewFrom&&t.visible.to<=r.viewTo&&(null==r.updateLineNumbers||r.updateLineNumbers>=r.viewTo)&&r.renderedView==r.view&&0==fn(e))return!1;ci(e)&&(dn(e),t.dims=rn(e));var i=n.first+n.size,o=Math.max(t.visible.from-e.options.viewportMargin,n.first),a=Math.min(i,t.visible.to+e.options.viewportMargin);r.viewFroma&&r.viewTo-a<20&&(a=Math.min(i,r.viewTo)),kt&&(o=Wt(e.doc,o),a=jt(e.doc,a));var l=o!=r.viewFrom||a!=r.viewTo||r.lastWrapHeight!=t.wrapperHeight||r.lastWrapWidth!=t.wrapperWidth;!function(e,t,r){var n=e.display;0==n.view.length||t>=n.viewTo||r<=n.viewFrom?(n.view=ir(e,t,r),n.viewFrom=t):(n.viewFrom>t?n.view=ir(e,t,n.viewFrom).concat(n.view):n.viewFromr&&(n.view=n.view.slice(0,sn(e,r)))),n.viewTo=r}(e,o,a),r.viewOffset=Rt(Ve(e.doc,r.viewFrom)),e.display.mover.style.top=r.viewOffset+"px";var c=fn(e);if(!l&&0==c&&!t.force&&r.renderedView==r.view&&(null==r.updateLineNumbers||r.updateLineNumbers>=r.viewTo))return!1;var u=function(e){if(e.hasFocus())return null;var t=N();if(!t||!A(e.display.lineDiv,t))return null;var r={activeElt:t};if(window.getSelection){var n=window.getSelection();n.anchorNode&&n.extend&&A(e.display.lineDiv,n.anchorNode)&&(r.anchorNode=n.anchorNode,r.anchorOffset=n.anchorOffset,r.focusNode=n.focusNode,r.focusOffset=n.focusOffset)}return r}(e);return c>4&&(r.lineDiv.style.display="none"),function(e,t,r){var n=e.display,i=e.options.lineNumbers,o=n.lineDiv,a=o.firstChild;function l(t){var r=t.nextSibling;return s&&y&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),r}for(var c=n.view,u=n.viewFrom,d=0;d-1&&(f=!1),cr(e,p,u,r)),f&&(T(p.lineNumber),p.lineNumber.appendChild(document.createTextNode(Je(e.options,u)))),a=p.node.nextSibling}else{var m=gr(e,p,u,r);o.insertBefore(m,a)}u+=p.size}for(;a;)a=l(a)}(e,r.updateLineNumbers,t.dims),c>4&&(r.lineDiv.style.display=""),r.renderedView=r.view,function(e){if(e&&e.activeElt&&e.activeElt!=N()&&(e.activeElt.focus(),e.anchorNode&&A(document.body,e.anchorNode)&&A(document.body,e.focusNode))){var t=window.getSelection(),r=document.createRange();r.setEnd(e.anchorNode,e.anchorOffset),r.collapse(!1),t.removeAllRanges(),t.addRange(r),t.extend(e.focusNode,e.focusOffset)}}(u),T(r.cursorDiv),T(r.selectionDiv),r.gutters.style.height=r.sizer.style.minHeight=0,l&&(r.lastWrapHeight=t.wrapperHeight,r.lastWrapWidth=t.wrapperWidth,ei(e,400)),r.updateLineNumbers=null,!0}function ii(e,t){for(var r=t.viewport,n=!0;(n&&e.options.lineWrapping&&t.oldDisplayWidth!=Mr(e)||(r&&null!=r.top&&(r={top:Math.min(e.doc.height+wr(e.display)-Tr(e),r.top)}),t.visible=Mn(e.display,e.doc,r),!(t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)))&&ni(e,t);n=!1){Sn(e);var i=On(e);mn(e),Wn(e,i),li(e,i),t.force=!1}t.signal(e,"update",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function oi(e,t){var r=new ri(e,t);if(ni(e,r)){Sn(e),ii(e,r);var n=On(e);mn(e),Wn(e,n),li(e,n),r.finish()}}function ai(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px"}function li(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+Cr(e)+"px"}function si(e){var t=e.display,r=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var n=nn(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=n+"px",a=0;al.clientWidth,u=l.scrollHeight>l.clientHeight;if(i&&c||o&&u){if(o&&y&&s)e:for(var p=t.target,f=a.view;p!=l;p=p.parentNode)for(var m=0;m=0&&tt(e,n.to())<=0)return r}return-1};var bi=function(e,t){this.anchor=e,this.head=t};function _i(e,t,r){var n=e&&e.options.selectionsMayTouch,i=t[r];t.sort(function(e,t){return tt(e.from(),t.from())}),r=j(t,i);for(var o=1;o0:s>=0){var c=ot(l.from(),a.from()),u=it(l.to(),a.to()),d=l.empty()?a.from()==a.head:l.from()==l.head;o<=r&&--r,t.splice(--o,2,new bi(d?u:c,d?c:u))}}return new xi(t,r)}function ki(e,t){return new xi([new bi(e,t||e)],0)}function wi(e){return e.text?et(e.from.line+e.text.length-1,X(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function Si(e,t){if(tt(e,t.from)<0)return e;if(tt(e,t.to)<=0)return wi(t);var r=e.line+t.text.length-(t.to.line-t.from.line)-1,n=e.ch;return e.line==t.to.line&&(n+=wi(t).ch-t.to.ch),et(r,n)}function Ci(e,t){for(var r=[],n=0;n1&&e.remove(l.line+1,m-1),e.insert(l.line+1,v)}lr(e,"change",e,t)}function Ai(e,t,r){!function e(n,i,o){if(n.linked)for(var a=0;al-(e.cm?e.cm.options.historyEventDelay:500)||"*"==t.origin.charAt(0)))&&(o=function(e,t){return t?(Oi(e.done),X(e.done)):e.done.length&&!X(e.done).ranges?X(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),X(e.done)):void 0}(i,i.lastOp==n)))a=X(o.changes),0==tt(t.from,t.to)&&0==tt(t.from,a.to)?a.to=wi(t):o.changes.push(Ei(e,t));else{var s=X(i.done);for(s&&s.ranges||Wi(e.sel,i.done),o={changes:[Ei(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(r),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=l,i.lastOp=i.lastSelOp=n,i.lastOrigin=i.lastSelOrigin=t.origin,a||he(e,"historyAdded")}function Pi(e,t,r,n){var i=e.history,o=n&&n.origin;r==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||function(e,t,r,n){var i=t.charAt(0);return"*"==i||"+"==i&&r.ranges.length==n.ranges.length&&r.somethingSelected()==n.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}(e,o,X(i.done),t))?i.done[i.done.length-1]=t:Wi(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=r,n&&!1!==n.clearRedo&&Oi(i.undone)}function Wi(e,t){var r=X(t);r&&r.ranges&&r.equals(e)||t.push(e)}function ji(e,t,r,n){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,r),Math.min(e.first+e.size,n),function(r){r.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=r.markedSpans),++o})}function Bi(e){if(!e)return null;for(var t,r=0;r-1&&(X(l)[d]=c[d],delete c[d])}}}return n}function $i(e,t,r,n){if(n){var i=e.anchor;if(r){var o=tt(t,i)<0;o!=tt(r,i)<0?(i=t,t=r):o!=tt(t,r)<0&&(t=r)}return new bi(i,t)}return new bi(r||t,t)}function Ui(e,t,r,n,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),Yi(e,new xi([$i(e.sel.primary(),t,r,i)],0),n)}function Vi(e,t,r){for(var n=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:l.to>t.ch))){if(i&&(he(s,"beforeCursorEnter"),s.explicitlyCleared)){if(o.markedSpans){--a;continue}break}if(!s.atomic)continue;if(r){var c=s.find(n<0?1:-1),u=void 0;if((n<0?s.inclusiveRight:s.inclusiveLeft)&&(c=no(e,c,-n,c&&c.line==t.line?o:null)),c&&c.line==t.line&&(u=tt(c,r))&&(n<0?u<0:u>0))return to(e,c,t,n,i)}var d=s.find(n<0?-1:1);return(n<0?s.inclusiveLeft:s.inclusiveRight)&&(d=no(e,d,n,d.line==t.line?o:null)),d?to(e,d,t,n,i):null}}return t}function ro(e,t,r,n,i){var o=n||1,a=to(e,t,r,o,i)||!i&&to(e,t,r,o,!0)||to(e,t,r,-o,i)||!i&&to(e,t,r,-o,!0);return a||(e.cantEdit=!0,et(e.first,0))}function no(e,t,r,n){return r<0&&0==t.ch?t.line>e.first?lt(e,et(t.line-1)):null:r>0&&t.ch==(n||Ve(e,t.line)).text.length?t.line0)){var u=[s,1],d=tt(c.from,l.from),p=tt(c.to,l.to);(d<0||!a.inclusiveLeft&&!d)&&u.push({from:c.from,to:l.from}),(p>0||!a.inclusiveRight&&!p)&&u.push({from:l.to,to:c.to}),i.splice.apply(i,u),s+=u.length-3}}return i}(e,t.from,t.to);if(n)for(var i=n.length-1;i>=0;--i)lo(e,{from:n[i].from,to:n[i].to,text:i?[""]:t.text,origin:t.origin});else lo(e,t)}}function lo(e,t){if(1!=t.text.length||""!=t.text[0]||0!=tt(t.from,t.to)){var r=Ci(e,t);Ii(e,t,r,e.cm?e.cm.curOp.id:NaN),uo(e,t,r,Mt(e,t));var n=[];Ai(e,function(e,r){r||-1!=j(n,e.history)||(ho(e.history,t),n.push(e.history)),uo(e,t,null,Mt(e,t))})}}function so(e,t,r){var n=e.cm&&e.cm.state.suppressEdits;if(!n||r){for(var i,o=e.history,a=e.sel,l="undo"==t?o.done:o.undone,s="undo"==t?o.undone:o.done,c=0;c=0;--f){var m=p(f);if(m)return m.v}}}}function co(e,t){if(0!=t&&(e.first+=t,e.sel=new xi(Y(e.sel.ranges,function(e){return new bi(et(e.anchor.line+t,e.anchor.ch),et(e.head.line+t,e.head.ch))}),e.sel.primIndex),e.cm)){cn(e.cm,e.first,e.first-t,t);for(var r=e.cm.display,n=r.viewFrom;ne.lastLine())){if(t.from.lineo&&(t={from:t.from,to:et(o,Ve(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Ke(e,t.from,t.to),r||(r=Ci(e,t)),e.cm?function(e,t,r){var n=e.doc,i=e.display,o=t.from,a=t.to,l=!1,s=o.line;e.options.lineWrapping||(s=Ye(Pt(Ve(n,o.line))),n.iter(s,a.line+1,function(e){if(e==i.maxLine)return l=!0,!0})),n.sel.contains(t.from,t.to)>-1&&ve(e),zi(n,t,r,on(e)),e.options.lineWrapping||(n.iter(s,o.line+t.text.length,function(e){var t=$t(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,l=!1)}),l&&(e.curOp.updateMaxLine=!0)),function(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontierr;n--){var i=Ve(e,n).stateAfter;if(i&&(!(i instanceof ct)||n+i.lookAhead1||!(this.children[0]instanceof vo))){var l=[];this.collapse(l),this.children=[new vo(l)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var a=i.lines.length%25+25,l=a;l10);e.parent.maybeSpill()}},iterN:function(e,t,r){for(var n=0;n0||0==a&&!1!==o.clearWhenEmpty)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=z("span",[o.replacedWith],"CodeMirror-widget"),n.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),n.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(It(e,t.line,t,r,o)||t.line!=r.line&&It(e,r.line,t,r,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");kt=!0}o.addToHistory&&Ii(e,{from:t,to:r,origin:"markText"},e.sel,NaN);var l,s=t.line,c=e.cm;if(e.iter(s,r.line+1,function(e){c&&o.collapsed&&!c.options.lineWrapping&&Pt(e)==c.display.maxLine&&(l=!0),o.collapsed&&s!=t.line&&Xe(e,0),function(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}(e,new wt(o,s==t.line?t.ch:null,s==r.line?r.ch:null)),++s}),o.collapsed&&e.iter(t.line,r.line+1,function(t){Bt(e,t)&&Xe(t,0)}),o.clearOnEnter&&pe(o,"beforeCursorEnter",function(){return o.clear()}),o.readOnly&&(_t=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++_o,o.atomic=!0),c){if(l&&(c.curOp.updateMaxLine=!0),o.collapsed)cn(c,t.line,r.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var u=t.line;u<=r.line;u++)un(c,u,"text");o.atomic&&Ji(c.doc),lr(c,"markerAdded",c,o)}return o}ko.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&$n(e),ye(this,"clear")){var r=this.find();r&&lr(this,"clear",r.from,r.to)}for(var n=null,i=null,o=0;oe.display.maxLineLength&&(e.display.maxLine=c,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=n&&e&&this.collapsed&&cn(e,n,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&Ji(e.doc)),e&&lr(e,"markerCleared",e,this,n,i),t&&Un(e),this.parent&&this.parent.clear()}},ko.prototype.find=function(e,t){var r,n;null==e&&"bookmark"==this.type&&(e=1);for(var i=0;i=0;s--)ao(this,n[s]);l?Xi(this,l):this.cm&&Dn(this.cm)}),undo:Jn(function(){so(this,"undo")}),redo:Jn(function(){so(this,"redo")}),undoSelection:Jn(function(){so(this,"undo",!0)}),redoSelection:Jn(function(){so(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,r=0,n=0;n=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,r){e=lt(this,e),t=lt(this,t);var n=[],i=e.line;return this.iter(e.line,t.line+1,function(o){var a=o.markedSpans;if(a)for(var l=0;l=s.to||null==s.from&&i!=e.line||null!=s.from&&i==t.line&&s.from>=t.ch||r&&!r(s.marker)||n.push(s.marker.parent||s.marker)}++i}),n},getAllMarks:function(){var e=[];return this.iter(function(t){var r=t.markedSpans;if(r)for(var n=0;ne)return t=e,!0;e-=o,++r}),lt(this,et(r,t))},indexFromPos:function(e){var t=(e=lt(this,e)).ch;if(e.linet&&(t=e.from),null!=e.to&&e.to-1)return t.state.draggingText(e),void setTimeout(function(){return t.display.input.focus()},20);try{var u=e.dataTransfer.getData("Text");if(u){var d;if(t.state.draggingText&&!t.state.draggingText.copy&&(d=t.listSelections()),Qi(t.doc,ki(r,r)),d)for(var p=0;p=0;t--)po(e.doc,"",n[t].from,n[t].to,"+delete");Dn(e)})}function Xo(e,t,r){var n=oe(e.text,t+r,r);return n<0||n>e.text.length?null:n}function Yo(e,t,r){var n=Xo(e,t.ch,r);return null==n?null:new et(t.line,n,r<0?"after":"before")}function Qo(e,t,r,n,i){if(e){var o=ue(r,t.doc.direction);if(o){var a,l=i<0?X(o):o[0],s=i<0==(1==l.level),c=s?"after":"before";if(l.level>0||"rtl"==t.doc.direction){var u=Ar(t,r);a=i<0?r.text.length-1:0;var d=Nr(t,u,a).top;a=ae(function(e){return Nr(t,u,e).top==d},i<0==(1==l.level)?l.from:l.to-1,a),"before"==c&&(a=Xo(r,a,1))}else a=i<0?l.to:l.from;return new et(n,a,c)}}return new et(n,i<0?r.text.length:0,i<0?"before":"after")}jo.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},jo.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Up":"goLineUp","Ctrl-Down":"goLineDown","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},jo.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars","Ctrl-O":"openLine"},jo.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Home":"goDocStart","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineLeft","Cmd-Right":"goLineRight","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delWrappedLineLeft","Cmd-Delete":"delWrappedLineRight","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection","Ctrl-Up":"goDocStart","Ctrl-Down":"goDocEnd",fallthrough:["basic","emacsy"]},jo.default=y?jo.macDefault:jo.pcDefault;var Zo={selectAll:io,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),R)},killLine:function(e){return Go(e,function(t){if(t.empty()){var r=Ve(e.doc,t.head.line).text.length;return t.head.ch==r&&t.head.line0)i=new et(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),et(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=Ve(e.doc,i.line-1).text;a&&(i=new et(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+a.charAt(a.length-1),et(i.line-1,a.length-1),i,"+transpose"))}r.push(new bi(i,i))}e.setSelections(r)})},newlineAndIndent:function(e){return Yn(e,function(){for(var t=e.listSelections(),r=t.length-1;r>=0;r--)e.replaceRange(e.doc.lineSeparator(),t[r].anchor,t[r].head,"+input");t=e.listSelections();for(var n=0;n-1&&(tt((i=c.ranges[i]).from(),t)<0||t.xRel>0)&&(tt(i.to(),t)>0||t.xRel<0)?function(e,t,r,n){var i=e.display,o=!1,c=Qn(e,function(t){s&&(i.scroller.draggable=!1),e.state.draggingText=!1,me(i.wrapper.ownerDocument,"mouseup",c),me(i.wrapper.ownerDocument,"mousemove",u),me(i.scroller,"dragstart",d),me(i.scroller,"drop",c),o||(be(t),n.addNew||Ui(e.doc,r,null,null,n.extend),s||a&&9==l?setTimeout(function(){i.wrapper.ownerDocument.body.focus(),i.input.focus()},20):i.input.focus())}),u=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},d=function(){return o=!0};s&&(i.scroller.draggable=!0),e.state.draggingText=c,c.copy=!n.moveOnDrag,i.scroller.dragDrop&&i.scroller.dragDrop(),pe(i.wrapper.ownerDocument,"mouseup",c),pe(i.wrapper.ownerDocument,"mousemove",u),pe(i.scroller,"dragstart",d),pe(i.scroller,"drop",c),_n(e),setTimeout(function(){return i.input.focus()},20)}(e,n,t,o):function(e,t,r,n){var i=e.display,o=e.doc;be(t);var a,l,s=o.sel,c=s.ranges;if(n.addNew&&!n.extend?(l=o.sel.contains(r),a=l>-1?c[l]:new bi(r,r)):(a=o.sel.primary(),l=o.sel.primIndex),"rectangle"==n.unit)n.addNew||(a=new bi(r,r)),r=ln(e,t,!0,!0),l=-1;else{var u=ma(e,r,n.unit);a=n.extend?$i(a,u.anchor,u.head,n.extend):u}n.addNew?-1==l?(l=c.length,Yi(o,_i(e,c.concat([a]),l),{scroll:!1,origin:"*mouse"})):c.length>1&&c[l].empty()&&"char"==n.unit&&!n.extend?(Yi(o,_i(e,c.slice(0,l).concat(c.slice(l+1)),0),{scroll:!1,origin:"*mouse"}),s=o.sel):Ki(o,l,a,$):(l=0,Yi(o,new xi([a],0),$),s=o.sel);var d=r;function p(t){if(0!=tt(d,t))if(d=t,"rectangle"==n.unit){for(var i=[],c=e.options.tabSize,u=P(Ve(o,r.line).text,r.ch,c),p=P(Ve(o,t.line).text,t.ch,c),f=Math.min(u,p),m=Math.max(u,p),h=Math.min(r.line,t.line),g=Math.min(e.lastLine(),Math.max(r.line,t.line));h<=g;h++){var v=Ve(o,h).text,y=V(v,f,c);f==m?i.push(new bi(et(h,y),et(h,y))):v.length>y&&i.push(new bi(et(h,y),et(h,V(v,m,c))))}i.length||i.push(new bi(r,r)),Yi(o,_i(e,s.ranges.slice(0,l).concat(i),l),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var x,b=a,_=ma(e,t,n.unit),k=b.anchor;tt(_.anchor,k)>0?(x=_.head,k=ot(b.from(),_.anchor)):(x=_.anchor,k=it(b.to(),_.head));var w=s.ranges.slice(0);w[l]=function(e,t){var r=t.anchor,n=t.head,i=Ve(e.doc,r.line);if(0==tt(r,n)&&r.sticky==n.sticky)return t;var o=ue(i);if(!o)return t;var a=se(o,r.ch,r.sticky),l=o[a];if(l.from!=r.ch&&l.to!=r.ch)return t;var s,c=a+(l.from==r.ch==(1!=l.level)?0:1);if(0==c||c==o.length)return t;if(n.line!=r.line)s=(n.line-r.line)*("ltr"==e.doc.direction?1:-1)>0;else{var u=se(o,n.ch,n.sticky),d=u-a||(n.ch-r.ch)*(1==l.level?-1:1);s=u==c-1||u==c?d<0:d>0}var p=o[c+(s?-1:0)],f=s==(1==p.level),m=f?p.from:p.to,h=f?"after":"before";return r.ch==m&&r.sticky==h?t:new bi(new et(r.line,m,h),n)}(e,new bi(lt(o,k),x)),Yi(o,_i(e,w,l),$)}}var f=i.wrapper.getBoundingClientRect(),m=0;function h(t){e.state.selectingText=!1,m=1/0,t&&(be(t),i.input.focus()),me(i.wrapper.ownerDocument,"mousemove",g),me(i.wrapper.ownerDocument,"mouseup",v),o.history.lastSelOrigin=null}var g=Qn(e,function(t){0!==t.buttons&&Ce(t)?function t(r){var a=++m,l=ln(e,r,!0,"rectangle"==n.unit);if(l)if(0!=tt(l,d)){e.curOp.focus=N(),p(l);var s=Mn(i,o);(l.line>=s.to||l.linef.bottom?20:0;c&&setTimeout(Qn(e,function(){m==a&&(i.scroller.scrollTop+=c,t(r))}),50)}}(t):h(t)}),v=Qn(e,h);e.state.selectingText=v,pe(i.wrapper.ownerDocument,"mousemove",g),pe(i.wrapper.ownerDocument,"mouseup",v)}(e,n,t,o)}(t,n,o,e):Se(e)==r.scroller&&be(e):2==i?(n&&Ui(t.doc,n),setTimeout(function(){return r.input.focus()},20)):3==i&&(w?t.display.input.onContextMenu(e):_n(t)))}}function ma(e,t,r){if("char"==r)return new bi(t,t);if("word"==r)return e.findWordAt(t);if("line"==r)return new bi(et(t.line,0),lt(e.doc,et(t.line+1,0)));var n=r(e,t);return new bi(n.from,n.to)}function ha(e,t,r,n){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(t){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;n&&be(t);var a=e.display,l=a.lineDiv.getBoundingClientRect();if(o>l.bottom||!ye(e,r))return ke(t);o-=l.top-a.viewOffset;for(var s=0;s=i){var u=Qe(e.doc,o),d=e.display.gutterSpecs[s];return he(e,r,e,u,d.className,t),ke(t)}}}function ga(e,t){return ha(e,t,"gutterClick",!0)}function va(e,t){_r(e.display,t)||function(e,t){return!!ye(e,"gutterContextMenu")&&ha(e,t,"gutterContextMenu",!1)}(e,t)||ge(e,t,"contextmenu")||w||e.display.input.onContextMenu(t)}function ya(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),Wr(e)}pa.prototype.compare=function(e,t,r){return this.time+400>e&&0==tt(t,this.pos)&&r==this.button};var xa={toString:function(){return"CodeMirror.Init"}},ba={},_a={};function ka(e,t,r){var n=r&&r!=xa;if(!t!=!n){var i=e.display.dragFunctions,o=t?pe:me;o(e.display.scroller,"dragstart",i.start),o(e.display.scroller,"dragenter",i.enter),o(e.display.scroller,"dragover",i.over),o(e.display.scroller,"dragleave",i.leave),o(e.display.scroller,"drop",i.drop)}}function wa(e){e.options.lineWrapping?(q(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(M(e.display.wrapper,"CodeMirror-wrap"),Ut(e)),an(e),cn(e),Wr(e),setTimeout(function(){return Wn(e)},100)}function Sa(e,t){var r=this;if(!(this instanceof Sa))return new Sa(e,t);this.options=t=t?I(t):{},I(ba,t,!1);var n=t.value;"string"==typeof n?n=new Lo(n,t.mode,null,t.lineSeparator,t.direction):t.mode&&(n.modeOption=t.mode),this.doc=n;var i=new Sa.inputStyles[t.inputStyle](this),o=this.display=new fi(e,n,i,t);for(var c in o.wrapper.CodeMirror=this,ya(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),Hn(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new W,keySeq:null,specialChars:null},t.autofocus&&!v&&o.input.focus(),a&&l<11&&setTimeout(function(){return r.display.input.reset(!0)},20),function(e){var t=e.display;pe(t.scroller,"mousedown",Qn(e,fa)),pe(t.scroller,"dblclick",a&&l<11?Qn(e,function(t){if(!ge(e,t)){var r=ln(e,t);if(r&&!ga(e,t)&&!_r(e.display,t)){be(t);var n=e.findWordAt(r);Ui(e.doc,n.anchor,n.head)}}}):function(t){return ge(e,t)||be(t)}),pe(t.scroller,"contextmenu",function(t){return va(e,t)});var r,n={end:0};function i(){t.activeTouch&&(r=setTimeout(function(){return t.activeTouch=null},1e3),(n=t.activeTouch).end=+new Date)}function o(e,t){if(null==t.left)return!0;var r=t.left-e.left,n=t.top-e.top;return r*r+n*n>400}pe(t.scroller,"touchstart",function(i){if(!ge(e,i)&&!function(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}(i)&&!ga(e,i)){t.input.ensurePolled(),clearTimeout(r);var o=+new Date;t.activeTouch={start:o,moved:!1,prev:o-n.end<=300?n:null},1==i.touches.length&&(t.activeTouch.left=i.touches[0].pageX,t.activeTouch.top=i.touches[0].pageY)}}),pe(t.scroller,"touchmove",function(){t.activeTouch&&(t.activeTouch.moved=!0)}),pe(t.scroller,"touchend",function(r){var n=t.activeTouch;if(n&&!_r(t,r)&&null!=n.left&&!n.moved&&new Date-n.start<300){var a,l=e.coordsChar(t.activeTouch,"page");a=!n.prev||o(n,n.prev)?new bi(l,l):!n.prev.prev||o(n,n.prev.prev)?e.findWordAt(l):new bi(et(l.line,0),lt(e.doc,et(l.line+1,0))),e.setSelection(a.anchor,a.head),e.focus(),be(r)}i()}),pe(t.scroller,"touchcancel",i),pe(t.scroller,"scroll",function(){t.scroller.clientHeight&&(qn(e,t.scroller.scrollTop),En(e,t.scroller.scrollLeft,!0),he(e,"scroll",e))}),pe(t.scroller,"mousewheel",function(t){return yi(e,t)}),pe(t.scroller,"DOMMouseScroll",function(t){return yi(e,t)}),pe(t.wrapper,"scroll",function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0}),t.dragFunctions={enter:function(t){ge(e,t)||we(t)},over:function(t){ge(e,t)||(function(e,t){var r=ln(e,t);if(r){var n=document.createDocumentFragment();gn(e,r,n),e.display.dragCursor||(e.display.dragCursor=D("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),L(e.display.dragCursor,n)}}(e,t),we(t))},start:function(t){return function(e,t){if(a&&(!e.state.draggingText||+new Date-Do<100))we(t);else if(!ge(e,t)&&!_r(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.effectAllowed="copyMove",t.dataTransfer.setDragImage&&!p)){var r=D("img",null,null,"position: fixed; left: 0; top: 0;");r.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",d&&(r.width=r.height=1,e.display.wrapper.appendChild(r),r._top=r.offsetTop),t.dataTransfer.setDragImage(r,0,0),d&&r.parentNode.removeChild(r)}}(e,t)},drop:Qn(e,zo),leave:function(t){ge(e,t)||Ao(e)}};var s=t.input.getField();pe(s,"keyup",function(t){return sa.call(e,t)}),pe(s,"keydown",Qn(e,la)),pe(s,"keypress",Qn(e,ca)),pe(s,"focus",function(t){return kn(e,t)}),pe(s,"blur",function(t){return wn(e,t)})}(this),Fo(),$n(this),this.curOp.forceUpdate=!0,Ni(this,n),t.autofocus&&!v||this.hasFocus()?setTimeout(O(kn,this),20):wn(this),_a)_a.hasOwnProperty(c)&&_a[c](r,t[c],xa);ci(this),t.finishInit&&t.finishInit(this);for(var u=0;u150)){if(!n)return;r="prev"}}else c=0,r="not";"prev"==r?c=t>o.first?P(Ve(o,t-1).text,null,a):0:"add"==r?c=s+e.options.indentUnit:"subtract"==r?c=s-e.options.indentUnit:"number"==typeof r&&(c=s+r),c=Math.max(0,c);var d="",p=0;if(e.options.indentWithTabs)for(var f=Math.floor(c/a);f;--f)p+=a,d+="\t";if(pa,s=Ne(t),c=null;if(l&&n.ranges.length>1)if(Ta&&Ta.text.join("\n")==t){if(n.ranges.length%Ta.text.length==0){c=[];for(var u=0;u=0;p--){var f=n.ranges[p],m=f.from(),h=f.to();f.empty()&&(r&&r>0?m=et(m.line,m.ch-r):e.state.overwrite&&!l?h=et(h.line,Math.min(Ve(o,h.line).text.length,h.ch+X(s).length)):l&&Ta&&Ta.lineWise&&Ta.text.join("\n")==t&&(m=h=et(m.line,0)));var g={from:m,to:h,text:c?c[p%c.length]:s,origin:i||(l?"paste":e.state.cutIncoming>a?"cut":"+input")};ao(e.doc,g),lr(e,"inputRead",e,g)}t&&!l&&Aa(e,t),Dn(e),e.curOp.updateInput<2&&(e.curOp.updateInput=d),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function za(e,t){var r=e.clipboardData&&e.clipboardData.getData("Text");if(r)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||Yn(t,function(){return Da(t,r,0,null,"paste")}),!0}function Aa(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var r=e.doc.sel,n=r.ranges.length-1;n>=0;n--){var i=r.ranges[n];if(!(i.head.ch>100||n&&r.ranges[n-1].head.line==i.head.line)){var o=e.getModeAt(i.head),a=!1;if(o.electricChars){for(var l=0;l-1){a=Ma(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(Ve(e.doc,i.head.line).text.slice(0,i.head.ch))&&(a=Ma(e,i.head.line,"smart"));a&&lr(e,"electricInput",e,i.head.line)}}}function Na(e){for(var t=[],r=[],n=0;n=t.text.length?(r.ch=t.text.length,r.sticky="before"):r.ch<=0&&(r.ch=0,r.sticky="after");var o=se(i,r.ch,r.sticky),a=i[o];if("ltr"==e.doc.direction&&a.level%2==0&&(n>0?a.to>r.ch:a.from=a.from&&p>=u.begin)){var f=d?"before":"after";return new et(r.line,p,f)}}var m=function(e,t,n){for(var o=function(e,t){return t?new et(r.line,s(e,1),"before"):new et(r.line,e,"after")};e>=0&&e0==(1!=a.level),c=l?n.begin:s(n.end,-1);if(a.from<=c&&c0?u.end:s(u.begin,-1);return null==g||n>0&&g==t.text.length||!(h=m(n>0?0:i.length-1,n,c(g)))?null:h}(e.cm,l,t,r):Yo(l,t,r))){if(n||((a=t.line+r)=e.first+e.size||(t=new et(a,t.ch,t.sticky),!(l=Ve(e,a)))))return!1;t=Qo(i,e.cm,l,t.line,r)}else t=o;return!0}if("char"==n)s();else if("column"==n)s(!0);else if("word"==n||"group"==n)for(var c=null,u="group"==n,d=e.cm&&e.cm.getHelper(t,"wordChars"),p=!0;!(r<0)||s(!p);p=!1){var f=l.text.charAt(t.ch)||"\n",m=te(f,d)?"w":u&&"\n"==f?"n":!u||/\s/.test(f)?null:"p";if(!u||p||m||(m="s"),c&&c!=m){r<0&&(r=1,s(),t.sticky="after");break}if(m&&(c=m),r>0&&!s(!p))break}var h=ro(e,t,o,a,!0);return rt(o,h)&&(h.hitSide=!0),h}function Oa(e,t,r,n){var i,o,a=e.doc,l=t.left;if("page"==n){var s=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),c=Math.max(s-.5*en(e.display),3);i=(r>0?t.bottom:t.top)+r*c}else"line"==n&&(i=r>0?t.bottom+3:t.top-3);for(;(o=Xr(e,l,i)).outside;){if(r<0?i<=0:i>=a.height){o.hitSide=!0;break}i+=5*r}return o}var Ia=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new W,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};function Pa(e,t){var r=zr(e,t.line);if(!r||r.hidden)return null;var n=Ve(e.doc,t.line),i=Lr(r,n,t.line),o=ue(n,e.doc.direction),a="left";if(o){var l=se(o,t.ch);a=l%2?"right":"left"}var s=Er(i.map,t.ch,a);return s.offset="right"==s.collapse?s.end:s.start,s}function Wa(e,t){return t&&(e.bad=!0),e}function ja(e,t,r){var n;if(t==e.display.lineDiv){if(!(n=e.display.lineDiv.childNodes[r]))return Wa(e.clipPos(et(e.display.viewTo-1)),!0);t=null,r=0}else for(n=t;;n=n.parentNode){if(!n||n==e.display.lineDiv)return null;if(n.parentNode&&n.parentNode==e.display.lineDiv)break}for(var i=0;i=t.display.viewTo||o.line=t.display.viewFrom&&Pa(t,i)||{node:s[0].measure.map[2],offset:0},u=o.linen.firstLine()&&(a=et(a.line-1,Ve(n.doc,a.line-1).length)),l.ch==Ve(n.doc,l.line).text.length&&l.linei.viewTo-1)return!1;a.line==i.viewFrom||0==(e=sn(n,a.line))?(t=Ye(i.view[0].line),r=i.view[0].node):(t=Ye(i.view[e].line),r=i.view[e-1].node.nextSibling);var s,c,u=sn(n,l.line);if(u==i.view.length-1?(s=i.viewTo-1,c=i.lineDiv.lastChild):(s=Ye(i.view[u+1].line)-1,c=i.view[u+1].node.previousSibling),!r)return!1;for(var d=n.doc.splitLines(function(e,t,r,n,i){var o="",a=!1,l=e.doc.lineSeparator(),s=!1;function c(){a&&(o+=l,s&&(o+=l),a=s=!1)}function u(e){e&&(c(),o+=e)}function d(t){if(1==t.nodeType){var r=t.getAttribute("cm-text");if(r)return void u(r);var o,p=t.getAttribute("cm-marker");if(p){var f=e.findMarks(et(n,0),et(i+1,0),(g=+p,function(e){return e.id==g}));return void(f.length&&(o=f[0].find(0))&&u(Ke(e.doc,o.from,o.to).join(l)))}if("false"==t.getAttribute("contenteditable"))return;var m=/^(pre|div|p|li|table|br)$/i.test(t.nodeName);if(!/^br$/i.test(t.nodeName)&&0==t.textContent.length)return;m&&c();for(var h=0;h1&&p.length>1;)if(X(d)==X(p))d.pop(),p.pop(),s--;else{if(d[0]!=p[0])break;d.shift(),p.shift(),t++}for(var f=0,m=0,h=d[0],g=p[0],v=Math.min(h.length,g.length);fa.ch&&y.charCodeAt(y.length-m-1)==x.charCodeAt(x.length-m-1);)f--,m++;d[d.length-1]=y.slice(0,y.length-m).replace(/^\u200b+/,""),d[0]=d[0].slice(f).replace(/\u200b+$/,"");var _=et(t,f),k=et(s,p.length?X(p).length-m:0);return d.length>1||d[0]||tt(_,k)?(po(n.doc,d,_,k,"+input"),!0):void 0},Ia.prototype.ensurePolled=function(){this.forceCompositionEnd()},Ia.prototype.reset=function(){this.forceCompositionEnd()},Ia.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Ia.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()},80))},Ia.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||Yn(this.cm,function(){return cn(e.cm)})},Ia.prototype.setUneditable=function(e){e.contentEditable="false"},Ia.prototype.onKeyPress=function(e){0==e.charCode||this.composing||(e.preventDefault(),this.cm.isReadOnly()||Qn(this.cm,Da)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Ia.prototype.readOnlyChanged=function(e){this.div.contentEditable=String("nocursor"!=e)},Ia.prototype.onContextMenu=function(){},Ia.prototype.resetPosition=function(){},Ia.prototype.needsContentAttribute=!0;var Ha=function(e){this.cm=e,this.prevInput="",this.pollingFast=!1,this.polling=new W,this.hasSelection=!1,this.composing=null};Ha.prototype.init=function(e){var t=this,r=this,n=this.cm;this.createField(e);var i=this.textarea;function o(e){if(!ge(n,e)){if(n.somethingSelected())La({lineWise:!1,text:n.getSelections()});else{if(!n.options.lineWiseCopyCut)return;var t=Na(n);La({lineWise:!0,text:t.text}),"cut"==e.type?n.setSelections(t.ranges,null,R):(r.prevInput="",i.value=t.text.join("\n"),E(i))}"cut"==e.type&&(n.state.cutIncoming=+new Date)}}e.wrapper.insertBefore(this.wrapper,e.wrapper.firstChild),h&&(i.style.width="0px"),pe(i,"input",function(){a&&l>=9&&t.hasSelection&&(t.hasSelection=null),r.poll()}),pe(i,"paste",function(e){ge(n,e)||za(e,n)||(n.state.pasteIncoming=+new Date,r.fastPoll())}),pe(i,"cut",o),pe(i,"copy",o),pe(e.scroller,"paste",function(t){if(!_r(e,t)&&!ge(n,t)){if(!i.dispatchEvent)return n.state.pasteIncoming=+new Date,void r.focus();var o=new Event("paste");o.clipboardData=t.clipboardData,i.dispatchEvent(o)}}),pe(e.lineSpace,"selectstart",function(t){_r(e,t)||be(t)}),pe(i,"compositionstart",function(){var e=n.getCursor("from");r.composing&&r.composing.range.clear(),r.composing={start:e,range:n.markText(e,n.getCursor("to"),{className:"CodeMirror-composing"})}}),pe(i,"compositionend",function(){r.composing&&(r.poll(),r.composing.range.clear(),r.composing=null)})},Ha.prototype.createField=function(e){this.wrapper=Fa(),this.textarea=this.wrapper.firstChild},Ha.prototype.prepareSelection=function(){var e=this.cm,t=e.display,r=e.doc,n=hn(e);if(e.options.moveInputWithCursor){var i=Vr(e,r.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),a=t.lineDiv.getBoundingClientRect();n.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+a.top-o.top)),n.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+a.left-o.left))}return n},Ha.prototype.showSelection=function(e){var t=this.cm,r=t.display;L(r.cursorDiv,e.cursors),L(r.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Ha.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput="";var r=t.getSelection();this.textarea.value=r,t.state.focused&&E(this.textarea),a&&l>=9&&(this.hasSelection=r)}else e||(this.prevInput=this.textarea.value="",a&&l>=9&&(this.hasSelection=null))}},Ha.prototype.getField=function(){return this.textarea},Ha.prototype.supportsTouch=function(){return!1},Ha.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!v||N()!=this.textarea))try{this.textarea.focus()}catch(e){}},Ha.prototype.blur=function(){this.textarea.blur()},Ha.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Ha.prototype.receivedFocus=function(){this.slowPoll()},Ha.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},Ha.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0,t.polling.set(20,function r(){var n=t.poll();n||e?(t.pollingFast=!1,t.slowPoll()):(e=!0,t.polling.set(60,r))})},Ha.prototype.poll=function(){var e=this,t=this.cm,r=this.textarea,n=this.prevInput;if(this.contextMenuPending||!t.state.focused||qe(r)&&!n&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=r.value;if(i==n&&!t.somethingSelected())return!1;if(a&&l>=9&&this.hasSelection===i||y&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||n||(n="​"),8666==o)return this.reset(),this.cm.execCommand("undo")}for(var s=0,c=Math.min(n.length,i.length);s1e3||i.indexOf("\n")>-1?r.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},Ha.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Ha.prototype.onKeyPress=function(){a&&l>=9&&(this.hasSelection=null),this.fastPoll()},Ha.prototype.onContextMenu=function(e){var t=this,r=t.cm,n=r.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=ln(r,e),c=n.scroller.scrollTop;if(o&&!d){var u=r.options.resetSelectionOnContextMenu;u&&-1==r.doc.sel.contains(o)&&Qn(r,Yi)(r.doc,ki(o),R);var p,f=i.style.cssText,m=t.wrapper.style.cssText,h=t.wrapper.offsetParent.getBoundingClientRect();if(t.wrapper.style.cssText="position: static",i.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(e.clientY-h.top-5)+"px; left: "+(e.clientX-h.left-5)+"px;\n z-index: 1000; background: "+(a?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",s&&(p=window.scrollY),n.input.focus(),s&&window.scrollTo(null,p),n.input.reset(),r.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=y,n.selForContextMenu=r.doc.sel,clearTimeout(n.detectingSelectAll),a&&l>=9&&v(),w){we(e);var g=function(){me(window,"mouseup",g),setTimeout(y,20)};pe(window,"mouseup",g)}else setTimeout(y,50)}function v(){if(null!=i.selectionStart){var e=r.somethingSelected(),o="​"+(e?i.value:"");i.value="⇚",i.value=o,t.prevInput=e?"":"​",i.selectionStart=1,i.selectionEnd=o.length,n.selForContextMenu=r.doc.sel}}function y(){if(t.contextMenuPending==y&&(t.contextMenuPending=!1,t.wrapper.style.cssText=m,i.style.cssText=f,a&&l<9&&n.scrollbars.setScrollTop(n.scroller.scrollTop=c),null!=i.selectionStart)){(!a||a&&l<9)&&v();var e=0,o=function(){n.selForContextMenu==r.doc.sel&&0==i.selectionStart&&i.selectionEnd>0&&"​"==t.prevInput?Qn(r,io)(r):e++<10?n.detectingSelectAll=setTimeout(o,500):(n.selForContextMenu=null,n.input.reset())};n.detectingSelectAll=setTimeout(o,200)}}},Ha.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled="nocursor"==e},Ha.prototype.setUneditable=function(){},Ha.prototype.needsContentAttribute=!1,function(e){var t=e.optionHandlers;function r(r,n,i,o){e.defaults[r]=n,i&&(t[r]=o?function(e,t,r){r!=xa&&i(e,t,r)}:i)}e.defineOption=r,e.Init=xa,r("value","",function(e,t){return e.setValue(t)},!0),r("mode",null,function(e,t){e.doc.modeOption=t,Ti(e)},!0),r("indentUnit",2,Ti,!0),r("indentWithTabs",!1),r("smartIndent",!0),r("tabSize",4,function(e){Li(e),Wr(e),cn(e)},!0),r("lineSeparator",null,function(e,t){if(e.doc.lineSep=t,t){var r=[],n=e.doc.first;e.doc.iter(function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,r.push(et(n,o))}n++});for(var i=r.length-1;i>=0;i--)po(e.doc,t,r[i],et(r[i].line,r[i].ch+t.length))}}),r("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g,function(e,t,r){e.state.specialChars=new RegExp(t.source+(t.test("\t")?"":"|\t"),"g"),r!=xa&&e.refresh()}),r("specialCharPlaceholder",Zt,function(e){return e.refresh()},!0),r("electricChars",!0),r("inputStyle",v?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),r("spellcheck",!1,function(e,t){return e.getInputField().spellcheck=t},!0),r("autocorrect",!1,function(e,t){return e.getInputField().autocorrect=t},!0),r("autocapitalize",!1,function(e,t){return e.getInputField().autocapitalize=t},!0),r("rtlMoveVisually",!b),r("wholeLineUpdateBefore",!0),r("theme","default",function(e){ya(e),pi(e)},!0),r("keyMap","default",function(e,t,r){var n=Ko(t),i=r!=xa&&Ko(r);i&&i.detach&&i.detach(e,n),n.attach&&n.attach(e,i||null)}),r("extraKeys",null),r("configureMouse",null),r("lineWrapping",!1,wa,!0),r("gutters",[],function(e,t){e.display.gutterSpecs=ui(t,e.options.lineNumbers),pi(e)},!0),r("fixedGutter",!0,function(e,t){e.display.gutters.style.left=t?nn(e.display)+"px":"0",e.refresh()},!0),r("coverGutterNextToScrollbar",!1,function(e){return Wn(e)},!0),r("scrollbarStyle","native",function(e){Hn(e),Wn(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)},!0),r("lineNumbers",!1,function(e,t){e.display.gutterSpecs=ui(e.options.gutters,t),pi(e)},!0),r("firstLineNumber",1,pi,!0),r("lineNumberFormatter",function(e){return e},pi,!0),r("showCursorWhenSelecting",!1,mn,!0),r("resetSelectionOnContextMenu",!0),r("lineWiseCopyCut",!0),r("pasteLinesPerSelection",!0),r("selectionsMayTouch",!1),r("readOnly",!1,function(e,t){"nocursor"==t&&(wn(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)}),r("disableInput",!1,function(e,t){t||e.display.input.reset()},!0),r("dragDrop",!0,ka),r("allowDropFileTypes",null),r("cursorBlinkRate",530),r("cursorScrollMargin",0),r("cursorHeight",1,mn,!0),r("singleCursorHeightPerLine",!0,mn,!0),r("workTime",100),r("workDelay",100),r("flattenSpans",!0,Li,!0),r("addModeClass",!1,Li,!0),r("pollInterval",100),r("undoDepth",200,function(e,t){return e.doc.history.undoDepth=t}),r("historyEventDelay",1250),r("viewportMargin",10,function(e){return e.refresh()},!0),r("maxHighlightLength",1e4,Li,!0),r("moveInputWithCursor",!0,function(e,t){t||e.display.input.resetPosition()}),r("tabindex",null,function(e,t){return e.display.input.getField().tabIndex=t||""}),r("autofocus",null),r("direction","ltr",function(e,t){return e.doc.setDirection(t)},!0),r("phrases",null)}(Sa),function(e){var t=e.optionHandlers,r=e.helpers={};e.prototype={constructor:e,focus:function(){window.focus(),this.display.input.focus()},setOption:function(e,r){var n=this.options,i=n[e];n[e]==r&&"mode"!=e||(n[e]=r,t.hasOwnProperty(e)&&Qn(this,t[e])(this,r,i),he(this,"optionChange",this,e))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](Ko(e))},removeKeyMap:function(e){for(var t=this.state.keyMaps,r=0;rr&&(Ma(this,i.head.line,e,!0),r=i.head.line,n==this.doc.sel.primIndex&&Dn(this));else{var o=i.from(),a=i.to(),l=Math.max(r,o.line);r=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var s=l;s0&&Ki(this.doc,n,new bi(o,c[n].to()),R)}}}),getTokenAt:function(e,t){return yt(this,e,t)},getLineTokens:function(e,t){return yt(this,et(e),t,!0)},getTokenTypeAt:function(e){e=lt(this.doc,e);var t,r=pt(this,Ve(this.doc,e.line)),n=0,i=(r.length-1)/2,o=e.ch;if(0==o)t=r[2];else for(;;){var a=n+i>>1;if((a?r[2*a-1]:0)>=o)i=a;else{if(!(r[2*a+1]o&&(e=o,i=!0),n=Ve(this.doc,e)}else n=e;return Rr(this,n,{top:0,left:0},t||"page",r||i).top+(i?this.doc.height-Rt(n):0)},defaultTextHeight:function(){return en(this.display)},defaultCharWidth:function(){return tn(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,r,n,i){var o,a,l,s=this.display,c=(e=Vr(this,lt(this.doc,e))).bottom,u=e.left;if(t.style.position="absolute",t.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(t),s.sizer.appendChild(t),"over"==n)c=e.top;else if("above"==n||"near"==n){var d=Math.max(s.wrapper.clientHeight,this.doc.height),p=Math.max(s.sizer.clientWidth,s.lineSpace.clientWidth);("above"==n||e.bottom+t.offsetHeight>d)&&e.top>t.offsetHeight?c=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=d&&(c=e.bottom),u+t.offsetWidth>p&&(u=p-t.offsetWidth)}t.style.top=c+"px",t.style.left=t.style.right="","right"==i?(u=s.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?u=0:"middle"==i&&(u=(s.sizer.clientWidth-t.offsetWidth)/2),t.style.left=u+"px"),r&&(o=this,a={left:u,top:c,right:u+t.offsetWidth,bottom:c+t.offsetHeight},null!=(l=Tn(o,a)).scrollTop&&qn(o,l.scrollTop),null!=l.scrollLeft&&En(o,l.scrollLeft))},triggerOnKeyDown:Zn(la),triggerOnKeyPress:Zn(ca),triggerOnKeyUp:sa,triggerOnMouseDown:Zn(fa),execCommand:function(e){if(Zo.hasOwnProperty(e))return Zo[e].call(null,this)},triggerElectric:Zn(function(e){Aa(this,e)}),findPosH:function(e,t,r,n){var i=1;t<0&&(i=-1,t=-t);for(var o=lt(this.doc,e),a=0;a0&&l(r.charAt(n-1));)--n;for(;i.5)&&an(this),he(this,"refresh",this)}),swapDoc:Zn(function(e){var t=this.doc;return t.cm=null,this.state.selectingText&&this.state.selectingText(),Ni(this,e),Wr(this),this.display.input.reset(),zn(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,lr(this,"swapDoc",this,t),t}),phrase:function(e){var t=this.options.phrases;return t&&Object.prototype.hasOwnProperty.call(t,e)?t[e]:e},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},xe(e),e.registerHelper=function(t,n,i){r.hasOwnProperty(t)||(r[t]=e[t]={_global:[]}),r[t][n]=i},e.registerGlobalHelper=function(t,n,i,o){e.registerHelper(t,n,o),r[t]._global.push({pred:i,val:o})}}(Sa);var Ra="iter insert remove copy getEditor constructor".split(" ");for(var $a in Lo.prototype)Lo.prototype.hasOwnProperty($a)&&j(Ra,$a)<0&&(Sa.prototype[$a]=function(e){return function(){return e.apply(this.doc,arguments)}}(Lo.prototype[$a]));return xe(Lo),Sa.inputStyles={textarea:Ha,contenteditable:Ia},Sa.defineMode=function(e){Sa.defaults.mode||"null"==e||(Sa.defaults.mode=e),function(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Oe[e]=t}.apply(this,arguments)},Sa.defineMIME=function(e,t){Ie[e]=t},Sa.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),Sa.defineMIME("text/plain","null"),Sa.defineExtension=function(e,t){Sa.prototype[e]=t},Sa.defineDocExtension=function(e,t){Lo.prototype[e]=t},Sa.fromTextArea=function(e,t){if((t=t?I(t):{}).value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var r=N();t.autofocus=r==e||null!=e.getAttribute("autofocus")&&r==document.body}function n(){e.value=l.getValue()}var i;if(e.form&&(pe(e.form,"submit",n),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var a=o.submit=function(){n(),o.submit=i,o.submit(),o.submit=a}}catch(e){}}t.finishInit=function(t){t.save=n,t.getTextArea=function(){return e},t.toTextArea=function(){t.toTextArea=isNaN,n(),e.parentNode.removeChild(t.getWrapperElement()),e.style.display="",e.form&&(me(e.form,"submit",n),"function"==typeof e.form.submit&&(e.form.submit=i))}},e.style.display="none";var l=Sa(function(t){return e.parentNode.insertBefore(t,e.nextSibling)},t);return l},function(e){e.off=me,e.on=pe,e.wheelEventPixels=vi,e.Doc=Lo,e.splitLines=Ne,e.countColumn=P,e.findColumn=V,e.isWordChar=ee,e.Pass=H,e.signal=he,e.Line=Vt,e.changeEnd=wi,e.scrollbarModel=Bn,e.Pos=et,e.cmpPos=tt,e.modes=Oe,e.mimeModes=Ie,e.resolveMode=Pe,e.getMode=We,e.modeExtensions=je,e.extendMode=Be,e.copyState=He,e.startState=$e,e.innerMode=Re,e.commands=Zo,e.keyMap=jo,e.keyName=Vo,e.isModifierKey=$o,e.lookupKey=Ro,e.normalizeKeyMap=Ho,e.StringStream=Ue,e.SharedTextMarker=So,e.TextMarker=ko,e.LineWidget=xo,e.e_preventDefault=be,e.e_stopPropagation=_e,e.e_stop=we,e.addClass=q,e.contains=A,e.rmClass=M,e.keyNames=Oo}(Sa),Sa.version="5.47.0",Sa}()},d8GY:function(e,t,r){"use strict";r.r(t);var n=r("VrN/"),i=r.n(n);r("ewDg"),r("R6x9"),r("+dQi"),r("lZu9"),r("srmC"),r("RNWO"),r("AvDn"),r("/9rB"),r("SII/"),r("1eCo"),r("0gIM"),r("ztCB");r("SzGY"),document.querySelectorAll("[data-easyadmin-code-editor]").forEach(function(e){i.a.fromTextArea(e,{autocapitalize:!1,autocorrect:!1,indentWithTabs:e.dataset.indentWithTabs,lineNumbers:!0,lineWrapping:!0,mode:e.dataset.language,scrollbarStyle:"native",spellcheck:!1,tabSize:e.dataset.tabSize,theme:"default"})})},dq4f:function(e,t,r){!function(e){"use strict";function t(e,t){if(!e.hasOwnProperty(t))throw new Error("Undefined state "+t+" in simple mode")}function r(e,t){if(!e)return/(?:)/;var r="";return e instanceof RegExp?(e.ignoreCase&&(r="i"),e=e.source):e=String(e),new RegExp((!1===t?"":"^")+"(?:"+e+")",r)}function n(e,n){(e.next||e.push)&&t(n,e.next||e.push),this.regex=r(e.regex),this.token=function(e){if(!e)return null;if(e.apply)return e;if("string"==typeof e)return e.replace(/\./g," ");for(var t=[],r=0;r2&&u.token&&"string"!=typeof u.token){n.pending=[];for(var f=2;f-1)return e.Pass;var a=n.indent.length-1,l=t[n.state];e:for(;;){for(var s=0;s0;i--)r.context=r.context.prev;return T(e,t,r)}function D(e){var t=e.current().toLowerCase();o=v.hasOwnProperty(t)?"atom":g.hasOwnProperty(t)?"keyword":"variable"}var z={top:function(e,t,r){if("{"==e)return C(r,t,"block");if("}"==e&&r.context.prev)return M(r);if(b&&/@component/i.test(e))return C(r,t,"atComponentBlock");if(/^@(-moz-)?document$/i.test(e))return C(r,t,"documentTypes");if(/^@(media|supports|(-moz-)?document|import)$/i.test(e))return C(r,t,"atBlock");if(/^@(font-face|counter-style)/i.test(e))return r.stateArg=e,"restricted_atBlock_before";if(/^@(-(moz|ms|o|webkit)-)?keyframes$/i.test(e))return"keyframes";if(e&&"@"==e.charAt(0))return C(r,t,"at");if("hash"==e)o="builtin";else if("word"==e)o="tag";else{if("variable-definition"==e)return"maybeprop";if("interpolation"==e)return C(r,t,"interpolation");if(":"==e)return"pseudo";if(y&&"("==e)return C(r,t,"parens")}return r.context.type},block:function(e,t,r){if("word"==e){var n=t.current().toLowerCase();return p.hasOwnProperty(n)?(o="property","maybeprop"):f.hasOwnProperty(n)?(o="string-2","maybeprop"):y?(o=t.match(/^\s*:(?:\s|$)/,!1)?"property":"tag","block"):(o+=" error","maybeprop")}return"meta"==e?"block":y||"hash"!=e&&"qualifier"!=e?z.top(e,t,r):(o="error","block")},maybeprop:function(e,t,r){return":"==e?C(r,t,"prop"):T(e,t,r)},prop:function(e,t,r){if(";"==e)return M(r);if("{"==e&&y)return C(r,t,"propBlock");if("}"==e||"{"==e)return L(e,t,r);if("("==e)return C(r,t,"parens");if("hash"!=e||/^#([0-9a-fA-f]{3,4}|[0-9a-fA-f]{6}|[0-9a-fA-f]{8})$/.test(t.current())){if("word"==e)D(t);else if("interpolation"==e)return C(r,t,"interpolation")}else o+=" error";return"prop"},propBlock:function(e,t,r){return"}"==e?M(r):"word"==e?(o="property","maybeprop"):r.context.type},parens:function(e,t,r){return"{"==e||"}"==e?L(e,t,r):")"==e?M(r):"("==e?C(r,t,"parens"):"interpolation"==e?C(r,t,"interpolation"):("word"==e&&D(t),"parens")},pseudo:function(e,t,r){return"meta"==e?"pseudo":"word"==e?(o="variable-3",r.context.type):T(e,t,r)},documentTypes:function(e,t,r){return"word"==e&&s.hasOwnProperty(t.current())?(o="tag",r.context.type):z.atBlock(e,t,r)},atBlock:function(e,t,r){if("("==e)return C(r,t,"atBlock_parens");if("}"==e||";"==e)return L(e,t,r);if("{"==e)return M(r)&&C(r,t,y?"block":"top");if("interpolation"==e)return C(r,t,"interpolation");if("word"==e){var n=t.current().toLowerCase();o="only"==n||"not"==n||"and"==n||"or"==n?"keyword":c.hasOwnProperty(n)?"attribute":u.hasOwnProperty(n)?"property":d.hasOwnProperty(n)?"keyword":p.hasOwnProperty(n)?"property":f.hasOwnProperty(n)?"string-2":v.hasOwnProperty(n)?"atom":g.hasOwnProperty(n)?"keyword":"error"}return r.context.type},atComponentBlock:function(e,t,r){return"}"==e?L(e,t,r):"{"==e?M(r)&&C(r,t,y?"block":"top",!1):("word"==e&&(o="error"),r.context.type)},atBlock_parens:function(e,t,r){return")"==e?M(r):"{"==e||"}"==e?L(e,t,r,2):z.atBlock(e,t,r)},restricted_atBlock_before:function(e,t,r){return"{"==e?C(r,t,"restricted_atBlock"):"word"==e&&"@counter-style"==r.stateArg?(o="variable","restricted_atBlock_before"):T(e,t,r)},restricted_atBlock:function(e,t,r){return"}"==e?(r.stateArg=null,M(r)):"word"==e?(o="@font-face"==r.stateArg&&!m.hasOwnProperty(t.current().toLowerCase())||"@counter-style"==r.stateArg&&!h.hasOwnProperty(t.current().toLowerCase())?"error":"property","maybeprop"):"restricted_atBlock"},keyframes:function(e,t,r){return"word"==e?(o="variable","keyframes"):"{"==e?C(r,t,"top"):T(e,t,r)},at:function(e,t,r){return";"==e?M(r):"{"==e||"}"==e?L(e,t,r):("word"==e?o="tag":"hash"==e&&(o="builtin"),"at")},interpolation:function(e,t,r){return"}"==e?M(r):"{"==e||";"==e?L(e,t,r):("word"==e?o="variable":"variable"!=e&&"("!=e&&")"!=e&&(o="error"),"interpolation")}};return{startState:function(e){return{tokenize:null,state:n?"block":"top",stateArg:null,context:new S(n?"block":"top",e||0,null)}},token:function(e,t){if(!t.tokenize&&e.eatSpace())return null;var r=(t.tokenize||function(e,t){var r=e.next();if(l[r]){var n=l[r](e,t);if(!1!==n)return n}return"@"==r?(e.eatWhile(/[\w\\\-]/),_("def",e.current())):"="==r||("~"==r||"|"==r)&&e.eat("=")?_(null,"compare"):'"'==r||"'"==r?(t.tokenize=k(r),t.tokenize(e,t)):"#"==r?(e.eatWhile(/[\w\\\-]/),_("atom","hash")):"!"==r?(e.match(/^\s*\w*/),_("keyword","important")):/\d/.test(r)||"."==r&&e.eat(/\d/)?(e.eatWhile(/[\w.%]/),_("number","unit")):"-"!==r?/[,+>*\/]/.test(r)?_(null,"select-op"):"."==r&&e.match(/^-?[_a-z][_a-z0-9-]*/i)?_("qualifier","qualifier"):/[:;{}\[\]\(\)]/.test(r)?_(null,r):e.match(/[\w-.]+(?=\()/)?(/^(url(-prefix)?|domain|regexp)$/.test(e.current().toLowerCase())&&(t.tokenize=w),_("variable callee","variable")):/[\w\\\-]/.test(r)?(e.eatWhile(/[\w\\\-]/),_("property","word")):_(null,null):/[\d.]/.test(e.peek())?(e.eatWhile(/[\w.%]/),_("number","unit")):e.match(/^-[\w\\\-]*/)?(e.eatWhile(/[\w\\\-]/),e.match(/^\s*:/,!1)?_("variable-2","variable-definition"):_("variable-2","variable")):e.match(/^\w+-/)?_("meta","meta"):void 0})(e,t);return r&&"object"==typeof r&&(i=r[1],r=r[0]),o=r,"comment"!=i&&(t.state=z[t.state](i,e,t)),o},indent:function(e,t){var r=e.context,n=t&&t.charAt(0),i=r.indent;return"prop"!=r.type||"}"!=n&&")"!=n||(r=r.prev),r.prev&&("}"!=n||"block"!=r.type&&"top"!=r.type&&"interpolation"!=r.type&&"restricted_atBlock"!=r.type?(")"!=n||"parens"!=r.type&&"atBlock_parens"!=r.type)&&("{"!=n||"at"!=r.type&&"atBlock"!=r.type)||(i=Math.max(0,r.indent-a)):(r=r.prev,i=r.indent)),i},electricChars:"}",blockCommentStart:"/*",blockCommentEnd:"*/",blockCommentContinue:" * ",lineComment:x,fold:"brace"}});var r=["domain","regexp","url","url-prefix"],n=t(r),i=["all","aural","braille","handheld","print","projection","screen","tty","tv","embossed"],o=t(i),a=["width","min-width","max-width","height","min-height","max-height","device-width","min-device-width","max-device-width","device-height","min-device-height","max-device-height","aspect-ratio","min-aspect-ratio","max-aspect-ratio","device-aspect-ratio","min-device-aspect-ratio","max-device-aspect-ratio","color","min-color","max-color","color-index","min-color-index","max-color-index","monochrome","min-monochrome","max-monochrome","resolution","min-resolution","max-resolution","scan","grid","orientation","device-pixel-ratio","min-device-pixel-ratio","max-device-pixel-ratio","pointer","any-pointer","hover","any-hover"],l=t(a),s=["landscape","portrait","none","coarse","fine","on-demand","hover","interlace","progressive"],c=t(s),u=["align-content","align-items","align-self","alignment-adjust","alignment-baseline","anchor-point","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","appearance","azimuth","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","baseline-shift","binding","bleed","bookmark-label","bookmark-level","bookmark-state","bookmark-target","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","color","color-profile","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","crop","cue","cue-after","cue-before","cursor","direction","display","dominant-baseline","drop-initial-after-adjust","drop-initial-after-align","drop-initial-before-adjust","drop-initial-before-align","drop-initial-size","drop-initial-value","elevation","empty-cells","fit","fit-position","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","float-offset","flow-from","flow-into","font","font-feature-settings","font-family","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-synthesis","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-weight","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-gap","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-gap","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","inline-box-align","justify-content","justify-items","justify-self","left","letter-spacing","line-break","line-height","line-stacking","line-stacking-ruby","line-stacking-shift","line-stacking-strategy","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","marquee-direction","marquee-loop","marquee-play-count","marquee-speed","marquee-style","max-height","max-width","min-height","min-width","mix-blend-mode","move-to","nav-down","nav-index","nav-left","nav-right","nav-up","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-style","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","page-policy","pause","pause-after","pause-before","perspective","perspective-origin","pitch","pitch-range","place-content","place-items","place-self","play-during","position","presentation-level","punctuation-trim","quotes","region-break-after","region-break-before","region-break-inside","region-fragment","rendering-intent","resize","rest","rest-after","rest-before","richness","right","rotation","rotation-point","ruby-align","ruby-overhang","ruby-position","ruby-span","shape-image-threshold","shape-inside","shape-margin","shape-outside","size","speak","speak-as","speak-header","speak-numeral","speak-punctuation","speech-rate","stress","string-set","tab-size","table-layout","target","target-name","target-new","target-position","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-height","text-indent","text-justify","text-outline","text-overflow","text-shadow","text-size-adjust","text-space-collapse","text-transform","text-underline-position","text-wrap","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","user-select","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","z-index","clip-path","clip-rule","mask","enable-background","filter","flood-color","flood-opacity","lighting-color","stop-color","stop-opacity","pointer-events","color-interpolation","color-interpolation-filters","color-rendering","fill","fill-opacity","fill-rule","image-rendering","marker","marker-end","marker-mid","marker-start","shape-rendering","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-rendering","baseline-shift","dominant-baseline","glyph-orientation-horizontal","glyph-orientation-vertical","text-anchor","writing-mode"],d=t(u),p=["scrollbar-arrow-color","scrollbar-base-color","scrollbar-dark-shadow-color","scrollbar-face-color","scrollbar-highlight-color","scrollbar-shadow-color","scrollbar-3d-light-color","scrollbar-track-color","shape-inside","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","zoom"],f=t(p),m=t(["font-family","src","unicode-range","font-variant","font-feature-settings","font-stretch","font-weight","font-style"]),h=t(["additive-symbols","fallback","negative","pad","prefix","range","speak-as","suffix","symbols","system"]),g=["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"],v=t(g),y=["above","absolute","activeborder","additive","activecaption","afar","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","amharic","amharic-abegede","antialiased","appworkspace","arabic-indic","armenian","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","background","backwards","baseline","below","bidi-override","binary","bengali","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","cambodian","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","cjk-earthly-branch","cjk-heavenly-stem","cjk-ideographic","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","devanagari","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic","ethiopic-abegede","ethiopic-abegede-am-et","ethiopic-abegede-gez","ethiopic-abegede-ti-er","ethiopic-abegede-ti-et","ethiopic-halehame-aa-er","ethiopic-halehame-aa-et","ethiopic-halehame-am-et","ethiopic-halehame-gez","ethiopic-halehame-om-et","ethiopic-halehame-sid-et","ethiopic-halehame-so-et","ethiopic-halehame-ti-er","ethiopic-halehame-ti-et","ethiopic-halehame-tig","ethiopic-numeric","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","georgian","graytext","grid","groove","gujarati","gurmukhi","hand","hangul","hangul-consonant","hard-light","hebrew","help","hidden","hide","higher","highlight","highlighttext","hiragana","hiragana-iroha","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","japanese-formal","japanese-informal","justify","kannada","katakana","katakana-iroha","keep-all","khmer","korean-hangul-formal","korean-hanja-formal","korean-hanja-informal","landscape","lao","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-alpha","lower-armenian","lower-greek","lower-hexadecimal","lower-latin","lower-norwegian","lower-roman","lowercase","ltr","luminosity","malayalam","match","matrix","matrix3d","media-controls-background","media-current-time-display","media-fullscreen-button","media-mute-button","media-play-button","media-return-to-realtime-button","media-rewind-button","media-seek-back-button","media-seek-forward-button","media-slider","media-sliderthumb","media-time-remaining-display","media-volume-slider","media-volume-slider-container","media-volume-sliderthumb","medium","menu","menulist","menulist-button","menulist-text","menulist-textfield","menutext","message-box","middle","min-intrinsic","mix","mongolian","monospace","move","multiple","multiply","myanmar","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","octal","opacity","open-quote","optimizeLegibility","optimizeSpeed","oriya","oromo","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","persian","perspective","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","searchfield","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","sidama","simp-chinese-formal","simp-chinese-informal","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","somali","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","square-button","start","static","status-bar","stretch","stroke","sub","subpixel-antialiased","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","tamil","telugu","text","text-bottom","text-top","textarea","textfield","thai","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","tibetan","tigre","tigrinya-er","tigrinya-er-abegede","tigrinya-et","tigrinya-et-abegede","to","top","trad-chinese-formal","trad-chinese-informal","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unset","up","upper-alpha","upper-armenian","upper-greek","upper-hexadecimal","upper-latin","upper-norwegian","upper-roman","uppercase","urdu","url","var","vertical","vertical-text","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"],x=t(y),b=r.concat(i).concat(a).concat(s).concat(u).concat(p).concat(g).concat(y);function _(e,t){for(var r,n=!1;null!=(r=e.next());){if(n&&"/"==r){t.tokenize=null;break}n="*"==r}return["comment","comment"]}e.registerHelper("hintWords","css",b),e.defineMIME("text/css",{documentTypes:n,mediaTypes:o,mediaFeatures:l,mediaValueKeywords:c,propertyKeywords:d,nonStandardPropertyKeywords:f,fontProperties:m,counterDescriptors:h,colorKeywords:v,valueKeywords:x,tokenHooks:{"/":function(e,t){return!!e.eat("*")&&(t.tokenize=_,_(e,t))}},name:"css"}),e.defineMIME("text/x-scss",{mediaTypes:o,mediaFeatures:l,mediaValueKeywords:c,propertyKeywords:d,nonStandardPropertyKeywords:f,colorKeywords:v,valueKeywords:x,fontProperties:m,allowNested:!0,lineComment:"//",tokenHooks:{"/":function(e,t){return e.eat("/")?(e.skipToEnd(),["comment","comment"]):e.eat("*")?(t.tokenize=_,_(e,t)):["operator","operator"]},":":function(e){return!!e.match(/\s*\{/,!1)&&[null,null]},$:function(e){return e.match(/^[\w-]+/),e.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"]},"#":function(e){return!!e.eat("{")&&[null,"interpolation"]}},name:"css",helperType:"scss"}),e.defineMIME("text/x-less",{mediaTypes:o,mediaFeatures:l,mediaValueKeywords:c,propertyKeywords:d,nonStandardPropertyKeywords:f,colorKeywords:v,valueKeywords:x,fontProperties:m,allowNested:!0,lineComment:"//",tokenHooks:{"/":function(e,t){return e.eat("/")?(e.skipToEnd(),["comment","comment"]):e.eat("*")?(t.tokenize=_,_(e,t)):["operator","operator"]},"@":function(e){return e.eat("{")?[null,"interpolation"]:!e.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\b/i,!1)&&(e.eatWhile(/[\w\\\-]/),e.match(/^\s*:/,!1)?["variable-2","variable-definition"]:["variable-2","variable"])},"&":function(){return["atom","atom"]}},name:"css",helperType:"less"}),e.defineMIME("text/x-gss",{documentTypes:n,mediaTypes:o,mediaFeatures:l,propertyKeywords:d,nonStandardPropertyKeywords:f,fontProperties:m,counterDescriptors:h,colorKeywords:v,valueKeywords:x,supportsAtComponent:!0,tokenHooks:{"/":function(e,t){return!!e.eat("*")&&(t.tokenize=_,_(e,t))}},name:"css",helperType:"gss"})}(r("VrN/"))},lZu9:function(e,t,r){!function(e){"use strict";e.defineMode("markdown",function(t,r){var n=e.getMode(t,"text/html"),i="null"==n.name;void 0===r.highlightFormatting&&(r.highlightFormatting=!1),void 0===r.maxBlockquoteDepth&&(r.maxBlockquoteDepth=0),void 0===r.taskLists&&(r.taskLists=!1),void 0===r.strikethrough&&(r.strikethrough=!1),void 0===r.emoji&&(r.emoji=!1),void 0===r.fencedCodeBlockHighlighting&&(r.fencedCodeBlockHighlighting=!0),void 0===r.xml&&(r.xml=!0),void 0===r.tokenTypeOverrides&&(r.tokenTypeOverrides={});var o={header:"header",code:"comment",quote:"quote",list1:"variable-2",list2:"variable-3",list3:"keyword",hr:"hr",image:"image",imageAltText:"image-alt-text",imageMarker:"image-marker",formatting:"formatting",linkInline:"link",linkEmail:"link",linkText:"link",linkHref:"string",em:"em",strong:"strong",strikethrough:"strikethrough",emoji:"builtin"};for(var a in o)o.hasOwnProperty(a)&&r.tokenTypeOverrides[a]&&(o[a]=r.tokenTypeOverrides[a]);var l=/^([*\-_])(?:\s*\1){2,}\s*$/,s=/^(?:[*\-+]|^[0-9]+([.)]))\s+/,c=/^\[(x| )\](?=\s)/i,u=r.allowAtxHeaderWithoutSpace?/^(#+)/:/^(#+)(?: |$)/,d=/^ *(?:\={1,}|-{1,})\s*$/,p=/^[^#!\[\]*_\\<>` "'(~:]+/,f=/^(~~~+|```+)[ \t]*([\w+#-]*)[^\n`]*$/,m=/^\s*\[[^\]]+?\]:.*$/,h=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/;function g(e,t,r){return t.f=t.inline=r,r(e,t)}function v(e,t,r){return t.f=t.block=r,r(e,t)}function y(t){if(t.linkTitle=!1,t.linkHref=!1,t.linkText=!1,t.em=!1,t.strong=!1,t.strikethrough=!1,t.quote=0,t.indentedCode=!1,t.f==b){var r=i;if(!r){var o=e.innerMode(n,t.htmlState);r="xml"==o.mode.name&&null===o.state.tagStart&&!o.state.context&&o.state.tokenize.isInText}r&&(t.f=S,t.block=x,t.htmlState=null)}return t.trailingSpace=0,t.trailingSpaceNewLine=!1,t.prevLine=t.thisLine,t.thisLine={stream:null},null}function x(n,i){var a,p=n.column()===i.indentation,h=!(a=i.prevLine.stream)||!/\S/.test(a.string),v=i.indentedCode,y=i.prevLine.hr,x=!1!==i.list,b=(i.listStack[i.listStack.length-1]||0)+3;i.indentedCode=!1;var w=i.indentation;if(null===i.indentationDiff&&(i.indentationDiff=i.indentation,x)){for(i.em=!1,i.strong=!1,i.code=!1,i.strikethrough=!1,i.list=null;w=4&&(v||i.prevLine.fencedCodeEnd||i.prevLine.header||h))return n.skipToEnd(),i.indentedCode=!0,o.code;if(n.eatSpace())return null;if(p&&i.indentation<=b&&(M=n.match(u))&&M[1].length<=6)return i.quote=0,i.header=M[1].length,i.thisLine.header=!0,r.highlightFormatting&&(i.formatting="header"),i.f=i.inline,k(i);if(i.indentation<=b&&n.eat(">"))return i.quote=p?1:i.quote+1,r.highlightFormatting&&(i.formatting="quote"),n.eatSpace(),k(i);if(!C&&!i.setext&&p&&i.indentation<=b&&(M=n.match(s))){var T=M[1]?"ol":"ul";return i.indentation=w+n.current().length,i.list=!0,i.quote=0,i.listStack.push(i.indentation),r.taskLists&&n.match(c,!1)&&(i.taskList=!0),i.f=i.inline,r.highlightFormatting&&(i.formatting=["list","list-"+T]),k(i)}return p&&i.indentation<=b&&(M=n.match(f,!0))?(i.quote=0,i.fencedEndRE=new RegExp(M[1]+"+ *$"),i.localMode=r.fencedCodeBlockHighlighting&&function(r){if(e.findModeByName){var n=e.findModeByName(r);n&&(r=n.mime||n.mimes[0])}var i=e.getMode(t,r);return"null"==i.name?null:i}(M[2]),i.localMode&&(i.localState=e.startState(i.localMode)),i.f=i.block=_,r.highlightFormatting&&(i.formatting="code-block"),i.code=-1,k(i)):i.setext||!(S&&x||i.quote||!1!==i.list||i.code||C||m.test(n.string))&&(M=n.lookAhead(1))&&(M=M.match(d))?(i.setext?(i.header=i.setext,i.setext=0,n.skipToEnd(),r.highlightFormatting&&(i.formatting="header")):(i.header="="==M[0].charAt(0)?1:2,i.setext=i.header),i.thisLine.header=!0,i.f=i.inline,k(i)):C?(n.skipToEnd(),i.hr=!0,i.thisLine.hr=!0,o.hr):"["===n.peek()?g(n,i,L):g(n,i,i.inline)}function b(t,r){var o=n.token(t,r.htmlState);if(!i){var a=e.innerMode(n,r.htmlState);("xml"==a.mode.name&&null===a.state.tagStart&&!a.state.context&&a.state.tokenize.isInText||r.md_inside&&t.current().indexOf(">")>-1)&&(r.f=S,r.block=x,r.htmlState=null)}return o}function _(e,t){var n,i=t.listStack[t.listStack.length-1]||0,a=t.indentation=e.quote?t.push(o.formatting+"-"+e.formatting[n]+"-"+e.quote):t.push("error"))}if(e.taskOpen)return t.push("meta"),t.length?t.join(" "):null;if(e.taskClosed)return t.push("property"),t.length?t.join(" "):null;if(e.linkHref?t.push(o.linkHref,"url"):(e.strong&&t.push(o.strong),e.em&&t.push(o.em),e.strikethrough&&t.push(o.strikethrough),e.emoji&&t.push(o.emoji),e.linkText&&t.push(o.linkText),e.code&&t.push(o.code),e.image&&t.push(o.image),e.imageAltText&&t.push(o.imageAltText,"link"),e.imageMarker&&t.push(o.imageMarker)),e.header&&t.push(o.header,o.header+"-"+e.header),e.quote&&(t.push(o.quote),!r.maxBlockquoteDepth||r.maxBlockquoteDepth>=e.quote?t.push(o.quote+"-"+e.quote):t.push(o.quote+"-"+r.maxBlockquoteDepth)),!1!==e.list){var i=(e.listStack.length-1)%3;i?1===i?t.push(o.list2):t.push(o.list3):t.push(o.list1)}return e.trailingSpaceNewLine?t.push("trailing-space-new-line"):e.trailingSpace&&t.push("trailing-space-"+(e.trailingSpace%2?"a":"b")),t.length?t.join(" "):null}function w(e,t){if(e.match(p,!0))return k(t)}function S(t,i){var a=i.text(t,i);if(void 0!==a)return a;if(i.list)return i.list=null,k(i);if(i.taskList){var l=" "===t.match(c,!0)[1];return l?i.taskOpen=!0:i.taskClosed=!0,r.highlightFormatting&&(i.formatting="task"),i.taskList=!1,k(i)}if(i.taskOpen=!1,i.taskClosed=!1,i.header&&t.match(/^#+$/,!0))return r.highlightFormatting&&(i.formatting="header"),k(i);var s=t.next();if(i.linkTitle){i.linkTitle=!1;var u=s;"("===s&&(u=")");var d="^\\s*(?:[^"+(u=(u+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1"))+"\\\\]+|\\\\\\\\|\\\\.)"+u;if(t.match(new RegExp(d),!0))return o.linkHref}if("`"===s){var p=i.formatting;r.highlightFormatting&&(i.formatting="code"),t.eatWhile("`");var f=t.current().length;if(0!=i.code||i.quote&&1!=f){if(f==i.code){var m=k(i);return i.code=0,m}return i.formatting=p,k(i)}return i.code=f,k(i)}if(i.code)return k(i);if("\\"===s&&(t.next(),r.highlightFormatting)){var g=k(i),y=o.formatting+"-escape";return g?g+" "+y:y}if("!"===s&&t.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return i.imageMarker=!0,i.image=!0,r.highlightFormatting&&(i.formatting="image"),k(i);if("["===s&&i.imageMarker&&t.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return i.imageMarker=!1,i.imageAltText=!0,r.highlightFormatting&&(i.formatting="image"),k(i);if("]"===s&&i.imageAltText){r.highlightFormatting&&(i.formatting="image");var g=k(i);return i.imageAltText=!1,i.image=!1,i.inline=i.f=M,g}if("["===s&&!i.image)return i.linkText&&t.match(/^.*?\]/)?k(i):(i.linkText=!0,r.highlightFormatting&&(i.formatting="link"),k(i));if("]"===s&&i.linkText){r.highlightFormatting&&(i.formatting="link");var g=k(i);return i.linkText=!1,i.inline=i.f=t.match(/\(.*?\)| ?\[.*?\]/,!1)?M:S,g}if("<"===s&&t.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1)){i.f=i.inline=C,r.highlightFormatting&&(i.formatting="link");var g=k(i);return g?g+=" ":g="",g+o.linkInline}if("<"===s&&t.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1)){i.f=i.inline=C,r.highlightFormatting&&(i.formatting="link");var g=k(i);return g?g+=" ":g="",g+o.linkEmail}if(r.xml&&"<"===s&&t.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var x=t.string.indexOf(">",t.pos);if(-1!=x){var _=t.string.substring(t.start,x);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(_)&&(i.md_inside=!0)}return t.backUp(1),i.htmlState=e.startState(n),v(t,i,b)}if(r.xml&&"<"===s&&t.match(/^\/\w*?>/))return i.md_inside=!1,"tag";if("*"===s||"_"===s){for(var w=1,T=1==t.pos?" ":t.string.charAt(t.pos-2);w<3&&t.eat(s);)w++;var L=t.peek()||" ",D=!/\s/.test(L)&&(!h.test(L)||/\s/.test(T)||h.test(T)),z=!/\s/.test(T)&&(!h.test(T)||/\s/.test(L)||h.test(L)),A=null,N=null;if(w%2&&(i.em||!D||"*"!==s&&z&&!h.test(T)?i.em!=s||!z||"*"!==s&&D&&!h.test(L)||(A=!1):A=!0),w>1&&(i.strong||!D||"*"!==s&&z&&!h.test(T)?i.strong!=s||!z||"*"!==s&&D&&!h.test(L)||(N=!1):N=!0),null!=N||null!=A){r.highlightFormatting&&(i.formatting=null==A?"strong":null==N?"em":"strong em"),!0===A&&(i.em=s),!0===N&&(i.strong=s);var m=k(i);return!1===A&&(i.em=!1),!1===N&&(i.strong=!1),m}}else if(" "===s&&(t.eat("*")||t.eat("_"))){if(" "===t.peek())return k(i);t.backUp(1)}if(r.strikethrough)if("~"===s&&t.eatWhile(s)){if(i.strikethrough){r.highlightFormatting&&(i.formatting="strikethrough");var m=k(i);return i.strikethrough=!1,m}if(t.match(/^[^\s]/,!1))return i.strikethrough=!0,r.highlightFormatting&&(i.formatting="strikethrough"),k(i)}else if(" "===s&&t.match(/^~~/,!0)){if(" "===t.peek())return k(i);t.backUp(2)}if(r.emoji&&":"===s&&t.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){i.emoji=!0,r.highlightFormatting&&(i.formatting="emoji");var q=k(i);return i.emoji=!1,q}return" "===s&&(t.match(/^ +$/,!1)?i.trailingSpace++:i.trailingSpace&&(i.trailingSpaceNewLine=!0)),k(i)}function C(e,t){var n=e.next();if(">"===n){t.f=t.inline=S,r.highlightFormatting&&(t.formatting="link");var i=k(t);return i?i+=" ":i="",i+o.linkInline}return e.match(/^[^>]+/,!0),o.linkInline}function M(e,t){if(e.eatSpace())return null;var n,i=e.next();return"("===i||"["===i?(t.f=t.inline=(n="("===i?")":"]",function(e,t){var i=e.next();if(i===n){t.f=t.inline=S,r.highlightFormatting&&(t.formatting="link-string");var o=k(t);return t.linkHref=!1,o}return e.match(T[n]),t.linkHref=!0,k(t)}),r.highlightFormatting&&(t.formatting="link-string"),t.linkHref=!0,k(t)):"error"}var T={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function L(e,t){return e.match(/^([^\]\\]|\\.)*\]:/,!1)?(t.f=D,e.next(),r.highlightFormatting&&(t.formatting="link"),t.linkText=!0,k(t)):g(e,t,S)}function D(e,t){if(e.match(/^\]:/,!0)){t.f=t.inline=z,r.highlightFormatting&&(t.formatting="link");var n=k(t);return t.linkText=!1,n}return e.match(/^([^\]\\]|\\.)+/,!0),o.linkText}function z(e,t){return e.eatSpace()?null:(e.match(/^[^\s]+/,!0),void 0===e.peek()?t.linkTitle=!0:e.match(/^(?:\s+(?:"(?:[^"\\]|\\\\|\\.)+"|'(?:[^'\\]|\\\\|\\.)+'|\((?:[^)\\]|\\\\|\\.)+\)))?/,!0),t.f=t.inline=S,o.linkHref+" url")}var A={startState:function(){return{f:x,prevLine:{stream:null},thisLine:{stream:null},block:x,htmlState:null,indentation:0,inline:S,text:w,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(t){return{f:t.f,prevLine:t.prevLine,thisLine:t.thisLine,block:t.block,htmlState:t.htmlState&&e.copyState(n,t.htmlState),indentation:t.indentation,localMode:t.localMode,localState:t.localMode?e.copyState(t.localMode,t.localState):null,inline:t.inline,text:t.text,formatting:!1,linkText:t.linkText,linkTitle:t.linkTitle,linkHref:t.linkHref,code:t.code,em:t.em,strong:t.strong,strikethrough:t.strikethrough,emoji:t.emoji,header:t.header,setext:t.setext,hr:t.hr,taskList:t.taskList,list:t.list,listStack:t.listStack.slice(0),quote:t.quote,indentedCode:t.indentedCode,trailingSpace:t.trailingSpace,trailingSpaceNewLine:t.trailingSpaceNewLine,md_inside:t.md_inside,fencedEndRE:t.fencedEndRE}},token:function(e,t){if(t.formatting=!1,e!=t.thisLine.stream){if(t.header=0,t.hr=!1,e.match(/^\s*$/,!0))return y(t),null;if(t.prevLine=t.thisLine,t.thisLine={stream:e},t.taskList=!1,t.trailingSpace=0,t.trailingSpaceNewLine=!1,!t.localState&&(t.f=t.block,t.f!=b)){var r=e.match(/^\s*/,!0)[0].replace(/\t/g," ").length;if(t.indentation=r,t.indentationDiff=null,r>0)return null}}return t.f(e,t)},innerMode:function(e){return e.block==b?{state:e.htmlState,mode:n}:e.localState?{state:e.localState,mode:e.localMode}:{state:e,mode:A}},indent:function(t,r,i){return t.block==b&&n.indent?n.indent(t.htmlState,r,i):t.localState&&t.localMode.indent?t.localMode.indent(t.localState,r,i):e.Pass},blankLine:y,getType:k,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return A},"xml"),e.defineMIME("text/markdown","markdown"),e.defineMIME("text/x-markdown","markdown")}(r("VrN/"),r("1eCo"),r("8EBN"))},srmC:function(e,t,r){!function(e){"use strict";e.defineMode("nginx",function(e){function t(e){for(var t={},r=e.split(" "),n=0;n*\/]/.test(d)?l(null,"select-op"):/[;{}:\[\]]/.test(d)?l(null,d):(e.eatWhile(/[\w\\\-]/),l("variable","variable")):l(null,"compare"):void l(null,"compare")}function c(e,t){for(var r,n=!1;null!=(r=e.next());){if(n&&"/"==r){t.tokenize=s;break}n="*"==r}return l("comment","comment")}function u(e,t){for(var r,n=0;null!=(r=e.next());){if(n>=2&&">"==r){t.tokenize=s;break}n="-"==r?n+1:0}return l("comment","comment")}return{startState:function(e){return{tokenize:s,baseIndent:e||0,stack:[]}},token:function(e,t){if(e.eatSpace())return null;r=null;var n=t.tokenize(e,t),i=t.stack[t.stack.length-1];return"hash"==r&&"rule"==i?n="atom":"variable"==n&&("rule"==i?n="number":i&&"@media{"!=i||(n="tag")),"rule"==i&&/^[\{\};]$/.test(r)&&t.stack.pop(),"{"==r?"@media"==i?t.stack[t.stack.length-1]="@media{":t.stack.push("{"):"}"==r?t.stack.pop():"@media"==r?t.stack.push("@media"):"{"==i&&"comment"!=r&&t.stack.push("rule"),n},indent:function(e,t){var r=e.stack.length;return/^\}/.test(t)&&(r-="rule"==e.stack[e.stack.length-1]?2:1),e.baseIndent+r*a},electricChars:"}"}}),e.defineMIME("text/x-nginx-conf","nginx")}(r("VrN/"))},ztCB:function(e,t,r){!function(e){"use strict";e.defineMode("yaml",function(){var e=new RegExp("\\b(("+["true","false","on","off","yes","no"].join(")|(")+"))$","i");return{token:function(t,r){var n=t.peek(),i=r.escaped;if(r.escaped=!1,"#"==n&&(0==t.pos||/\s/.test(t.string.charAt(t.pos-1))))return t.skipToEnd(),"comment";if(t.match(/^('([^']|\\.)*'?|"([^"]|\\.)*"?)/))return"string";if(r.literal&&t.indentation()>r.keyCol)return t.skipToEnd(),"string";if(r.literal&&(r.literal=!1),t.sol()){if(r.keyCol=0,r.pair=!1,r.pairStart=!1,t.match(/---/))return"def";if(t.match(/\.\.\./))return"def";if(t.match(/\s*-\s+/))return"meta"}if(t.match(/^(\{|\}|\[|\])/))return"{"==n?r.inlinePairs++:"}"==n?r.inlinePairs--:"["==n?r.inlineList++:r.inlineList--,"meta";if(r.inlineList>0&&!i&&","==n)return t.next(),"meta";if(r.inlinePairs>0&&!i&&","==n)return r.keyCol=0,r.pair=!1,r.pairStart=!1,t.next(),"meta";if(r.pairStart){if(t.match(/^\s*(\||\>)\s*/))return r.literal=!0,"meta";if(t.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i))return"variable-2";if(0==r.inlinePairs&&t.match(/^\s*-?[0-9\.\,]+\s?$/))return"number";if(r.inlinePairs>0&&t.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/))return"number";if(t.match(e))return"keyword"}return!r.pair&&t.match(/^\s*(?:[,\[\]{}&*!|>'"%@`][^\s'":]|[^,\[\]{}#&*!|>'"%@`])[^#]*?(?=\s*:($|\s))/)?(r.pair=!0,r.keyCol=t.indentation(),"atom"):r.pair&&t.match(/^:\s*/)?(r.pairStart=!0,"meta"):(r.pairStart=!1,r.escaped="\\"==n,t.next(),null)},startState:function(){return{pair:!1,pairStart:!1,keyCol:0,inlinePairs:0,inlineList:0,literal:!1,escaped:!1}},lineComment:"#",fold:"indent"}}),e.defineMIME("text/x-yaml","yaml"),e.defineMIME("text/yaml","yaml")}(r("VrN/"))}}); \ No newline at end of file diff --git a/src/Resources/public/manifest.json b/src/Resources/public/manifest.json index a64717a5d4..75e744c232 100644 --- a/src/Resources/public/manifest.json +++ b/src/Resources/public/manifest.json @@ -5,6 +5,8 @@ "bundles/easyadmin/app-rtl.js": "./app-rtl.js", "bundles/easyadmin/bootstrap-all.css": "./bootstrap-all.css", "bundles/easyadmin/bootstrap-all.js": "./bootstrap-all.js", + "bundles/easyadmin/form-type-code-editor.css": "./form-type-code-editor.css", + "bundles/easyadmin/form-type-code-editor.js": "./form-type-code-editor.js", "bundles/easyadmin/app-rtl.css.map": "./app-rtl.css.map", "bundles/easyadmin/app.css.map": "./app.css.map", "bundles/easyadmin/bootstrap-all.css.map": "./bootstrap-all.css.map", @@ -20,6 +22,7 @@ "bundles/easyadmin/fonts/fa-solid-900.woff2": "./fonts/fa-solid-900.64b3e814.woff2", "bundles/easyadmin/fonts/fa-solid-900.eot": "./fonts/fa-solid-900.e2675a61.eot", "bundles/easyadmin/fonts/fa-solid-900.ttf": "./fonts/fa-solid-900.f14c3b2f.ttf", + "bundles/easyadmin/form-type-code-editor.css.map": "./form-type-code-editor.css.map", "bundles/easyadmin/images/fa-brands-400.svg": "./images/fa-brands-400.38975343.svg", "bundles/easyadmin/images/fa-regular-400.svg": "./images/fa-regular-400.da8a235b.svg", "bundles/easyadmin/images/fa-solid-900.svg": "./images/fa-solid-900.7726a281.svg", diff --git a/src/Resources/views/form/bootstrap_4.html.twig b/src/Resources/views/form/bootstrap_4.html.twig index 10c081bde8..aaea79e775 100644 --- a/src/Resources/views/form/bootstrap_4.html.twig +++ b/src/Resources/views/form/bootstrap_4.html.twig @@ -476,6 +476,17 @@ {{- block('form_label') -}} {% endblock easyadmin_autocomplete_inner_label %} +{# EasyAdmin's CodeEditor form type #} +{% block easyadmin_code_editor_widget %} + + + {% if height is not null %} + + {% endif %} +{% endblock easyadmin_code_editor_widget %} + {# EasyAdminSection form type #} {% block easyadmin_section_row %} {% set _translation_domain = easyadmin.entity.translation_domain %} diff --git a/webpack.config.js b/webpack.config.js index 8d526e66fd..417c611801 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -35,6 +35,7 @@ Encore .addEntry('app', './assets/js/app.js') .addEntry('app-rtl', './assets/js/app-rtl.js') .addEntry('bootstrap-all', './assets/js/bootstrap-all.js') + .addEntry('form-type-code-editor', './assets/js/form-type-code-editor.js') ; module.exports = Encore.getWebpackConfig(); diff --git a/yarn.lock b/yarn.lock index f796609a81..2a5063e01b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1623,6 +1623,11 @@ code-point-at@^1.0.0: resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= +codemirror@^5.47.0: + version "5.47.0" + resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.47.0.tgz#c13a521ae5660d3acc655af252f4955065293789" + integrity sha512-kV49Fr+NGFHFc/Imsx6g180hSlkGhuHxTSDDmDHOuyln0MQYFLixDY4+bFkBVeCEiepYfDimAF/e++9jPJk4QA== + collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"