card 1.97.0.1 → 1.98.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +10 -8
- data/LICENSE +0 -1
- data/VERSION +1 -1
- data/config/locales/de.yml +16 -12
- data/config/locales/en.yml +15 -10
- data/config/locales/es.yml +16 -13
- data/db/migrate_core_cards/20150116220620_add_markdown_type.rb +7 -0
- data/db/migrate_core_cards/20190417142612_reorganize_scripts_2.rb +19 -0
- data/db/migrate_core_cards/20190424100531_update_credit_image.rb +75 -0
- data/db/migrate_core_cards/20190424101004_add_read_anyone_rules.rb +13 -0
- data/db/migrate_core_cards/20190502130029_add_shark_and_help_desk_role.rb +105 -0
- data/db/migrate_core_cards/20190503122739_update_pristine_data.rb +18 -0
- data/db/migrate_core_cards/20190528131330_enabled_roles.rb +12 -0
- data/db/migrate_core_cards/20190605133556_tweak_config_cards.rb +10 -0
- data/db/migrate_core_cards/20190618110446_add_dropdown_divider.rb +8 -0
- data/db/migrate_core_cards/20190621143156_add_role_assign_permissions.rb +9 -0
- data/db/migrate_core_cards/20190625153616_pointer_overhaul.rb +19 -0
- data/db/migrate_core_cards/20190710090207_homepage_tweaks.rb +12 -0
- data/db/migrate_core_cards/data/cards.yml +127 -2
- data/db/migrate_core_cards/data/cards/Xaccount_setting-Xright-Xstructure +5 -0
- data/db/migrate_core_cards/data/cards/Xall-Xlayout +1 -0
- data/db/migrate_core_cards/data/cards/Xcredit +2 -0
- data/db/migrate_core_cards/data/cards/Xfooter +3 -0
- data/db/migrate_core_cards/data/cards/Xgetting_started +31 -0
- data/db/migrate_core_cards/data/cards/Xgetting_started-link +6 -0
- data/db/migrate_core_cards/data/cards/Xgetting_started-shark +66 -0
- data/db/migrate_core_cards/data/cards/Xheader +4 -2
- data/db/migrate_core_cards/data/cards/Xhome +1 -0
- data/db/migrate_core_cards/data/cards/Xlogo +1 -0
- data/db/migrate_core_cards/data/cards/Xmain_menu +2 -2
- data/db/migrate_core_cards/data/cards/Xrecaptcha_setting-Xself-Xstructure +1 -0
- data/db/migrate_core_cards/data/cards/Xsidebar +7 -0
- data/db/migrate_core_cards/data/cards/Xtitle +1 -0
- data/db/migrate_core_cards/data/cards/administrator-dashboard +18 -0
- data/db/migrate_core_cards/data/cards/administrator-description +1 -0
- data/db/migrate_core_cards/data/cards/anyone_signed_in-dashboard +2 -0
- data/db/migrate_core_cards/data/cards/cardtype-Xtype-Xstructure +3 -0
- data/db/migrate_core_cards/data/cards/default_layout +6 -0
- data/db/migrate_core_cards/data/cards/eagle-description +1 -0
- data/db/migrate_core_cards/data/cards/full_width_layout +5 -0
- data/db/migrate_core_cards/data/cards/help_desk-dashboard +7 -0
- data/db/migrate_core_cards/data/cards/help_desk-description +1 -0
- data/db/migrate_core_cards/data/cards/home +2 -0
- data/db/migrate_core_cards/data/cards/home-Xself-Xlayout +1 -0
- data/db/migrate_core_cards/data/cards/home-original +22 -0
- data/db/migrate_core_cards/data/cards/home_layout +6 -0
- data/db/migrate_core_cards/data/cards/left_sidebar_layout +6 -0
- data/db/migrate_core_cards/data/cards/menu +1 -0
- data/db/migrate_core_cards/data/cards/right_thin_sidebar_layout +8 -0
- data/db/migrate_core_cards/data/cards/role-Xtype-Xstructure +2 -0
- data/db/migrate_core_cards/data/cards/shark-dashboard +19 -0
- data/db/migrate_core_cards/data/cards/shark-description +1 -0
- data/db/migrate_core_cards/data/cards/shark_menu +2 -0
- data/db/migrate_core_cards/data/decko_logo.svg +1 -1
- data/db/seed/new/card_actions.yml +2487 -2247
- data/db/seed/new/card_acts.yml +2 -2
- data/db/seed/new/card_references.yml +4030 -3778
- data/db/seed/new/cards.yml +5576 -4902
- data/db/seed/new/schema_migrations_core_cards.yml +128 -86
- data/db/seed/test/fixtures/card_actions.yml +3561 -3289
- data/db/seed/test/fixtures/card_acts.yml +514 -490
- data/db/seed/test/fixtures/card_changes.yml +67 -67
- data/db/seed/test/fixtures/card_references.yml +4595 -4329
- data/db/seed/test/fixtures/cards.yml +5710 -4976
- data/db/seed/test/fixtures/schema_migrations_core_cards.yml +128 -86
- data/db/seed/test/seed.rb +10 -5
- data/db/version_core_cards.txt +1 -1
- data/lib/card.rb +2 -2
- data/lib/card/act_manager/stage_director/phases.rb +0 -3
- data/lib/card/auth/current.rb +14 -3
- data/lib/card/auth/permissions.rb +19 -8
- data/lib/card/cache.rb +4 -3
- data/lib/card/codename.rb +1 -1
- data/lib/card/content.rb +24 -3
- data/lib/card/content/chunk.rb +17 -2
- data/lib/card/env.rb +22 -10
- data/lib/card/env/success.rb +5 -1
- data/lib/card/error.rb +5 -0
- data/lib/card/format.rb +10 -61
- data/lib/card/format/content.rb +20 -13
- data/lib/card/format/context_names.rb +13 -2
- data/lib/card/format/error.rb +34 -0
- data/lib/card/format/nest.rb +14 -6
- data/lib/card/format/nesting.rb +6 -4
- data/lib/card/format/nesting/main.rb +1 -21
- data/lib/card/format/nesting/mode.rb +8 -8
- data/lib/card/format/nesting/subformat.rb +1 -1
- data/lib/card/format/registration.rb +0 -32
- data/lib/card/format/render.rb +19 -20
- data/lib/card/migration.rb +7 -0
- data/lib/card/mod.rb +3 -2
- data/lib/card/mod/load_strategy.rb +4 -0
- data/lib/card/mod/load_strategy/eval.rb +1 -1
- data/lib/card/mod/load_strategy/pattern_tmp_files.rb +5 -5
- data/lib/card/mod/load_strategy/set_tmp_files.rb +1 -0
- data/lib/card/mod/load_strategy/tmp_files.rb +6 -2
- data/lib/card/mod/loader.rb +3 -2
- data/lib/card/mod/loader/set_loader.rb +83 -16
- data/lib/card/mod/loader/set_pattern_loader.rb +9 -12
- data/lib/card/mod/module_template.rb +42 -22
- data/lib/card/model/save_helper.rb +5 -5
- data/lib/card/query.rb +11 -11
- data/lib/card/query/card_query/sorting.rb +2 -2
- data/lib/card/set/event.rb +17 -3
- data/lib/card/set/event/delayed_event.rb +1 -1
- data/lib/card/set/event/options.rb +2 -2
- data/lib/card/set/format.rb +69 -23
- data/lib/card/set/format/abstract_format.rb +95 -98
- data/lib/card/set/format/abstract_format/haml_views.rb +44 -0
- data/lib/card/set/format/abstract_format/view_definition.rb +67 -0
- data/lib/card/set/format/abstract_format/view_opts.rb +68 -0
- data/lib/card/set/format/abstract_format/wrapper.rb +91 -0
- data/lib/card/set/format/{haml_views.rb → haml_paths.rb} +33 -60
- data/lib/card/set/i18n_scope.rb +62 -36
- data/lib/card/view.rb +49 -20
- data/lib/card/view/cache.rb +176 -8
- data/lib/card/view/cache/cache_action.rb +124 -0
- data/lib/card/view/cache/stub.rb +55 -0
- data/lib/card/view/options.rb +19 -3
- data/lib/card/view/options/key_lists.rb +4 -0
- data/lib/card/view/options/visibility.rb +99 -0
- data/lib/card/view/options/voo_api.rb +13 -10
- data/lib/card/view/permission.rb +54 -0
- data/lib/cardio.rb +3 -3
- data/mod/Modfile +2 -0
- data/mod/account/README.md +5 -0
- data/mod/account/set/all/account.rb +33 -12
- data/mod/account/set/right/roles.rb +27 -0
- data/mod/account/set/self/signin.rb +5 -2
- data/mod/account/set/type/role.rb +17 -0
- data/mod/account/set/type/user.rb +4 -3
- data/mod/account/spec/set/all/account_spec.rb +4 -7
- data/mod/account/spec/set/right/roles_spec.rb +24 -0
- data/mod/ace_editor/db/migrate_core_cards/20160805112548_delete_ace_help_card.rb +8 -0
- data/mod/ace_editor/lib/javascript/script_ace_config.js.coffee +0 -4
- data/mod/ace_editor/set/self/ace.rb +7 -0
- data/mod/admin/set/self/admin_info.rb +13 -46
- data/mod/admin/set/self/recaptcha_secret_key.rb +1 -1
- data/mod/admin/set/self/recaptcha_settings.rb +44 -0
- data/mod/admin/set/self/recaptcha_site_key.rb +1 -1
- data/mod/admin/set/self/version.rb +4 -0
- data/mod/admin/spec/set/self/admin_info_spec.rb +0 -1
- data/mod/basic_formats/format/json_format.rb +3 -3
- data/mod/basic_formats/set/all/base.rb +4 -7
- data/mod/basic_formats/set/all/head.rb +12 -12
- data/mod/basic_formats/set/all/json.rb +40 -23
- data/mod/basic_formats/set/all/rss.rb +4 -4
- data/mod/basic_formats/spec/set/all/json_spec.rb +1 -1
- data/mod/bootstrap/lib/bootstrap/component/layout.rb +6 -2
- data/mod/bootstrap/lib/javascript/script_load_select2.js.coffee +8 -3
- data/mod/bootstrap/lib/stylesheets/style_bootstrap_cards.scss +96 -13
- data/mod/bootstrap/lib/stylesheets/style_select2_bootstrap.scss +1 -1
- data/mod/bootstrap/set/abstract/bootswatch_theme.rb +1 -2
- data/mod/bootstrap/set/abstract/bootswatch_theme/html_views.rb +1 -1
- data/mod/bootstrap/set/all/bootstrap/dropdown.rb +87 -0
- data/mod/bootstrap/set/all/bootstrap/helper.rb +0 -161
- data/mod/bootstrap/set/all/bootstrap/icon.rb +109 -0
- data/mod/bootstrap/set/type/customized_bootswatch_skin/html_views.rb +2 -4
- data/mod/bootstrap/spec/set/all/bootstrap/layout_spec.rb +2 -2
- data/mod/bootstrap/vendor/bootswatch/Gruntfile.js +4 -0
- data/mod/bootstrap/vendor/bootswatch/dist/darkly/_bootswatch.scss +6 -3
- data/mod/bootstrap/vendor/bootswatch/dist/darkly/_variables.scss +6 -10
- data/mod/bootstrap/vendor/bootswatch/dist/darkly/bootstrap.css +129 -129
- data/mod/bootstrap/vendor/bootswatch/dist/darkly/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/dist/litera/_bootswatch.scss +13 -12
- data/mod/bootstrap/vendor/bootswatch/dist/litera/bootstrap.css +4 -4
- data/mod/bootstrap/vendor/bootswatch/dist/litera/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/dist/lux/_bootswatch.scss +13 -0
- data/mod/bootstrap/vendor/bootswatch/dist/lux/bootstrap.css +7 -0
- data/mod/bootstrap/vendor/bootswatch/dist/lux/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/dist/materia/_bootswatch.scss +1 -1
- data/mod/bootstrap/vendor/bootswatch/dist/materia/bootstrap.css +4 -2
- data/mod/bootstrap/vendor/bootswatch/dist/materia/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/dist/sketchy/_bootswatch.scss +45 -4
- data/mod/bootstrap/vendor/bootswatch/dist/sketchy/_variables.scss +3 -3
- data/mod/bootstrap/vendor/bootswatch/dist/sketchy/bootstrap.css +136 -100
- data/mod/bootstrap/vendor/bootswatch/dist/sketchy/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/2/README.md +3 -3
- data/mod/bootstrap/vendor/bootswatch/docs/2/amelia/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/cerulean/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/cosmo/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/cyborg/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/default/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/flatly/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/index.html +5 -5
- data/mod/bootstrap/vendor/bootswatch/docs/2/journal/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/readable/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/simplex/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/slate/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/spacelab/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/spruce/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/superhero/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/2/united/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/README.md +3 -3
- data/mod/bootstrap/vendor/bootswatch/docs/3/cerulean/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/cosmo/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/custom/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/cyborg/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/darkly/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/default/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/flatly/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/help/index.html +3 -3
- data/mod/bootstrap/vendor/bootswatch/docs/3/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/journal/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/lumen/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/paper/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/readable/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/sandstone/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/simplex/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/slate/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/spacelab/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/superhero/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/tests/components.html +8 -8
- data/mod/bootstrap/vendor/bootswatch/docs/3/united/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/3/yeti/index.html +2 -2
- data/mod/bootstrap/vendor/bootswatch/docs/4/darkly/_bootswatch.scss +6 -3
- data/mod/bootstrap/vendor/bootswatch/docs/4/darkly/_variables.scss +6 -10
- data/mod/bootstrap/vendor/bootswatch/docs/4/darkly/bootstrap.css +129 -129
- data/mod/bootstrap/vendor/bootswatch/docs/4/darkly/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/4/litera/_bootswatch.scss +13 -12
- data/mod/bootstrap/vendor/bootswatch/docs/4/litera/bootstrap.css +4 -4
- data/mod/bootstrap/vendor/bootswatch/docs/4/litera/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/4/lux/_bootswatch.scss +13 -0
- data/mod/bootstrap/vendor/bootswatch/docs/4/lux/bootstrap.css +7 -0
- data/mod/bootstrap/vendor/bootswatch/docs/4/lux/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/4/materia/_bootswatch.scss +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/4/materia/bootstrap.css +4 -2
- data/mod/bootstrap/vendor/bootswatch/docs/4/materia/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/4/sketchy/_bootswatch.scss +45 -4
- data/mod/bootstrap/vendor/bootswatch/docs/4/sketchy/_variables.scss +3 -3
- data/mod/bootstrap/vendor/bootswatch/docs/4/sketchy/bootstrap.css +136 -100
- data/mod/bootstrap/vendor/bootswatch/docs/4/sketchy/bootstrap.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/_assets/css/custom.min.css +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/_assets/js/custom.js +10 -11
- data/mod/bootstrap/vendor/bootswatch/docs/_assets/scss/custom.scss +10 -1
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/core.js +22 -99
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.js +842 -497
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.min.js +2 -4
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.min.map +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.slim.js +791 -456
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.slim.min.js +2 -4
- data/mod/bootstrap/vendor/bootswatch/docs/_vendor/jquery/dist/jquery.slim.min.map +1 -1
- data/mod/bootstrap/vendor/bootswatch/docs/cerulean/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/cosmo/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/cyborg/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/darkly/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/default/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/flatly/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/help/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/index.html +11 -11
- data/mod/bootstrap/vendor/bootswatch/docs/journal/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/litera/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/lumen/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/lux/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/materia/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/minty/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/pulse/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/sandstone/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/simplex/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/sketchy/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/slate/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/solar/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/spacelab/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/superhero/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/united/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/docs/yeti/index.html +6 -6
- data/mod/bootstrap/vendor/bootswatch/package-lock.json +5218 -0
- data/mod/bootstrap/vendor/bootswatch/package.json +5 -5
- data/mod/carrierwave/set/abstract/attachment/paths.rb +1 -1
- data/mod/carrierwave/set/type/file.rb +4 -3
- data/mod/carrierwave/set/type/image.rb +0 -70
- data/mod/carrierwave/set/type/image/html_views.rb +104 -0
- data/mod/core/chunk/link.rb +9 -5
- data/mod/core/chunk/literal.rb +2 -2
- data/mod/core/chunk/nest.rb +8 -2
- data/mod/core/chunk/query_reference.rb +1 -1
- data/mod/core/chunk/uri.rb +3 -3
- data/mod/core/chunk/view_stub.rb +3 -2
- data/mod/core/format/html_format.rb +1 -1
- data/mod/core/set/abstract/haml_file.rb +1 -1
- data/mod/core/set/all/content.rb +1 -1
- data/mod/core/set/all/event_conditions.rb +7 -6
- data/mod/core/set/all/fetch.rb +6 -6
- data/mod/core/set/all/haml.rb +2 -2
- data/mod/core/set/all/item.rb +2 -2
- data/mod/core/set/all/permissions.rb +0 -1
- data/mod/core/set/all/phases.rb +0 -4
- data/mod/core/set/all/references.rb +2 -3
- data/mod/core/set/all/rename.rb +1 -1
- data/mod/core/set/all/states.rb +62 -25
- data/mod/core/set/all/templating.rb +12 -16
- data/mod/core/set_pattern/08_type_plus_right.rb +2 -0
- data/mod/core/spec/chunk/nest_spec.rb +1 -0
- data/mod/core/spec/format/html_format_spec.rb +2 -2
- data/mod/core/spec/set/all/assign_attributes_spec.rb +1 -1
- data/mod/core/spec/set/all/chunk_spec.rb +1 -1
- data/mod/core/spec/set/all/collection_spec.rb +1 -1
- data/mod/core/spec/set/all/export_spec.rb +7 -7
- data/mod/core/spec/set/all/fetch_spec.rb +2 -2
- data/mod/core/spec/set/all/pattern_spec.rb +9 -9
- data/mod/core/spec/set/all/rules2_spec.rb +7 -7
- data/mod/core/spec/set/all/rules_spec.rb +1 -1
- data/mod/core/spec/set/all/templating_spec.rb +2 -6
- data/mod/core/spec/set/all/type_spec.rb +2 -2
- data/mod/developer/set/right/debug.rb +1 -1
- data/mod/edit/set/all/bridge/bridge.haml +1 -1
- data/mod/edit/set/all/bridge/tab_views.rb +4 -4
- data/mod/edit/set/all/edit_content.rb +2 -10
- data/mod/edit/set/all/{edit_in_place.rb → edit_inline.rb} +6 -5
- data/mod/edit/set/all/edit_type.rb +1 -2
- data/mod/edit/set/all/editing.rb +3 -4
- data/mod/edit/set/all/editor.rb +1 -1
- data/mod/edit/set/all/form.rb +33 -3
- data/mod/edit/set/all/form_buttons.rb +2 -1
- data/mod/edit/set/all/nest_editor.rb +2 -0
- data/mod/edit/set/all/nest_editor/_options_select_row.haml +1 -1
- data/mod/edit/set/all/nest_editor/nest_parser.rb +2 -2
- data/mod/edit/set/all/nest_image.rb +1 -1
- data/mod/edit/set/all/new.rb +1 -1
- data/mod/follow/README.md +7 -4
- data/mod/follow/set/all/notify/base_views.rb +0 -1
- data/mod/follow/set/right/followers.rb +1 -1
- data/mod/follow/set/right/following.rb +1 -1
- data/mod/follow/set/self/follow_defaults.rb +1 -1
- data/mod/follow/set/type_plus_right/user/follow.rb +1 -1
- data/mod/follow/spec/set/all/follow_spec.rb +1 -1
- data/mod/follow/spec/set/all/notify_email.txt +3 -3
- data/mod/follow/spec/set/all/notify_spec.rb +12 -1
- data/mod/follow/spec/set/type/notification_template_spec.rb +1 -2
- data/mod/google_analytics/set/all/google_analytics.rb +1 -1
- data/mod/history/lib/card/act.rb +7 -4
- data/mod/history/lib/card/act/act_renderer.rb +1 -14
- data/mod/history/lib/card/act/act_renderer/absolute_act_renderer.rb +4 -2
- data/mod/history/lib/card/act/act_renderer/relative_act_renderer.rb +6 -0
- data/mod/history/lib/card/action.rb +2 -3
- data/mod/history/set/all/history/actions.rb +4 -8
- data/mod/history/set/all/history/revision.rb +8 -0
- data/mod/history/set/all/history/views.rb +2 -0
- data/mod/history/set/all/history_bridge.rb +3 -2
- data/mod/item/set/all/bar.haml +12 -13
- data/mod/item/set/all/bar.rb +19 -37
- data/mod/item/set/all/box.rb +0 -2
- data/mod/item/set/all/expanded_bar.haml +10 -10
- data/mod/item/spec/set/all/bar_spec.rb +6 -3
- data/mod/machines/file/all_script_machine_output/file.js +38106 -71
- data/mod/machines/file/all_style_machine_output/file.css +3 -3
- data/mod/machines/file/script_html5shiv_printshiv_machine_output/file.js +1 -1
- data/mod/machines/lib/javascript/decko/autosave.js.coffee +30 -0
- data/mod/machines/lib/javascript/{decko_bridge.js.coffee → decko/bridge.js.coffee} +0 -0
- data/mod/machines/lib/javascript/decko/card_menu.js.coffee +15 -0
- data/mod/machines/lib/javascript/{decko_components.js.coffee → decko/components.js.coffee} +18 -4
- data/mod/machines/lib/javascript/decko/decko.js.coffee +91 -0
- data/mod/machines/lib/javascript/decko/doubleclick.js.coffee +30 -0
- data/mod/machines/lib/javascript/{decko_editor.js.coffee → decko/editor.js.coffee} +19 -28
- data/mod/machines/lib/javascript/decko/filter.js.coffee +166 -0
- data/mod/machines/lib/javascript/{decko_filter.js.coffee → decko/filter_items.js.coffee} +28 -82
- data/mod/machines/lib/javascript/decko/filter_links.js.coffee +67 -0
- data/mod/machines/lib/javascript/decko/follow.js.coffee +22 -0
- data/mod/machines/lib/javascript/{decko_layout.js.coffee → decko/layout.js.coffee} +4 -4
- data/mod/machines/lib/javascript/{decko_mod.js.coffee → decko/mod.js.coffee} +0 -23
- data/mod/machines/lib/javascript/{decko_modal.js.coffee → decko/modal.js.coffee} +11 -15
- data/mod/machines/lib/javascript/decko/name_editor.js.coffee +51 -0
- data/mod/machines/lib/javascript/{decko_navbox.js.coffee → decko/navbox.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_nest_editor.js.coffee → decko/nest_editor.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_nest_editor_name.js.coffee → decko/nest_editor_name.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_nest_editor_options.js.coffee → decko/nest_editor_options.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_nest_editor_rules.js.coffee → decko/nest_editor_rules.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_overlay.js.coffee → decko/overlay.js.coffee} +3 -0
- data/mod/machines/lib/javascript/{decko_recaptcha.js.coffee → decko/recaptcha.js.coffee} +0 -0
- data/mod/machines/lib/javascript/{decko_slot.js.coffee → decko/slot.js.coffee} +33 -4
- data/mod/machines/lib/javascript/decko/slot_ready.js.coffee +11 -0
- data/mod/machines/lib/javascript/{decko_slotter.js.coffee → decko/slotter.js.coffee} +6 -14
- data/mod/machines/lib/javascript/{decko_upload.js.coffee → decko/upload.js.coffee} +0 -0
- data/mod/machines/lib/stylesheets/style_cards.scss +109 -26
- data/mod/machines/set/abstract/machine.rb +3 -3
- data/mod/machines/set/abstract/skin_box.rb +1 -2
- data/mod/machines/set/right/machine_output.rb +4 -0
- data/mod/machines/set/self/script_decko.rb +11 -0
- data/mod/navbar/set/abstract/pointer/html_views.rb +5 -0
- data/mod/navbar/set/abstract/roles_dropdown.rb +15 -0
- data/mod/navbar/set/all/navbar_links.rb +58 -0
- data/mod/navbar/set/right/enabled_roles.rb +63 -0
- data/mod/navbar/set/right/enabled_roles/role_checkbox.haml +4 -0
- data/mod/navbar/set/self/account_links.rb +98 -0
- data/mod/navbar/set/self/dropdown_divider.rb +9 -0
- data/mod/{search → navbar}/set/self/navbox.rb +2 -2
- data/mod/navbar/set/type/html.rb +14 -0
- data/mod/navbar/spec/set/all/navbar_links_spec.rb +55 -0
- data/mod/navbar/spec/set/right/enabled_roles_spec.rb +12 -0
- data/mod/{account → navbar}/spec/set/self/account_links_spec.rb +2 -2
- data/mod/{search → navbar}/spec/set/self/navbox_spec.rb +0 -0
- data/mod/pointer/set/abstract/00_paging_params.rb +10 -3
- data/mod/pointer/set/abstract/01_paging.rb +3 -12
- data/mod/pointer/set/abstract/02_pointer/html_views.rb +6 -14
- data/mod/pointer/set/abstract/02_pointer/html_views/filter.rb +6 -5
- data/mod/pointer/set/abstract/02_pointer/html_views/filter/filter_items.haml +8 -10
- data/mod/pointer/set/abstract/02_pointer/other_views.rb +1 -2
- data/mod/pointer/set/type/link_list.rb +23 -0
- data/mod/pointer/set/type/list.rb +16 -0
- data/mod/pointer/set/type/mirror_list.rb +93 -0
- data/{tmpsets/set/mod016-standard/type/list.rb → mod/pointer/set/type/mirrored_list.rb} +24 -32
- data/mod/pointer/set/type/pointer.rb +1 -1
- data/mod/pointer/spec/set/abstract/paging_params_spec.rb +12 -0
- data/mod/pointer/spec/set/type/link_list_spec.rb +15 -0
- data/mod/pointer/spec/set/type/link_spec.rb +17 -0
- data/mod/{standard/spec/set/type/listed_by_spec.rb → pointer/spec/set/type/mirror_list_spec.rb} +8 -16
- data/mod/{standard/spec/set/type/list_spec.rb → pointer/spec/set/type/mirrored_list_spec.rb} +9 -16
- data/mod/rules/set/rule/bridge_rules_editor.rb +4 -3
- data/mod/rules/set/rule/editor.rb +4 -4
- data/mod/rules/set/rule/rule_form.rb +1 -1
- data/mod/rules/set/rule/table.rb +2 -2
- data/mod/rules/set/rule/table_row.rb +4 -3
- data/mod/rules/set/type/set/html_views.rb +1 -1
- data/mod/rules/set/type/set/html_views/nest_rules.rb +1 -1
- data/mod/rules/set/type/set/rules_filter.rb +5 -1
- data/mod/rules/set/type/set/setting_lists.rb +1 -1
- data/mod/rules/spec/set/type/set/html_views_spec.rb +1 -1
- data/mod/rules/spec/set/type/set_spec.rb +1 -1
- data/mod/search/lib/card/filter_query.rb +0 -6
- data/mod/search/set/abstract/00_filter_helper.rb +6 -8
- data/mod/search/set/abstract/03_filter.rb +2 -107
- data/mod/search/set/abstract/03_filter/_filter_input.haml +8 -0
- data/mod/search/set/abstract/03_filter/filter_form.haml +53 -0
- data/mod/search/set/abstract/03_filter/filter_form.rb +77 -0
- data/mod/search/set/abstract/03_filter/filtered_content.haml +5 -0
- data/mod/search/set/abstract/{01_filter_form_helper.rb → 03_filter/form_helper.rb} +39 -17
- data/mod/search/set/abstract/03_filter/query_construction.rb +36 -0
- data/mod/search/set/abstract/03_filter/quick_filters.haml +14 -0
- data/mod/search/set/abstract/04_right_filter_form.rb +6 -2
- data/mod/search/set/abstract/search.rb +2 -1
- data/mod/search/set/abstract/search/views.rb +4 -3
- data/mod/search/set/abstract/wql_search.rb +5 -5
- data/mod/search/set/self/recent.rb +1 -1
- data/mod/search/spec/set/abstract/filter_spec.rb +7 -13
- data/mod/search/template/abstract/search/select_item.haml +8 -7
- data/mod/settings/set/abstract/permission.rb +1 -2
- data/mod/settings/set/abstract/templated_nests.rb +7 -0
- data/mod/settings/set/right/add_help.rb +1 -11
- data/mod/settings/set/right/default.rb +6 -1
- data/mod/settings/set/right/help.rb +2 -2
- data/mod/settings/set/right/script.rb +4 -0
- data/mod/settings/set/right/structure.rb +6 -1
- data/mod/settings/set/right/style.rb +4 -0
- data/mod/settings/set/type/setting.rb +30 -25
- data/mod/settings/spec/set/right/structure_spec.rb +1 -1
- data/mod/solid_cache/set/right/solid_cache.rb +4 -0
- data/mod/standard/file/logo/image-original.svg +2 -2
- data/mod/standard/set/all/comment.rb +1 -2
- data/mod/standard/set/all/error.rb +2 -3
- data/mod/standard/set/all/links.rb +8 -2
- data/mod/standard/set/all/list_changes.rb +5 -5
- data/mod/standard/set/all/path.rb +26 -0
- data/mod/standard/set/all/rich_html/content.rb +33 -6
- data/mod/standard/set/all/rich_html/error.rb +7 -6
- data/mod/standard/set/all/rich_html/frame.rb +3 -2
- data/mod/standard/set/all/rich_html/header.rb +4 -12
- data/mod/standard/set/all/rich_html/html_views/help.rb +17 -4
- data/mod/standard/set/all/rich_html/html_views/info.rb +30 -5
- data/mod/standard/set/all/rich_html/menu.rb +28 -14
- data/mod/standard/set/all/rich_html/modal.rb +4 -5
- data/mod/standard/set/all/rich_html/overlay.rb +3 -3
- data/mod/standard/set/all/rich_html/process_layout.rb +1 -0
- data/mod/standard/set/all/rich_html/show.rb +2 -2
- data/mod/standard/set/all/rich_html/title.rb +17 -6
- data/mod/standard/set/all/rich_html/wrapper.rb +1 -1
- data/mod/standard/set/right/head.rb +4 -0
- data/mod/standard/set/type/basic.rb +21 -10
- data/mod/standard/set/type/cardtype.rb +28 -9
- data/mod/standard/set/type/session.rb +25 -9
- data/mod/standard/spec/set/all/path_spec.rb +5 -0
- data/mod/standard/spec/set/all/rich_html/menu_spec.rb +1 -1
- data/mod/standard/spec/set/all/rich_html/process_layout_spec.rb +7 -7
- data/mod/standard/spec/set/all/rich_html/wrapper_spec.rb +2 -2
- data/mod/standard/spec/set/type/cardtype_spec.rb +8 -8
- data/mod/standard/spec/set/type/layout_type_spec.rb +7 -5
- data/mod/standard/spec/set/type/search_type_spec.rb +2 -2
- data/mod/standard/spec/set/type/session_spec.rb +33 -0
- data/mod/tinymce_editor/lib/javascript/script_tinymce_config.js.coffee +6 -1
- data/mod/utility/set/abstract/bs_badge.rb +3 -2
- data/mod/utility/set/abstract/bs_badge/labeled_badge.haml +1 -1
- data/mod/utility/set/abstract/filterable.rb +13 -0
- data/mod/utility/set/abstract/filterable_bar.rb +11 -0
- data/mod/utility/set/abstract/media.rb +2 -18
- data/mod/utility/set/abstract/media/media_snippet.haml +6 -7
- data/mod/utility/spec/set/abstract/media_spec.rb +0 -6
- data/mod/virtual/set/abstract/virtual_cache.rb +1 -1
- data/tmpsets/set/mod001-utility/abstract/bs_badge.rb +30 -0
- data/tmpsets/set/mod001-utility/abstract/filterable.rb +25 -0
- data/tmpsets/set/mod001-utility/abstract/media.rb +42 -0
- data/tmpsets/set/mod001-utility/abstract/utility.rb +22 -0
- data/tmpsets/set/{mod001-admin → mod002-admin}/self/admin.rb +54 -32
- data/tmpsets/set/{mod001-admin → mod002-admin}/self/admin_info.rb +24 -26
- data/tmpsets/set/mod002-admin/self/recaptcha_proxy.rb +12 -0
- data/tmpsets/set/mod002-admin/self/recaptcha_secret_key.rb +18 -0
- data/tmpsets/set/mod002-admin/self/recaptcha_site_key.rb +18 -0
- data/tmpsets/set/mod002-admin/self/trash.rb +72 -0
- data/tmpsets/set/mod002-admin/self/version.rb +22 -0
- data/tmpsets/set/mod003-core/abstract/code_file.rb +91 -0
- data/tmpsets/set/mod003-core/abstract/haml_file.rb +29 -0
- data/tmpsets/set/mod003-core/abstract/lock.rb +35 -0
- data/tmpsets/set/mod003-core/abstract/vendor_code_file.rb +19 -0
- data/tmpsets/set/{mod002-core/all/actify.rb → mod003-core/all/abort.rb} +31 -48
- data/tmpsets/set/mod003-core/all/actify.rb +74 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/active_card.rb +7 -6
- data/tmpsets/set/mod003-core/all/assign_attributes.rb +131 -0
- data/tmpsets/set/mod003-core/all/cache.rb +123 -0
- data/tmpsets/set/mod003-core/all/chunk.rb +156 -0
- data/tmpsets/set/mod003-core/all/codename.rb +36 -0
- data/tmpsets/set/mod003-core/all/collection.rb +64 -0
- data/tmpsets/set/mod003-core/all/content.rb +121 -0
- data/tmpsets/set/mod003-core/all/contextual_content.rb +37 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/debug.rb +7 -5
- data/tmpsets/set/mod003-core/all/erb.rb +20 -0
- data/tmpsets/set/mod003-core/all/event_conditions.rb +142 -0
- data/tmpsets/set/mod003-core/all/export.rb +77 -0
- data/tmpsets/set/mod003-core/all/extended.rb +58 -0
- data/tmpsets/set/mod003-core/all/fetch.rb +159 -0
- data/tmpsets/set/mod003-core/all/fetch_helper.rb +162 -0
- data/tmpsets/set/mod003-core/all/haml.rb +84 -0
- data/tmpsets/set/mod003-core/all/i18n.rb +19 -0
- data/tmpsets/set/mod003-core/all/initialize.rb +55 -0
- data/tmpsets/set/mod003-core/all/item.rb +123 -0
- data/tmpsets/set/mod003-core/all/layouts.rb +43 -0
- data/tmpsets/set/mod003-core/all/location_history.rb +28 -0
- data/tmpsets/set/mod003-core/all/name.rb +242 -0
- data/tmpsets/set/mod003-core/all/name_events.rb +118 -0
- data/tmpsets/set/mod003-core/all/observer.rb +31 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/pattern.rb +12 -15
- data/tmpsets/set/{mod002-core → mod003-core}/all/permissions.rb +63 -101
- data/tmpsets/set/mod003-core/all/phases.rb +25 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/references.rb +42 -33
- data/tmpsets/set/mod003-core/all/rename.rb +47 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/rules.rb +17 -23
- data/tmpsets/set/mod003-core/all/stages.rb +26 -0
- data/tmpsets/set/mod003-core/all/states.rb +91 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/subcards.rb +45 -20
- data/tmpsets/set/mod003-core/all/tabs.rb +59 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/templating.rb +24 -22
- data/tmpsets/set/mod003-core/all/trash.rb +135 -0
- data/tmpsets/set/{mod002-core → mod003-core}/all/type.rb +23 -13
- data/tmpsets/set/mod003-core/all/update_read_rules.rb +39 -0
- data/tmpsets/set/mod003-core/all/utils.rb +93 -0
- data/tmpsets/set/mod004-virtual/abstract/virtual_cache.rb +52 -0
- data/tmpsets/set/mod005-history/all/history.rb +85 -0
- data/tmpsets/set/mod005-history/all/history/act_listing.rb +133 -0
- data/tmpsets/set/mod005-history/all/history/actions.rb +133 -0
- data/tmpsets/set/mod005-history/all/history/acts.rb +21 -0
- data/tmpsets/set/mod005-history/all/history/events.rb +108 -0
- data/tmpsets/set/mod005-history/all/history/last.rb +107 -0
- data/tmpsets/set/mod005-history/all/history/revision.rb +73 -0
- data/tmpsets/set/mod005-history/all/history/selected.rb +73 -0
- data/tmpsets/set/mod005-history/all/history/views.rb +44 -0
- data/tmpsets/set/mod005-history/all/history_bridge.rb +75 -0
- data/tmpsets/set/mod006-basic_formats/all/all_css.rb +46 -0
- data/tmpsets/set/mod006-basic_formats/all/all_csv.rb +106 -0
- data/tmpsets/set/mod006-basic_formats/all/all_js.rb +19 -0
- data/tmpsets/set/mod006-basic_formats/all/base.rb +189 -0
- data/tmpsets/set/mod006-basic_formats/all/file.rb +18 -0
- data/tmpsets/set/mod006-basic_formats/all/head.rb +155 -0
- data/tmpsets/set/mod006-basic_formats/all/json.rb +161 -0
- data/tmpsets/set/mod006-basic_formats/all/rss.rb +85 -0
- data/tmpsets/set/mod006-basic_formats/all/text.rb +16 -0
- data/tmpsets/set/mod006-basic_formats/self/head.rb +31 -0
- data/tmpsets/set/mod007-item/all/bar.rb +124 -0
- data/tmpsets/set/mod007-item/all/box.rb +25 -0
- data/tmpsets/set/mod008-pointer/abstract/00_paging_params.rb +35 -0
- data/tmpsets/set/mod008-pointer/abstract/01_paging.rb +157 -0
- data/tmpsets/set/mod008-pointer/abstract/01_paging/paging_links.rb +98 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer.rb +18 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/events.rb +59 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/html_views.rb +117 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/html_views/filter.rb +73 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/item_api.rb +181 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/options_api.rb +93 -0
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/other_views.rb +111 -0
- data/tmpsets/set/mod008-pointer/abstract/code_pointer.rb +44 -0
- data/tmpsets/set/mod008-pointer/right/options.rb +13 -0
- data/tmpsets/set/mod008-pointer/self/input_options.rb +22 -0
- data/tmpsets/set/mod008-pointer/self/script_editors.rb +10 -0
- data/tmpsets/set/mod008-pointer/self/script_libraries.rb +10 -0
- data/tmpsets/set/mod008-pointer/self/script_mods.rb +10 -0
- data/tmpsets/set/mod008-pointer/self/script_pointer_config.rb +18 -0
- data/tmpsets/set/mod008-pointer/self/style_libraries.rb +10 -0
- data/tmpsets/set/mod008-pointer/self/style_mods.rb +10 -0
- data/tmpsets/set/mod008-pointer/type/pointer.rb +19 -0
- data/tmpsets/set/mod009-ace_editor/abstract/ace_editor.rb +20 -0
- data/tmpsets/set/mod009-ace_editor/self/script_ace.rb +13 -0
- data/tmpsets/set/mod009-ace_editor/self/script_ace_config.rb +13 -0
- data/tmpsets/set/mod010-prosemirror_editor/abstract/prosemirror_editor.rb +16 -0
- data/tmpsets/set/mod010-prosemirror_editor/self/script_prosemirror.rb +13 -0
- data/tmpsets/set/mod010-prosemirror_editor/self/script_prosemirror_config.rb +14 -0
- data/tmpsets/set/mod010-prosemirror_editor/self/style_prosemirror.rb +12 -0
- data/tmpsets/set/mod011-tinymce_editor/abstract/tinymce_editor.rb +15 -0
- data/tmpsets/set/mod011-tinymce_editor/self/script_tinymce.rb +13 -0
- data/tmpsets/set/mod011-tinymce_editor/self/script_tinymce_config.rb +13 -0
- data/tmpsets/set/{mod009-solid_cache → mod012-solid_cache}/abstract/solid_cache.rb +47 -38
- data/tmpsets/set/mod012-solid_cache/all/solid_cache.rb +23 -0
- data/tmpsets/set/mod012-solid_cache/right/solid_cache.rb +57 -0
- data/tmpsets/set/mod013-basic_types/type/html.rb +32 -0
- data/tmpsets/set/mod013-basic_types/type/json.rb +40 -0
- data/tmpsets/set/mod013-basic_types/type/plain_text.rb +18 -0
- data/tmpsets/set/mod014-machines/abstract/machine.rb +202 -0
- data/tmpsets/set/mod014-machines/abstract/machine/output_cache.rb +25 -0
- data/tmpsets/set/mod014-machines/abstract/machine/output_update.rb +68 -0
- data/tmpsets/set/{mod011-machines → mod014-machines}/abstract/machine_input.rb +11 -13
- data/tmpsets/set/mod014-machines/abstract/script.rb +93 -0
- data/tmpsets/set/mod014-machines/abstract/skin_box.rb +42 -0
- data/tmpsets/set/mod014-machines/all/reset_machines.rb +31 -0
- data/tmpsets/set/mod014-machines/right/machine_cache.rb +14 -0
- data/tmpsets/set/mod014-machines/right/machine_input.rb +16 -0
- data/tmpsets/set/{mod011-machines → mod014-machines}/right/machine_output.rb +14 -8
- data/tmpsets/set/mod014-machines/self/script_decko.rb +20 -0
- data/tmpsets/set/mod014-machines/self/script_html5shiv_printshiv.rb +20 -0
- data/tmpsets/set/mod014-machines/self/script_jquery.rb +19 -0
- data/tmpsets/set/mod014-machines/self/script_jquery_helper.rb +23 -0
- data/tmpsets/set/mod014-machines/self/style_bootstrap_compatible.rb +10 -0
- data/tmpsets/set/mod014-machines/self/style_cards.rb +10 -0
- data/tmpsets/set/mod014-machines/self/style_jquery_ui_smoothness.rb +10 -0
- data/tmpsets/set/mod014-machines/type/coffee_script.rb +34 -0
- data/tmpsets/set/mod014-machines/type/css.rb +94 -0
- data/tmpsets/set/mod014-machines/type/java_script.rb +18 -0
- data/tmpsets/set/mod014-machines/type/scss.rb +30 -0
- data/tmpsets/set/mod014-machines/type/skin.rb +18 -0
- data/tmpsets/set/mod015-settings/abstract/permission.rb +127 -0
- data/tmpsets/set/mod015-settings/abstract/templated_nests.rb +16 -0
- data/tmpsets/set/mod015-settings/right/add_help.rb +10 -0
- data/tmpsets/set/mod015-settings/right/autoname.rb +12 -0
- data/tmpsets/set/mod015-settings/right/comment.rb +10 -0
- data/tmpsets/set/mod015-settings/right/create.rb +10 -0
- data/tmpsets/set/mod015-settings/right/default.rb +27 -0
- data/tmpsets/set/mod015-settings/right/delete.rb +10 -0
- data/tmpsets/set/mod015-settings/right/help.rb +23 -0
- data/tmpsets/set/{mod002-core/all/update_read_rules.rb → mod015-settings/right/read.rb} +43 -56
- data/tmpsets/set/mod015-settings/right/script.rb +22 -0
- data/tmpsets/set/mod015-settings/right/structure.rb +75 -0
- data/tmpsets/set/mod015-settings/right/style.rb +65 -0
- data/tmpsets/set/mod015-settings/right/update.rb +10 -0
- data/tmpsets/set/mod015-settings/self/accountable.rb +12 -0
- data/tmpsets/set/mod015-settings/self/add_help.rb +11 -0
- data/tmpsets/set/mod015-settings/self/autoname.rb +11 -0
- data/tmpsets/set/mod015-settings/self/captcha.rb +11 -0
- data/tmpsets/set/mod015-settings/self/create.rb +12 -0
- data/tmpsets/set/mod015-settings/self/csv_structure.rb +11 -0
- data/tmpsets/set/mod015-settings/self/default.rb +12 -0
- data/tmpsets/set/mod015-settings/self/default_html_view.rb +11 -0
- data/tmpsets/set/mod015-settings/self/delete.rb +12 -0
- data/tmpsets/set/mod015-settings/self/follow_fields.rb +11 -0
- data/tmpsets/set/mod015-settings/self/head.rb +11 -0
- data/tmpsets/set/mod015-settings/self/help.rb +12 -0
- data/tmpsets/set/mod015-settings/self/input.rb +12 -0
- data/tmpsets/set/mod015-settings/self/layout.rb +11 -0
- data/tmpsets/set/mod015-settings/self/on_create.rb +11 -0
- data/tmpsets/set/mod015-settings/self/on_delete.rb +11 -0
- data/tmpsets/set/mod015-settings/self/on_update.rb +11 -0
- data/tmpsets/set/mod015-settings/self/options.rb +13 -0
- data/tmpsets/set/mod015-settings/self/options_label.rb +13 -0
- data/tmpsets/set/mod015-settings/self/read.rb +12 -0
- data/tmpsets/set/mod015-settings/self/recent_settings.rb +16 -0
- data/tmpsets/set/mod015-settings/self/script.rb +11 -0
- data/tmpsets/set/mod015-settings/self/structure.rb +12 -0
- data/tmpsets/set/mod015-settings/self/style.rb +11 -0
- data/tmpsets/set/mod015-settings/self/table_of_contents.rb +11 -0
- data/tmpsets/set/mod015-settings/self/thanks.rb +12 -0
- data/tmpsets/set/mod015-settings/self/update.rb +12 -0
- data/tmpsets/set/{mod012-settings → mod015-settings}/type/setting.rb +33 -36
- data/tmpsets/set/mod016-email/abstract/email_field.rb +50 -0
- data/tmpsets/set/mod016-email/abstract/test_context.rb +35 -0
- data/tmpsets/set/mod016-email/all/email_html.rb +18 -0
- data/tmpsets/set/mod016-email/all/email_text.rb +23 -0
- data/tmpsets/set/mod016-email/right/bcc.rb +10 -0
- data/tmpsets/set/mod016-email/right/cc.rb +10 -0
- data/tmpsets/set/mod016-email/right/from.rb +10 -0
- data/tmpsets/set/mod016-email/right/html_message.rb +22 -0
- data/tmpsets/set/mod016-email/right/subject.rb +10 -0
- data/tmpsets/set/mod016-email/right/text_message.rb +10 -0
- data/tmpsets/set/mod016-email/right/to.rb +10 -0
- data/tmpsets/set/mod016-email/type/email_template.rb +100 -0
- data/tmpsets/set/mod016-email/type/email_template/email_config.rb +90 -0
- data/tmpsets/set/mod017-follow/abstract/follow_option.rb +65 -0
- data/tmpsets/set/mod017-follow/all/follow.rb +42 -0
- data/tmpsets/set/mod017-follow/all/follow/follow_link.rb +69 -0
- data/tmpsets/set/mod017-follow/all/follow/follow_link_views.rb +38 -0
- data/tmpsets/set/mod017-follow/all/follow/followed_by.rb +80 -0
- data/tmpsets/set/mod017-follow/all/follow/follower_ids.rb +118 -0
- data/tmpsets/set/mod017-follow/all/follow/start_follow_link.rb +19 -0
- data/tmpsets/set/mod017-follow/all/follow/stop_follow_link.rb +20 -0
- data/tmpsets/set/mod017-follow/all/notify.rb +93 -0
- data/tmpsets/set/mod017-follow/all/notify/base_views.rb +139 -0
- data/tmpsets/set/mod017-follow/all/notify/html_views.rb +26 -0
- data/tmpsets/set/mod017-follow/right/account.rb +22 -0
- data/tmpsets/set/mod017-follow/right/follow.rb +127 -0
- data/tmpsets/set/mod017-follow/right/follow_fields.rb +12 -0
- data/tmpsets/set/mod017-follow/right/followers.rb +35 -0
- data/tmpsets/set/mod017-follow/right/following.rb +59 -0
- data/tmpsets/set/mod017-follow/self/always.rb +22 -0
- data/tmpsets/set/mod017-follow/self/created.rb +28 -0
- data/tmpsets/set/{mod013-email → mod017-follow}/self/edited.rb +8 -6
- data/tmpsets/set/mod017-follow/self/follow.rb +11 -0
- data/tmpsets/set/mod017-follow/self/follow_defaults.rb +97 -0
- data/tmpsets/set/mod017-follow/self/never.rb +22 -0
- data/tmpsets/set/mod017-follow/type/cardtype.rb +24 -0
- data/tmpsets/set/mod017-follow/type/set.rb +62 -0
- data/tmpsets/set/mod017-follow/type/user.rb +16 -0
- data/tmpsets/set/mod017-follow/type_plus_right/user/follow.rb +89 -0
- data/tmpsets/set/mod017-follow/type_plus_right/user/follow/follow_editor_helper.rb +130 -0
- data/tmpsets/set/{mod014-developer → mod018-developer}/all/event_viz.rb +10 -9
- data/tmpsets/set/{mod014-developer → mod018-developer}/all/view_viz.rb +8 -6
- data/tmpsets/set/{mod014-developer → mod018-developer}/right/debug.rb +12 -10
- data/tmpsets/set/{mod015-carrierwave → mod019-carrierwave}/abstract/attachment.rb +27 -21
- data/tmpsets/set/mod019-carrierwave/abstract/attachment/paths.rb +67 -0
- data/tmpsets/set/{mod015-carrierwave → mod019-carrierwave}/abstract/attachment/storage_type.rb +64 -40
- data/tmpsets/set/{mod015-carrierwave → mod019-carrierwave}/abstract/attachment/upload_cache.rb +28 -17
- data/tmpsets/set/{mod015-carrierwave → mod019-carrierwave}/all/file_utils.rb +18 -7
- data/tmpsets/set/{mod015-carrierwave → mod019-carrierwave}/self/admin.rb +10 -8
- data/tmpsets/set/mod019-carrierwave/self/favicon.rb +20 -0
- data/tmpsets/set/mod019-carrierwave/self/new_file.rb +22 -0
- data/tmpsets/set/mod019-carrierwave/self/new_image.rb +22 -0
- data/tmpsets/set/mod019-carrierwave/type/file.rb +123 -0
- data/tmpsets/set/mod019-carrierwave/type/image.rb +182 -0
- data/tmpsets/set/mod020-search/abstract/00_filter_helper.rb +66 -0
- data/tmpsets/set/mod020-search/abstract/01_filter_form_helper.rb +125 -0
- data/tmpsets/set/mod020-search/abstract/02_search_params.rb +67 -0
- data/tmpsets/set/mod020-search/abstract/03_filter.rb +140 -0
- data/tmpsets/set/mod020-search/abstract/04_right_filter_form.rb +31 -0
- data/tmpsets/set/mod020-search/abstract/search.rb +92 -0
- data/tmpsets/set/mod020-search/abstract/search/views.rb +168 -0
- data/tmpsets/set/mod020-search/abstract/wql_search.rb +120 -0
- data/tmpsets/set/mod020-search/self/navbox.rb +41 -0
- data/tmpsets/set/mod020-search/self/recent.rb +44 -0
- data/tmpsets/set/mod020-search/self/search.rb +103 -0
- data/tmpsets/set/mod020-search/type/search_type.rb +88 -0
- data/tmpsets/set/mod021-standard/all/comment.rb +88 -0
- data/tmpsets/set/mod021-standard/all/error.rb +85 -0
- data/tmpsets/set/mod021-standard/all/links.rb +158 -0
- data/tmpsets/set/{mod016-standard → mod021-standard}/all/list_changes.rb +15 -9
- data/tmpsets/set/mod021-standard/all/path.rb +185 -0
- data/tmpsets/set/mod021-standard/all/rich_html.rb +13 -0
- data/tmpsets/set/mod021-standard/all/rich_html/alert.rb +32 -0
- data/tmpsets/set/mod021-standard/all/rich_html/content.rb +144 -0
- data/tmpsets/set/mod021-standard/all/rich_html/error.rb +211 -0
- data/tmpsets/set/mod021-standard/all/rich_html/frame.rb +62 -0
- data/tmpsets/set/mod021-standard/all/rich_html/header.rb +78 -0
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/help.rb +36 -0
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/info.rb +93 -0
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/size.rb +26 -0
- data/tmpsets/set/mod021-standard/all/rich_html/menu.rb +75 -0
- data/tmpsets/set/mod021-standard/all/rich_html/modal.rb +128 -0
- data/tmpsets/set/mod021-standard/all/rich_html/overlay.rb +91 -0
- data/tmpsets/set/mod021-standard/all/rich_html/process_layout.rb +80 -0
- data/tmpsets/set/mod021-standard/all/rich_html/show.rb +46 -0
- data/tmpsets/set/mod021-standard/all/rich_html/title.rb +56 -0
- data/tmpsets/set/mod021-standard/all/rich_html/wrapper.rb +156 -0
- data/tmpsets/set/mod021-standard/right/discussion.rb +12 -0
- data/tmpsets/set/mod021-standard/right/head.rb +22 -0
- data/tmpsets/set/mod021-standard/right/when_created.rb +15 -0
- data/tmpsets/set/mod021-standard/right/when_last_edited.rb +15 -0
- data/tmpsets/set/mod021-standard/self/alerts.rb +14 -0
- data/tmpsets/set/mod021-standard/self/codenames.rb +10 -0
- data/tmpsets/set/mod021-standard/self/foot.rb +15 -0
- data/tmpsets/set/mod021-standard/self/home.rb +18 -0
- data/tmpsets/set/mod021-standard/self/now.rb +15 -0
- data/tmpsets/set/{mod016-standard → mod021-standard}/type/basic.rb +37 -24
- data/tmpsets/set/mod021-standard/type/cardtype.rb +104 -0
- data/tmpsets/set/mod021-standard/type/layout_type.rb +25 -0
- data/{mod/standard/set → tmpsets/set/mod021-standard}/type/list.rb +9 -0
- data/{mod/standard/set → tmpsets/set/mod021-standard}/type/listed_by.rb +9 -0
- data/tmpsets/set/mod021-standard/type/notification_template.rb +42 -0
- data/tmpsets/set/mod021-standard/type/number.rb +31 -0
- data/tmpsets/set/mod021-standard/type/phrase.rb +14 -0
- data/tmpsets/set/mod021-standard/type/session.rb +42 -0
- data/tmpsets/set/mod021-standard/type/toggle.rb +39 -0
- data/tmpsets/set/mod021-standard/type/uri.rb +24 -0
- data/tmpsets/set/mod022-rules/rstar/rule_user.rb +17 -0
- data/tmpsets/set/mod022-rules/rule/bridge_rules_editor.rb +42 -0
- data/tmpsets/set/mod022-rules/rule/editor.rb +193 -0
- data/tmpsets/set/mod022-rules/rule/rule_form.rb +66 -0
- data/tmpsets/set/mod022-rules/rule/rule_form/buttons.rb +53 -0
- data/tmpsets/set/mod022-rules/rule/rule_form/form_elements.rb +61 -0
- data/tmpsets/set/mod022-rules/rule/rule_form/rule_set_radio.rb +94 -0
- data/tmpsets/set/mod022-rules/rule/rule_form/set_selection.rb +55 -0
- data/tmpsets/set/mod022-rules/rule/rules.rb +93 -0
- data/tmpsets/set/mod022-rules/rule/table.rb +36 -0
- data/tmpsets/set/mod022-rules/rule/table_row.rb +72 -0
- data/tmpsets/set/mod022-rules/self/script_rules.rb +12 -0
- data/tmpsets/set/mod022-rules/type/set.rb +91 -0
- data/tmpsets/set/mod022-rules/type/set/html_views.rb +78 -0
- data/tmpsets/set/mod022-rules/type/set/html_views/nest_rules.rb +23 -0
- data/tmpsets/set/mod022-rules/type/set/html_views/rules_bridge.rb +30 -0
- data/tmpsets/set/mod022-rules/type/set/html_views/template.rb +52 -0
- data/tmpsets/set/mod022-rules/type/set/rules_filter.rb +55 -0
- data/tmpsets/set/mod022-rules/type/set/setting_lists.rb +92 -0
- data/tmpsets/set/mod023-edit/all/bridge.rb +72 -0
- data/tmpsets/set/mod023-edit/all/bridge/follow_section.rb +46 -0
- data/tmpsets/set/mod023-edit/all/bridge/tab_views.rb +84 -0
- data/tmpsets/set/mod023-edit/all/bridge/tab_visibility.rb +60 -0
- data/tmpsets/set/mod023-edit/all/edit_content.rb +73 -0
- data/tmpsets/set/mod023-edit/all/edit_inline.rb +57 -0
- data/tmpsets/set/mod023-edit/all/edit_name.rb +101 -0
- data/tmpsets/set/mod023-edit/all/edit_type.rb +37 -0
- data/tmpsets/set/mod023-edit/all/editing.rb +96 -0
- data/tmpsets/set/mod023-edit/all/editor.rb +56 -0
- data/tmpsets/set/mod023-edit/all/form.rb +264 -0
- data/tmpsets/set/mod023-edit/all/form_buttons.rb +64 -0
- data/tmpsets/set/mod023-edit/all/form_elements.rb +79 -0
- data/tmpsets/set/mod023-edit/all/formgroup.rb +46 -0
- data/tmpsets/set/mod023-edit/all/nest_editor.rb +115 -0
- data/tmpsets/set/mod023-edit/all/nest_editor/nest_parser.rb +71 -0
- data/tmpsets/set/mod023-edit/all/nest_image.rb +46 -0
- data/tmpsets/set/mod023-edit/all/new.rb +135 -0
- data/tmpsets/set/mod024-date/all/calendar.rb +18 -0
- data/tmpsets/set/mod024-date/self/script_datepicker.rb +16 -0
- data/tmpsets/set/mod024-date/self/script_datepicker_config.rb +13 -0
- data/tmpsets/set/mod024-date/self/style_datepicker.rb +20 -0
- data/tmpsets/set/mod024-date/type/date.rb +14 -0
- data/tmpsets/set/{mod017-account → mod025-account}/all/account.rb +18 -12
- data/tmpsets/set/mod025-account/right/account.rb +199 -0
- data/tmpsets/set/mod025-account/right/email.rb +50 -0
- data/tmpsets/set/{mod017-account → mod025-account}/right/password.rb +29 -20
- data/tmpsets/set/mod025-account/right/salt.rb +18 -0
- data/tmpsets/set/mod025-account/right/status.rb +18 -0
- data/tmpsets/set/mod025-account/right/token.rb +63 -0
- data/{mod/account/set → tmpsets/set/mod025-account}/self/account_links.rb +29 -5
- data/tmpsets/set/mod025-account/self/signin.rb +188 -0
- data/tmpsets/set/mod025-account/type/signup.rb +191 -0
- data/tmpsets/set/mod025-account/type/user.rb +88 -0
- data/tmpsets/set/mod025-account/type_plus_right/user/email.rb +22 -0
- data/tmpsets/set/mod026-bootstrap/abstract/bootstrap_code_file.rb +62 -0
- data/tmpsets/set/mod026-bootstrap/abstract/bootswatch_theme.rb +165 -0
- data/tmpsets/set/mod026-bootstrap/abstract/bootswatch_theme/html_views.rb +39 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/accordion.rb +72 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/dropdown.rb +96 -0
- data/tmpsets/set/{mod018-bootstrap → mod026-bootstrap}/all/bootstrap/form.rb +11 -9
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/helper.rb +57 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/icon.rb +118 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/navbar.rb +75 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/table.rb +100 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/tabs.rb +140 -0
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/wrapper.rb +28 -0
- data/tmpsets/set/mod026-bootstrap/all/rich_bootstrap.rb +17 -0
- data/tmpsets/set/mod026-bootstrap/self/bootstrap_core.rb +22 -0
- data/tmpsets/set/mod026-bootstrap/self/bootstrap_functions.rb +14 -0
- data/tmpsets/set/mod026-bootstrap/self/font_awesome.rb +11 -0
- data/tmpsets/set/mod026-bootstrap/self/material_icons.rb +11 -0
- data/tmpsets/set/mod026-bootstrap/self/script_bootstrap.rb +21 -0
- data/tmpsets/set/mod026-bootstrap/self/script_load_select2.rb +11 -0
- data/tmpsets/set/mod026-bootstrap/self/script_select2.rb +21 -0
- data/tmpsets/set/mod026-bootstrap/self/smartmenu_css.rb +14 -0
- data/tmpsets/set/mod026-bootstrap/self/smartmenu_js.rb +14 -0
- data/tmpsets/set/mod026-bootstrap/self/style_bootstrap_cards.rb +10 -0
- data/tmpsets/set/mod026-bootstrap/self/style_bootstrap_colorpicker.rb +15 -0
- data/tmpsets/set/mod026-bootstrap/self/style_select2.rb +19 -0
- data/tmpsets/set/mod026-bootstrap/self/style_select2_bootstrap.rb +10 -0
- data/tmpsets/set/mod026-bootstrap/type/bootswatch_skin.rb +24 -0
- data/tmpsets/set/mod026-bootstrap/type/customized_bootswatch_skin.rb +130 -0
- data/tmpsets/set/mod026-bootstrap/type/customized_bootswatch_skin/html_views.rb +46 -0
- data/tmpsets/set/mod026-bootstrap/type_plus_right/customized_bootswatch_skin/colors.rb +122 -0
- data/tmpsets/set/mod027-google_analytics/all/google_analytics.rb +48 -0
- data/tmpsets/set/mod028-recaptcha/all/recaptcha.rb +116 -0
- data/tmpsets/set_pattern/100-all.rb +11 -13
- data/tmpsets/set_pattern/101-all_plus.rb +11 -13
- data/tmpsets/set_pattern/102-type.rb +12 -14
- data/tmpsets/set_pattern/103-star.rb +13 -15
- data/tmpsets/set_pattern/104-rstar.rb +13 -15
- data/tmpsets/set_pattern/105-rule.rb +28 -0
- data/tmpsets/set_pattern/106-right.rb +31 -0
- data/tmpsets/set_pattern/107-type_plus_right.rb +40 -0
- data/tmpsets/set_pattern/108-self.rb +30 -0
- metadata +533 -262
- data/lib/card/format/permission.rb +0 -83
- data/lib/card/set/format/wrapper.rb +0 -89
- data/lib/card/view/cache_action.rb +0 -140
- data/lib/card/view/stub.rb +0 -46
- data/lib/card/view/visibility.rb +0 -98
- data/lib/card/view/wrapper.rb +0 -28
- data/mod/machines/lib/javascript/decko.js.coffee +0 -209
- data/mod/machines/lib/javascript/script_card_menu.js.coffee +0 -3
- data/mod/machines/set/self/script_card_menu.rb +0 -1
- data/mod/machines/set/self/script_slot.rb +0 -10
- data/mod/search/template/abstract/03_filter/_filter_input.haml +0 -8
- data/mod/search/template/abstract/03_filter/filter_form.haml +0 -44
- data/tmpsets/set/mod001-admin/self/version.rb +0 -15
- data/tmpsets/set/mod002-core/abstract/code_file.rb +0 -79
- data/tmpsets/set/mod002-core/all/collection.rb +0 -313
- data/tmpsets/set/mod002-core/all/content.rb +0 -69
- data/tmpsets/set/mod002-core/all/erb.rb +0 -18
- data/tmpsets/set/mod002-core/all/event.rb +0 -62
- data/tmpsets/set/mod002-core/all/export.rb +0 -49
- data/tmpsets/set/mod002-core/all/fetch.rb +0 -335
- data/tmpsets/set/mod002-core/all/haml.rb +0 -14
- data/tmpsets/set/mod002-core/all/initialize.rb +0 -42
- data/tmpsets/set/mod002-core/all/location_history.rb +0 -15
- data/tmpsets/set/mod002-core/all/name.rb +0 -282
- data/tmpsets/set/mod002-core/all/name_validations.rb +0 -65
- data/tmpsets/set/mod002-core/all/phases.rb +0 -23
- data/tmpsets/set/mod002-core/all/stages.rb +0 -31
- data/tmpsets/set/mod002-core/all/states.rb +0 -31
- data/tmpsets/set/mod002-core/all/tracked_attributes.rb +0 -78
- data/tmpsets/set/mod002-core/all/trash.rb +0 -113
- data/tmpsets/set/mod002-core/all/utils.rb +0 -62
- data/tmpsets/set/mod002-core/all/view_cache.rb +0 -16
- data/tmpsets/set/mod003-history/all/actions.rb +0 -60
- data/tmpsets/set/mod003-history/all/content_history.rb +0 -168
- data/tmpsets/set/mod003-history/all/history.rb +0 -408
- data/tmpsets/set/mod004-basic_formats/all/all_css.rb +0 -45
- data/tmpsets/set/mod004-basic_formats/all/all_csv.rb +0 -56
- data/tmpsets/set/mod004-basic_formats/all/all_js.rb +0 -13
- data/tmpsets/set/mod004-basic_formats/all/base.rb +0 -155
- data/tmpsets/set/mod004-basic_formats/all/file.rb +0 -16
- data/tmpsets/set/mod004-basic_formats/all/json.rb +0 -76
- data/tmpsets/set/mod004-basic_formats/all/rss.rb +0 -77
- data/tmpsets/set/mod004-basic_formats/all/text.rb +0 -13
- data/tmpsets/set/mod004-basic_formats/self/01_head/javascript.rb +0 -79
- data/tmpsets/set/mod004-basic_formats/self/head.rb +0 -101
- data/tmpsets/set/mod005-pointer/abstract/01_pointer.rb +0 -193
- data/tmpsets/set/mod005-pointer/abstract/01_pointer/edit.rb +0 -224
- data/tmpsets/set/mod005-pointer/abstract/code_pointer.rb +0 -16
- data/tmpsets/set/mod005-pointer/self/script_editors.rb +0 -8
- data/tmpsets/set/mod005-pointer/self/script_mods.rb +0 -8
- data/tmpsets/set/mod005-pointer/self/script_pointer_config.rb +0 -10
- data/tmpsets/set/mod005-pointer/type/pointer.rb +0 -8
- data/tmpsets/set/mod006-ace_editor/abstract/ace_editor.rb +0 -18
- data/tmpsets/set/mod006-ace_editor/self/script_ace.rb +0 -10
- data/tmpsets/set/mod006-ace_editor/self/script_ace_config.rb +0 -12
- data/tmpsets/set/mod007-prosemirror_editor/abstract/prosemirror_editor.rb +0 -14
- data/tmpsets/set/mod007-prosemirror_editor/self/script_prosemirror.rb +0 -10
- data/tmpsets/set/mod007-prosemirror_editor/self/script_prosemirror_config.rb +0 -13
- data/tmpsets/set/mod009-solid_cache/all/solid_cache.rb +0 -21
- data/tmpsets/set/mod009-solid_cache/right/solid_cache.rb +0 -39
- data/tmpsets/set/mod010-basic_types/type/html.rb +0 -26
- data/tmpsets/set/mod010-basic_types/type/plain_text.rb +0 -19
- data/tmpsets/set/mod011-machines/abstract/machine.rb +0 -277
- data/tmpsets/set/mod011-machines/abstract/script.rb +0 -49
- data/tmpsets/set/mod011-machines/all/reset_machines.rb +0 -19
- data/tmpsets/set/mod011-machines/right/machine_cache.rb +0 -18
- data/tmpsets/set/mod011-machines/right/machine_input.rb +0 -10
- data/tmpsets/set/mod011-machines/self/script_card_menu.rb +0 -8
- data/tmpsets/set/mod011-machines/self/script_html5shiv_printshiv.rb +0 -8
- data/tmpsets/set/mod011-machines/self/script_jquery.rb +0 -8
- data/tmpsets/set/mod011-machines/self/script_jquery_helper.rb +0 -16
- data/tmpsets/set/mod011-machines/self/script_slot.rb +0 -14
- data/tmpsets/set/mod011-machines/self/style_bootstrap_compatible.rb +0 -8
- data/tmpsets/set/mod011-machines/self/style_cards.rb +0 -8
- data/tmpsets/set/mod011-machines/self/style_jquery_ui_smoothness.rb +0 -8
- data/tmpsets/set/mod011-machines/type/coffee_script.rb +0 -43
- data/tmpsets/set/mod011-machines/type/css.rb +0 -67
- data/tmpsets/set/mod011-machines/type/java_script.rb +0 -36
- data/tmpsets/set/mod011-machines/type/scss.rb +0 -21
- data/tmpsets/set/mod011-machines/type/skin.rb +0 -13
- data/tmpsets/set/mod012-settings/abstract/permission.rb +0 -119
- data/tmpsets/set/mod012-settings/right/add_help.rb +0 -18
- data/tmpsets/set/mod012-settings/right/comment.rb +0 -8
- data/tmpsets/set/mod012-settings/right/create.rb +0 -8
- data/tmpsets/set/mod012-settings/right/default.rb +0 -14
- data/tmpsets/set/mod012-settings/right/delete.rb +0 -8
- data/tmpsets/set/mod012-settings/right/help.rb +0 -10
- data/tmpsets/set/mod012-settings/right/read.rb +0 -10
- data/tmpsets/set/mod012-settings/right/script.rb +0 -16
- data/tmpsets/set/mod012-settings/right/structure.rb +0 -68
- data/tmpsets/set/mod012-settings/right/style.rb +0 -17
- data/tmpsets/set/mod012-settings/right/update.rb +0 -8
- data/tmpsets/set/mod012-settings/self/accountable.rb +0 -10
- data/tmpsets/set/mod012-settings/self/add_help.rb +0 -9
- data/tmpsets/set/mod012-settings/self/autoname.rb +0 -9
- data/tmpsets/set/mod012-settings/self/captcha.rb +0 -9
- data/tmpsets/set/mod012-settings/self/create.rb +0 -9
- data/tmpsets/set/mod012-settings/self/default.rb +0 -9
- data/tmpsets/set/mod012-settings/self/default_html_view.rb +0 -9
- data/tmpsets/set/mod012-settings/self/delete.rb +0 -9
- data/tmpsets/set/mod012-settings/self/follow_fields.rb +0 -9
- data/tmpsets/set/mod012-settings/self/help.rb +0 -9
- data/tmpsets/set/mod012-settings/self/input.rb +0 -11
- data/tmpsets/set/mod012-settings/self/layout.rb +0 -9
- data/tmpsets/set/mod012-settings/self/on_create.rb +0 -9
- data/tmpsets/set/mod012-settings/self/on_delete.rb +0 -9
- data/tmpsets/set/mod012-settings/self/on_update.rb +0 -9
- data/tmpsets/set/mod012-settings/self/options.rb +0 -11
- data/tmpsets/set/mod012-settings/self/options_label.rb +0 -11
- data/tmpsets/set/mod012-settings/self/read.rb +0 -9
- data/tmpsets/set/mod012-settings/self/recent_settings.rb +0 -10
- data/tmpsets/set/mod012-settings/self/script.rb +0 -9
- data/tmpsets/set/mod012-settings/self/structure.rb +0 -9
- data/tmpsets/set/mod012-settings/self/style.rb +0 -9
- data/tmpsets/set/mod012-settings/self/table_of_contents.rb +0 -9
- data/tmpsets/set/mod012-settings/self/thanks.rb +0 -9
- data/tmpsets/set/mod012-settings/self/update.rb +0 -9
- data/tmpsets/set/mod013-email/all/email_html.rb +0 -11
- data/tmpsets/set/mod013-email/all/email_text.rb +0 -12
- data/tmpsets/set/mod013-email/all/follow.rb +0 -253
- data/tmpsets/set/mod013-email/all/notify.rb +0 -271
- data/tmpsets/set/mod013-email/all/observer.rb +0 -33
- data/tmpsets/set/mod013-email/right/bcc.rb +0 -47
- data/tmpsets/set/mod013-email/right/cc.rb +0 -10
- data/tmpsets/set/mod013-email/right/follow.rb +0 -106
- data/tmpsets/set/mod013-email/right/follow_fields.rb +0 -10
- data/tmpsets/set/mod013-email/right/followers.rb +0 -41
- data/tmpsets/set/mod013-email/right/following.rb +0 -65
- data/tmpsets/set/mod013-email/right/from.rb +0 -10
- data/tmpsets/set/mod013-email/right/html_message.rb +0 -10
- data/tmpsets/set/mod013-email/right/to.rb +0 -10
- data/tmpsets/set/mod013-email/self/always.rb +0 -20
- data/tmpsets/set/mod013-email/self/created.rb +0 -26
- data/tmpsets/set/mod013-email/self/follow.rb +0 -9
- data/tmpsets/set/mod013-email/self/follow_defaults.rb +0 -75
- data/tmpsets/set/mod013-email/self/never.rb +0 -20
- data/tmpsets/set/mod013-email/type/email_template.rb +0 -133
- data/tmpsets/set/mod013-email/type_plus_right/user/follow.rb +0 -180
- data/tmpsets/set/mod015-carrierwave/abstract/attachment/paths.rb +0 -57
- data/tmpsets/set/mod015-carrierwave/type/file.rb +0 -158
- data/tmpsets/set/mod015-carrierwave/type/image.rb +0 -97
- data/tmpsets/set/mod016-standard/all/comment.rb +0 -67
- data/tmpsets/set/mod016-standard/all/error.rb +0 -229
- data/tmpsets/set/mod016-standard/all/links.rb +0 -165
- data/tmpsets/set/mod016-standard/all/rich_html/content.rb +0 -261
- data/tmpsets/set/mod016-standard/all/rich_html/editing.rb +0 -247
- data/tmpsets/set/mod016-standard/all/rich_html/form.rb +0 -298
- data/tmpsets/set/mod016-standard/all/rich_html/header.rb +0 -78
- data/tmpsets/set/mod016-standard/all/rich_html/menu.rb +0 -154
- data/tmpsets/set/mod016-standard/all/rich_html/modal.rb +0 -58
- data/tmpsets/set/mod016-standard/all/rich_html/toolbar.rb +0 -312
- data/tmpsets/set/mod016-standard/all/rich_html/wrapper.rb +0 -191
- data/tmpsets/set/mod016-standard/right/discussion.rb +0 -10
- data/tmpsets/set/mod016-standard/right/when_created.rb +0 -14
- data/tmpsets/set/mod016-standard/right/when_last_edited.rb +0 -14
- data/tmpsets/set/mod016-standard/rstar/rules.rb +0 -107
- data/tmpsets/set/mod016-standard/rstar/rules_editor.rb +0 -371
- data/tmpsets/set/mod016-standard/self/alerts.rb +0 -12
- data/tmpsets/set/mod016-standard/self/codenames.rb +0 -7
- data/tmpsets/set/mod016-standard/self/foot.rb +0 -15
- data/tmpsets/set/mod016-standard/self/navbox.rb +0 -36
- data/tmpsets/set/mod016-standard/self/now.rb +0 -14
- data/tmpsets/set/mod016-standard/self/recent.rb +0 -34
- data/tmpsets/set/mod016-standard/self/search.rb +0 -71
- data/tmpsets/set/mod016-standard/type/cardtype.rb +0 -81
- data/tmpsets/set/mod016-standard/type/date.rb +0 -15
- data/tmpsets/set/mod016-standard/type/layout_type.rb +0 -17
- data/tmpsets/set/mod016-standard/type/listed_by.rb +0 -85
- data/tmpsets/set/mod016-standard/type/number.rb +0 -25
- data/tmpsets/set/mod016-standard/type/phrase.rb +0 -10
- data/tmpsets/set/mod016-standard/type/search_type.rb +0 -339
- data/tmpsets/set/mod016-standard/type/session.rb +0 -42
- data/tmpsets/set/mod016-standard/type/set.rb +0 -371
- data/tmpsets/set/mod016-standard/type/toggle.rb +0 -19
- data/tmpsets/set/mod016-standard/type/uri.rb +0 -18
- data/tmpsets/set/mod017-account/right/account.rb +0 -196
- data/tmpsets/set/mod017-account/right/email.rb +0 -61
- data/tmpsets/set/mod017-account/right/salt.rb +0 -12
- data/tmpsets/set/mod017-account/right/status.rb +0 -16
- data/tmpsets/set/mod017-account/right/token.rb +0 -57
- data/tmpsets/set/mod017-account/self/account_links.rb +0 -72
- data/tmpsets/set/mod017-account/self/signin.rb +0 -165
- data/tmpsets/set/mod017-account/type/signup.rb +0 -175
- data/tmpsets/set/mod017-account/type/user.rb +0 -88
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/helper.rb +0 -236
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/table.rb +0 -68
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/tabs.rb +0 -88
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/wrapper.rb +0 -18
- data/tmpsets/set/mod018-bootstrap/all/rich_bootstrap.rb +0 -13
- data/tmpsets/set/mod018-bootstrap/self/bootstrap_cards.rb +0 -8
- data/tmpsets/set/mod018-bootstrap/self/bootstrap_js.rb +0 -12
- data/tmpsets/set/mod018-bootstrap/self/bootswatch_shared.rb +0 -47
- data/tmpsets/set/mod018-bootstrap/self/script_mods.rb +0 -7
- data/tmpsets/set/mod018-bootstrap/self/smartmenu_css.rb +0 -12
- data/tmpsets/set/mod018-bootstrap/self/smartmenu_js.rb +0 -12
- data/tmpsets/set_pattern/105-right.rb +0 -33
- data/tmpsets/set_pattern/106-type_plus_right.rb +0 -39
- data/tmpsets/set_pattern/107-self.rb +0 -32
@@ -9,4 +9,4 @@
|
|
9
9
|
* Copyright 2011-2019 The Bootstrap Authors
|
10
10
|
* Copyright 2011-2019 Twitter, Inc.
|
11
11
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
12
|
-
*/@import url("https://fonts.googleapis.com/css?family=Neucha|Cabin+Sketch");:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #868e96;--gray-dark: #333;--primary: #333;--secondary: #555;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #fff;--dark: #555;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: "Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{-webkit-box-sizing:border-box;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:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;font-size:1rem;font-weight:700;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{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:#333;text-decoration:underline;background-color:transparent}a:hover{color:#0d0d0d;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,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}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-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:0.5rem;font-family:"Cabin Sketch", cursive;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:2px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#333}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:2px solid #dee2e6;border-radius:255px 25px 225px 25px/25px 225px 25px 255px;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#868e96}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #333}.table thead th{vertical-align:bottom;border-bottom:2px solid #333}.table tbody+tbody{border-top:2px solid #333}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #333}.table-bordered th,.table-bordered td{border:1px solid #333}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#ccc}.table-hover tbody tr:hover{color:#212529;background-color:#fff}.table-primary,.table-primary>th,.table-primary>td{background-color:#c6c6c6}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#959595}.table-hover .table-primary:hover{background-color:#b9b9b9}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b9b9b9}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#cfcfcf}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#a7a7a7}.table-hover .table-secondary:hover{background-color:#c2c2c2}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c2c2c2}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:white}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:white}.table-hover .table-light:hover{background-color:#f2f2f2}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#f2f2f2}.table-dark,.table-dark>th,.table-dark>td{background-color:#cfcfcf}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#a7a7a7}.table-hover .table-dark:hover{background-color:#c2c2c2}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#c2c2c2}.table-active,.table-active>th,.table-active>td{background-color:#fff}.table-hover .table-active:hover{background-color:#f2f2f2}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#f2f2f2}.table .thead-dark th{color:#fff;background-color:#333;border-color:#464646}.table .thead-light th{color:#555;background-color:#f7f7f9;border-color:#333}.table-dark{color:#fff;background-color:#333}.table-dark th,.table-dark td,.table-dark thead th{border-color:#464646}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:700;line-height:1.5;color:#555;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px;-webkit-transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#555;background-color:#fff;border-color:#333;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.form-control::-webkit-input-placeholder{color:#868e96;opacity:1}.form-control::-ms-input-placeholder{color:#868e96;opacity:1}.form-control::placeholder{color:#868e96;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#f7f7f9;opacity:1}select.form-control:focus::-ms-value{color:#555;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 2px);padding-bottom:calc(0.375rem + 2px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 2px);padding-bottom:calc(0.5rem + 2px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 2px);padding-bottom:calc(0.25rem + 2px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:0.375rem;padding-bottom:0.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:2px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 4px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.form-control-lg{height:calc(1.5em + 1rem + 4px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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:0.3rem;margin-left:-1.25rem}.form-check-input:disabled ~ .form-check-label{color:#868e96}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .form-control:valid ~ .valid-feedback,.was-validated .form-control:valid ~ .valid-tooltip,.form-control.is-valid ~ .valid-feedback,.form-control.is-valid ~ .valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-select:valid ~ .valid-feedback,.was-validated .custom-select:valid ~ .valid-tooltip,.custom-select.is-valid ~ .valid-feedback,.custom-select.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control-file:valid ~ .valid-feedback,.was-validated .form-control-file:valid ~ .valid-tooltip,.form-control-file.is-valid ~ .valid-feedback,.form-control-file.is-valid ~ .valid-tooltip{display:block}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid ~ .valid-feedback,.was-validated .custom-control-input:valid ~ .valid-tooltip,.custom-control-input.is-valid ~ .valid-feedback,.custom-control-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid ~ .valid-feedback,.was-validated .custom-file-input:valid ~ .valid-tooltip,.custom-file-input.is-valid ~ .valid-feedback,.custom-file-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' 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:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .form-control:invalid ~ .invalid-feedback,.was-validated .form-control:invalid ~ .invalid-tooltip,.form-control.is-invalid ~ .invalid-feedback,.form-control.is-invalid ~ .invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-select:invalid ~ .invalid-feedback,.was-validated .custom-select:invalid ~ .invalid-tooltip,.custom-select.is-invalid ~ .invalid-feedback,.custom-select.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control-file:invalid ~ .invalid-feedback,.was-validated .form-control-file:invalid ~ .invalid-tooltip,.form-control-file.is-invalid ~ .invalid-feedback,.form-control-file.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid ~ .invalid-feedback,.was-validated .custom-control-input:invalid ~ .invalid-tooltip,.custom-control-input.is-invalid ~ .invalid-feedback,.custom-control-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .invalid-feedback,.was-validated .custom-file-input:invalid ~ .invalid-tooltip,.custom-file-input.is-invalid ~ .invalid-feedback,.custom-file-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:2px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:255px 25px 225px 25px/25px 225px 25px 255px;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#333;border-color:#333}.btn-primary:hover{color:#fff;background-color:#202020;border-color:#1a1919}.btn-primary:focus,.btn-primary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5);box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#333;border-color:#333}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#1a1919;border-color:#131313}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5);box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5)}.btn-secondary{color:#fff;background-color:#555;border-color:#555}.btn-secondary:hover{color:#fff;background-color:#424242;border-color:#3c3b3b}.btn-secondary:focus,.btn-secondary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#555;border-color:#555}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#3c3b3b;border-color:#353535}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5);box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5);box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5);box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5);box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#fff;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5);box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5);box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5);box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5);box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#fff;border-color:#fff}.btn-light:hover{color:#212529;background-color:#ececec;border-color:#e6e5e5}.btn-light:focus,.btn-light.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5);box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#fff;border-color:#fff}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#e6e5e5;border-color:#dfdfdf}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5);box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5)}.btn-dark{color:#fff;background-color:#555;border-color:#555}.btn-dark:hover{color:#fff;background-color:#424242;border-color:#3c3b3b}.btn-dark:focus,.btn-dark.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#555;border-color:#555}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#3c3b3b;border-color:#353535}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-outline-primary{color:#333;border-color:#333}.btn-outline-primary:hover{color:#fff;background-color:#333;border-color:#333}.btn-outline-primary:focus,.btn-outline-primary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#333;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:#333;border-color:#333}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.btn-outline-secondary{color:#555;border-color:#555}.btn-outline-secondary:hover{color:#fff;background-color:#555;border-color:#555}.btn-outline-secondary:focus,.btn-outline-secondary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#555;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:#fff;background-color:#555;border-color:#555}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;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:#28a745;border-color:#28a745}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;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:#17a2b8;border-color:#17a2b8}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;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:#ffc107;border-color:#ffc107}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;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:#dc3545;border-color:#dc3545}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#fff;border-color:#fff}.btn-outline-light:hover{color:#212529;background-color:#fff;border-color:#fff}.btn-outline-light:focus,.btn-outline-light.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#fff;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:#fff;border-color:#fff}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.btn-outline-dark{color:#555;border-color:#555}.btn-outline-dark:hover{color:#fff;background-color:#555;border-color:#555}.btn-outline-dark:focus,.btn-outline-dark.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#555;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:#555;border-color:#555}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-link{font-weight:400;color:#333;text-decoration:underline}.btn-link:hover{color:#0d0d0d;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;-webkit-box-shadow:none;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#868e96;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{-webkit-transition:none;transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.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:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.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:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.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:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #333}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#fff;text-decoration:none;background-color:#333}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#333}.dropdown-item.disabled,.dropdown-item:disabled{color:#868e96;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#868e96;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-2px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-2px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{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 input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-2px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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-prepend,.input-group-append{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-2px}.input-group-prepend{margin-right:-2px}.input-group-append{margin-left:-2px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#555;text-align:center;white-space:nowrap;background-color:#f7f7f9;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 4px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 4px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.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){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:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.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){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#333;background-color:#333}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#333}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#8c8c8c;border-color:#8c8c8c}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#f7f7f9}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#aaa solid 2px}.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#333;background-color:#333}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.25rem + 4px);left:calc(-2.25rem + 4px);width:calc(1rem - 8px);height:calc(1rem - 8px);background-color:#aaa;border-radius:0.5rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:700;line-height:1.5;color:#555;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;background-color:#fff;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#333;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-select:focus::-ms-value{color:#555;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#f7f7f9}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + 0.5rem + 4px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 4px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 4px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 4px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#333;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-file-input:disabled ~ .custom-file-label{background-color:#f7f7f9}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 0.75rem;font-weight:700;line-height:1.5;color:#555;background-color:#fff;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#555;content:"Browse";background-color:#f7f7f9;border-left:inherit;border-radius:0 255px 25px 225px 25px/25px 225px 25px 255px 255px 25px 225px 25px/25px 225px 25px 255px 0}.custom-range{width:100%;height:calc(1rem + 0.4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#8c8c8c}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#8c8c8c}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#8c8c8c}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#aaa}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#aaa}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#aaa}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#868e96;pointer-events:none;cursor:default}.nav-tabs{border-bottom:2px solid #333}.nav-tabs .nav-item{margin-bottom:-2px}.nav-tabs .nav-link{border:2px solid transparent;border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#333}.nav-tabs .nav-link.disabled{color:#868e96;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#333;background-color:#fff;border-color:#333}.nav-tabs .dropdown-menu{margin-top:-2px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#333}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:2px solid transparent;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:#333}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#333}.navbar-light .navbar-nav .nav-link{color:#333}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:#333}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:#333}.navbar-light .navbar-toggler{color:#333;border-color:#333}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#333}.navbar-light .navbar-text a{color:#333}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#333}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#fff}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#fff}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#fff;border-color:#fff}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#fff}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:2px solid #333}.card-header:first-child{border-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px) calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:2px solid #333}.card-footer:last-child{border-radius:0 0 calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px) calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px)}.card-img-top{width:100%;border-top-left-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px);border-top-right-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px);border-bottom-left-radius:calc(255px 25px 225px 25px/25px 225px 25px 255px - 2px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-2px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#fff;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:0.5rem;color:#333;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#333}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-2px;line-height:1.25;color:#333;background-color:#fff;border:2px solid #333}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#333;border-color:#333}.page-link:focus{z-index:2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px}.page-item:last-child .page-link{border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px}.page-item.active .page-link{z-index:1;color:#fff;background-color:#333;border-color:#333}.page-item.disabled .page-link{color:#ccc;pointer-events:none;cursor:auto;background-color:#fff;border-color:#333}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:555px 25px 15px 25px/25px 5px 35px 555px;border-bottom-left-radius:555px 25px 15px 25px/25px 5px 35px 555px}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:555px 25px 15px 25px/25px 5px 35px 555px;border-bottom-right-radius:555px 25px 15px 25px/25px 5px 35px 555px}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px}.badge{display:inline-block;padding:0.5em 1.2em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:255px 25px 225px 25px/25px 225px 25px 255px;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{-webkit-transition:none;transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#333}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#1a1919}a.badge-primary:focus,a.badge-primary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.badge-secondary{color:#fff;background-color:#555}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#3c3b3b}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.badge-warning{color:#fff;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#fff;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#fff}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#e6e5e5}a.badge-light:focus,a.badge-light.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.badge-dark{color:#fff;background-color:#555}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#3c3b3b}a.badge-dark:focus,a.badge-dark.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:transparent;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:2px solid transparent;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#1b1b1b;background-color:#d6d6d6;border-color:#c6c6c6}.alert-primary hr{border-top-color:#b9b9b9}.alert-primary .alert-link{color:#020101}.alert-secondary{color:#2c2c2c;background-color:#dddddd;border-color:#cfcfcf}.alert-secondary hr{border-top-color:#c2c2c2}.alert-secondary .alert-link{color:#131212}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#858585;background-color:white;border-color:white}.alert-light hr{border-top-color:#f2f2f2}.alert-light .alert-link{color:#6c6b6b}.alert-dark{color:#2c2c2c;background-color:#dddddd;border-color:#cfcfcf}.alert-dark hr{border-top-color:#c2c2c2}.alert-dark .alert-link{color:#131212}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:0.75rem;background-color:#fff;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#ccc;-webkit-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{-webkit-transition:none;transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#333;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#333;text-decoration:none;background-color:#dee2e6}.list-group-item-action:active{color:#212529;background-color:#f7f7f9}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;margin-bottom:-2px;background-color:#fff;border:2px solid #333}.list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px}.list-group-item.disabled,.list-group-item:disabled{color:#868e96;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#333;border-color:#333}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:0}@media (min-width: 576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:0}}@media (min-width: 768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:0}}@media (min-width: 992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:0}}@media (min-width: 1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-2px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#1b1b1b;background-color:#c6c6c6}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1b1b1b;background-color:#b9b9b9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1b1b1b;border-color:#1b1b1b}.list-group-item-secondary{color:#2c2c2c;background-color:#cfcfcf}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#2c2c2c;background-color:#c2c2c2}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#2c2c2c;border-color:#2c2c2c}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#858585;background-color:white}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.list-group-item-dark{color:#2c2c2c;background-color:#cfcfcf}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#2c2c2c;background-color:#c2c2c2}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#2c2c2c;border-color:#2c2c2c}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}.close:hover{color:#fff;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#868e96;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05)}.toast-body{padding:0.75rem}.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:0.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:555px 25px 15px 25px/25px 5px 35px 555px;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:2px solid #333;border-top-left-radius:555px 25px 15px 25px/25px 5px 35px 555px;border-top-right-radius:555px 25px 15px 25px/25px 5px 35px 555px}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:2px solid #333;border-bottom-right-radius:555px 25px 15px 25px/25px 5px 35px 555px;border-bottom-left-radius:555px 25px 15px 25px/25px 5px 35px 555px}.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}@media (min-width: 576px){.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}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;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:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;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:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 555px 25px 15px 25px/25px 5px 35px 555px}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((0.5rem + 2px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:#333333}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:2px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((0.5rem + 2px) * -1);width:0.5rem;height:1rem;margin:555px 25px 15px 25px/25px 5px 35px 555px 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#333333}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:2px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc((0.5rem + 2px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#333333}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:2px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:2px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((0.5rem + 2px) * -1);width:0.5rem;height:1rem;margin:555px 25px 15px 25px/25px 5px 35px 555px 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#333333}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:2px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:2px solid #ebebeb;border-top-left-radius:calc(555px 25px 15px 25px/25px 5px 35px 555px - 2px);border-top-right-radius:calc(555px 25px 15px 25px/25px 5px 35px 555px - 2px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:0s 0.6s opacity;transition:0s 0.6s opacity}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;-webkit-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{-webkit-transition:none;transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.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:#333 !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#1a1919 !important}.bg-secondary{background-color:#555 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#3c3b3b !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#fff !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#e6e5e5 !important}.bg-dark{background-color:#555 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#3c3b3b !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:2px solid #dee2e6 !important}.border-top{border-top:2px solid #dee2e6 !important}.border-right{border-right:2px solid #dee2e6 !important}.border-bottom{border-bottom:2px solid #dee2e6 !important}.border-left{border-left:2px 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:#333 !important}.border-secondary{border-color:#555 !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#fff !important}.border-dark{border-color:#555 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded{border-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded-top{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px !important;border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded-right{border-top-right-radius:255px 25px 225px 25px/25px 225px 25px 255px !important;border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded-bottom{border-bottom-right-radius:255px 25px 225px 25px/25px 225px 25px 255px !important;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded-left{border-top-left-radius:255px 25px 225px 25px/25px 225px 25px 255px !important;border-bottom-left-radius:255px 25px 225px 25px/25px 225px 25px 255px !important}.rounded-lg{border-radius:555px 25px 15px 25px/25px 5px 35px 555px !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:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;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:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;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 iframe,.embed-responsive embed,.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.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-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:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;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{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important;box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important;box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{-webkit-box-shadow:none !important;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:rgba(0,0,0,0)}.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:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.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:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.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:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.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}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-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:#333 !important}a.text-primary:hover,a.text-primary:focus{color:#0d0d0d !important}.text-secondary{color:#555 !important}a.text-secondary:hover,a.text-secondary:focus{color:#2f2f2f !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#fff !important}a.text-light:hover,a.text-light:focus{color:#d9d9d9 !important}.text-dark{color:#555 !important}a.text-dark:hover,a.text-dark:focus{color:#2f2f2f !important}.text-body{color:#212529 !important}.text-muted{color:#868e96 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.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}@media print{*,*::before,*::after{text-shadow:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:2px solid #aaa;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:2px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#333}.table .thead-dark th{color:inherit;border-color:#333}}.navbar{border-width:2px;border-style:solid;border-radius:25px 25px 55px 5px/5px 55px 25px 25px}.navbar.bg-light{border-color:#333}.navbar.fixed-top{border-radius:0 25px 225px 0/25px 0 25px 255px;border-width:0 0 2px 0}.navbar.fixed-bottom{border-radius:255px 25px 0 25px/25px 225px 25px 0;border-width:2px 0 0 0}.navbar-brand{font-family:"Cabin Sketch", cursive;font-weight:normal;text-decoration:none}.btn{border-radius:255px 25px 225px 25px/25px 225px 25px 255px;text-decoration:none}button,input,optgroup,select,textarea{font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif}blockquote{border-radius:15px 27px 25px 25px/25px 25px 305px 635px}table th,table td{background-color:#fff}.table-bordered{background-color:#333;border-collapse:separate;border-spacing:0;border-radius:5px 25px 5px 25px/25px 5px 25px 5px;overflow:hidden}.table-bordered th,.table-bordered td{border-radius:5px 5px 25px 4px/5px 4px 3px 5px}.table-bordered .table-success td,.table-bordered .table-success th,.table-bordered .table-success:hover td,.table-bordered .table-success:hover th{background-color:#28a745;color:#fff}.table-bordered .table-info td,.table-bordered .table-info th,.table-bordered .table-info:hover td,.table-bordered .table-info:hover th{background-color:#17a2b8;color:#fff}.table-bordered .table-warning td,.table-bordered .table-warning th,.table-bordered .table-warning:hover td,.table-bordered .table-warning:hover th{background-color:#ffc107;color:#fff}.table-bordered .table-danger td,.table-bordered .table-danger th,.table-bordered .table-danger:hover td,.table-bordered .table-danger:hover th{background-color:#dc3545;color:#fff}.table-dark th,.table-dark td,.table-dark.table-hover .table-active:hover>th,.table-dark.table-hover .table-active:hover>td{background-color:#333}input,.form-control{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}textarea,textarea.form-control,select,select.form-control{border-radius:555px 25px 15px 25px/25px 5px 35px 555px !important}[type="checkbox"]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}[type="checkbox"]:before{content:"";position:absolute;left:-1.2em;top:-0.9em;display:inline-block;width:15px;height:16px;border:2px solid #333;border-radius:2px 8px 2px 4px / 5px 3px 5px 3px}[type="checkbox"]:checked:after{content:"x";position:absolute;left:-0.64em;top:-0.48em;font-size:1.5rem;line-height:0.5;color:#333}[type="checkbox"]:disabled:before{border:2px solid #aaa}[type="radio"]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}[type="radio"]:before{content:"";position:absolute;left:-1.2em;top:-0.9em;display:inline-block;width:16px;height:16px;border:2px solid #333;border-radius:50% 45% 40% 50% / 40% 50% 50% 45%}[type="radio"]:checked:before{background-color:#333}[type="radio"]:disabled:before{border:2px solid #aaa}.form-check-label{padding-left:2.5rem}.dropdown-menu{border-radius:555px 25px 25px 25px/25px 25px 25px 555px;overflow:hidden}.dropdown-divider{border-top-width:2px}.list-group{background-color:#333;border:2px solid #333;border-radius:45px 15px 35px 5px/15px 5px 15px 65px;overflow:hidden}.list-group-item{border-left:none;border-right:none;border-top:2px solid #333;border-radius:255px 5px 225px 5px/25px 225px 25px 255px}.list-group-item:first-child{border-top:none}.list-group-item:last-child{border-bottom:none}.nav-link,.page-link,.list-group-item,.dropdown-item{text-decoration:none}.nav-tabs .nav-link{border-radius:45px 15px 225px 5px/25px 225px 25px 255px}.breadcrumb{border:2px solid #333}.pagination .page-link{border-radius:425px 255px 25px 25px/25px 25px 5px 25px}.progress{border:2px solid #333}.badge-pill{border-radius:7rem 8rem 8rem 8rem / 4rem 5rem 6rem 6rem}.badge-warning{color:#fff}.alert-dismissible .close{color:transparent}.alert-dismissible .close:before{right:1rem;top:0.8rem}.alert-dismissible.alert-success{border-color:#28a745}.alert-dismissible.alert-success,.alert-dismissible.alert-success .alert-link,.alert-dismissible.alert-success .close:before{color:#28a745}.alert-dismissible.alert-info{border-color:#17a2b8}.alert-dismissible.alert-info,.alert-dismissible.alert-info .alert-link,.alert-dismissible.alert-info .close:before{color:#17a2b8}.alert-dismissible.alert-warning{border-color:#ffc107}.alert-dismissible.alert-warning,.alert-dismissible.alert-warning .alert-link,.alert-dismissible.alert-warning .close:before{color:#ffc107}.alert-dismissible.alert-danger{border-color:#dc3545}.alert-dismissible.alert-danger,.alert-dismissible.alert-danger .alert-link,.alert-dismissible.alert-danger .close:before{color:#dc3545}.card{border-radius:5px 5px 5px 5px/25px 25px 25px 5px}.card-outline-primary,.card-outline-success,.card-outline-info,.card-outline-warning,.card-outline-danger{border-width:2px}.card-header{border-bottom-width:2px;border-color:inherit}.card-header:first-child{border-radius:3px 3px 0 0/23px 23px 0 0}.card-footer{border-top-width:2px}.jumbotron{border:2px solid #333}.modal-content{border-radius:15px 5px 5px 25px/5px 25px 25px 5px}.popover{padding:0;border-radius:45px 85px 15px 25px/15px 10px 35px 555px}.popover-title{border-bottom:2px solid #333}.popover.popover-left::before,.popover.bs-tether-element-attached-right::before{right:-13px}.popover.popover-top::before,.popover.bs-tether-element-attached-bottom::before{bottom:-13px}.popover.popover-bottom::before,.popover.bs-tether-element-attached-top::before{top:-13px}.popover.popover-right::before,.popover.bs-tether-element-attached-left::before{left:-13px}pre{border:2px solid #333;border-radius:15px 5px 5px 25px/5px 25px 25px 5px}.close,.close:hover,.close:focus,.close:active{opacity:1}.close:before,.close:hover:before,.close:focus:before,.close:active:before{position:absolute;content:"X";color:#333}
|
12
|
+
*/@import url("https://fonts.googleapis.com/css?family=Neucha|Cabin+Sketch");:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #868e96;--gray-dark: #333;--primary: #333;--secondary: #555;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #fff;--dark: #555;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: "Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{-webkit-box-sizing:border-box;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:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;font-size:1rem;font-weight:700;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{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:#333;text-decoration:underline;background-color:transparent}a:hover{color:#0d0d0d;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#868e96;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,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}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-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:0.5rem;font-family:"Cabin Sketch", cursive;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:2px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#333}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#fff;border:2px solid #dee2e6;border-radius:25px;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#868e96}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:15px}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #333}.table thead th{vertical-align:bottom;border-bottom:2px solid #333}.table tbody+tbody{border-top:2px solid #333}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #333}.table-bordered th,.table-bordered td{border:1px solid #333}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#ccc}.table-hover tbody tr:hover{color:#212529;background-color:#fff}.table-primary,.table-primary>th,.table-primary>td{background-color:#c6c6c6}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#959595}.table-hover .table-primary:hover{background-color:#b9b9b9}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b9b9b9}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#cfcfcf}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#a7a7a7}.table-hover .table-secondary:hover{background-color:#c2c2c2}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c2c2c2}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:white}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:white}.table-hover .table-light:hover{background-color:#f2f2f2}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#f2f2f2}.table-dark,.table-dark>th,.table-dark>td{background-color:#cfcfcf}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#a7a7a7}.table-hover .table-dark:hover{background-color:#c2c2c2}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#c2c2c2}.table-active,.table-active>th,.table-active>td{background-color:#fff}.table-hover .table-active:hover{background-color:#f2f2f2}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#f2f2f2}.table .thead-dark th{color:#fff;background-color:#333;border-color:#464646}.table .thead-light th{color:#555;background-color:#f7f7f9;border-color:#333}.table-dark{color:#fff;background-color:#333}.table-dark th,.table-dark td,.table-dark thead th{border-color:#464646}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:700;line-height:1.5;color:#555;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:25px;-webkit-transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#555;background-color:#fff;border-color:#333;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.form-control::-webkit-input-placeholder{color:#868e96;opacity:1}.form-control::-ms-input-placeholder{color:#868e96;opacity:1}.form-control::placeholder{color:#868e96;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#f7f7f9;opacity:1}select.form-control:focus::-ms-value{color:#555;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 2px);padding-bottom:calc(0.375rem + 2px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 2px);padding-bottom:calc(0.5rem + 2px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 2px);padding-bottom:calc(0.25rem + 2px);font-size:0.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:0.375rem;padding-bottom:0.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:2px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 4px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:15px}.form-control-lg{height:calc(1.5em + 1rem + 4px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:35px}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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:0.3rem;margin-left:-1.25rem}.form-check-input:disabled ~ .form-check-label{color:#868e96}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:25px}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .form-control:valid ~ .valid-feedback,.was-validated .form-control:valid ~ .valid-tooltip,.form-control.is-valid ~ .valid-feedback,.form-control.is-valid ~ .valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-select:valid ~ .valid-feedback,.was-validated .custom-select:valid ~ .valid-tooltip,.custom-select.is-valid ~ .valid-feedback,.custom-select.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control-file:valid ~ .valid-feedback,.was-validated .form-control-file:valid ~ .valid-tooltip,.form-control-file.is-valid ~ .valid-feedback,.form-control-file.is-valid ~ .valid-tooltip{display:block}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid ~ .valid-feedback,.was-validated .custom-control-input:valid ~ .valid-tooltip,.custom-control-input.is-valid ~ .valid-feedback,.custom-control-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid ~ .valid-feedback,.was-validated .custom-file-input:valid ~ .valid-tooltip,.custom-file-input.is-valid ~ .valid-feedback,.custom-file-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:25px}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' 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:center right calc(0.375em + 0.1875rem);background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .form-control:invalid ~ .invalid-feedback,.was-validated .form-control:invalid ~ .invalid-tooltip,.form-control.is-invalid ~ .invalid-feedback,.form-control.is-invalid ~ .invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc((1em + 0.75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-select:invalid ~ .invalid-feedback,.was-validated .custom-select:invalid ~ .invalid-tooltip,.custom-select.is-invalid ~ .invalid-feedback,.custom-select.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control-file:invalid ~ .invalid-feedback,.was-validated .form-control-file:invalid ~ .invalid-tooltip,.form-control-file.is-invalid ~ .invalid-feedback,.form-control-file.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid ~ .invalid-feedback,.was-validated .custom-control-input:invalid ~ .invalid-tooltip,.custom-control-input.is-invalid ~ .invalid-feedback,.custom-control-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .invalid-feedback,.was-validated .custom-file-input:invalid ~ .invalid-tooltip,.custom-file-input.is-invalid ~ .invalid-feedback,.custom-file-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:2px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:25px;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#333;border-color:#333}.btn-primary:hover{color:#fff;background-color:#202020;border-color:#1a1919}.btn-primary:focus,.btn-primary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5);box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#333;border-color:#333}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#1a1919;border-color:#131313}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5);box-shadow:0 0 0 0.2rem rgba(82,82,82,0.5)}.btn-secondary{color:#fff;background-color:#555;border-color:#555}.btn-secondary:hover{color:#fff;background-color:#424242;border-color:#3c3b3b}.btn-secondary:focus,.btn-secondary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#555;border-color:#555}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#3c3b3b;border-color:#353535}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5);box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5);box-shadow:0 0 0 0.2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5);box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5);box-shadow:0 0 0 0.2rem rgba(58,176,195,0.5)}.btn-warning{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#fff;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5);box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5);box-shadow:0 0 0 0.2rem rgba(255,202,44,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5);box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5);box-shadow:0 0 0 0.2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#fff;border-color:#fff}.btn-light:hover{color:#212529;background-color:#ececec;border-color:#e6e5e5}.btn-light:focus,.btn-light.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5);box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#fff;border-color:#fff}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#e6e5e5;border-color:#dfdfdf}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5);box-shadow:0 0 0 0.2rem rgba(222,222,223,0.5)}.btn-dark{color:#fff;background-color:#555;border-color:#555}.btn-dark:hover{color:#fff;background-color:#424242;border-color:#3c3b3b}.btn-dark:focus,.btn-dark.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#555;border-color:#555}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#3c3b3b;border-color:#353535}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5);box-shadow:0 0 0 0.2rem rgba(111,111,111,0.5)}.btn-outline-primary{color:#333;border-color:#333}.btn-outline-primary:hover{color:#fff;background-color:#333;border-color:#333}.btn-outline-primary:focus,.btn-outline-primary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#333;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:#333;border-color:#333}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.btn-outline-secondary{color:#555;border-color:#555}.btn-outline-secondary:hover{color:#fff;background-color:#555;border-color:#555}.btn-outline-secondary:focus,.btn-outline-secondary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#555;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:#fff;background-color:#555;border-color:#555}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;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:#28a745;border-color:#28a745}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;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:#17a2b8;border-color:#17a2b8}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#fff;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;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:#ffc107;border-color:#ffc107}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;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:#dc3545;border-color:#dc3545}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#fff;border-color:#fff}.btn-outline-light:hover{color:#212529;background-color:#fff;border-color:#fff}.btn-outline-light:focus,.btn-outline-light.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#fff;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:#fff;border-color:#fff}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.btn-outline-dark{color:#555;border-color:#555}.btn-outline-dark:hover{color:#fff;background-color:#555;border-color:#555}.btn-outline-dark:focus,.btn-outline-dark.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#555;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:#555;border-color:#555}.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{-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.btn-link{font-weight:400;color:#333;text-decoration:underline}.btn-link:hover{color:#0d0d0d;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;-webkit-box-shadow:none;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#868e96;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:35px}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:15px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{-webkit-transition:none;transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.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:0.5rem 0;margin:0.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:25px}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.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:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.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:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #333}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#fff;text-decoration:none;background-color:#333}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#333}.dropdown-item.disabled,.dropdown-item:disabled{color:#868e96;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#868e96;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-2px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-2px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{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 input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-2px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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-prepend,.input-group-append{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-2px}.input-group-prepend{margin-right:-2px}.input-group-append{margin-left:-2px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#555;text-align:center;white-space:nowrap;background-color:#f7f7f9;border:2px solid #333;border-radius:25px}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 4px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:35px}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 4px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:15px}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.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){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:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.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){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#333;background-color:#333}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#333}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#8c8c8c;border-color:#8c8c8c}.custom-control-input:disabled ~ .custom-control-label{color:#868e96}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#f7f7f9}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#aaa solid 2px}.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:25px}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#333;background-color:#333}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.25rem + 4px);left:calc(-2.25rem + 4px);width:calc(1rem - 8px);height:calc(1rem - 8px);background-color:#aaa;border-radius:0.5rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,51,51,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:1rem;font-weight:700;line-height:1.5;color:#555;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;background-color:#fff;border:2px solid #333;border-radius:25px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#333;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-select:focus::-ms-value{color:#555;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#f7f7f9}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + 0.5rem + 4px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 4px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 4px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 4px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#333;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-file-input:disabled ~ .custom-file-label{background-color:#f7f7f9}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 4px);padding:0.375rem 0.75rem;font-weight:700;line-height:1.5;color:#555;background-color:#fff;border:2px solid #333;border-radius:25px}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#555;content:"Browse";background-color:#f7f7f9;border-left:inherit;border-radius:0 25px 25px 0}.custom-range{width:100%;height:calc(1rem + 0.4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 0.2rem rgba(51,51,51,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#8c8c8c}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#8c8c8c}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#333;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#8c8c8c}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#aaa}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#aaa}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#aaa}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#868e96;pointer-events:none;cursor:default}.nav-tabs{border-bottom:2px solid #333}.nav-tabs .nav-item{margin-bottom:-2px}.nav-tabs .nav-link{border:2px solid transparent;border-top-left-radius:25px;border-top-right-radius:25px}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#333}.nav-tabs .nav-link.disabled{color:#868e96;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#333;background-color:#fff;border-color:#333}.nav-tabs .dropdown-menu{margin-top:-2px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:25px}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#333}.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.3125rem;padding-bottom:0.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:2px solid transparent;border-radius:25px}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:#333}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#333}.navbar-light .navbar-nav .nav-link{color:#333}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:#333}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:#333}.navbar-light .navbar-toggler{color:#333;border-color:#333}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:#333}.navbar-light .navbar-text a{color:#333}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#333}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:#fff}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#fff}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:#fff;border-color:#fff}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:#fff}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:2px solid #333;border-radius:25px}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:25px;border-top-right-radius:25px}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:25px;border-bottom-left-radius:25px}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:2px solid #333}.card-header:first-child{border-radius:calc(25px - 2px) calc(25px - 2px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:0.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:2px solid #333}.card-footer:last-child{border-radius:0 0 calc(25px - 2px) calc(25px - 2px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(25px - 2px)}.card-img-top{width:100%;border-top-left-radius:calc(25px - 2px);border-top-right-radius:calc(25px - 2px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(25px - 2px);border-bottom-left-radius:calc(25px - 2px)}.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-2px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#fff;border-radius:25px}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:0.5rem;color:#333;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#333}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:25px}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-2px;line-height:1.25;color:#333;background-color:#fff;border:2px solid #333}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#333;border-color:#333}.page-link:focus{z-index:2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:25px;border-bottom-left-radius:25px}.page-item:last-child .page-link{border-top-right-radius:25px;border-bottom-right-radius:25px}.page-item.active .page-link{z-index:1;color:#fff;background-color:#333;border-color:#333}.page-item.disabled .page-link{color:#ccc;pointer-events:none;cursor:auto;background-color:#fff;border-color:#333}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:35px;border-bottom-left-radius:35px}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:35px;border-bottom-right-radius:35px}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:15px;border-bottom-left-radius:15px}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:15px;border-bottom-right-radius:15px}.badge{display:inline-block;padding:0.5em 1.2em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:25px;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{-webkit-transition:none;transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#333}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#1a1919}a.badge-primary:focus,a.badge-primary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5);box-shadow:0 0 0 0.2rem rgba(51,51,51,0.5)}.badge-secondary{color:#fff;background-color:#555}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#3c3b3b}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5);box-shadow:0 0 0 0.2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5);box-shadow:0 0 0 0.2rem rgba(23,162,184,0.5)}.badge-warning{color:#fff;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#fff;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5);box-shadow:0 0 0 0.2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5);box-shadow:0 0 0 0.2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#fff}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#e6e5e5}a.badge-light:focus,a.badge-light.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5);box-shadow:0 0 0 0.2rem rgba(255,255,255,0.5)}.badge-dark{color:#fff;background-color:#555}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#3c3b3b}a.badge-dark:focus,a.badge-dark.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5);box-shadow:0 0 0 0.2rem rgba(85,85,85,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:transparent;border-radius:35px}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:2px solid transparent;border-radius:25px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#1b1b1b;background-color:#d6d6d6;border-color:#c6c6c6}.alert-primary hr{border-top-color:#b9b9b9}.alert-primary .alert-link{color:#020101}.alert-secondary{color:#2c2c2c;background-color:#dddddd;border-color:#cfcfcf}.alert-secondary hr{border-top-color:#c2c2c2}.alert-secondary .alert-link{color:#131212}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#858585;background-color:white;border-color:white}.alert-light hr{border-top-color:#f2f2f2}.alert-light .alert-link{color:#6c6b6b}.alert-dark{color:#2c2c2c;background-color:#dddddd;border-color:#cfcfcf}.alert-dark hr{border-top-color:#c2c2c2}.alert-dark .alert-link{color:#131212}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:0.75rem;background-color:#fff;border-radius:25px}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#ccc;-webkit-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{-webkit-transition:none;transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#333;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#333;text-decoration:none;background-color:#dee2e6}.list-group-item-action:active{color:#212529;background-color:#f7f7f9}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;margin-bottom:-2px;background-color:#fff;border:2px solid #333}.list-group-item:first-child{border-top-left-radius:25px;border-top-right-radius:25px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:25px;border-bottom-left-radius:25px}.list-group-item.disabled,.list-group-item:disabled{color:#868e96;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#333;border-color:#333}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:25px;border-bottom-left-radius:25px;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:25px;border-bottom-right-radius:25px;border-bottom-left-radius:0}@media (min-width: 576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:25px;border-bottom-left-radius:25px;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:25px;border-bottom-right-radius:25px;border-bottom-left-radius:0}}@media (min-width: 768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:25px;border-bottom-left-radius:25px;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:25px;border-bottom-right-radius:25px;border-bottom-left-radius:0}}@media (min-width: 992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:25px;border-bottom-left-radius:25px;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:25px;border-bottom-right-radius:25px;border-bottom-left-radius:0}}@media (min-width: 1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-2px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:25px;border-bottom-left-radius:25px;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:25px;border-bottom-right-radius:25px;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-2px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#1b1b1b;background-color:#c6c6c6}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1b1b1b;background-color:#b9b9b9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1b1b1b;border-color:#1b1b1b}.list-group-item-secondary{color:#2c2c2c;background-color:#cfcfcf}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#2c2c2c;background-color:#c2c2c2}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#2c2c2c;border-color:#2c2c2c}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#858585;background-color:white}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#858585;background-color:#f2f2f2}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#858585;border-color:#858585}.list-group-item-dark{color:#2c2c2c;background-color:#cfcfcf}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#2c2c2c;background-color:#c2c2c2}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#2c2c2c;border-color:#2c2c2c}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}.close:hover{color:#fff;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:0.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#868e96;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05)}.toast-body{padding:0.75rem}.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:0.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:35px;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:2px solid #333;border-top-left-radius:35px;border-top-right-radius:35px}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:2px solid #333;border-bottom-right-radius:35px;border-bottom-left-radius:35px}.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}@media (min-width: 576px){.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}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;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:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:25px}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;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:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:2px solid #333;border-radius:35px}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 35px}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((0.5rem + 2px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:#333333}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:2px;border-width:0.5rem 0.5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((0.5rem + 2px) * -1);width:0.5rem;height:1rem;margin:35px 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#333333}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:2px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc((0.5rem + 2px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#333333}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:2px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:2px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((0.5rem + 2px) * -1);width:0.5rem;height:1rem;margin:35px 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#333333}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:2px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:2px solid #ebebeb;border-top-left-radius:calc(35px - 2px);border-top-right-radius:calc(35px - 2px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:0s 0.6s opacity;transition:0s 0.6s opacity}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;-webkit-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{-webkit-transition:none;transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.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:#333 !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#1a1919 !important}.bg-secondary{background-color:#555 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#3c3b3b !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#fff !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#e6e5e5 !important}.bg-dark{background-color:#555 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#3c3b3b !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:2px solid #dee2e6 !important}.border-top{border-top:2px solid #dee2e6 !important}.border-right{border-right:2px solid #dee2e6 !important}.border-bottom{border-bottom:2px solid #dee2e6 !important}.border-left{border-left:2px 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:#333 !important}.border-secondary{border-color:#555 !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#fff !important}.border-dark{border-color:#555 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:15px !important}.rounded{border-radius:25px !important}.rounded-top{border-top-left-radius:25px !important;border-top-right-radius:25px !important}.rounded-right{border-top-right-radius:25px !important;border-bottom-right-radius:25px !important}.rounded-bottom{border-bottom-right-radius:25px !important;border-bottom-left-radius:25px !important}.rounded-left{border-top-left-radius:25px !important;border-bottom-left-radius:25px !important}.rounded-lg{border-radius:35px !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:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;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:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;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 iframe,.embed-responsive embed,.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.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-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:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;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{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important;box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important;box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{-webkit-box-shadow:none !important;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:rgba(0,0,0,0)}.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:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.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:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.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:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.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}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-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:#333 !important}a.text-primary:hover,a.text-primary:focus{color:#0d0d0d !important}.text-secondary{color:#555 !important}a.text-secondary:hover,a.text-secondary:focus{color:#2f2f2f !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#fff !important}a.text-light:hover,a.text-light:focus{color:#d9d9d9 !important}.text-dark{color:#555 !important}a.text-dark:hover,a.text-dark:focus{color:#2f2f2f !important}.text-body{color:#212529 !important}.text-muted{color:#868e96 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.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}@media print{*,*::before,*::after{text-shadow:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:2px solid #aaa;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:2px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#333}.table .thead-dark th{color:inherit;border-color:#333}}.navbar{border-width:2px;border-style:solid;border-radius:25px 25px 55px 5px/5px 55px 25px 25px}.navbar.bg-light{border-color:#333}.navbar.fixed-top{border-radius:0 25px 225px 0/25px 0 25px 255px;border-width:0 0 2px 0}.navbar.fixed-bottom{border-radius:255px 25px 0 25px/25px 225px 25px 0;border-width:2px 0 0 0}.navbar-brand{font-family:"Cabin Sketch", cursive;font-weight:normal;text-decoration:none}.btn{border-radius:255px 25px 225px 25px/25px 225px 25px 255px;text-decoration:none}.btn-lg,.btn-group-lg>.btn{border-radius:555px 25px 15px 25px/25px 5px 35px 555px}.btn-sm,.btn-group-sm>.btn{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}button,input,optgroup,select,textarea{font-family:"Neucha", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif}blockquote{border-radius:15px 27px 25px 25px/25px 25px 305px 635px}table th,table td{background-color:#fff}.table-bordered{background-color:#333;border-collapse:separate;border-spacing:0;border-radius:5px 25px 5px 25px/25px 5px 25px 5px;overflow:hidden}.table-bordered th,.table-bordered td{border-radius:5px 5px 25px 4px/5px 4px 3px 5px}.table-bordered .table-success td,.table-bordered .table-success th,.table-bordered .table-success:hover td,.table-bordered .table-success:hover th{background-color:#28a745;color:#fff}.table-bordered .table-info td,.table-bordered .table-info th,.table-bordered .table-info:hover td,.table-bordered .table-info:hover th{background-color:#17a2b8;color:#fff}.table-bordered .table-warning td,.table-bordered .table-warning th,.table-bordered .table-warning:hover td,.table-bordered .table-warning:hover th{background-color:#ffc107;color:#fff}.table-bordered .table-danger td,.table-bordered .table-danger th,.table-bordered .table-danger:hover td,.table-bordered .table-danger:hover th{background-color:#dc3545;color:#fff}.table-dark th,.table-dark td,.table-dark.table-hover .table-active:hover>th,.table-dark.table-hover .table-active:hover>td{background-color:#333}input,.form-control,.input-group-text,.custom-file-label{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}textarea,textarea.form-control,select,select.form-control{border-radius:555px 25px 15px 25px/25px 5px 35px 555px !important}[type="checkbox"]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}[type="checkbox"]:before{content:"";position:absolute;left:-1.2em;top:-0.9em;display:inline-block;width:15px;height:16px;border:2px solid #333;border-radius:2px 8px 2px 4px / 5px 3px 5px 3px}[type="checkbox"]:checked:after{content:"x";position:absolute;left:-0.64em;top:-0.48em;font-size:1.5rem;line-height:0.5;color:#333}[type="checkbox"]:disabled:before{border:2px solid #aaa}[type="radio"]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}[type="radio"]:before{content:"";position:absolute;left:-1.2em;top:-0.9em;display:inline-block;width:16px;height:16px;border:2px solid #333;border-radius:50% 45% 40% 50% / 40% 50% 50% 45%}[type="radio"]:checked:before{background-color:#333}[type="radio"]:disabled:before{border:2px solid #aaa}.form-check-label{padding-left:2.5rem}.dropdown-menu{border-radius:555px 25px 25px 25px/25px 25px 25px 555px;overflow:hidden}.dropdown-divider{border-top-width:2px}.list-group{background-color:#333;border:2px solid #333;border-radius:45px 15px 35px 5px/15px 5px 15px 65px;overflow:hidden}.list-group-item{border-left:none;border-right:none;border-top:2px solid #333;border-radius:255px 5px 225px 5px/25px 225px 25px 255px}.list-group-item:first-child{border-top:none}.list-group-item:last-child{border-bottom:none}.nav-pills .nav-link{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.nav-link,.page-link,.list-group-item,.dropdown-item{text-decoration:none}.nav-tabs .nav-link{border-radius:45px 15px 225px 5px/25px 225px 25px 255px}.breadcrumb{border:2px solid #333;border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.pagination .page-link{border-radius:425px 255px 25px 25px/25px 25px 5px 25px}.progress{border:2px solid #333}.badge{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.badge-pill{border-radius:7rem 8rem 8rem 8rem / 4rem 5rem 6rem 6rem}.badge-warning{color:#fff}.alert{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.alert-dismissible .close{color:transparent}.alert-dismissible .close:before{right:1rem;top:0.8rem}.alert-dismissible.alert-success{border-color:#28a745}.alert-dismissible.alert-success,.alert-dismissible.alert-success .alert-link,.alert-dismissible.alert-success .close:before{color:#28a745}.alert-dismissible.alert-info{border-color:#17a2b8}.alert-dismissible.alert-info,.alert-dismissible.alert-info .alert-link,.alert-dismissible.alert-info .close:before{color:#17a2b8}.alert-dismissible.alert-warning{border-color:#ffc107}.alert-dismissible.alert-warning,.alert-dismissible.alert-warning .alert-link,.alert-dismissible.alert-warning .close:before{color:#ffc107}.alert-dismissible.alert-danger{border-color:#dc3545}.alert-dismissible.alert-danger,.alert-dismissible.alert-danger .alert-link,.alert-dismissible.alert-danger .close:before{color:#dc3545}.progress{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}.card{border-radius:5px 5px 5px 5px/25px 25px 25px 5px}.card-outline-primary,.card-outline-success,.card-outline-info,.card-outline-warning,.card-outline-danger{border-width:2px}.card-header{border-bottom-width:2px;border-color:inherit}.card-header:first-child{border-radius:3px 3px 0 0/23px 23px 0 0}.card-footer{border-top-width:2px}.jumbotron{border:2px solid #333;border-radius:555px 25px 15px 25px/25px 5px 35px 555px}.modal-content{border-radius:15px 5px 5px 25px/5px 25px 25px 5px}.popover{padding:0;border-radius:45px 85px 15px 25px/15px 10px 35px 555px}.popover-title{border-bottom:2px solid #333}.popover.popover-left::before,.popover.bs-tether-element-attached-right::before{right:-13px}.popover.popover-top::before,.popover.bs-tether-element-attached-bottom::before{bottom:-13px}.popover.popover-bottom::before,.popover.bs-tether-element-attached-top::before{top:-13px}.popover.popover-right::before,.popover.bs-tether-element-attached-left::before{left:-13px}.tooltip-inner{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}pre{border:2px solid #333;border-radius:15px 5px 5px 25px/5px 25px 25px 5px}.close,.close:hover,.close:focus,.close:active{opacity:1}.close:before,.close:hover:before,.close:focus:before,.close:active:before{position:absolute;content:"X";color:#333}.img-thumbnail{border-radius:255px 25px 225px 25px/25px 225px 25px 255px}
|
@@ -1 +1 @@
|
|
1
|
-
body{padding-top:120px}pre{background:#f7f7f9}@media (min-width: 768px){body>.navbar-transparent{box-shadow:none}body>.navbar-transparent .navbar-nav>.open>a{box-shadow:none}}#home,#help{font-size:0.9rem}#home .navbar,#help .navbar{background:#349aed;background:linear-gradient(145deg, #349aed 50%, #34d8ed 100%);transition:box-shadow 200ms ease-in}#home .navbar-transparent,#help .navbar-transparent{background:none !important;box-shadow:none}#home .navbar-brand .nav-link,#help .navbar-brand .nav-link{display:inline-block;margin-right:-30px}#home .navbar-brand img,#help .navbar-brand img{display:inline-block;margin:0 10px;width:30px}#home .nav-link,#help .nav-link{text-transform:uppercase;font-weight:500;color:#fff}#home{padding-top:0px}#home .btn{padding:0.6rem 0.55rem 0.5rem;box-shadow:none;font-size:0.7rem;font-weight:500}.bs-docs-section{margin-top:4em}.bs-docs-section .page-header h1{padding:2rem 0;font-size:3rem}.dropdown-menu.show[aria-labelledby="themes"]{display:flex;width:420px;flex-wrap:wrap}.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item{width:33.333%}.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item:first-child{width:100%}.bs-component{position:relative}.bs-component+.bs-component{margin-top:1rem}.bs-component .card{margin-bottom:1rem}.bs-component .modal{position:relative;top:auto;right:auto;left:auto;bottom:auto;z-index:1;display:block}.bs-component .modal-dialog{width:90%}.bs-component .popover{position:relative;display:inline-block;width:220px;margin:20px}
|
1
|
+
body{padding-top:120px}pre{background:#f7f7f9}@media (min-width: 768px){body>.navbar-transparent{box-shadow:none}body>.navbar-transparent .navbar-nav>.open>a{box-shadow:none}}#home,#help{font-size:0.9rem}#home .navbar,#help .navbar{background:#349aed;background:linear-gradient(145deg, #349aed 50%, #34d8ed 100%);transition:box-shadow 200ms ease-in}#home .navbar-transparent,#help .navbar-transparent{background:none !important;box-shadow:none}#home .navbar-brand .nav-link,#help .navbar-brand .nav-link{display:inline-block;margin-right:-30px}#home .navbar-brand img,#help .navbar-brand img{display:inline-block;margin:0 10px;width:30px}#home .nav-link,#help .nav-link{text-transform:uppercase;font-weight:500;color:#fff}#home{padding-top:0px}#home .btn{padding:0.6rem 0.55rem 0.5rem;box-shadow:none;font-size:0.7rem;font-weight:500}.bs-docs-section{margin-top:4em}.bs-docs-section .page-header h1{padding:2rem 0;font-size:3rem}.dropdown-menu.show[aria-labelledby="themes"]{display:flex;width:420px;flex-wrap:wrap}.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item{width:33.333%}.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item:first-child{width:100%}.bs-component{position:relative}.bs-component+.bs-component{margin-top:1rem}.bs-component .card{margin-bottom:1rem}.bs-component .modal{position:relative;top:auto;right:auto;left:auto;bottom:auto;z-index:1;display:block}.bs-component .modal-dialog{width:90%}.bs-component .popover{position:relative;display:inline-block;width:220px;margin:20px}.source-button{display:none;position:absolute;top:0;right:0;z-index:100;font-weight:bold}.source-button:hover{cursor:pointer}.bs-component:hover .source-button{display:block}#source-modal pre{max-height:calc(100vh - 11rem);background-color:rgba(0,0,0,0.7);color:rgba(255,255,255,0.7)}.nav-tabs{margin-bottom:15px}.progress{margin-bottom:10px}#footer{margin:5em 0}#footer li{float:left;margin-right:1.5em;margin-bottom:1.5em}#footer p{clear:left;margin-bottom:0}.splash{padding:12em 0 6em;background:#349aed;background:linear-gradient(145deg, #349aed 50%, #34d8ed 100%);color:#fff;text-align:center}.splash .logo{width:160px}.splash h1{font-size:3em;color:#fff}.splash #social{margin:2em 0 3em}.splash .alert{margin:2em 0;border:none}.splash .sponsor a{color:#fff}.section-tout{padding:6em 0 1em;border-bottom:1px solid rgba(0,0,0,0.05);background-color:#eaf1f1}.section-tout .fa{margin-right:0.2em}.section-tout p{margin-bottom:5em}.section-preview{padding:4em 0 4em}.section-preview .preview{margin-bottom:4em;background-color:#eaf1f1}.section-preview .preview img{max-width:100%}.section-preview .preview .image{position:relative}.section-preview .preview .image:before{box-shadow:inset 0 0 0 1px rgba(0,0,0,0.1);position:absolute;top:0;left:0;width:100%;height:100%;content:"";pointer-events:none}.section-preview .preview .options{padding:2em;border:1px solid rgba(0,0,0,0.05);border-top:none;text-align:center}.section-preview .preview .options p{margin-bottom:2em}.section-preview .dropdown-menu{text-align:left}.section-preview .lead{margin-bottom:2em}@media (max-width: 767px){.section-preview .image img{width:100%}}.sponsor img{max-width:100%}.sponsor #carbonads{max-width:240px;margin:0 auto}.sponsor .carbon-text{display:block;margin-top:1em;font-size:12px}.sponsor .carbon-poweredby{float:right;margin-top:1em;font-size:10px}@media (max-width: 767px){.splash{padding-top:8em}.splash .logo{width:100px}.splash h1{font-size:2em}#banner{margin-bottom:2em;text-align:center}}
|
@@ -11,23 +11,22 @@
|
|
11
11
|
e.preventDefault();
|
12
12
|
});
|
13
13
|
|
14
|
-
|
14
|
+
$('.bs-component [data-toggle="popover"]').popover();
|
15
|
+
$('.bs-component [data-toggle="tooltip"]').tooltip();
|
16
|
+
$(".bs-component").each(function() {
|
17
|
+
var $button = $("<button class='source-button btn btn-primary btn-xs' role='button' tabindex='0'>< ></button>");
|
18
|
+
$(this).append($button);
|
19
|
+
});
|
20
|
+
|
21
|
+
$('body').on('click', '.source-button', function(e) {
|
22
|
+
e.preventDefault();
|
23
|
+
|
15
24
|
var html = $(this).parent().html();
|
16
25
|
html = cleanSource(html);
|
17
26
|
$("#source-modal pre").text(html);
|
18
27
|
$("#source-modal").modal();
|
19
28
|
});
|
20
29
|
|
21
|
-
$('.bs-component [data-toggle="popover"]').popover();
|
22
|
-
$('.bs-component [data-toggle="tooltip"]').tooltip();
|
23
|
-
|
24
|
-
$(".bs-component").hover(function(){
|
25
|
-
$(this).append($button);
|
26
|
-
$button.show();
|
27
|
-
}, function(){
|
28
|
-
$button.hide();
|
29
|
-
});
|
30
|
-
|
31
30
|
function cleanSource(html) {
|
32
31
|
html = html.replace(/×/g, "×")
|
33
32
|
.replace(/«/g, "«")
|
@@ -104,7 +104,8 @@ pre {
|
|
104
104
|
}
|
105
105
|
}
|
106
106
|
|
107
|
-
|
107
|
+
.source-button {
|
108
|
+
display: none;
|
108
109
|
position: absolute;
|
109
110
|
top: 0;
|
110
111
|
right: 0;
|
@@ -112,6 +113,14 @@ pre {
|
|
112
113
|
font-weight: bold;
|
113
114
|
}
|
114
115
|
|
116
|
+
.source-button:hover {
|
117
|
+
cursor: pointer;
|
118
|
+
}
|
119
|
+
|
120
|
+
.bs-component:hover .source-button {
|
121
|
+
display: block;
|
122
|
+
}
|
123
|
+
|
115
124
|
#source-modal {
|
116
125
|
pre {
|
117
126
|
max-height: calc(100vh - 11rem);
|
@@ -16,15 +16,18 @@ define( [
|
|
16
16
|
"./var/fnToString",
|
17
17
|
"./var/ObjectFunctionString",
|
18
18
|
"./var/support",
|
19
|
-
"./
|
19
|
+
"./var/isFunction",
|
20
|
+
"./var/isWindow",
|
21
|
+
"./core/DOMEval",
|
22
|
+
"./core/toType"
|
20
23
|
], function( arr, document, getProto, slice, concat, push, indexOf,
|
21
24
|
class2type, toString, hasOwn, fnToString, ObjectFunctionString,
|
22
|
-
support, DOMEval ) {
|
25
|
+
support, isFunction, isWindow, DOMEval, toType ) {
|
23
26
|
|
24
27
|
"use strict";
|
25
28
|
|
26
29
|
var
|
27
|
-
version = "3.
|
30
|
+
version = "3.4.1",
|
28
31
|
|
29
32
|
// Define a local copy of jQuery
|
30
33
|
jQuery = function( selector, context ) {
|
@@ -36,16 +39,7 @@ var
|
|
36
39
|
|
37
40
|
// Support: Android <=4.0 only
|
38
41
|
// Make sure we trim BOM and NBSP
|
39
|
-
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g
|
40
|
-
|
41
|
-
// Matches dashed string for camelizing
|
42
|
-
rmsPrefix = /^-ms-/,
|
43
|
-
rdashAlpha = /-([a-z])/g,
|
44
|
-
|
45
|
-
// Used by jQuery.camelCase as callback to replace()
|
46
|
-
fcamelCase = function( all, letter ) {
|
47
|
-
return letter.toUpperCase();
|
48
|
-
};
|
42
|
+
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
|
49
43
|
|
50
44
|
jQuery.fn = jQuery.prototype = {
|
51
45
|
|
@@ -145,7 +139,7 @@ jQuery.extend = jQuery.fn.extend = function() {
|
|
145
139
|
}
|
146
140
|
|
147
141
|
// Handle case when target is a string or something (possible in deep copy)
|
148
|
-
if ( typeof target !== "object" && !
|
142
|
+
if ( typeof target !== "object" && !isFunction( target ) ) {
|
149
143
|
target = {};
|
150
144
|
}
|
151
145
|
|
@@ -162,25 +156,28 @@ jQuery.extend = jQuery.fn.extend = function() {
|
|
162
156
|
|
163
157
|
// Extend the base object
|
164
158
|
for ( name in options ) {
|
165
|
-
src = target[ name ];
|
166
159
|
copy = options[ name ];
|
167
160
|
|
161
|
+
// Prevent Object.prototype pollution
|
168
162
|
// Prevent never-ending loop
|
169
|
-
if ( target === copy ) {
|
163
|
+
if ( name === "__proto__" || target === copy ) {
|
170
164
|
continue;
|
171
165
|
}
|
172
166
|
|
173
167
|
// Recurse if we're merging plain objects or arrays
|
174
168
|
if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
|
175
169
|
( copyIsArray = Array.isArray( copy ) ) ) ) {
|
170
|
+
src = target[ name ];
|
176
171
|
|
177
|
-
|
178
|
-
|
179
|
-
clone =
|
180
|
-
|
172
|
+
// Ensure proper type for the source value
|
173
|
+
if ( copyIsArray && !Array.isArray( src ) ) {
|
174
|
+
clone = [];
|
175
|
+
} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
|
176
|
+
clone = {};
|
181
177
|
} else {
|
182
|
-
clone = src
|
178
|
+
clone = src;
|
183
179
|
}
|
180
|
+
copyIsArray = false;
|
184
181
|
|
185
182
|
// Never move original objects, clone them
|
186
183
|
target[ name ] = jQuery.extend( deep, clone, copy );
|
@@ -211,28 +208,6 @@ jQuery.extend( {
|
|
211
208
|
|
212
209
|
noop: function() {},
|
213
210
|
|
214
|
-
isFunction: function( obj ) {
|
215
|
-
return jQuery.type( obj ) === "function";
|
216
|
-
},
|
217
|
-
|
218
|
-
isWindow: function( obj ) {
|
219
|
-
return obj != null && obj === obj.window;
|
220
|
-
},
|
221
|
-
|
222
|
-
isNumeric: function( obj ) {
|
223
|
-
|
224
|
-
// As of jQuery 3.0, isNumeric is limited to
|
225
|
-
// strings and numbers (primitives or objects)
|
226
|
-
// that can be coerced to finite numbers (gh-2662)
|
227
|
-
var type = jQuery.type( obj );
|
228
|
-
return ( type === "number" || type === "string" ) &&
|
229
|
-
|
230
|
-
// parseFloat NaNs numeric-cast false positives ("")
|
231
|
-
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
|
232
|
-
// subtraction forces infinities to NaN
|
233
|
-
!isNaN( obj - parseFloat( obj ) );
|
234
|
-
},
|
235
|
-
|
236
211
|
isPlainObject: function( obj ) {
|
237
212
|
var proto, Ctor;
|
238
213
|
|
@@ -255,9 +230,6 @@ jQuery.extend( {
|
|
255
230
|
},
|
256
231
|
|
257
232
|
isEmptyObject: function( obj ) {
|
258
|
-
|
259
|
-
/* eslint-disable no-unused-vars */
|
260
|
-
// See https://github.com/eslint/eslint/issues/6125
|
261
233
|
var name;
|
262
234
|
|
263
235
|
for ( name in obj ) {
|
@@ -266,27 +238,9 @@ jQuery.extend( {
|
|
266
238
|
return true;
|
267
239
|
},
|
268
240
|
|
269
|
-
type: function( obj ) {
|
270
|
-
if ( obj == null ) {
|
271
|
-
return obj + "";
|
272
|
-
}
|
273
|
-
|
274
|
-
// Support: Android <=2.3 only (functionish RegExp)
|
275
|
-
return typeof obj === "object" || typeof obj === "function" ?
|
276
|
-
class2type[ toString.call( obj ) ] || "object" :
|
277
|
-
typeof obj;
|
278
|
-
},
|
279
|
-
|
280
241
|
// Evaluates a script in a global context
|
281
|
-
globalEval: function( code ) {
|
282
|
-
DOMEval( code );
|
283
|
-
},
|
284
|
-
|
285
|
-
// Convert dashed to camelCase; used by the css and data modules
|
286
|
-
// Support: IE <=9 - 11, Edge 12 - 13
|
287
|
-
// Microsoft forgot to hump their vendor prefix (#9572)
|
288
|
-
camelCase: function( string ) {
|
289
|
-
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
|
242
|
+
globalEval: function( code, options ) {
|
243
|
+
DOMEval( code, { nonce: options && options.nonce } );
|
290
244
|
},
|
291
245
|
|
292
246
|
each: function( obj, callback ) {
|
@@ -409,37 +363,6 @@ jQuery.extend( {
|
|
409
363
|
// A global GUID counter for objects
|
410
364
|
guid: 1,
|
411
365
|
|
412
|
-
// Bind a function to a context, optionally partially applying any
|
413
|
-
// arguments.
|
414
|
-
proxy: function( fn, context ) {
|
415
|
-
var tmp, args, proxy;
|
416
|
-
|
417
|
-
if ( typeof context === "string" ) {
|
418
|
-
tmp = fn[ context ];
|
419
|
-
context = fn;
|
420
|
-
fn = tmp;
|
421
|
-
}
|
422
|
-
|
423
|
-
// Quick check to determine if target is callable, in the spec
|
424
|
-
// this throws a TypeError, but we will just return undefined.
|
425
|
-
if ( !jQuery.isFunction( fn ) ) {
|
426
|
-
return undefined;
|
427
|
-
}
|
428
|
-
|
429
|
-
// Simulated bind
|
430
|
-
args = slice.call( arguments, 2 );
|
431
|
-
proxy = function() {
|
432
|
-
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
|
433
|
-
};
|
434
|
-
|
435
|
-
// Set the guid of unique handler to the same of original handler, so it can be removed
|
436
|
-
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
|
437
|
-
|
438
|
-
return proxy;
|
439
|
-
},
|
440
|
-
|
441
|
-
now: Date.now,
|
442
|
-
|
443
366
|
// jQuery.support is not used in Core but other projects attach their
|
444
367
|
// properties to it so it needs to exist.
|
445
368
|
support: support
|
@@ -462,9 +385,9 @@ function isArrayLike( obj ) {
|
|
462
385
|
// hasOwn isn't used here due to false negatives
|
463
386
|
// regarding Nodelist length in IE
|
464
387
|
var length = !!obj && "length" in obj && obj.length,
|
465
|
-
type =
|
388
|
+
type = toType( obj );
|
466
389
|
|
467
|
-
if (
|
390
|
+
if ( isFunction( obj ) || isWindow( obj ) ) {
|
468
391
|
return false;
|
469
392
|
}
|
470
393
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* jQuery JavaScript Library v3.
|
2
|
+
* jQuery JavaScript Library v3.4.1
|
3
3
|
* https://jquery.com/
|
4
4
|
*
|
5
5
|
* Includes Sizzle.js
|
@@ -9,7 +9,7 @@
|
|
9
9
|
* Released under the MIT license
|
10
10
|
* https://jquery.org/license
|
11
11
|
*
|
12
|
-
* Date:
|
12
|
+
* Date: 2019-05-01T21:04Z
|
13
13
|
*/
|
14
14
|
( function( global, factory ) {
|
15
15
|
|
@@ -71,16 +71,70 @@ var ObjectFunctionString = fnToString.call( Object );
|
|
71
71
|
|
72
72
|
var support = {};
|
73
73
|
|
74
|
+
var isFunction = function isFunction( obj ) {
|
74
75
|
|
76
|
+
// Support: Chrome <=57, Firefox <=52
|
77
|
+
// In some browsers, typeof returns "function" for HTML <object> elements
|
78
|
+
// (i.e., `typeof document.createElement( "object" ) === "function"`).
|
79
|
+
// We don't want to classify *any* DOM node as a function.
|
80
|
+
return typeof obj === "function" && typeof obj.nodeType !== "number";
|
81
|
+
};
|
75
82
|
|
76
|
-
|
83
|
+
|
84
|
+
var isWindow = function isWindow( obj ) {
|
85
|
+
return obj != null && obj === obj.window;
|
86
|
+
};
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
var preservedScriptAttributes = {
|
92
|
+
type: true,
|
93
|
+
src: true,
|
94
|
+
nonce: true,
|
95
|
+
noModule: true
|
96
|
+
};
|
97
|
+
|
98
|
+
function DOMEval( code, node, doc ) {
|
77
99
|
doc = doc || document;
|
78
100
|
|
79
|
-
var
|
101
|
+
var i, val,
|
102
|
+
script = doc.createElement( "script" );
|
80
103
|
|
81
104
|
script.text = code;
|
105
|
+
if ( node ) {
|
106
|
+
for ( i in preservedScriptAttributes ) {
|
107
|
+
|
108
|
+
// Support: Firefox 64+, Edge 18+
|
109
|
+
// Some browsers don't support the "nonce" property on scripts.
|
110
|
+
// On the other hand, just using `getAttribute` is not enough as
|
111
|
+
// the `nonce` attribute is reset to an empty string whenever it
|
112
|
+
// becomes browsing-context connected.
|
113
|
+
// See https://github.com/whatwg/html/issues/2369
|
114
|
+
// See https://html.spec.whatwg.org/#nonce-attributes
|
115
|
+
// The `node.getAttribute` check was added for the sake of
|
116
|
+
// `jQuery.globalEval` so that it can fake a nonce-containing node
|
117
|
+
// via an object.
|
118
|
+
val = node[ i ] || node.getAttribute && node.getAttribute( i );
|
119
|
+
if ( val ) {
|
120
|
+
script.setAttribute( i, val );
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
82
124
|
doc.head.appendChild( script ).parentNode.removeChild( script );
|
83
125
|
}
|
126
|
+
|
127
|
+
|
128
|
+
function toType( obj ) {
|
129
|
+
if ( obj == null ) {
|
130
|
+
return obj + "";
|
131
|
+
}
|
132
|
+
|
133
|
+
// Support: Android <=2.3 only (functionish RegExp)
|
134
|
+
return typeof obj === "object" || typeof obj === "function" ?
|
135
|
+
class2type[ toString.call( obj ) ] || "object" :
|
136
|
+
typeof obj;
|
137
|
+
}
|
84
138
|
/* global Symbol */
|
85
139
|
// Defining this global in .eslintrc.json would create a danger of using the global
|
86
140
|
// unguarded in another place, it seems safer to define global only for this module
|
@@ -88,7 +142,7 @@ var support = {};
|
|
88
142
|
|
89
143
|
|
90
144
|
var
|
91
|
-
version = "3.
|
145
|
+
version = "3.4.1",
|
92
146
|
|
93
147
|
// Define a local copy of jQuery
|
94
148
|
jQuery = function( selector, context ) {
|
@@ -100,16 +154,7 @@ var
|
|
100
154
|
|
101
155
|
// Support: Android <=4.0 only
|
102
156
|
// Make sure we trim BOM and NBSP
|
103
|
-
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g
|
104
|
-
|
105
|
-
// Matches dashed string for camelizing
|
106
|
-
rmsPrefix = /^-ms-/,
|
107
|
-
rdashAlpha = /-([a-z])/g,
|
108
|
-
|
109
|
-
// Used by jQuery.camelCase as callback to replace()
|
110
|
-
fcamelCase = function( all, letter ) {
|
111
|
-
return letter.toUpperCase();
|
112
|
-
};
|
157
|
+
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
|
113
158
|
|
114
159
|
jQuery.fn = jQuery.prototype = {
|
115
160
|
|
@@ -209,7 +254,7 @@ jQuery.extend = jQuery.fn.extend = function() {
|
|
209
254
|
}
|
210
255
|
|
211
256
|
// Handle case when target is a string or something (possible in deep copy)
|
212
|
-
if ( typeof target !== "object" && !
|
257
|
+
if ( typeof target !== "object" && !isFunction( target ) ) {
|
213
258
|
target = {};
|
214
259
|
}
|
215
260
|
|
@@ -226,25 +271,28 @@ jQuery.extend = jQuery.fn.extend = function() {
|
|
226
271
|
|
227
272
|
// Extend the base object
|
228
273
|
for ( name in options ) {
|
229
|
-
src = target[ name ];
|
230
274
|
copy = options[ name ];
|
231
275
|
|
276
|
+
// Prevent Object.prototype pollution
|
232
277
|
// Prevent never-ending loop
|
233
|
-
if ( target === copy ) {
|
278
|
+
if ( name === "__proto__" || target === copy ) {
|
234
279
|
continue;
|
235
280
|
}
|
236
281
|
|
237
282
|
// Recurse if we're merging plain objects or arrays
|
238
283
|
if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
|
239
284
|
( copyIsArray = Array.isArray( copy ) ) ) ) {
|
285
|
+
src = target[ name ];
|
240
286
|
|
241
|
-
|
242
|
-
|
243
|
-
clone =
|
244
|
-
|
287
|
+
// Ensure proper type for the source value
|
288
|
+
if ( copyIsArray && !Array.isArray( src ) ) {
|
289
|
+
clone = [];
|
290
|
+
} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
|
291
|
+
clone = {};
|
245
292
|
} else {
|
246
|
-
clone = src
|
293
|
+
clone = src;
|
247
294
|
}
|
295
|
+
copyIsArray = false;
|
248
296
|
|
249
297
|
// Never move original objects, clone them
|
250
298
|
target[ name ] = jQuery.extend( deep, clone, copy );
|
@@ -275,28 +323,6 @@ jQuery.extend( {
|
|
275
323
|
|
276
324
|
noop: function() {},
|
277
325
|
|
278
|
-
isFunction: function( obj ) {
|
279
|
-
return jQuery.type( obj ) === "function";
|
280
|
-
},
|
281
|
-
|
282
|
-
isWindow: function( obj ) {
|
283
|
-
return obj != null && obj === obj.window;
|
284
|
-
},
|
285
|
-
|
286
|
-
isNumeric: function( obj ) {
|
287
|
-
|
288
|
-
// As of jQuery 3.0, isNumeric is limited to
|
289
|
-
// strings and numbers (primitives or objects)
|
290
|
-
// that can be coerced to finite numbers (gh-2662)
|
291
|
-
var type = jQuery.type( obj );
|
292
|
-
return ( type === "number" || type === "string" ) &&
|
293
|
-
|
294
|
-
// parseFloat NaNs numeric-cast false positives ("")
|
295
|
-
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
|
296
|
-
// subtraction forces infinities to NaN
|
297
|
-
!isNaN( obj - parseFloat( obj ) );
|
298
|
-
},
|
299
|
-
|
300
326
|
isPlainObject: function( obj ) {
|
301
327
|
var proto, Ctor;
|
302
328
|
|
@@ -319,9 +345,6 @@ jQuery.extend( {
|
|
319
345
|
},
|
320
346
|
|
321
347
|
isEmptyObject: function( obj ) {
|
322
|
-
|
323
|
-
/* eslint-disable no-unused-vars */
|
324
|
-
// See https://github.com/eslint/eslint/issues/6125
|
325
348
|
var name;
|
326
349
|
|
327
350
|
for ( name in obj ) {
|
@@ -330,27 +353,9 @@ jQuery.extend( {
|
|
330
353
|
return true;
|
331
354
|
},
|
332
355
|
|
333
|
-
type: function( obj ) {
|
334
|
-
if ( obj == null ) {
|
335
|
-
return obj + "";
|
336
|
-
}
|
337
|
-
|
338
|
-
// Support: Android <=2.3 only (functionish RegExp)
|
339
|
-
return typeof obj === "object" || typeof obj === "function" ?
|
340
|
-
class2type[ toString.call( obj ) ] || "object" :
|
341
|
-
typeof obj;
|
342
|
-
},
|
343
|
-
|
344
356
|
// Evaluates a script in a global context
|
345
|
-
globalEval: function( code ) {
|
346
|
-
DOMEval( code );
|
347
|
-
},
|
348
|
-
|
349
|
-
// Convert dashed to camelCase; used by the css and data modules
|
350
|
-
// Support: IE <=9 - 11, Edge 12 - 13
|
351
|
-
// Microsoft forgot to hump their vendor prefix (#9572)
|
352
|
-
camelCase: function( string ) {
|
353
|
-
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
|
357
|
+
globalEval: function( code, options ) {
|
358
|
+
DOMEval( code, { nonce: options && options.nonce } );
|
354
359
|
},
|
355
360
|
|
356
361
|
each: function( obj, callback ) {
|
@@ -473,37 +478,6 @@ jQuery.extend( {
|
|
473
478
|
// A global GUID counter for objects
|
474
479
|
guid: 1,
|
475
480
|
|
476
|
-
// Bind a function to a context, optionally partially applying any
|
477
|
-
// arguments.
|
478
|
-
proxy: function( fn, context ) {
|
479
|
-
var tmp, args, proxy;
|
480
|
-
|
481
|
-
if ( typeof context === "string" ) {
|
482
|
-
tmp = fn[ context ];
|
483
|
-
context = fn;
|
484
|
-
fn = tmp;
|
485
|
-
}
|
486
|
-
|
487
|
-
// Quick check to determine if target is callable, in the spec
|
488
|
-
// this throws a TypeError, but we will just return undefined.
|
489
|
-
if ( !jQuery.isFunction( fn ) ) {
|
490
|
-
return undefined;
|
491
|
-
}
|
492
|
-
|
493
|
-
// Simulated bind
|
494
|
-
args = slice.call( arguments, 2 );
|
495
|
-
proxy = function() {
|
496
|
-
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
|
497
|
-
};
|
498
|
-
|
499
|
-
// Set the guid of unique handler to the same of original handler, so it can be removed
|
500
|
-
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
|
501
|
-
|
502
|
-
return proxy;
|
503
|
-
},
|
504
|
-
|
505
|
-
now: Date.now,
|
506
|
-
|
507
481
|
// jQuery.support is not used in Core but other projects attach their
|
508
482
|
// properties to it so it needs to exist.
|
509
483
|
support: support
|
@@ -526,9 +500,9 @@ function isArrayLike( obj ) {
|
|
526
500
|
// hasOwn isn't used here due to false negatives
|
527
501
|
// regarding Nodelist length in IE
|
528
502
|
var length = !!obj && "length" in obj && obj.length,
|
529
|
-
type =
|
503
|
+
type = toType( obj );
|
530
504
|
|
531
|
-
if (
|
505
|
+
if ( isFunction( obj ) || isWindow( obj ) ) {
|
532
506
|
return false;
|
533
507
|
}
|
534
508
|
|
@@ -537,14 +511,14 @@ function isArrayLike( obj ) {
|
|
537
511
|
}
|
538
512
|
var Sizzle =
|
539
513
|
/*!
|
540
|
-
* Sizzle CSS Selector Engine v2.3.
|
514
|
+
* Sizzle CSS Selector Engine v2.3.4
|
541
515
|
* https://sizzlejs.com/
|
542
516
|
*
|
543
|
-
* Copyright
|
517
|
+
* Copyright JS Foundation and other contributors
|
544
518
|
* Released under the MIT license
|
545
|
-
*
|
519
|
+
* https://js.foundation/
|
546
520
|
*
|
547
|
-
* Date:
|
521
|
+
* Date: 2019-04-08
|
548
522
|
*/
|
549
523
|
(function( window ) {
|
550
524
|
|
@@ -578,6 +552,7 @@ var i,
|
|
578
552
|
classCache = createCache(),
|
579
553
|
tokenCache = createCache(),
|
580
554
|
compilerCache = createCache(),
|
555
|
+
nonnativeSelectorCache = createCache(),
|
581
556
|
sortOrder = function( a, b ) {
|
582
557
|
if ( a === b ) {
|
583
558
|
hasDuplicate = true;
|
@@ -639,8 +614,7 @@ var i,
|
|
639
614
|
|
640
615
|
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
|
641
616
|
rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
|
642
|
-
|
643
|
-
rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
|
617
|
+
rdescend = new RegExp( whitespace + "|>" ),
|
644
618
|
|
645
619
|
rpseudo = new RegExp( pseudos ),
|
646
620
|
ridentifier = new RegExp( "^" + identifier + "$" ),
|
@@ -661,6 +635,7 @@ var i,
|
|
661
635
|
whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
|
662
636
|
},
|
663
637
|
|
638
|
+
rhtml = /HTML$/i,
|
664
639
|
rinputs = /^(?:input|select|textarea|button)$/i,
|
665
640
|
rheader = /^h\d$/i,
|
666
641
|
|
@@ -715,9 +690,9 @@ var i,
|
|
715
690
|
setDocument();
|
716
691
|
},
|
717
692
|
|
718
|
-
|
693
|
+
inDisabledFieldset = addCombinator(
|
719
694
|
function( elem ) {
|
720
|
-
return elem.disabled === true && (
|
695
|
+
return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
|
721
696
|
},
|
722
697
|
{ dir: "parentNode", next: "legend" }
|
723
698
|
);
|
@@ -830,18 +805,22 @@ function Sizzle( selector, context, results, seed ) {
|
|
830
805
|
|
831
806
|
// Take advantage of querySelectorAll
|
832
807
|
if ( support.qsa &&
|
833
|
-
!
|
834
|
-
(!rbuggyQSA || !rbuggyQSA.test( selector ))
|
835
|
-
|
836
|
-
if ( nodeType !== 1 ) {
|
837
|
-
newContext = context;
|
838
|
-
newSelector = selector;
|
808
|
+
!nonnativeSelectorCache[ selector + " " ] &&
|
809
|
+
(!rbuggyQSA || !rbuggyQSA.test( selector )) &&
|
839
810
|
|
840
|
-
//
|
841
|
-
// Thanks to Andrew Dupont for this workaround technique
|
842
|
-
// Support: IE <=8
|
811
|
+
// Support: IE 8 only
|
843
812
|
// Exclude object elements
|
844
|
-
|
813
|
+
(nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) {
|
814
|
+
|
815
|
+
newSelector = selector;
|
816
|
+
newContext = context;
|
817
|
+
|
818
|
+
// qSA considers elements outside a scoping root when evaluating child or
|
819
|
+
// descendant combinators, which is not what we want.
|
820
|
+
// In such cases, we work around the behavior by prefixing every selector in the
|
821
|
+
// list with an ID selector referencing the scope context.
|
822
|
+
// Thanks to Andrew Dupont for this technique.
|
823
|
+
if ( nodeType === 1 && rdescend.test( selector ) ) {
|
845
824
|
|
846
825
|
// Capture the context ID, setting it first if necessary
|
847
826
|
if ( (nid = context.getAttribute( "id" )) ) {
|
@@ -863,17 +842,16 @@ function Sizzle( selector, context, results, seed ) {
|
|
863
842
|
context;
|
864
843
|
}
|
865
844
|
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
}
|
845
|
+
try {
|
846
|
+
push.apply( results,
|
847
|
+
newContext.querySelectorAll( newSelector )
|
848
|
+
);
|
849
|
+
return results;
|
850
|
+
} catch ( qsaError ) {
|
851
|
+
nonnativeSelectorCache( selector, true );
|
852
|
+
} finally {
|
853
|
+
if ( nid === expando ) {
|
854
|
+
context.removeAttribute( "id" );
|
877
855
|
}
|
878
856
|
}
|
879
857
|
}
|
@@ -1037,7 +1015,7 @@ function createDisabledPseudo( disabled ) {
|
|
1037
1015
|
// Where there is no isDisabled, check manually
|
1038
1016
|
/* jshint -W018 */
|
1039
1017
|
elem.isDisabled !== !disabled &&
|
1040
|
-
|
1018
|
+
inDisabledFieldset( elem ) === disabled;
|
1041
1019
|
}
|
1042
1020
|
|
1043
1021
|
return elem.disabled === disabled;
|
@@ -1094,10 +1072,13 @@ support = Sizzle.support = {};
|
|
1094
1072
|
* @returns {Boolean} True iff elem is a non-HTML XML node
|
1095
1073
|
*/
|
1096
1074
|
isXML = Sizzle.isXML = function( elem ) {
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1075
|
+
var namespace = elem.namespaceURI,
|
1076
|
+
docElem = (elem.ownerDocument || elem).documentElement;
|
1077
|
+
|
1078
|
+
// Support: IE <=8
|
1079
|
+
// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
|
1080
|
+
// https://bugs.jquery.com/ticket/4833
|
1081
|
+
return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
|
1101
1082
|
};
|
1102
1083
|
|
1103
1084
|
/**
|
@@ -1519,11 +1500,8 @@ Sizzle.matchesSelector = function( elem, expr ) {
|
|
1519
1500
|
setDocument( elem );
|
1520
1501
|
}
|
1521
1502
|
|
1522
|
-
// Make sure that attribute selectors are quoted
|
1523
|
-
expr = expr.replace( rattributeQuotes, "='$1']" );
|
1524
|
-
|
1525
1503
|
if ( support.matchesSelector && documentIsHTML &&
|
1526
|
-
!
|
1504
|
+
!nonnativeSelectorCache[ expr + " " ] &&
|
1527
1505
|
( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
|
1528
1506
|
( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
|
1529
1507
|
|
@@ -1537,7 +1515,9 @@ Sizzle.matchesSelector = function( elem, expr ) {
|
|
1537
1515
|
elem.document && elem.document.nodeType !== 11 ) {
|
1538
1516
|
return ret;
|
1539
1517
|
}
|
1540
|
-
} catch (e) {
|
1518
|
+
} catch (e) {
|
1519
|
+
nonnativeSelectorCache( expr, true );
|
1520
|
+
}
|
1541
1521
|
}
|
1542
1522
|
|
1543
1523
|
return Sizzle( expr, document, null, [ elem ] ).length > 0;
|
@@ -1996,7 +1976,7 @@ Expr = Sizzle.selectors = {
|
|
1996
1976
|
"contains": markFunction(function( text ) {
|
1997
1977
|
text = text.replace( runescape, funescape );
|
1998
1978
|
return function( elem ) {
|
1999
|
-
return ( elem.textContent ||
|
1979
|
+
return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
|
2000
1980
|
};
|
2001
1981
|
}),
|
2002
1982
|
|
@@ -2135,7 +2115,11 @@ Expr = Sizzle.selectors = {
|
|
2135
2115
|
}),
|
2136
2116
|
|
2137
2117
|
"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
|
2138
|
-
var i = argument < 0 ?
|
2118
|
+
var i = argument < 0 ?
|
2119
|
+
argument + length :
|
2120
|
+
argument > length ?
|
2121
|
+
length :
|
2122
|
+
argument;
|
2139
2123
|
for ( ; --i >= 0; ) {
|
2140
2124
|
matchIndexes.push( i );
|
2141
2125
|
}
|
@@ -2848,11 +2832,9 @@ var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|
|
|
2848
2832
|
|
2849
2833
|
|
2850
2834
|
|
2851
|
-
var risSimple = /^.[^:#\[\.,]*$/;
|
2852
|
-
|
2853
2835
|
// Implement the identical functionality for filter and not
|
2854
2836
|
function winnow( elements, qualifier, not ) {
|
2855
|
-
if (
|
2837
|
+
if ( isFunction( qualifier ) ) {
|
2856
2838
|
return jQuery.grep( elements, function( elem, i ) {
|
2857
2839
|
return !!qualifier.call( elem, i, elem ) !== not;
|
2858
2840
|
} );
|
@@ -2872,16 +2854,8 @@ function winnow( elements, qualifier, not ) {
|
|
2872
2854
|
} );
|
2873
2855
|
}
|
2874
2856
|
|
2875
|
-
//
|
2876
|
-
|
2877
|
-
return jQuery.filter( qualifier, elements, not );
|
2878
|
-
}
|
2879
|
-
|
2880
|
-
// Complex selector, compare the two sets, removing non-Elements
|
2881
|
-
qualifier = jQuery.filter( qualifier, elements );
|
2882
|
-
return jQuery.grep( elements, function( elem ) {
|
2883
|
-
return ( indexOf.call( qualifier, elem ) > -1 ) !== not && elem.nodeType === 1;
|
2884
|
-
} );
|
2857
|
+
// Filtered directly for both simple and complex selectors
|
2858
|
+
return jQuery.filter( qualifier, elements, not );
|
2885
2859
|
}
|
2886
2860
|
|
2887
2861
|
jQuery.filter = function( expr, elems, not ) {
|
@@ -3002,7 +2976,7 @@ var rootjQuery,
|
|
3002
2976
|
for ( match in context ) {
|
3003
2977
|
|
3004
2978
|
// Properties of context are called as methods if possible
|
3005
|
-
if (
|
2979
|
+
if ( isFunction( this[ match ] ) ) {
|
3006
2980
|
this[ match ]( context[ match ] );
|
3007
2981
|
|
3008
2982
|
// ...and otherwise set as attributes
|
@@ -3045,7 +3019,7 @@ var rootjQuery,
|
|
3045
3019
|
|
3046
3020
|
// HANDLE: $(function)
|
3047
3021
|
// Shortcut for document ready
|
3048
|
-
} else if (
|
3022
|
+
} else if ( isFunction( selector ) ) {
|
3049
3023
|
return root.ready !== undefined ?
|
3050
3024
|
root.ready( selector ) :
|
3051
3025
|
|
@@ -3195,18 +3169,18 @@ jQuery.each( {
|
|
3195
3169
|
return siblings( elem.firstChild );
|
3196
3170
|
},
|
3197
3171
|
contents: function( elem ) {
|
3198
|
-
|
3199
|
-
|
3200
|
-
|
3172
|
+
if ( typeof elem.contentDocument !== "undefined" ) {
|
3173
|
+
return elem.contentDocument;
|
3174
|
+
}
|
3201
3175
|
|
3202
|
-
|
3203
|
-
|
3204
|
-
|
3205
|
-
|
3206
|
-
|
3207
|
-
|
3176
|
+
// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
|
3177
|
+
// Treat the template element as a regular one in browsers that
|
3178
|
+
// don't support it.
|
3179
|
+
if ( nodeName( elem, "template" ) ) {
|
3180
|
+
elem = elem.content || elem;
|
3181
|
+
}
|
3208
3182
|
|
3209
|
-
|
3183
|
+
return jQuery.merge( [], elem.childNodes );
|
3210
3184
|
}
|
3211
3185
|
}, function( name, fn ) {
|
3212
3186
|
jQuery.fn[ name ] = function( until, selector ) {
|
@@ -3360,11 +3334,11 @@ jQuery.Callbacks = function( options ) {
|
|
3360
3334
|
|
3361
3335
|
( function add( args ) {
|
3362
3336
|
jQuery.each( args, function( _, arg ) {
|
3363
|
-
if (
|
3337
|
+
if ( isFunction( arg ) ) {
|
3364
3338
|
if ( !options.unique || !self.has( arg ) ) {
|
3365
3339
|
list.push( arg );
|
3366
3340
|
}
|
3367
|
-
} else if ( arg && arg.length &&
|
3341
|
+
} else if ( arg && arg.length && toType( arg ) !== "string" ) {
|
3368
3342
|
|
3369
3343
|
// Inspect recursively
|
3370
3344
|
add( arg );
|
@@ -3479,11 +3453,11 @@ function adoptValue( value, resolve, reject, noValue ) {
|
|
3479
3453
|
try {
|
3480
3454
|
|
3481
3455
|
// Check for promise aspect first to privilege synchronous behavior
|
3482
|
-
if ( value &&
|
3456
|
+
if ( value && isFunction( ( method = value.promise ) ) ) {
|
3483
3457
|
method.call( value ).done( resolve ).fail( reject );
|
3484
3458
|
|
3485
3459
|
// Other thenables
|
3486
|
-
} else if ( value &&
|
3460
|
+
} else if ( value && isFunction( ( method = value.then ) ) ) {
|
3487
3461
|
method.call( value, resolve, reject );
|
3488
3462
|
|
3489
3463
|
// Other non-thenables
|
@@ -3541,14 +3515,14 @@ jQuery.extend( {
|
|
3541
3515
|
jQuery.each( tuples, function( i, tuple ) {
|
3542
3516
|
|
3543
3517
|
// Map tuples (progress, done, fail) to arguments (done, fail, progress)
|
3544
|
-
var fn =
|
3518
|
+
var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
|
3545
3519
|
|
3546
3520
|
// deferred.progress(function() { bind to newDefer or newDefer.notify })
|
3547
3521
|
// deferred.done(function() { bind to newDefer or newDefer.resolve })
|
3548
3522
|
// deferred.fail(function() { bind to newDefer or newDefer.reject })
|
3549
3523
|
deferred[ tuple[ 1 ] ]( function() {
|
3550
3524
|
var returned = fn && fn.apply( this, arguments );
|
3551
|
-
if ( returned &&
|
3525
|
+
if ( returned && isFunction( returned.promise ) ) {
|
3552
3526
|
returned.promise()
|
3553
3527
|
.progress( newDefer.notify )
|
3554
3528
|
.done( newDefer.resolve )
|
@@ -3602,7 +3576,7 @@ jQuery.extend( {
|
|
3602
3576
|
returned.then;
|
3603
3577
|
|
3604
3578
|
// Handle a returned thenable
|
3605
|
-
if (
|
3579
|
+
if ( isFunction( then ) ) {
|
3606
3580
|
|
3607
3581
|
// Special processors (notify) just wait for resolution
|
3608
3582
|
if ( special ) {
|
@@ -3698,7 +3672,7 @@ jQuery.extend( {
|
|
3698
3672
|
resolve(
|
3699
3673
|
0,
|
3700
3674
|
newDefer,
|
3701
|
-
|
3675
|
+
isFunction( onProgress ) ?
|
3702
3676
|
onProgress :
|
3703
3677
|
Identity,
|
3704
3678
|
newDefer.notifyWith
|
@@ -3710,7 +3684,7 @@ jQuery.extend( {
|
|
3710
3684
|
resolve(
|
3711
3685
|
0,
|
3712
3686
|
newDefer,
|
3713
|
-
|
3687
|
+
isFunction( onFulfilled ) ?
|
3714
3688
|
onFulfilled :
|
3715
3689
|
Identity
|
3716
3690
|
)
|
@@ -3721,7 +3695,7 @@ jQuery.extend( {
|
|
3721
3695
|
resolve(
|
3722
3696
|
0,
|
3723
3697
|
newDefer,
|
3724
|
-
|
3698
|
+
isFunction( onRejected ) ?
|
3725
3699
|
onRejected :
|
3726
3700
|
Thrower
|
3727
3701
|
)
|
@@ -3761,8 +3735,15 @@ jQuery.extend( {
|
|
3761
3735
|
// fulfilled_callbacks.disable
|
3762
3736
|
tuples[ 3 - i ][ 2 ].disable,
|
3763
3737
|
|
3738
|
+
// rejected_handlers.disable
|
3739
|
+
// fulfilled_handlers.disable
|
3740
|
+
tuples[ 3 - i ][ 3 ].disable,
|
3741
|
+
|
3764
3742
|
// progress_callbacks.lock
|
3765
|
-
tuples[ 0 ][ 2 ].lock
|
3743
|
+
tuples[ 0 ][ 2 ].lock,
|
3744
|
+
|
3745
|
+
// progress_handlers.lock
|
3746
|
+
tuples[ 0 ][ 3 ].lock
|
3766
3747
|
);
|
3767
3748
|
}
|
3768
3749
|
|
@@ -3832,7 +3813,7 @@ jQuery.extend( {
|
|
3832
3813
|
|
3833
3814
|
// Use .then() to unwrap secondary thenables (cf. gh-3000)
|
3834
3815
|
if ( master.state() === "pending" ||
|
3835
|
-
|
3816
|
+
isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
|
3836
3817
|
|
3837
3818
|
return master.then();
|
3838
3819
|
}
|
@@ -3960,7 +3941,7 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
|
|
3960
3941
|
bulk = key == null;
|
3961
3942
|
|
3962
3943
|
// Sets many values
|
3963
|
-
if (
|
3944
|
+
if ( toType( key ) === "object" ) {
|
3964
3945
|
chainable = true;
|
3965
3946
|
for ( i in key ) {
|
3966
3947
|
access( elems, fn, i, key[ i ], true, emptyGet, raw );
|
@@ -3970,7 +3951,7 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
|
|
3970
3951
|
} else if ( value !== undefined ) {
|
3971
3952
|
chainable = true;
|
3972
3953
|
|
3973
|
-
if ( !
|
3954
|
+
if ( !isFunction( value ) ) {
|
3974
3955
|
raw = true;
|
3975
3956
|
}
|
3976
3957
|
|
@@ -4012,6 +3993,23 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
|
|
4012
3993
|
|
4013
3994
|
return len ? fn( elems[ 0 ], key ) : emptyGet;
|
4014
3995
|
};
|
3996
|
+
|
3997
|
+
|
3998
|
+
// Matches dashed string for camelizing
|
3999
|
+
var rmsPrefix = /^-ms-/,
|
4000
|
+
rdashAlpha = /-([a-z])/g;
|
4001
|
+
|
4002
|
+
// Used by camelCase as callback to replace()
|
4003
|
+
function fcamelCase( all, letter ) {
|
4004
|
+
return letter.toUpperCase();
|
4005
|
+
}
|
4006
|
+
|
4007
|
+
// Convert dashed to camelCase; used by the css and data modules
|
4008
|
+
// Support: IE <=9 - 11, Edge 12 - 15
|
4009
|
+
// Microsoft forgot to hump their vendor prefix (#9572)
|
4010
|
+
function camelCase( string ) {
|
4011
|
+
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
|
4012
|
+
}
|
4015
4013
|
var acceptData = function( owner ) {
|
4016
4014
|
|
4017
4015
|
// Accepts only:
|
@@ -4074,14 +4072,14 @@ Data.prototype = {
|
|
4074
4072
|
// Handle: [ owner, key, value ] args
|
4075
4073
|
// Always use camelCase key (gh-2257)
|
4076
4074
|
if ( typeof data === "string" ) {
|
4077
|
-
cache[
|
4075
|
+
cache[ camelCase( data ) ] = value;
|
4078
4076
|
|
4079
4077
|
// Handle: [ owner, { properties } ] args
|
4080
4078
|
} else {
|
4081
4079
|
|
4082
4080
|
// Copy the properties one-by-one to the cache object
|
4083
4081
|
for ( prop in data ) {
|
4084
|
-
cache[
|
4082
|
+
cache[ camelCase( prop ) ] = data[ prop ];
|
4085
4083
|
}
|
4086
4084
|
}
|
4087
4085
|
return cache;
|
@@ -4091,7 +4089,7 @@ Data.prototype = {
|
|
4091
4089
|
this.cache( owner ) :
|
4092
4090
|
|
4093
4091
|
// Always use camelCase key (gh-2257)
|
4094
|
-
owner[ this.expando ] && owner[ this.expando ][
|
4092
|
+
owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
|
4095
4093
|
},
|
4096
4094
|
access: function( owner, key, value ) {
|
4097
4095
|
|
@@ -4139,9 +4137,9 @@ Data.prototype = {
|
|
4139
4137
|
|
4140
4138
|
// If key is an array of keys...
|
4141
4139
|
// We always set camelCase keys, so remove that.
|
4142
|
-
key = key.map(
|
4140
|
+
key = key.map( camelCase );
|
4143
4141
|
} else {
|
4144
|
-
key =
|
4142
|
+
key = camelCase( key );
|
4145
4143
|
|
4146
4144
|
// If a key with the spaces exists, use it.
|
4147
4145
|
// Otherwise, create an array by matching non-whitespace
|
@@ -4287,7 +4285,7 @@ jQuery.fn.extend( {
|
|
4287
4285
|
if ( attrs[ i ] ) {
|
4288
4286
|
name = attrs[ i ].name;
|
4289
4287
|
if ( name.indexOf( "data-" ) === 0 ) {
|
4290
|
-
name =
|
4288
|
+
name = camelCase( name.slice( 5 ) );
|
4291
4289
|
dataAttr( elem, name, data[ name ] );
|
4292
4290
|
}
|
4293
4291
|
}
|
@@ -4491,6 +4489,26 @@ var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
|
|
4491
4489
|
|
4492
4490
|
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
|
4493
4491
|
|
4492
|
+
var documentElement = document.documentElement;
|
4493
|
+
|
4494
|
+
|
4495
|
+
|
4496
|
+
var isAttached = function( elem ) {
|
4497
|
+
return jQuery.contains( elem.ownerDocument, elem );
|
4498
|
+
},
|
4499
|
+
composed = { composed: true };
|
4500
|
+
|
4501
|
+
// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
|
4502
|
+
// Check attachment across shadow DOM boundaries when possible (gh-3504)
|
4503
|
+
// Support: iOS 10.0-10.2 only
|
4504
|
+
// Early iOS 10 versions support `attachShadow` but not `getRootNode`,
|
4505
|
+
// leading to errors. We need to check for `getRootNode`.
|
4506
|
+
if ( documentElement.getRootNode ) {
|
4507
|
+
isAttached = function( elem ) {
|
4508
|
+
return jQuery.contains( elem.ownerDocument, elem ) ||
|
4509
|
+
elem.getRootNode( composed ) === elem.ownerDocument;
|
4510
|
+
};
|
4511
|
+
}
|
4494
4512
|
var isHiddenWithinTree = function( elem, el ) {
|
4495
4513
|
|
4496
4514
|
// isHiddenWithinTree might be called from jQuery#filter function;
|
@@ -4505,7 +4523,7 @@ var isHiddenWithinTree = function( elem, el ) {
|
|
4505
4523
|
// Support: Firefox <=43 - 45
|
4506
4524
|
// Disconnected elements can have computed display: none, so first confirm that elem is
|
4507
4525
|
// in the document.
|
4508
|
-
|
4526
|
+
isAttached( elem ) &&
|
4509
4527
|
|
4510
4528
|
jQuery.css( elem, "display" ) === "none";
|
4511
4529
|
};
|
@@ -4534,8 +4552,7 @@ var swap = function( elem, options, callback, args ) {
|
|
4534
4552
|
|
4535
4553
|
|
4536
4554
|
function adjustCSS( elem, prop, valueParts, tween ) {
|
4537
|
-
var adjusted,
|
4538
|
-
scale = 1,
|
4555
|
+
var adjusted, scale,
|
4539
4556
|
maxIterations = 20,
|
4540
4557
|
currentValue = tween ?
|
4541
4558
|
function() {
|
@@ -4548,35 +4565,39 @@ function adjustCSS( elem, prop, valueParts, tween ) {
|
|
4548
4565
|
unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
|
4549
4566
|
|
4550
4567
|
// Starting value computation is required for potential unit mismatches
|
4551
|
-
initialInUnit =
|
4568
|
+
initialInUnit = elem.nodeType &&
|
4569
|
+
( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
|
4552
4570
|
rcssNum.exec( jQuery.css( elem, prop ) );
|
4553
4571
|
|
4554
4572
|
if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
|
4555
4573
|
|
4574
|
+
// Support: Firefox <=54
|
4575
|
+
// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
|
4576
|
+
initial = initial / 2;
|
4577
|
+
|
4556
4578
|
// Trust units reported by jQuery.css
|
4557
4579
|
unit = unit || initialInUnit[ 3 ];
|
4558
4580
|
|
4559
|
-
// Make sure we update the tween properties later on
|
4560
|
-
valueParts = valueParts || [];
|
4561
|
-
|
4562
4581
|
// Iteratively approximate from a nonzero starting point
|
4563
4582
|
initialInUnit = +initial || 1;
|
4564
4583
|
|
4565
|
-
|
4566
|
-
|
4567
|
-
// If previous iteration zeroed out, double until we get *something*.
|
4568
|
-
// Use string for doubling so we don't accidentally see scale as unchanged below
|
4569
|
-
scale = scale || ".5";
|
4584
|
+
while ( maxIterations-- ) {
|
4570
4585
|
|
4571
|
-
//
|
4572
|
-
|
4586
|
+
// Evaluate and update our best guess (doubling guesses that zero out).
|
4587
|
+
// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
|
4573
4588
|
jQuery.style( elem, prop, initialInUnit + unit );
|
4589
|
+
if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
|
4590
|
+
maxIterations = 0;
|
4591
|
+
}
|
4592
|
+
initialInUnit = initialInUnit / scale;
|
4574
4593
|
|
4575
|
-
|
4576
|
-
|
4577
|
-
|
4578
|
-
|
4579
|
-
|
4594
|
+
}
|
4595
|
+
|
4596
|
+
initialInUnit = initialInUnit * 2;
|
4597
|
+
jQuery.style( elem, prop, initialInUnit + unit );
|
4598
|
+
|
4599
|
+
// Make sure we update the tween properties later on
|
4600
|
+
valueParts = valueParts || [];
|
4580
4601
|
}
|
4581
4602
|
|
4582
4603
|
if ( valueParts ) {
|
@@ -4692,9 +4713,9 @@ jQuery.fn.extend( {
|
|
4692
4713
|
} );
|
4693
4714
|
var rcheckableType = ( /^(?:checkbox|radio)$/i );
|
4694
4715
|
|
4695
|
-
var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]
|
4716
|
+
var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
|
4696
4717
|
|
4697
|
-
var rscriptType = (
|
4718
|
+
var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
|
4698
4719
|
|
4699
4720
|
|
4700
4721
|
|
@@ -4764,7 +4785,7 @@ function setGlobalEval( elems, refElements ) {
|
|
4764
4785
|
var rhtml = /<|&#?\w+;/;
|
4765
4786
|
|
4766
4787
|
function buildFragment( elems, context, scripts, selection, ignored ) {
|
4767
|
-
var elem, tmp, tag, wrap,
|
4788
|
+
var elem, tmp, tag, wrap, attached, j,
|
4768
4789
|
fragment = context.createDocumentFragment(),
|
4769
4790
|
nodes = [],
|
4770
4791
|
i = 0,
|
@@ -4776,7 +4797,7 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
|
|
4776
4797
|
if ( elem || elem === 0 ) {
|
4777
4798
|
|
4778
4799
|
// Add nodes directly
|
4779
|
-
if (
|
4800
|
+
if ( toType( elem ) === "object" ) {
|
4780
4801
|
|
4781
4802
|
// Support: Android <=4.0 only, PhantomJS 1 only
|
4782
4803
|
// push.apply(_, arraylike) throws on ancient WebKit
|
@@ -4828,13 +4849,13 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
|
|
4828
4849
|
continue;
|
4829
4850
|
}
|
4830
4851
|
|
4831
|
-
|
4852
|
+
attached = isAttached( elem );
|
4832
4853
|
|
4833
4854
|
// Append to fragment
|
4834
4855
|
tmp = getAll( fragment.appendChild( elem ), "script" );
|
4835
4856
|
|
4836
4857
|
// Preserve script evaluation history
|
4837
|
-
if (
|
4858
|
+
if ( attached ) {
|
4838
4859
|
setGlobalEval( tmp );
|
4839
4860
|
}
|
4840
4861
|
|
@@ -4877,8 +4898,6 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
|
|
4877
4898
|
div.innerHTML = "<textarea>x</textarea>";
|
4878
4899
|
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
|
4879
4900
|
} )();
|
4880
|
-
var documentElement = document.documentElement;
|
4881
|
-
|
4882
4901
|
|
4883
4902
|
|
4884
4903
|
var
|
@@ -4894,8 +4913,19 @@ function returnFalse() {
|
|
4894
4913
|
return false;
|
4895
4914
|
}
|
4896
4915
|
|
4916
|
+
// Support: IE <=9 - 11+
|
4917
|
+
// focus() and blur() are asynchronous, except when they are no-op.
|
4918
|
+
// So expect focus to be synchronous when the element is already active,
|
4919
|
+
// and blur to be synchronous when the element is not already active.
|
4920
|
+
// (focus and blur are always synchronous in other supported browsers,
|
4921
|
+
// this just defines when we can count on it).
|
4922
|
+
function expectSync( elem, type ) {
|
4923
|
+
return ( elem === safeActiveElement() ) === ( type === "focus" );
|
4924
|
+
}
|
4925
|
+
|
4897
4926
|
// Support: IE <=9 only
|
4898
|
-
//
|
4927
|
+
// Accessing document.activeElement can throw unexpectedly
|
4928
|
+
// https://bugs.jquery.com/ticket/13393
|
4899
4929
|
function safeActiveElement() {
|
4900
4930
|
try {
|
4901
4931
|
return document.activeElement;
|
@@ -5195,9 +5225,10 @@ jQuery.event = {
|
|
5195
5225
|
while ( ( handleObj = matched.handlers[ j++ ] ) &&
|
5196
5226
|
!event.isImmediatePropagationStopped() ) {
|
5197
5227
|
|
5198
|
-
//
|
5199
|
-
//
|
5200
|
-
if ( !event.rnamespace ||
|
5228
|
+
// If the event is namespaced, then each handler is only invoked if it is
|
5229
|
+
// specially universal or its namespaces are a superset of the event's.
|
5230
|
+
if ( !event.rnamespace || handleObj.namespace === false ||
|
5231
|
+
event.rnamespace.test( handleObj.namespace ) ) {
|
5201
5232
|
|
5202
5233
|
event.handleObj = handleObj;
|
5203
5234
|
event.data = handleObj.data;
|
@@ -5286,7 +5317,7 @@ jQuery.event = {
|
|
5286
5317
|
enumerable: true,
|
5287
5318
|
configurable: true,
|
5288
5319
|
|
5289
|
-
get:
|
5320
|
+
get: isFunction( hook ) ?
|
5290
5321
|
function() {
|
5291
5322
|
if ( this.originalEvent ) {
|
5292
5323
|
return hook( this.originalEvent );
|
@@ -5321,39 +5352,51 @@ jQuery.event = {
|
|
5321
5352
|
// Prevent triggered image.load events from bubbling to window.load
|
5322
5353
|
noBubble: true
|
5323
5354
|
},
|
5324
|
-
|
5355
|
+
click: {
|
5325
5356
|
|
5326
|
-
//
|
5327
|
-
|
5328
|
-
|
5329
|
-
|
5330
|
-
|
5331
|
-
|
5332
|
-
|
5333
|
-
|
5334
|
-
|
5335
|
-
|
5336
|
-
|
5337
|
-
|
5338
|
-
|
5339
|
-
return false;
|
5357
|
+
// Utilize native event to ensure correct state for checkable inputs
|
5358
|
+
setup: function( data ) {
|
5359
|
+
|
5360
|
+
// For mutual compressibility with _default, replace `this` access with a local var.
|
5361
|
+
// `|| data` is dead code meant only to preserve the variable through minification.
|
5362
|
+
var el = this || data;
|
5363
|
+
|
5364
|
+
// Claim the first handler
|
5365
|
+
if ( rcheckableType.test( el.type ) &&
|
5366
|
+
el.click && nodeName( el, "input" ) ) {
|
5367
|
+
|
5368
|
+
// dataPriv.set( el, "click", ... )
|
5369
|
+
leverageNative( el, "click", returnTrue );
|
5340
5370
|
}
|
5371
|
+
|
5372
|
+
// Return false to allow normal processing in the caller
|
5373
|
+
return false;
|
5341
5374
|
},
|
5342
|
-
|
5343
|
-
},
|
5344
|
-
click: {
|
5375
|
+
trigger: function( data ) {
|
5345
5376
|
|
5346
|
-
|
5347
|
-
|
5348
|
-
|
5349
|
-
|
5350
|
-
|
5377
|
+
// For mutual compressibility with _default, replace `this` access with a local var.
|
5378
|
+
// `|| data` is dead code meant only to preserve the variable through minification.
|
5379
|
+
var el = this || data;
|
5380
|
+
|
5381
|
+
// Force setup before triggering a click
|
5382
|
+
if ( rcheckableType.test( el.type ) &&
|
5383
|
+
el.click && nodeName( el, "input" ) ) {
|
5384
|
+
|
5385
|
+
leverageNative( el, "click" );
|
5351
5386
|
}
|
5387
|
+
|
5388
|
+
// Return non-false to allow normal event-path propagation
|
5389
|
+
return true;
|
5352
5390
|
},
|
5353
5391
|
|
5354
|
-
// For cross-browser consistency,
|
5392
|
+
// For cross-browser consistency, suppress native .click() on links
|
5393
|
+
// Also prevent it if we're currently inside a leveraged native-event stack
|
5355
5394
|
_default: function( event ) {
|
5356
|
-
|
5395
|
+
var target = event.target;
|
5396
|
+
return rcheckableType.test( target.type ) &&
|
5397
|
+
target.click && nodeName( target, "input" ) &&
|
5398
|
+
dataPriv.get( target, "click" ) ||
|
5399
|
+
nodeName( target, "a" );
|
5357
5400
|
}
|
5358
5401
|
},
|
5359
5402
|
|
@@ -5370,6 +5413,93 @@ jQuery.event = {
|
|
5370
5413
|
}
|
5371
5414
|
};
|
5372
5415
|
|
5416
|
+
// Ensure the presence of an event listener that handles manually-triggered
|
5417
|
+
// synthetic events by interrupting progress until reinvoked in response to
|
5418
|
+
// *native* events that it fires directly, ensuring that state changes have
|
5419
|
+
// already occurred before other listeners are invoked.
|
5420
|
+
function leverageNative( el, type, expectSync ) {
|
5421
|
+
|
5422
|
+
// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
|
5423
|
+
if ( !expectSync ) {
|
5424
|
+
if ( dataPriv.get( el, type ) === undefined ) {
|
5425
|
+
jQuery.event.add( el, type, returnTrue );
|
5426
|
+
}
|
5427
|
+
return;
|
5428
|
+
}
|
5429
|
+
|
5430
|
+
// Register the controller as a special universal handler for all event namespaces
|
5431
|
+
dataPriv.set( el, type, false );
|
5432
|
+
jQuery.event.add( el, type, {
|
5433
|
+
namespace: false,
|
5434
|
+
handler: function( event ) {
|
5435
|
+
var notAsync, result,
|
5436
|
+
saved = dataPriv.get( this, type );
|
5437
|
+
|
5438
|
+
if ( ( event.isTrigger & 1 ) && this[ type ] ) {
|
5439
|
+
|
5440
|
+
// Interrupt processing of the outer synthetic .trigger()ed event
|
5441
|
+
// Saved data should be false in such cases, but might be a leftover capture object
|
5442
|
+
// from an async native handler (gh-4350)
|
5443
|
+
if ( !saved.length ) {
|
5444
|
+
|
5445
|
+
// Store arguments for use when handling the inner native event
|
5446
|
+
// There will always be at least one argument (an event object), so this array
|
5447
|
+
// will not be confused with a leftover capture object.
|
5448
|
+
saved = slice.call( arguments );
|
5449
|
+
dataPriv.set( this, type, saved );
|
5450
|
+
|
5451
|
+
// Trigger the native event and capture its result
|
5452
|
+
// Support: IE <=9 - 11+
|
5453
|
+
// focus() and blur() are asynchronous
|
5454
|
+
notAsync = expectSync( this, type );
|
5455
|
+
this[ type ]();
|
5456
|
+
result = dataPriv.get( this, type );
|
5457
|
+
if ( saved !== result || notAsync ) {
|
5458
|
+
dataPriv.set( this, type, false );
|
5459
|
+
} else {
|
5460
|
+
result = {};
|
5461
|
+
}
|
5462
|
+
if ( saved !== result ) {
|
5463
|
+
|
5464
|
+
// Cancel the outer synthetic event
|
5465
|
+
event.stopImmediatePropagation();
|
5466
|
+
event.preventDefault();
|
5467
|
+
return result.value;
|
5468
|
+
}
|
5469
|
+
|
5470
|
+
// If this is an inner synthetic event for an event with a bubbling surrogate
|
5471
|
+
// (focus or blur), assume that the surrogate already propagated from triggering the
|
5472
|
+
// native event and prevent that from happening again here.
|
5473
|
+
// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
|
5474
|
+
// bubbling surrogate propagates *after* the non-bubbling base), but that seems
|
5475
|
+
// less bad than duplication.
|
5476
|
+
} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
|
5477
|
+
event.stopPropagation();
|
5478
|
+
}
|
5479
|
+
|
5480
|
+
// If this is a native event triggered above, everything is now in order
|
5481
|
+
// Fire an inner synthetic event with the original arguments
|
5482
|
+
} else if ( saved.length ) {
|
5483
|
+
|
5484
|
+
// ...and capture the result
|
5485
|
+
dataPriv.set( this, type, {
|
5486
|
+
value: jQuery.event.trigger(
|
5487
|
+
|
5488
|
+
// Support: IE <=9 - 11+
|
5489
|
+
// Extend with the prototype to reset the above stopImmediatePropagation()
|
5490
|
+
jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
|
5491
|
+
saved.slice( 1 ),
|
5492
|
+
this
|
5493
|
+
)
|
5494
|
+
} );
|
5495
|
+
|
5496
|
+
// Abort handling of the native event
|
5497
|
+
event.stopImmediatePropagation();
|
5498
|
+
}
|
5499
|
+
}
|
5500
|
+
} );
|
5501
|
+
}
|
5502
|
+
|
5373
5503
|
jQuery.removeEvent = function( elem, type, handle ) {
|
5374
5504
|
|
5375
5505
|
// This "if" is needed for plain objects
|
@@ -5421,7 +5551,7 @@ jQuery.Event = function( src, props ) {
|
|
5421
5551
|
}
|
5422
5552
|
|
5423
5553
|
// Create a timestamp if incoming event doesn't have one
|
5424
|
-
this.timeStamp = src && src.timeStamp ||
|
5554
|
+
this.timeStamp = src && src.timeStamp || Date.now();
|
5425
5555
|
|
5426
5556
|
// Mark it as fixed
|
5427
5557
|
this[ jQuery.expando ] = true;
|
@@ -5482,6 +5612,7 @@ jQuery.each( {
|
|
5482
5612
|
shiftKey: true,
|
5483
5613
|
view: true,
|
5484
5614
|
"char": true,
|
5615
|
+
code: true,
|
5485
5616
|
charCode: true,
|
5486
5617
|
key: true,
|
5487
5618
|
keyCode: true,
|
@@ -5528,6 +5659,33 @@ jQuery.each( {
|
|
5528
5659
|
}
|
5529
5660
|
}, jQuery.event.addProp );
|
5530
5661
|
|
5662
|
+
jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
|
5663
|
+
jQuery.event.special[ type ] = {
|
5664
|
+
|
5665
|
+
// Utilize native event if possible so blur/focus sequence is correct
|
5666
|
+
setup: function() {
|
5667
|
+
|
5668
|
+
// Claim the first handler
|
5669
|
+
// dataPriv.set( this, "focus", ... )
|
5670
|
+
// dataPriv.set( this, "blur", ... )
|
5671
|
+
leverageNative( this, type, expectSync );
|
5672
|
+
|
5673
|
+
// Return false to allow normal processing in the caller
|
5674
|
+
return false;
|
5675
|
+
},
|
5676
|
+
trigger: function() {
|
5677
|
+
|
5678
|
+
// Force setup before trigger
|
5679
|
+
leverageNative( this, type );
|
5680
|
+
|
5681
|
+
// Return non-false to allow normal event-path propagation
|
5682
|
+
return true;
|
5683
|
+
},
|
5684
|
+
|
5685
|
+
delegateType: delegateType
|
5686
|
+
};
|
5687
|
+
} );
|
5688
|
+
|
5531
5689
|
// Create mouseenter/leave events using mouseover/out and event-time checks
|
5532
5690
|
// so that event delegation works in jQuery.
|
5533
5691
|
// Do the same for pointerenter/pointerleave and pointerover/pointerout
|
@@ -5620,14 +5778,13 @@ var
|
|
5620
5778
|
|
5621
5779
|
/* eslint-enable */
|
5622
5780
|
|
5623
|
-
// Support: IE <=10 - 11, Edge 12 - 13
|
5781
|
+
// Support: IE <=10 - 11, Edge 12 - 13 only
|
5624
5782
|
// In IE/Edge using regex groups here causes severe slowdowns.
|
5625
5783
|
// See https://connect.microsoft.com/IE/feedback/details/1736512/
|
5626
5784
|
rnoInnerhtml = /<script|<style|<link/i,
|
5627
5785
|
|
5628
5786
|
// checked="checked" or checked
|
5629
5787
|
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
|
5630
|
-
rscriptTypeMasked = /^true\/(.*)/,
|
5631
5788
|
rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
|
5632
5789
|
|
5633
5790
|
// Prefer a tbody over its parent table for containing new rows
|
@@ -5635,7 +5792,7 @@ function manipulationTarget( elem, content ) {
|
|
5635
5792
|
if ( nodeName( elem, "table" ) &&
|
5636
5793
|
nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
|
5637
5794
|
|
5638
|
-
return jQuery( "
|
5795
|
+
return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
|
5639
5796
|
}
|
5640
5797
|
|
5641
5798
|
return elem;
|
@@ -5647,10 +5804,8 @@ function disableScript( elem ) {
|
|
5647
5804
|
return elem;
|
5648
5805
|
}
|
5649
5806
|
function restoreScript( elem ) {
|
5650
|
-
|
5651
|
-
|
5652
|
-
if ( match ) {
|
5653
|
-
elem.type = match[ 1 ];
|
5807
|
+
if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
|
5808
|
+
elem.type = elem.type.slice( 5 );
|
5654
5809
|
} else {
|
5655
5810
|
elem.removeAttribute( "type" );
|
5656
5811
|
}
|
@@ -5716,15 +5871,15 @@ function domManip( collection, args, callback, ignored ) {
|
|
5716
5871
|
l = collection.length,
|
5717
5872
|
iNoClone = l - 1,
|
5718
5873
|
value = args[ 0 ],
|
5719
|
-
|
5874
|
+
valueIsFunction = isFunction( value );
|
5720
5875
|
|
5721
5876
|
// We can't cloneNode fragments that contain checked, in WebKit
|
5722
|
-
if (
|
5877
|
+
if ( valueIsFunction ||
|
5723
5878
|
( l > 1 && typeof value === "string" &&
|
5724
5879
|
!support.checkClone && rchecked.test( value ) ) ) {
|
5725
5880
|
return collection.each( function( index ) {
|
5726
5881
|
var self = collection.eq( index );
|
5727
|
-
if (
|
5882
|
+
if ( valueIsFunction ) {
|
5728
5883
|
args[ 0 ] = value.call( this, index, self.html() );
|
5729
5884
|
}
|
5730
5885
|
domManip( self, args, callback, ignored );
|
@@ -5778,14 +5933,16 @@ function domManip( collection, args, callback, ignored ) {
|
|
5778
5933
|
!dataPriv.access( node, "globalEval" ) &&
|
5779
5934
|
jQuery.contains( doc, node ) ) {
|
5780
5935
|
|
5781
|
-
if ( node.src ) {
|
5936
|
+
if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) {
|
5782
5937
|
|
5783
5938
|
// Optional AJAX dependency, but won't run scripts if not present
|
5784
|
-
if ( jQuery._evalUrl ) {
|
5785
|
-
jQuery._evalUrl( node.src
|
5939
|
+
if ( jQuery._evalUrl && !node.noModule ) {
|
5940
|
+
jQuery._evalUrl( node.src, {
|
5941
|
+
nonce: node.nonce || node.getAttribute( "nonce" )
|
5942
|
+
} );
|
5786
5943
|
}
|
5787
5944
|
} else {
|
5788
|
-
DOMEval( node.textContent.replace( rcleanScript, "" ), doc );
|
5945
|
+
DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
|
5789
5946
|
}
|
5790
5947
|
}
|
5791
5948
|
}
|
@@ -5807,7 +5964,7 @@ function remove( elem, selector, keepData ) {
|
|
5807
5964
|
}
|
5808
5965
|
|
5809
5966
|
if ( node.parentNode ) {
|
5810
|
-
if ( keepData &&
|
5967
|
+
if ( keepData && isAttached( node ) ) {
|
5811
5968
|
setGlobalEval( getAll( node, "script" ) );
|
5812
5969
|
}
|
5813
5970
|
node.parentNode.removeChild( node );
|
@@ -5825,7 +5982,7 @@ jQuery.extend( {
|
|
5825
5982
|
clone: function( elem, dataAndEvents, deepDataAndEvents ) {
|
5826
5983
|
var i, l, srcElements, destElements,
|
5827
5984
|
clone = elem.cloneNode( true ),
|
5828
|
-
inPage =
|
5985
|
+
inPage = isAttached( elem );
|
5829
5986
|
|
5830
5987
|
// Fix IE cloning issues
|
5831
5988
|
if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
|
@@ -6065,8 +6222,6 @@ jQuery.each( {
|
|
6065
6222
|
return this.pushStack( ret );
|
6066
6223
|
};
|
6067
6224
|
} );
|
6068
|
-
var rmargin = ( /^margin/ );
|
6069
|
-
|
6070
6225
|
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
|
6071
6226
|
|
6072
6227
|
var getStyles = function( elem ) {
|
@@ -6083,6 +6238,8 @@ var getStyles = function( elem ) {
|
|
6083
6238
|
return view.getComputedStyle( elem );
|
6084
6239
|
};
|
6085
6240
|
|
6241
|
+
var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
|
6242
|
+
|
6086
6243
|
|
6087
6244
|
|
6088
6245
|
( function() {
|
@@ -6096,25 +6253,35 @@ var getStyles = function( elem ) {
|
|
6096
6253
|
return;
|
6097
6254
|
}
|
6098
6255
|
|
6256
|
+
container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
|
6257
|
+
"margin-top:1px;padding:0;border:0";
|
6099
6258
|
div.style.cssText =
|
6100
|
-
"box-sizing:border-box;" +
|
6101
|
-
"position:relative;display:block;" +
|
6259
|
+
"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
|
6102
6260
|
"margin:auto;border:1px;padding:1px;" +
|
6103
|
-
"top:1
|
6104
|
-
|
6105
|
-
documentElement.appendChild( container );
|
6261
|
+
"width:60%;top:1%";
|
6262
|
+
documentElement.appendChild( container ).appendChild( div );
|
6106
6263
|
|
6107
6264
|
var divStyle = window.getComputedStyle( div );
|
6108
6265
|
pixelPositionVal = divStyle.top !== "1%";
|
6109
6266
|
|
6110
6267
|
// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
|
6111
|
-
reliableMarginLeftVal = divStyle.marginLeft ===
|
6112
|
-
boxSizingReliableVal = divStyle.width === "4px";
|
6268
|
+
reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
|
6113
6269
|
|
6114
|
-
// Support: Android 4.0 - 4.3 only
|
6270
|
+
// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
|
6115
6271
|
// Some styles come back with percentage values, even though they shouldn't
|
6116
|
-
div.style.
|
6117
|
-
|
6272
|
+
div.style.right = "60%";
|
6273
|
+
pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
|
6274
|
+
|
6275
|
+
// Support: IE 9 - 11 only
|
6276
|
+
// Detect misreporting of content dimensions for box-sizing:border-box elements
|
6277
|
+
boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
|
6278
|
+
|
6279
|
+
// Support: IE 9 only
|
6280
|
+
// Detect overflow:scroll screwiness (gh-3699)
|
6281
|
+
// Support: Chrome <=64
|
6282
|
+
// Don't get tricked when zoom affects offsetWidth (gh-4029)
|
6283
|
+
div.style.position = "absolute";
|
6284
|
+
scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
|
6118
6285
|
|
6119
6286
|
documentElement.removeChild( container );
|
6120
6287
|
|
@@ -6123,7 +6290,12 @@ var getStyles = function( elem ) {
|
|
6123
6290
|
div = null;
|
6124
6291
|
}
|
6125
6292
|
|
6126
|
-
|
6293
|
+
function roundPixelMeasures( measure ) {
|
6294
|
+
return Math.round( parseFloat( measure ) );
|
6295
|
+
}
|
6296
|
+
|
6297
|
+
var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
|
6298
|
+
reliableMarginLeftVal,
|
6127
6299
|
container = document.createElement( "div" ),
|
6128
6300
|
div = document.createElement( "div" );
|
6129
6301
|
|
@@ -6138,26 +6310,26 @@ var getStyles = function( elem ) {
|
|
6138
6310
|
div.cloneNode( true ).style.backgroundClip = "";
|
6139
6311
|
support.clearCloneStyle = div.style.backgroundClip === "content-box";
|
6140
6312
|
|
6141
|
-
container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" +
|
6142
|
-
"padding:0;margin-top:1px;position:absolute";
|
6143
|
-
container.appendChild( div );
|
6144
|
-
|
6145
6313
|
jQuery.extend( support, {
|
6146
|
-
pixelPosition: function() {
|
6147
|
-
computeStyleTests();
|
6148
|
-
return pixelPositionVal;
|
6149
|
-
},
|
6150
6314
|
boxSizingReliable: function() {
|
6151
6315
|
computeStyleTests();
|
6152
6316
|
return boxSizingReliableVal;
|
6153
6317
|
},
|
6154
|
-
|
6318
|
+
pixelBoxStyles: function() {
|
6319
|
+
computeStyleTests();
|
6320
|
+
return pixelBoxStylesVal;
|
6321
|
+
},
|
6322
|
+
pixelPosition: function() {
|
6155
6323
|
computeStyleTests();
|
6156
|
-
return
|
6324
|
+
return pixelPositionVal;
|
6157
6325
|
},
|
6158
6326
|
reliableMarginLeft: function() {
|
6159
6327
|
computeStyleTests();
|
6160
6328
|
return reliableMarginLeftVal;
|
6329
|
+
},
|
6330
|
+
scrollboxSize: function() {
|
6331
|
+
computeStyleTests();
|
6332
|
+
return scrollboxSizeVal;
|
6161
6333
|
}
|
6162
6334
|
} );
|
6163
6335
|
} )();
|
@@ -6180,7 +6352,7 @@ function curCSS( elem, name, computed ) {
|
|
6180
6352
|
if ( computed ) {
|
6181
6353
|
ret = computed.getPropertyValue( name ) || computed[ name ];
|
6182
6354
|
|
6183
|
-
if ( ret === "" && !
|
6355
|
+
if ( ret === "" && !isAttached( elem ) ) {
|
6184
6356
|
ret = jQuery.style( elem, name );
|
6185
6357
|
}
|
6186
6358
|
|
@@ -6189,7 +6361,7 @@ function curCSS( elem, name, computed ) {
|
|
6189
6361
|
// but width seems to be reliably pixels.
|
6190
6362
|
// This is against the CSSOM draft spec:
|
6191
6363
|
// https://drafts.csswg.org/cssom/#resolved-values
|
6192
|
-
if ( !support.
|
6364
|
+
if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
|
6193
6365
|
|
6194
6366
|
// Remember the original values
|
6195
6367
|
width = style.width;
|
@@ -6236,30 +6408,13 @@ function addGetHookIf( conditionFn, hookFn ) {
|
|
6236
6408
|
}
|
6237
6409
|
|
6238
6410
|
|
6239
|
-
var
|
6411
|
+
var cssPrefixes = [ "Webkit", "Moz", "ms" ],
|
6412
|
+
emptyStyle = document.createElement( "div" ).style,
|
6413
|
+
vendorProps = {};
|
6240
6414
|
|
6241
|
-
|
6242
|
-
// except "table", "table-cell", or "table-caption"
|
6243
|
-
// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
|
6244
|
-
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
|
6245
|
-
rcustomProp = /^--/,
|
6246
|
-
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
|
6247
|
-
cssNormalTransform = {
|
6248
|
-
letterSpacing: "0",
|
6249
|
-
fontWeight: "400"
|
6250
|
-
},
|
6251
|
-
|
6252
|
-
cssPrefixes = [ "Webkit", "Moz", "ms" ],
|
6253
|
-
emptyStyle = document.createElement( "div" ).style;
|
6254
|
-
|
6255
|
-
// Return a css property mapped to a potentially vendor prefixed property
|
6415
|
+
// Return a vendor-prefixed property or undefined
|
6256
6416
|
function vendorPropName( name ) {
|
6257
6417
|
|
6258
|
-
// Shortcut for names that are not vendor prefixed
|
6259
|
-
if ( name in emptyStyle ) {
|
6260
|
-
return name;
|
6261
|
-
}
|
6262
|
-
|
6263
6418
|
// Check for vendor prefixed names
|
6264
6419
|
var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
|
6265
6420
|
i = cssPrefixes.length;
|
@@ -6272,16 +6427,33 @@ function vendorPropName( name ) {
|
|
6272
6427
|
}
|
6273
6428
|
}
|
6274
6429
|
|
6275
|
-
// Return a
|
6276
|
-
// a vendor prefixed property.
|
6430
|
+
// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
|
6277
6431
|
function finalPropName( name ) {
|
6278
|
-
var
|
6279
|
-
|
6280
|
-
|
6432
|
+
var final = jQuery.cssProps[ name ] || vendorProps[ name ];
|
6433
|
+
|
6434
|
+
if ( final ) {
|
6435
|
+
return final;
|
6281
6436
|
}
|
6282
|
-
|
6437
|
+
if ( name in emptyStyle ) {
|
6438
|
+
return name;
|
6439
|
+
}
|
6440
|
+
return vendorProps[ name ] = vendorPropName( name ) || name;
|
6283
6441
|
}
|
6284
6442
|
|
6443
|
+
|
6444
|
+
var
|
6445
|
+
|
6446
|
+
// Swappable if display is none or starts with table
|
6447
|
+
// except "table", "table-cell", or "table-caption"
|
6448
|
+
// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
|
6449
|
+
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
|
6450
|
+
rcustomProp = /^--/,
|
6451
|
+
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
|
6452
|
+
cssNormalTransform = {
|
6453
|
+
letterSpacing: "0",
|
6454
|
+
fontWeight: "400"
|
6455
|
+
};
|
6456
|
+
|
6285
6457
|
function setPositiveNumber( elem, value, subtract ) {
|
6286
6458
|
|
6287
6459
|
// Any relative (+/-) values have already been
|
@@ -6294,87 +6466,137 @@ function setPositiveNumber( elem, value, subtract ) {
|
|
6294
6466
|
value;
|
6295
6467
|
}
|
6296
6468
|
|
6297
|
-
function
|
6298
|
-
var i,
|
6299
|
-
|
6300
|
-
|
6301
|
-
// If we already have the right measurement, avoid augmentation
|
6302
|
-
if ( extra === ( isBorderBox ? "border" : "content" ) ) {
|
6303
|
-
i = 4;
|
6469
|
+
function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
|
6470
|
+
var i = dimension === "width" ? 1 : 0,
|
6471
|
+
extra = 0,
|
6472
|
+
delta = 0;
|
6304
6473
|
|
6305
|
-
//
|
6306
|
-
|
6307
|
-
|
6474
|
+
// Adjustment may not be necessary
|
6475
|
+
if ( box === ( isBorderBox ? "border" : "content" ) ) {
|
6476
|
+
return 0;
|
6308
6477
|
}
|
6309
6478
|
|
6310
6479
|
for ( ; i < 4; i += 2 ) {
|
6311
6480
|
|
6312
|
-
// Both box models exclude margin
|
6313
|
-
if (
|
6314
|
-
|
6481
|
+
// Both box models exclude margin
|
6482
|
+
if ( box === "margin" ) {
|
6483
|
+
delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
|
6315
6484
|
}
|
6316
6485
|
|
6317
|
-
|
6486
|
+
// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
|
6487
|
+
if ( !isBorderBox ) {
|
6318
6488
|
|
6319
|
-
//
|
6320
|
-
|
6321
|
-
|
6322
|
-
|
6489
|
+
// Add padding
|
6490
|
+
delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
|
6491
|
+
|
6492
|
+
// For "border" or "margin", add border
|
6493
|
+
if ( box !== "padding" ) {
|
6494
|
+
delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
|
6323
6495
|
|
6324
|
-
//
|
6325
|
-
|
6326
|
-
|
6496
|
+
// But still keep track of it otherwise
|
6497
|
+
} else {
|
6498
|
+
extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
|
6327
6499
|
}
|
6500
|
+
|
6501
|
+
// If we get here with a border-box (content + padding + border), we're seeking "content" or
|
6502
|
+
// "padding" or "margin"
|
6328
6503
|
} else {
|
6329
6504
|
|
6330
|
-
//
|
6331
|
-
|
6505
|
+
// For "content", subtract padding
|
6506
|
+
if ( box === "content" ) {
|
6507
|
+
delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
|
6508
|
+
}
|
6332
6509
|
|
6333
|
-
//
|
6334
|
-
if (
|
6335
|
-
|
6510
|
+
// For "content" or "padding", subtract border
|
6511
|
+
if ( box !== "margin" ) {
|
6512
|
+
delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
|
6336
6513
|
}
|
6337
6514
|
}
|
6338
6515
|
}
|
6339
6516
|
|
6340
|
-
|
6517
|
+
// Account for positive content-box scroll gutter when requested by providing computedVal
|
6518
|
+
if ( !isBorderBox && computedVal >= 0 ) {
|
6519
|
+
|
6520
|
+
// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
|
6521
|
+
// Assuming integer scroll gutter, subtract the rest and round down
|
6522
|
+
delta += Math.max( 0, Math.ceil(
|
6523
|
+
elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
|
6524
|
+
computedVal -
|
6525
|
+
delta -
|
6526
|
+
extra -
|
6527
|
+
0.5
|
6528
|
+
|
6529
|
+
// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
|
6530
|
+
// Use an explicit zero to avoid NaN (gh-3964)
|
6531
|
+
) ) || 0;
|
6532
|
+
}
|
6533
|
+
|
6534
|
+
return delta;
|
6341
6535
|
}
|
6342
6536
|
|
6343
|
-
function getWidthOrHeight( elem,
|
6537
|
+
function getWidthOrHeight( elem, dimension, extra ) {
|
6344
6538
|
|
6345
6539
|
// Start with computed style
|
6346
|
-
var
|
6347
|
-
|
6348
|
-
|
6349
|
-
|
6540
|
+
var styles = getStyles( elem ),
|
6541
|
+
|
6542
|
+
// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
|
6543
|
+
// Fake content-box until we know it's needed to know the true value.
|
6544
|
+
boxSizingNeeded = !support.boxSizingReliable() || extra,
|
6545
|
+
isBorderBox = boxSizingNeeded &&
|
6546
|
+
jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
|
6547
|
+
valueIsBorderBox = isBorderBox,
|
6548
|
+
|
6549
|
+
val = curCSS( elem, dimension, styles ),
|
6550
|
+
offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
|
6350
6551
|
|
6351
|
-
//
|
6552
|
+
// Support: Firefox <=54
|
6553
|
+
// Return a confounding non-pixel value or feign ignorance, as appropriate.
|
6352
6554
|
if ( rnumnonpx.test( val ) ) {
|
6353
|
-
|
6555
|
+
if ( !extra ) {
|
6556
|
+
return val;
|
6557
|
+
}
|
6558
|
+
val = "auto";
|
6354
6559
|
}
|
6355
6560
|
|
6356
|
-
// Check for style in case a browser which returns unreliable values
|
6357
|
-
// for getComputedStyle silently falls back to the reliable elem.style
|
6358
|
-
valueIsBorderBox = isBorderBox &&
|
6359
|
-
( support.boxSizingReliable() || val === elem.style[ name ] );
|
6360
6561
|
|
6361
|
-
// Fall back to offsetWidth/
|
6562
|
+
// Fall back to offsetWidth/offsetHeight when value is "auto"
|
6362
6563
|
// This happens for inline elements with no explicit setting (gh-3571)
|
6363
|
-
|
6364
|
-
|
6564
|
+
// Support: Android <=4.1 - 4.3 only
|
6565
|
+
// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
|
6566
|
+
// Support: IE 9-11 only
|
6567
|
+
// Also use offsetWidth/offsetHeight for when box sizing is unreliable
|
6568
|
+
// We use getClientRects() to check for hidden/disconnected.
|
6569
|
+
// In those cases, the computed value can be trusted to be border-box
|
6570
|
+
if ( ( !support.boxSizingReliable() && isBorderBox ||
|
6571
|
+
val === "auto" ||
|
6572
|
+
!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
|
6573
|
+
elem.getClientRects().length ) {
|
6574
|
+
|
6575
|
+
isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
|
6576
|
+
|
6577
|
+
// Where available, offsetWidth/offsetHeight approximate border box dimensions.
|
6578
|
+
// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
|
6579
|
+
// retrieved value as a content box dimension.
|
6580
|
+
valueIsBorderBox = offsetProp in elem;
|
6581
|
+
if ( valueIsBorderBox ) {
|
6582
|
+
val = elem[ offsetProp ];
|
6583
|
+
}
|
6365
6584
|
}
|
6366
6585
|
|
6367
|
-
// Normalize ""
|
6586
|
+
// Normalize "" and auto
|
6368
6587
|
val = parseFloat( val ) || 0;
|
6369
6588
|
|
6370
|
-
//
|
6589
|
+
// Adjust for the element's box model
|
6371
6590
|
return ( val +
|
6372
|
-
|
6591
|
+
boxModelAdjustment(
|
6373
6592
|
elem,
|
6374
|
-
|
6593
|
+
dimension,
|
6375
6594
|
extra || ( isBorderBox ? "border" : "content" ),
|
6376
6595
|
valueIsBorderBox,
|
6377
|
-
styles
|
6596
|
+
styles,
|
6597
|
+
|
6598
|
+
// Provide the current computed size to request scroll gutter calculation (gh-3589)
|
6599
|
+
val
|
6378
6600
|
)
|
6379
6601
|
) + "px";
|
6380
6602
|
}
|
@@ -6404,6 +6626,13 @@ jQuery.extend( {
|
|
6404
6626
|
"flexGrow": true,
|
6405
6627
|
"flexShrink": true,
|
6406
6628
|
"fontWeight": true,
|
6629
|
+
"gridArea": true,
|
6630
|
+
"gridColumn": true,
|
6631
|
+
"gridColumnEnd": true,
|
6632
|
+
"gridColumnStart": true,
|
6633
|
+
"gridRow": true,
|
6634
|
+
"gridRowEnd": true,
|
6635
|
+
"gridRowStart": true,
|
6407
6636
|
"lineHeight": true,
|
6408
6637
|
"opacity": true,
|
6409
6638
|
"order": true,
|
@@ -6415,9 +6644,7 @@ jQuery.extend( {
|
|
6415
6644
|
|
6416
6645
|
// Add in properties whose names you wish to fix before
|
6417
6646
|
// setting or getting the value
|
6418
|
-
cssProps: {
|
6419
|
-
"float": "cssFloat"
|
6420
|
-
},
|
6647
|
+
cssProps: {},
|
6421
6648
|
|
6422
6649
|
// Get and set the style property on a DOM Node
|
6423
6650
|
style: function( elem, name, value, extra ) {
|
@@ -6429,7 +6656,7 @@ jQuery.extend( {
|
|
6429
6656
|
|
6430
6657
|
// Make sure that we're working with the right name
|
6431
6658
|
var ret, type, hooks,
|
6432
|
-
origName =
|
6659
|
+
origName = camelCase( name ),
|
6433
6660
|
isCustomProp = rcustomProp.test( name ),
|
6434
6661
|
style = elem.style;
|
6435
6662
|
|
@@ -6461,7 +6688,9 @@ jQuery.extend( {
|
|
6461
6688
|
}
|
6462
6689
|
|
6463
6690
|
// If a number was passed in, add the unit (except for certain CSS properties)
|
6464
|
-
|
6691
|
+
// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
|
6692
|
+
// "px" to a few hardcoded values.
|
6693
|
+
if ( type === "number" && !isCustomProp ) {
|
6465
6694
|
value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
|
6466
6695
|
}
|
6467
6696
|
|
@@ -6497,7 +6726,7 @@ jQuery.extend( {
|
|
6497
6726
|
|
6498
6727
|
css: function( elem, name, extra, styles ) {
|
6499
6728
|
var val, num, hooks,
|
6500
|
-
origName =
|
6729
|
+
origName = camelCase( name ),
|
6501
6730
|
isCustomProp = rcustomProp.test( name );
|
6502
6731
|
|
6503
6732
|
// Make sure that we're working with the right name. We don't
|
@@ -6535,8 +6764,8 @@ jQuery.extend( {
|
|
6535
6764
|
}
|
6536
6765
|
} );
|
6537
6766
|
|
6538
|
-
jQuery.each( [ "height", "width" ], function( i,
|
6539
|
-
jQuery.cssHooks[
|
6767
|
+
jQuery.each( [ "height", "width" ], function( i, dimension ) {
|
6768
|
+
jQuery.cssHooks[ dimension ] = {
|
6540
6769
|
get: function( elem, computed, extra ) {
|
6541
6770
|
if ( computed ) {
|
6542
6771
|
|
@@ -6552,29 +6781,52 @@ jQuery.each( [ "height", "width" ], function( i, name ) {
|
|
6552
6781
|
// in IE throws an error.
|
6553
6782
|
( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
|
6554
6783
|
swap( elem, cssShow, function() {
|
6555
|
-
return getWidthOrHeight( elem,
|
6784
|
+
return getWidthOrHeight( elem, dimension, extra );
|
6556
6785
|
} ) :
|
6557
|
-
getWidthOrHeight( elem,
|
6786
|
+
getWidthOrHeight( elem, dimension, extra );
|
6558
6787
|
}
|
6559
6788
|
},
|
6560
6789
|
|
6561
6790
|
set: function( elem, value, extra ) {
|
6562
6791
|
var matches,
|
6563
|
-
styles =
|
6564
|
-
|
6565
|
-
|
6566
|
-
|
6567
|
-
|
6792
|
+
styles = getStyles( elem ),
|
6793
|
+
|
6794
|
+
// Only read styles.position if the test has a chance to fail
|
6795
|
+
// to avoid forcing a reflow.
|
6796
|
+
scrollboxSizeBuggy = !support.scrollboxSize() &&
|
6797
|
+
styles.position === "absolute",
|
6798
|
+
|
6799
|
+
// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
|
6800
|
+
boxSizingNeeded = scrollboxSizeBuggy || extra,
|
6801
|
+
isBorderBox = boxSizingNeeded &&
|
6568
6802
|
jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
|
6569
|
-
|
6803
|
+
subtract = extra ?
|
6804
|
+
boxModelAdjustment(
|
6805
|
+
elem,
|
6806
|
+
dimension,
|
6807
|
+
extra,
|
6808
|
+
isBorderBox,
|
6809
|
+
styles
|
6810
|
+
) :
|
6811
|
+
0;
|
6812
|
+
|
6813
|
+
// Account for unreliable border-box dimensions by comparing offset* to computed and
|
6814
|
+
// faking a content-box to get border and padding (gh-3699)
|
6815
|
+
if ( isBorderBox && scrollboxSizeBuggy ) {
|
6816
|
+
subtract -= Math.ceil(
|
6817
|
+
elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
|
6818
|
+
parseFloat( styles[ dimension ] ) -
|
6819
|
+
boxModelAdjustment( elem, dimension, "border", false, styles ) -
|
6820
|
+
0.5
|
6570
6821
|
);
|
6822
|
+
}
|
6571
6823
|
|
6572
6824
|
// Convert to pixels if value adjustment is needed
|
6573
6825
|
if ( subtract && ( matches = rcssNum.exec( value ) ) &&
|
6574
6826
|
( matches[ 3 ] || "px" ) !== "px" ) {
|
6575
6827
|
|
6576
|
-
elem.style[
|
6577
|
-
value = jQuery.css( elem,
|
6828
|
+
elem.style[ dimension ] = value;
|
6829
|
+
value = jQuery.css( elem, dimension );
|
6578
6830
|
}
|
6579
6831
|
|
6580
6832
|
return setPositiveNumber( elem, value, subtract );
|
@@ -6618,7 +6870,7 @@ jQuery.each( {
|
|
6618
6870
|
}
|
6619
6871
|
};
|
6620
6872
|
|
6621
|
-
if (
|
6873
|
+
if ( prefix !== "margin" ) {
|
6622
6874
|
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
|
6623
6875
|
}
|
6624
6876
|
} );
|
@@ -6728,9 +6980,9 @@ Tween.propHooks = {
|
|
6728
6980
|
// Use .style if available and use plain properties where available.
|
6729
6981
|
if ( jQuery.fx.step[ tween.prop ] ) {
|
6730
6982
|
jQuery.fx.step[ tween.prop ]( tween );
|
6731
|
-
} else if ( tween.elem.nodeType === 1 &&
|
6732
|
-
|
6733
|
-
|
6983
|
+
} else if ( tween.elem.nodeType === 1 && (
|
6984
|
+
jQuery.cssHooks[ tween.prop ] ||
|
6985
|
+
tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
|
6734
6986
|
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
|
6735
6987
|
} else {
|
6736
6988
|
tween.elem[ tween.prop ] = tween.now;
|
@@ -6789,7 +7041,7 @@ function createFxNow() {
|
|
6789
7041
|
window.setTimeout( function() {
|
6790
7042
|
fxNow = undefined;
|
6791
7043
|
} );
|
6792
|
-
return ( fxNow =
|
7044
|
+
return ( fxNow = Date.now() );
|
6793
7045
|
}
|
6794
7046
|
|
6795
7047
|
// Generate parameters to create a standard animation
|
@@ -6893,9 +7145,10 @@ function defaultPrefilter( elem, props, opts ) {
|
|
6893
7145
|
// Restrict "overflow" and "display" styles during box animations
|
6894
7146
|
if ( isBox && elem.nodeType === 1 ) {
|
6895
7147
|
|
6896
|
-
// Support: IE <=9 - 11, Edge 12 -
|
7148
|
+
// Support: IE <=9 - 11, Edge 12 - 15
|
6897
7149
|
// Record all 3 overflow attributes because IE does not infer the shorthand
|
6898
|
-
// from identically-valued overflowX and overflowY
|
7150
|
+
// from identically-valued overflowX and overflowY and Edge just mirrors
|
7151
|
+
// the overflowX value there.
|
6899
7152
|
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
|
6900
7153
|
|
6901
7154
|
// Identify a display type, preferring old show/hide data over the CSS cascade
|
@@ -7003,7 +7256,7 @@ function propFilter( props, specialEasing ) {
|
|
7003
7256
|
|
7004
7257
|
// camelCase, specialEasing and expand cssHook pass
|
7005
7258
|
for ( index in props ) {
|
7006
|
-
name =
|
7259
|
+
name = camelCase( index );
|
7007
7260
|
easing = specialEasing[ name ];
|
7008
7261
|
value = props[ index ];
|
7009
7262
|
if ( Array.isArray( value ) ) {
|
@@ -7128,9 +7381,9 @@ function Animation( elem, properties, options ) {
|
|
7128
7381
|
for ( ; index < length; index++ ) {
|
7129
7382
|
result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
|
7130
7383
|
if ( result ) {
|
7131
|
-
if (
|
7384
|
+
if ( isFunction( result.stop ) ) {
|
7132
7385
|
jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
|
7133
|
-
|
7386
|
+
result.stop.bind( result );
|
7134
7387
|
}
|
7135
7388
|
return result;
|
7136
7389
|
}
|
@@ -7138,7 +7391,7 @@ function Animation( elem, properties, options ) {
|
|
7138
7391
|
|
7139
7392
|
jQuery.map( props, createTween, animation );
|
7140
7393
|
|
7141
|
-
if (
|
7394
|
+
if ( isFunction( animation.opts.start ) ) {
|
7142
7395
|
animation.opts.start.call( elem, animation );
|
7143
7396
|
}
|
7144
7397
|
|
@@ -7171,7 +7424,7 @@ jQuery.Animation = jQuery.extend( Animation, {
|
|
7171
7424
|
},
|
7172
7425
|
|
7173
7426
|
tweener: function( props, callback ) {
|
7174
|
-
if (
|
7427
|
+
if ( isFunction( props ) ) {
|
7175
7428
|
callback = props;
|
7176
7429
|
props = [ "*" ];
|
7177
7430
|
} else {
|
@@ -7203,9 +7456,9 @@ jQuery.Animation = jQuery.extend( Animation, {
|
|
7203
7456
|
jQuery.speed = function( speed, easing, fn ) {
|
7204
7457
|
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
|
7205
7458
|
complete: fn || !fn && easing ||
|
7206
|
-
|
7459
|
+
isFunction( speed ) && speed,
|
7207
7460
|
duration: speed,
|
7208
|
-
easing: fn && easing || easing && !
|
7461
|
+
easing: fn && easing || easing && !isFunction( easing ) && easing
|
7209
7462
|
};
|
7210
7463
|
|
7211
7464
|
// Go to the end state if fx are off
|
@@ -7232,7 +7485,7 @@ jQuery.speed = function( speed, easing, fn ) {
|
|
7232
7485
|
opt.old = opt.complete;
|
7233
7486
|
|
7234
7487
|
opt.complete = function() {
|
7235
|
-
if (
|
7488
|
+
if ( isFunction( opt.old ) ) {
|
7236
7489
|
opt.old.call( this );
|
7237
7490
|
}
|
7238
7491
|
|
@@ -7396,7 +7649,7 @@ jQuery.fx.tick = function() {
|
|
7396
7649
|
i = 0,
|
7397
7650
|
timers = jQuery.timers;
|
7398
7651
|
|
7399
|
-
fxNow =
|
7652
|
+
fxNow = Date.now();
|
7400
7653
|
|
7401
7654
|
for ( ; i < timers.length; i++ ) {
|
7402
7655
|
timer = timers[ i ];
|
@@ -7749,7 +8002,7 @@ jQuery.each( [
|
|
7749
8002
|
|
7750
8003
|
|
7751
8004
|
// Strip and collapse whitespace according to HTML spec
|
7752
|
-
// https://
|
8005
|
+
// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
|
7753
8006
|
function stripAndCollapse( value ) {
|
7754
8007
|
var tokens = value.match( rnothtmlwhite ) || [];
|
7755
8008
|
return tokens.join( " " );
|
@@ -7760,20 +8013,30 @@ function getClass( elem ) {
|
|
7760
8013
|
return elem.getAttribute && elem.getAttribute( "class" ) || "";
|
7761
8014
|
}
|
7762
8015
|
|
8016
|
+
function classesToArray( value ) {
|
8017
|
+
if ( Array.isArray( value ) ) {
|
8018
|
+
return value;
|
8019
|
+
}
|
8020
|
+
if ( typeof value === "string" ) {
|
8021
|
+
return value.match( rnothtmlwhite ) || [];
|
8022
|
+
}
|
8023
|
+
return [];
|
8024
|
+
}
|
8025
|
+
|
7763
8026
|
jQuery.fn.extend( {
|
7764
8027
|
addClass: function( value ) {
|
7765
8028
|
var classes, elem, cur, curValue, clazz, j, finalValue,
|
7766
8029
|
i = 0;
|
7767
8030
|
|
7768
|
-
if (
|
8031
|
+
if ( isFunction( value ) ) {
|
7769
8032
|
return this.each( function( j ) {
|
7770
8033
|
jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
|
7771
8034
|
} );
|
7772
8035
|
}
|
7773
8036
|
|
7774
|
-
|
7775
|
-
classes = value.match( rnothtmlwhite ) || [];
|
8037
|
+
classes = classesToArray( value );
|
7776
8038
|
|
8039
|
+
if ( classes.length ) {
|
7777
8040
|
while ( ( elem = this[ i++ ] ) ) {
|
7778
8041
|
curValue = getClass( elem );
|
7779
8042
|
cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
|
@@ -7802,7 +8065,7 @@ jQuery.fn.extend( {
|
|
7802
8065
|
var classes, elem, cur, curValue, clazz, j, finalValue,
|
7803
8066
|
i = 0;
|
7804
8067
|
|
7805
|
-
if (
|
8068
|
+
if ( isFunction( value ) ) {
|
7806
8069
|
return this.each( function( j ) {
|
7807
8070
|
jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
|
7808
8071
|
} );
|
@@ -7812,9 +8075,9 @@ jQuery.fn.extend( {
|
|
7812
8075
|
return this.attr( "class", "" );
|
7813
8076
|
}
|
7814
8077
|
|
7815
|
-
|
7816
|
-
classes = value.match( rnothtmlwhite ) || [];
|
8078
|
+
classes = classesToArray( value );
|
7817
8079
|
|
8080
|
+
if ( classes.length ) {
|
7818
8081
|
while ( ( elem = this[ i++ ] ) ) {
|
7819
8082
|
curValue = getClass( elem );
|
7820
8083
|
|
@@ -7844,13 +8107,14 @@ jQuery.fn.extend( {
|
|
7844
8107
|
},
|
7845
8108
|
|
7846
8109
|
toggleClass: function( value, stateVal ) {
|
7847
|
-
var type = typeof value
|
8110
|
+
var type = typeof value,
|
8111
|
+
isValidValue = type === "string" || Array.isArray( value );
|
7848
8112
|
|
7849
|
-
if ( typeof stateVal === "boolean" &&
|
8113
|
+
if ( typeof stateVal === "boolean" && isValidValue ) {
|
7850
8114
|
return stateVal ? this.addClass( value ) : this.removeClass( value );
|
7851
8115
|
}
|
7852
8116
|
|
7853
|
-
if (
|
8117
|
+
if ( isFunction( value ) ) {
|
7854
8118
|
return this.each( function( i ) {
|
7855
8119
|
jQuery( this ).toggleClass(
|
7856
8120
|
value.call( this, i, getClass( this ), stateVal ),
|
@@ -7862,12 +8126,12 @@ jQuery.fn.extend( {
|
|
7862
8126
|
return this.each( function() {
|
7863
8127
|
var className, i, self, classNames;
|
7864
8128
|
|
7865
|
-
if (
|
8129
|
+
if ( isValidValue ) {
|
7866
8130
|
|
7867
8131
|
// Toggle individual class names
|
7868
8132
|
i = 0;
|
7869
8133
|
self = jQuery( this );
|
7870
|
-
classNames =
|
8134
|
+
classNames = classesToArray( value );
|
7871
8135
|
|
7872
8136
|
while ( ( className = classNames[ i++ ] ) ) {
|
7873
8137
|
|
@@ -7926,7 +8190,7 @@ var rreturn = /\r/g;
|
|
7926
8190
|
|
7927
8191
|
jQuery.fn.extend( {
|
7928
8192
|
val: function( value ) {
|
7929
|
-
var hooks, ret,
|
8193
|
+
var hooks, ret, valueIsFunction,
|
7930
8194
|
elem = this[ 0 ];
|
7931
8195
|
|
7932
8196
|
if ( !arguments.length ) {
|
@@ -7955,7 +8219,7 @@ jQuery.fn.extend( {
|
|
7955
8219
|
return;
|
7956
8220
|
}
|
7957
8221
|
|
7958
|
-
|
8222
|
+
valueIsFunction = isFunction( value );
|
7959
8223
|
|
7960
8224
|
return this.each( function( i ) {
|
7961
8225
|
var val;
|
@@ -7964,7 +8228,7 @@ jQuery.fn.extend( {
|
|
7964
8228
|
return;
|
7965
8229
|
}
|
7966
8230
|
|
7967
|
-
if (
|
8231
|
+
if ( valueIsFunction ) {
|
7968
8232
|
val = value.call( this, i, jQuery( this ).val() );
|
7969
8233
|
} else {
|
7970
8234
|
val = value;
|
@@ -8106,18 +8370,24 @@ jQuery.each( [ "radio", "checkbox" ], function() {
|
|
8106
8370
|
// Return jQuery for attributes-only inclusion
|
8107
8371
|
|
8108
8372
|
|
8109
|
-
|
8373
|
+
support.focusin = "onfocusin" in window;
|
8374
|
+
|
8375
|
+
|
8376
|
+
var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
|
8377
|
+
stopPropagationCallback = function( e ) {
|
8378
|
+
e.stopPropagation();
|
8379
|
+
};
|
8110
8380
|
|
8111
8381
|
jQuery.extend( jQuery.event, {
|
8112
8382
|
|
8113
8383
|
trigger: function( event, data, elem, onlyHandlers ) {
|
8114
8384
|
|
8115
|
-
var i, cur, tmp, bubbleType, ontype, handle, special,
|
8385
|
+
var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
|
8116
8386
|
eventPath = [ elem || document ],
|
8117
8387
|
type = hasOwn.call( event, "type" ) ? event.type : event,
|
8118
8388
|
namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
|
8119
8389
|
|
8120
|
-
cur = tmp = elem = elem || document;
|
8390
|
+
cur = lastElement = tmp = elem = elem || document;
|
8121
8391
|
|
8122
8392
|
// Don't do events on text and comment nodes
|
8123
8393
|
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
|
@@ -8169,7 +8439,7 @@ jQuery.extend( jQuery.event, {
|
|
8169
8439
|
|
8170
8440
|
// Determine event propagation path in advance, per W3C events spec (#9951)
|
8171
8441
|
// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
|
8172
|
-
if ( !onlyHandlers && !special.noBubble && !
|
8442
|
+
if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
|
8173
8443
|
|
8174
8444
|
bubbleType = special.delegateType || type;
|
8175
8445
|
if ( !rfocusMorph.test( bubbleType + type ) ) {
|
@@ -8189,7 +8459,7 @@ jQuery.extend( jQuery.event, {
|
|
8189
8459
|
// Fire handlers on the event path
|
8190
8460
|
i = 0;
|
8191
8461
|
while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
|
8192
|
-
|
8462
|
+
lastElement = cur;
|
8193
8463
|
event.type = i > 1 ?
|
8194
8464
|
bubbleType :
|
8195
8465
|
special.bindType || type;
|
@@ -8221,7 +8491,7 @@ jQuery.extend( jQuery.event, {
|
|
8221
8491
|
|
8222
8492
|
// Call a native DOM method on the target with the same name as the event.
|
8223
8493
|
// Don't do default actions on window, that's where global variables be (#6170)
|
8224
|
-
if ( ontype &&
|
8494
|
+
if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
|
8225
8495
|
|
8226
8496
|
// Don't re-trigger an onFOO event when we call its FOO() method
|
8227
8497
|
tmp = elem[ ontype ];
|
@@ -8232,7 +8502,17 @@ jQuery.extend( jQuery.event, {
|
|
8232
8502
|
|
8233
8503
|
// Prevent re-triggering of the same event, since we already bubbled it above
|
8234
8504
|
jQuery.event.triggered = type;
|
8505
|
+
|
8506
|
+
if ( event.isPropagationStopped() ) {
|
8507
|
+
lastElement.addEventListener( type, stopPropagationCallback );
|
8508
|
+
}
|
8509
|
+
|
8235
8510
|
elem[ type ]();
|
8511
|
+
|
8512
|
+
if ( event.isPropagationStopped() ) {
|
8513
|
+
lastElement.removeEventListener( type, stopPropagationCallback );
|
8514
|
+
}
|
8515
|
+
|
8236
8516
|
jQuery.event.triggered = undefined;
|
8237
8517
|
|
8238
8518
|
if ( tmp ) {
|
@@ -8278,31 +8558,6 @@ jQuery.fn.extend( {
|
|
8278
8558
|
} );
|
8279
8559
|
|
8280
8560
|
|
8281
|
-
jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
|
8282
|
-
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
|
8283
|
-
"change select submit keydown keypress keyup contextmenu" ).split( " " ),
|
8284
|
-
function( i, name ) {
|
8285
|
-
|
8286
|
-
// Handle event binding
|
8287
|
-
jQuery.fn[ name ] = function( data, fn ) {
|
8288
|
-
return arguments.length > 0 ?
|
8289
|
-
this.on( name, null, data, fn ) :
|
8290
|
-
this.trigger( name );
|
8291
|
-
};
|
8292
|
-
} );
|
8293
|
-
|
8294
|
-
jQuery.fn.extend( {
|
8295
|
-
hover: function( fnOver, fnOut ) {
|
8296
|
-
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
|
8297
|
-
}
|
8298
|
-
} );
|
8299
|
-
|
8300
|
-
|
8301
|
-
|
8302
|
-
|
8303
|
-
support.focusin = "onfocusin" in window;
|
8304
|
-
|
8305
|
-
|
8306
8561
|
// Support: Firefox <=44
|
8307
8562
|
// Firefox doesn't have focus(in | out) events
|
8308
8563
|
// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
|
@@ -8346,7 +8601,7 @@ if ( !support.focusin ) {
|
|
8346
8601
|
}
|
8347
8602
|
var location = window.location;
|
8348
8603
|
|
8349
|
-
var nonce =
|
8604
|
+
var nonce = Date.now();
|
8350
8605
|
|
8351
8606
|
var rquery = ( /\?/ );
|
8352
8607
|
|
@@ -8404,7 +8659,7 @@ function buildParams( prefix, obj, traditional, add ) {
|
|
8404
8659
|
}
|
8405
8660
|
} );
|
8406
8661
|
|
8407
|
-
} else if ( !traditional &&
|
8662
|
+
} else if ( !traditional && toType( obj ) === "object" ) {
|
8408
8663
|
|
8409
8664
|
// Serialize object item.
|
8410
8665
|
for ( name in obj ) {
|
@@ -8426,7 +8681,7 @@ jQuery.param = function( a, traditional ) {
|
|
8426
8681
|
add = function( key, valueOrFunction ) {
|
8427
8682
|
|
8428
8683
|
// If value is a function, invoke it and use its return value
|
8429
|
-
var value =
|
8684
|
+
var value = isFunction( valueOrFunction ) ?
|
8430
8685
|
valueOrFunction() :
|
8431
8686
|
valueOrFunction;
|
8432
8687
|
|
@@ -8434,6 +8689,10 @@ jQuery.param = function( a, traditional ) {
|
|
8434
8689
|
encodeURIComponent( value == null ? "" : value );
|
8435
8690
|
};
|
8436
8691
|
|
8692
|
+
if ( a == null ) {
|
8693
|
+
return "";
|
8694
|
+
}
|
8695
|
+
|
8437
8696
|
// If an array was passed in, assume that it is an array of form elements.
|
8438
8697
|
if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
|
8439
8698
|
|
@@ -8544,7 +8803,7 @@ function addToPrefiltersOrTransports( structure ) {
|
|
8544
8803
|
i = 0,
|
8545
8804
|
dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
|
8546
8805
|
|
8547
|
-
if (
|
8806
|
+
if ( isFunction( func ) ) {
|
8548
8807
|
|
8549
8808
|
// For each dataType in the dataTypeExpression
|
8550
8809
|
while ( ( dataType = dataTypes[ i++ ] ) ) {
|
@@ -8936,12 +9195,14 @@ jQuery.extend( {
|
|
8936
9195
|
if ( !responseHeaders ) {
|
8937
9196
|
responseHeaders = {};
|
8938
9197
|
while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
|
8939
|
-
responseHeaders[ match[ 1 ].toLowerCase()
|
9198
|
+
responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
|
9199
|
+
( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
|
9200
|
+
.concat( match[ 2 ] );
|
8940
9201
|
}
|
8941
9202
|
}
|
8942
|
-
match = responseHeaders[ key.toLowerCase() ];
|
9203
|
+
match = responseHeaders[ key.toLowerCase() + " " ];
|
8943
9204
|
}
|
8944
|
-
return match == null ? null : match;
|
9205
|
+
return match == null ? null : match.join( ", " );
|
8945
9206
|
},
|
8946
9207
|
|
8947
9208
|
// Raw string
|
@@ -9016,7 +9277,7 @@ jQuery.extend( {
|
|
9016
9277
|
if ( s.crossDomain == null ) {
|
9017
9278
|
urlAnchor = document.createElement( "a" );
|
9018
9279
|
|
9019
|
-
// Support: IE <=8 - 11, Edge 12 -
|
9280
|
+
// Support: IE <=8 - 11, Edge 12 - 15
|
9020
9281
|
// IE throws exception on accessing the href property if url is malformed,
|
9021
9282
|
// e.g. http://example.com:80x/
|
9022
9283
|
try {
|
@@ -9074,8 +9335,8 @@ jQuery.extend( {
|
|
9074
9335
|
// Remember the hash so we can put it back
|
9075
9336
|
uncached = s.url.slice( cacheURL.length );
|
9076
9337
|
|
9077
|
-
// If data is available, append data to url
|
9078
|
-
if ( s.data ) {
|
9338
|
+
// If data is available and should be processed, append data to url
|
9339
|
+
if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
|
9079
9340
|
cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
|
9080
9341
|
|
9081
9342
|
// #9682: remove data so that it's not used in an eventual retry
|
@@ -9312,7 +9573,7 @@ jQuery.each( [ "get", "post" ], function( i, method ) {
|
|
9312
9573
|
jQuery[ method ] = function( url, data, callback, type ) {
|
9313
9574
|
|
9314
9575
|
// Shift arguments if data argument was omitted
|
9315
|
-
if (
|
9576
|
+
if ( isFunction( data ) ) {
|
9316
9577
|
type = type || callback;
|
9317
9578
|
callback = data;
|
9318
9579
|
data = undefined;
|
@@ -9330,7 +9591,7 @@ jQuery.each( [ "get", "post" ], function( i, method ) {
|
|
9330
9591
|
} );
|
9331
9592
|
|
9332
9593
|
|
9333
|
-
jQuery._evalUrl = function( url ) {
|
9594
|
+
jQuery._evalUrl = function( url, options ) {
|
9334
9595
|
return jQuery.ajax( {
|
9335
9596
|
url: url,
|
9336
9597
|
|
@@ -9340,7 +9601,16 @@ jQuery._evalUrl = function( url ) {
|
|
9340
9601
|
cache: true,
|
9341
9602
|
async: false,
|
9342
9603
|
global: false,
|
9343
|
-
|
9604
|
+
|
9605
|
+
// Only evaluate the response if it is successful (gh-4126)
|
9606
|
+
// dataFilter is not invoked for failure responses, so using it instead
|
9607
|
+
// of the default converter is kludgy but it works.
|
9608
|
+
converters: {
|
9609
|
+
"text script": function() {}
|
9610
|
+
},
|
9611
|
+
dataFilter: function( response ) {
|
9612
|
+
jQuery.globalEval( response, options );
|
9613
|
+
}
|
9344
9614
|
} );
|
9345
9615
|
};
|
9346
9616
|
|
@@ -9350,7 +9620,7 @@ jQuery.fn.extend( {
|
|
9350
9620
|
var wrap;
|
9351
9621
|
|
9352
9622
|
if ( this[ 0 ] ) {
|
9353
|
-
if (
|
9623
|
+
if ( isFunction( html ) ) {
|
9354
9624
|
html = html.call( this[ 0 ] );
|
9355
9625
|
}
|
9356
9626
|
|
@@ -9376,7 +9646,7 @@ jQuery.fn.extend( {
|
|
9376
9646
|
},
|
9377
9647
|
|
9378
9648
|
wrapInner: function( html ) {
|
9379
|
-
if (
|
9649
|
+
if ( isFunction( html ) ) {
|
9380
9650
|
return this.each( function( i ) {
|
9381
9651
|
jQuery( this ).wrapInner( html.call( this, i ) );
|
9382
9652
|
} );
|
@@ -9396,10 +9666,10 @@ jQuery.fn.extend( {
|
|
9396
9666
|
},
|
9397
9667
|
|
9398
9668
|
wrap: function( html ) {
|
9399
|
-
var
|
9669
|
+
var htmlIsFunction = isFunction( html );
|
9400
9670
|
|
9401
9671
|
return this.each( function( i ) {
|
9402
|
-
jQuery( this ).wrapAll(
|
9672
|
+
jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
|
9403
9673
|
} );
|
9404
9674
|
},
|
9405
9675
|
|
@@ -9491,7 +9761,8 @@ jQuery.ajaxTransport( function( options ) {
|
|
9491
9761
|
return function() {
|
9492
9762
|
if ( callback ) {
|
9493
9763
|
callback = errorCallback = xhr.onload =
|
9494
|
-
xhr.onerror = xhr.onabort = xhr.
|
9764
|
+
xhr.onerror = xhr.onabort = xhr.ontimeout =
|
9765
|
+
xhr.onreadystatechange = null;
|
9495
9766
|
|
9496
9767
|
if ( type === "abort" ) {
|
9497
9768
|
xhr.abort();
|
@@ -9531,7 +9802,7 @@ jQuery.ajaxTransport( function( options ) {
|
|
9531
9802
|
|
9532
9803
|
// Listen to events
|
9533
9804
|
xhr.onload = callback();
|
9534
|
-
errorCallback = xhr.onerror = callback( "error" );
|
9805
|
+
errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
|
9535
9806
|
|
9536
9807
|
// Support: IE 9 only
|
9537
9808
|
// Use onreadystatechange to replace onabort
|
@@ -9622,24 +9893,21 @@ jQuery.ajaxPrefilter( "script", function( s ) {
|
|
9622
9893
|
// Bind script tag hack transport
|
9623
9894
|
jQuery.ajaxTransport( "script", function( s ) {
|
9624
9895
|
|
9625
|
-
// This transport only deals with cross domain requests
|
9626
|
-
if ( s.crossDomain ) {
|
9896
|
+
// This transport only deals with cross domain or forced-by-attrs requests
|
9897
|
+
if ( s.crossDomain || s.scriptAttrs ) {
|
9627
9898
|
var script, callback;
|
9628
9899
|
return {
|
9629
9900
|
send: function( _, complete ) {
|
9630
|
-
script = jQuery( "<script>" )
|
9631
|
-
|
9632
|
-
src: s.url
|
9633
|
-
|
9634
|
-
"load error",
|
9635
|
-
callback = function( evt ) {
|
9901
|
+
script = jQuery( "<script>" )
|
9902
|
+
.attr( s.scriptAttrs || {} )
|
9903
|
+
.prop( { charset: s.scriptCharset, src: s.url } )
|
9904
|
+
.on( "load error", callback = function( evt ) {
|
9636
9905
|
script.remove();
|
9637
9906
|
callback = null;
|
9638
9907
|
if ( evt ) {
|
9639
9908
|
complete( evt.type === "error" ? 404 : 200, evt.type );
|
9640
9909
|
}
|
9641
|
-
}
|
9642
|
-
);
|
9910
|
+
} );
|
9643
9911
|
|
9644
9912
|
// Use native DOM manipulation to avoid our domManip AJAX trickery
|
9645
9913
|
document.head.appendChild( script[ 0 ] );
|
@@ -9685,7 +9953,7 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
|
|
9685
9953
|
if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
|
9686
9954
|
|
9687
9955
|
// Get callback name, remembering preexisting value associated with it
|
9688
|
-
callbackName = s.jsonpCallback =
|
9956
|
+
callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
|
9689
9957
|
s.jsonpCallback() :
|
9690
9958
|
s.jsonpCallback;
|
9691
9959
|
|
@@ -9736,7 +10004,7 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
|
|
9736
10004
|
}
|
9737
10005
|
|
9738
10006
|
// Call if it was a function and we have a response
|
9739
|
-
if ( responseContainer &&
|
10007
|
+
if ( responseContainer && isFunction( overwritten ) ) {
|
9740
10008
|
overwritten( responseContainer[ 0 ] );
|
9741
10009
|
}
|
9742
10010
|
|
@@ -9828,7 +10096,7 @@ jQuery.fn.load = function( url, params, callback ) {
|
|
9828
10096
|
}
|
9829
10097
|
|
9830
10098
|
// If it's a function
|
9831
|
-
if (
|
10099
|
+
if ( isFunction( params ) ) {
|
9832
10100
|
|
9833
10101
|
// We assume that it's the callback
|
9834
10102
|
callback = params;
|
@@ -9936,7 +10204,7 @@ jQuery.offset = {
|
|
9936
10204
|
curLeft = parseFloat( curCSSLeft ) || 0;
|
9937
10205
|
}
|
9938
10206
|
|
9939
|
-
if (
|
10207
|
+
if ( isFunction( options ) ) {
|
9940
10208
|
|
9941
10209
|
// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
|
9942
10210
|
options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
|
@@ -9959,6 +10227,8 @@ jQuery.offset = {
|
|
9959
10227
|
};
|
9960
10228
|
|
9961
10229
|
jQuery.fn.extend( {
|
10230
|
+
|
10231
|
+
// offset() relates an element's border box to the document origin
|
9962
10232
|
offset: function( options ) {
|
9963
10233
|
|
9964
10234
|
// Preserve chaining for setter
|
@@ -9970,7 +10240,7 @@ jQuery.fn.extend( {
|
|
9970
10240
|
} );
|
9971
10241
|
}
|
9972
10242
|
|
9973
|
-
var
|
10243
|
+
var rect, win,
|
9974
10244
|
elem = this[ 0 ];
|
9975
10245
|
|
9976
10246
|
if ( !elem ) {
|
@@ -9985,50 +10255,52 @@ jQuery.fn.extend( {
|
|
9985
10255
|
return { top: 0, left: 0 };
|
9986
10256
|
}
|
9987
10257
|
|
10258
|
+
// Get document-relative position by adding viewport scroll to viewport-relative gBCR
|
9988
10259
|
rect = elem.getBoundingClientRect();
|
9989
|
-
|
9990
|
-
doc = elem.ownerDocument;
|
9991
|
-
docElem = doc.documentElement;
|
9992
|
-
win = doc.defaultView;
|
9993
|
-
|
10260
|
+
win = elem.ownerDocument.defaultView;
|
9994
10261
|
return {
|
9995
|
-
top: rect.top + win.pageYOffset
|
9996
|
-
left: rect.left + win.pageXOffset
|
10262
|
+
top: rect.top + win.pageYOffset,
|
10263
|
+
left: rect.left + win.pageXOffset
|
9997
10264
|
};
|
9998
10265
|
},
|
9999
10266
|
|
10267
|
+
// position() relates an element's margin box to its offset parent's padding box
|
10268
|
+
// This corresponds to the behavior of CSS absolute positioning
|
10000
10269
|
position: function() {
|
10001
10270
|
if ( !this[ 0 ] ) {
|
10002
10271
|
return;
|
10003
10272
|
}
|
10004
10273
|
|
10005
|
-
var offsetParent, offset,
|
10274
|
+
var offsetParent, offset, doc,
|
10006
10275
|
elem = this[ 0 ],
|
10007
10276
|
parentOffset = { top: 0, left: 0 };
|
10008
10277
|
|
10009
|
-
//
|
10010
|
-
// because it is its only offset parent
|
10278
|
+
// position:fixed elements are offset from the viewport, which itself always has zero offset
|
10011
10279
|
if ( jQuery.css( elem, "position" ) === "fixed" ) {
|
10012
10280
|
|
10013
|
-
// Assume
|
10281
|
+
// Assume position:fixed implies availability of getBoundingClientRect
|
10014
10282
|
offset = elem.getBoundingClientRect();
|
10015
10283
|
|
10016
10284
|
} else {
|
10285
|
+
offset = this.offset();
|
10017
10286
|
|
10018
|
-
//
|
10019
|
-
|
10287
|
+
// Account for the *real* offset parent, which can be the document or its root element
|
10288
|
+
// when a statically positioned element is identified
|
10289
|
+
doc = elem.ownerDocument;
|
10290
|
+
offsetParent = elem.offsetParent || doc.documentElement;
|
10291
|
+
while ( offsetParent &&
|
10292
|
+
( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
|
10293
|
+
jQuery.css( offsetParent, "position" ) === "static" ) {
|
10020
10294
|
|
10021
|
-
|
10022
|
-
offset = this.offset();
|
10023
|
-
if ( !nodeName( offsetParent[ 0 ], "html" ) ) {
|
10024
|
-
parentOffset = offsetParent.offset();
|
10295
|
+
offsetParent = offsetParent.parentNode;
|
10025
10296
|
}
|
10297
|
+
if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
|
10026
10298
|
|
10027
|
-
|
10028
|
-
|
10029
|
-
|
10030
|
-
|
10031
|
-
}
|
10299
|
+
// Incorporate borders into its offset, since they are outside its content origin
|
10300
|
+
parentOffset = jQuery( offsetParent ).offset();
|
10301
|
+
parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
|
10302
|
+
parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
|
10303
|
+
}
|
10032
10304
|
}
|
10033
10305
|
|
10034
10306
|
// Subtract parent offsets and element margins
|
@@ -10070,7 +10342,7 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
|
|
10070
10342
|
|
10071
10343
|
// Coalesce documents and windows
|
10072
10344
|
var win;
|
10073
|
-
if (
|
10345
|
+
if ( isWindow( elem ) ) {
|
10074
10346
|
win = elem;
|
10075
10347
|
} else if ( elem.nodeType === 9 ) {
|
10076
10348
|
win = elem.defaultView;
|
@@ -10128,7 +10400,7 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|
10128
10400
|
return access( this, function( elem, type, value ) {
|
10129
10401
|
var doc;
|
10130
10402
|
|
10131
|
-
if (
|
10403
|
+
if ( isWindow( elem ) ) {
|
10132
10404
|
|
10133
10405
|
// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
|
10134
10406
|
return funcName.indexOf( "outer" ) === 0 ?
|
@@ -10162,6 +10434,28 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
|
|
10162
10434
|
} );
|
10163
10435
|
|
10164
10436
|
|
10437
|
+
jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
|
10438
|
+
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
|
10439
|
+
"change select submit keydown keypress keyup contextmenu" ).split( " " ),
|
10440
|
+
function( i, name ) {
|
10441
|
+
|
10442
|
+
// Handle event binding
|
10443
|
+
jQuery.fn[ name ] = function( data, fn ) {
|
10444
|
+
return arguments.length > 0 ?
|
10445
|
+
this.on( name, null, data, fn ) :
|
10446
|
+
this.trigger( name );
|
10447
|
+
};
|
10448
|
+
} );
|
10449
|
+
|
10450
|
+
jQuery.fn.extend( {
|
10451
|
+
hover: function( fnOver, fnOut ) {
|
10452
|
+
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
|
10453
|
+
}
|
10454
|
+
} );
|
10455
|
+
|
10456
|
+
|
10457
|
+
|
10458
|
+
|
10165
10459
|
jQuery.fn.extend( {
|
10166
10460
|
|
10167
10461
|
bind: function( types, data, fn ) {
|
@@ -10183,6 +10477,37 @@ jQuery.fn.extend( {
|
|
10183
10477
|
}
|
10184
10478
|
} );
|
10185
10479
|
|
10480
|
+
// Bind a function to a context, optionally partially applying any
|
10481
|
+
// arguments.
|
10482
|
+
// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
|
10483
|
+
// However, it is not slated for removal any time soon
|
10484
|
+
jQuery.proxy = function( fn, context ) {
|
10485
|
+
var tmp, args, proxy;
|
10486
|
+
|
10487
|
+
if ( typeof context === "string" ) {
|
10488
|
+
tmp = fn[ context ];
|
10489
|
+
context = fn;
|
10490
|
+
fn = tmp;
|
10491
|
+
}
|
10492
|
+
|
10493
|
+
// Quick check to determine if target is callable, in the spec
|
10494
|
+
// this throws a TypeError, but we will just return undefined.
|
10495
|
+
if ( !isFunction( fn ) ) {
|
10496
|
+
return undefined;
|
10497
|
+
}
|
10498
|
+
|
10499
|
+
// Simulated bind
|
10500
|
+
args = slice.call( arguments, 2 );
|
10501
|
+
proxy = function() {
|
10502
|
+
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
|
10503
|
+
};
|
10504
|
+
|
10505
|
+
// Set the guid of unique handler to the same of original handler, so it can be removed
|
10506
|
+
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
|
10507
|
+
|
10508
|
+
return proxy;
|
10509
|
+
};
|
10510
|
+
|
10186
10511
|
jQuery.holdReady = function( hold ) {
|
10187
10512
|
if ( hold ) {
|
10188
10513
|
jQuery.readyWait++;
|
@@ -10193,6 +10518,26 @@ jQuery.holdReady = function( hold ) {
|
|
10193
10518
|
jQuery.isArray = Array.isArray;
|
10194
10519
|
jQuery.parseJSON = JSON.parse;
|
10195
10520
|
jQuery.nodeName = nodeName;
|
10521
|
+
jQuery.isFunction = isFunction;
|
10522
|
+
jQuery.isWindow = isWindow;
|
10523
|
+
jQuery.camelCase = camelCase;
|
10524
|
+
jQuery.type = toType;
|
10525
|
+
|
10526
|
+
jQuery.now = Date.now;
|
10527
|
+
|
10528
|
+
jQuery.isNumeric = function( obj ) {
|
10529
|
+
|
10530
|
+
// As of jQuery 3.0, isNumeric is limited to
|
10531
|
+
// strings and numbers (primitives or objects)
|
10532
|
+
// that can be coerced to finite numbers (gh-2662)
|
10533
|
+
var type = jQuery.type( obj );
|
10534
|
+
return ( type === "number" || type === "string" ) &&
|
10535
|
+
|
10536
|
+
// parseFloat NaNs numeric-cast false positives ("")
|
10537
|
+
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
|
10538
|
+
// subtraction forces infinities to NaN
|
10539
|
+
!isNaN( obj - parseFloat( obj ) );
|
10540
|
+
};
|
10196
10541
|
|
10197
10542
|
|
10198
10543
|
|