@shortfuse/materialdesignweb 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +136 -30
- package/.stylelintrc.json +6 -40
- package/.vscode/launch.json +20 -5
- package/CHANGELOG.md +24 -0
- package/README.md +12 -9
- package/adapters/datatable/column.js +82 -74
- package/adapters/datatable/index.js +173 -131
- package/adapters/dom/index.js +529 -75
- package/adapters/list/index.js +25 -12
- package/adapters/search/index.js +13 -13
- package/components/appbar/_spec.scss +87 -64
- package/components/appbar/index.scss +2 -2
- package/components/banner/_spec.scss +8 -8
- package/components/banner/index.scss +2 -2
- package/components/bottomnav/_spec.scss +22 -17
- package/components/bottomnav/index.js +61 -52
- package/components/bottomnav/index.scss +2 -2
- package/components/bottomnav/item.js +44 -25
- package/components/button/README.md +14 -14
- package/components/button/_spec.scss +23 -22
- package/components/button/_theme.scss +37 -21
- package/components/button/index.eta +32 -0
- package/components/button/index.js +12 -12
- package/components/button/index.scss +2 -2
- package/components/card/_spec.scss +40 -36
- package/components/card/index.scss +2 -2
- package/components/chip/_spec.scss +7 -8
- package/components/chip/_theme.scss +31 -31
- package/components/chip/index.js +3 -2
- package/components/chip/index.scss +2 -2
- package/components/chip/item.js +1 -16
- package/components/datatable/_spec.scss +71 -85
- package/components/datatable/_theme.scss +61 -156
- package/components/datatable/cell.js +45 -0
- package/components/datatable/columnheader.js +47 -0
- package/components/datatable/index.js +279 -366
- package/components/datatable/index.scss +2 -2
- package/components/datatable/row.js +49 -0
- package/components/datatable/rowheader.js +18 -0
- package/components/dialog/_spec.scss +61 -41
- package/components/dialog/index.js +325 -297
- package/components/dialog/index.scss +2 -2
- package/components/divider/_spec.scss +8 -6
- package/components/divider/index.scss +2 -2
- package/components/elevation/_spec.scss +2 -2
- package/components/elevation/index.scss +2 -2
- package/components/fab/_spec.scss +23 -24
- package/components/fab/index.js +50 -50
- package/components/fab/index.scss +2 -2
- package/components/grid/_spec.scss +33 -31
- package/components/grid/index.scss +2 -2
- package/components/layout/_mixins.scss +5 -5
- package/components/layout/_spec.scss +206 -176
- package/components/layout/_theme.scss +14 -16
- package/components/layout/index.js +181 -153
- package/components/layout/index.scss +2 -2
- package/components/list/_spec.scss +117 -104
- package/components/list/_theme.scss +31 -34
- package/components/list/content.js +68 -52
- package/components/list/index.js +194 -61
- package/components/list/index.scss +2 -2
- package/components/list/item.js +136 -12
- package/components/list/secondary.js +46 -0
- package/components/menu/_spec.scss +32 -19
- package/components/menu/index.js +242 -229
- package/components/menu/index.scss +2 -2
- package/components/menu/item.js +95 -110
- package/components/progress/_spec.scss +35 -27
- package/components/progress/index.js +21 -0
- package/components/progress/index.scss +2 -1
- package/components/selection/_spec.scss +242 -224
- package/components/selection/_theme.scss +100 -95
- package/components/selection/index.eta +60 -0
- package/components/selection/index.js +76 -0
- package/components/selection/index.pug +15 -8
- package/components/selection/index.scss +2 -2
- package/components/selection/input.js +56 -0
- package/components/selection/radiogroup.js +47 -0
- package/components/slider/_spec.scss +10 -8
- package/components/slider/index.scss +2 -2
- package/components/snackbar/_spec.scss +22 -21
- package/components/snackbar/index.js +102 -111
- package/components/snackbar/index.scss +2 -2
- package/components/tab/_spec.scss +20 -19
- package/components/tab/content.js +41 -40
- package/components/tab/index.js +192 -99
- package/components/tab/index.scss +2 -2
- package/components/tab/item.js +38 -55
- package/components/tab/list.js +96 -72
- package/components/tab/panel.js +12 -13
- package/components/template/_theme.scss +11 -11
- package/components/textfield/_mixins.scss +52 -0
- package/components/textfield/_spec.scss +215 -266
- package/components/textfield/_theme.scss +95 -72
- package/components/textfield/index.eta +74 -0
- package/components/textfield/index.js +63 -57
- package/components/textfield/index.scss +2 -2
- package/components/tooltip/_spec.scss +27 -25
- package/components/tooltip/index.scss +2 -2
- package/components/type/_spec.scss +51 -38
- package/components/type/index.scss +2 -2
- package/core/_breakpoint.scss +75 -91
- package/core/_elevation.scss +10 -10
- package/core/_length.scss +9 -0
- package/core/_motion.scss +14 -14
- package/core/_platform.scss +9 -15
- package/core/_type.scss +33 -32
- package/core/aria/attributes.js +125 -25
- package/core/aria/button.js +23 -23
- package/core/aria/keyboard.js +93 -0
- package/core/aria/rovingtabindex.js +69 -154
- package/core/aria/tab.js +31 -28
- package/core/color/_theme.scss +240 -280
- package/core/color/index.scss +2 -2
- package/core/document/index.js +39 -0
- package/core/dom.js +12 -12
- package/core/overlay/_spec.scss +0 -3
- package/core/overlay/_theme.scss +56 -74
- package/core/overlay/index.js +49 -18
- package/core/overlay/index.scss +2 -2
- package/core/ripple/_spec.scss +22 -39
- package/core/ripple/_theme.scss +13 -13
- package/core/ripple/index.js +137 -134
- package/core/ripple/index.scss +2 -2
- package/core/theme/_config.scss +2 -0
- package/core/theme/_mixins.scss +172 -0
- package/core/theme/_palettes.scss +155 -135
- package/core/theme/_variables.scss +24 -15
- package/core/theme/index.js +50 -0
- package/core/throttler.js +1 -1
- package/core/transition/index.js +36 -20
- package/{docs-src → docs}/_flex.scss +0 -0
- package/{docs-src → docs}/_menuoptions.js +21 -34
- package/{docs-src → docs}/_mixins.pug +39 -26
- package/docs/_partials/_androidnavbar.eta +5 -0
- package/docs/_partials/_androidstatusbar.eta +13 -0
- package/docs/_partials/_appbar.eta +29 -0
- package/docs/_partials/_buttontest.eta +31 -0
- package/docs/_partials/_header.eta +149 -0
- package/docs/_partials/_navlistitem.eta +16 -0
- package/docs/_partials/_target.eta +1 -0
- package/{docs-src → docs}/_sample-utils.js +8 -6
- package/{docs-src → docs}/_storage.js +0 -0
- package/{docs-src → docs}/docs.scss +5 -2
- package/docs/index.eta +16 -0
- package/{docs-src → docs}/index.js +0 -0
- package/docs/pages/appbar.eta +114 -0
- package/{docs-src/components → docs/pages}/appbar.js +0 -0
- package/{docs-src/components → docs/pages}/appbar.pug +15 -18
- package/docs/pages/bottomnav.eta +188 -0
- package/{docs-src/components → docs/pages}/bottomnav.js +23 -24
- package/{docs-src/components → docs/pages}/bottomnav.pug +4 -4
- package/docs/pages/button.eta +124 -0
- package/{docs-src/components → docs/pages}/button.js +19 -19
- package/{docs-src/components → docs/pages}/button.pug +15 -15
- package/docs/pages/card.eta +90 -0
- package/{docs-src/components → docs/pages}/card.js +3 -3
- package/{docs-src/components → docs/pages}/card.pug +7 -7
- package/docs/pages/chip.eta +122 -0
- package/{docs-src/components → docs/pages}/chip.js +3 -6
- package/{docs-src/components → docs/pages}/chip.pug +2 -2
- package/docs/pages/color.eta +143 -0
- package/{docs-src/core → docs/pages}/color.js +95 -20
- package/docs/pages/color.pug +121 -0
- package/docs/pages/datatable.eta +323 -0
- package/{docs-src/components → docs/pages}/datatable.js +26 -13
- package/docs/pages/datatable.pug +283 -0
- package/docs/pages/dialog.eta +186 -0
- package/{docs-src/components → docs/pages}/dialog.js +26 -13
- package/{docs-src/components → docs/pages}/dialog.pug +46 -28
- package/docs/pages/dom.eta +26 -0
- package/docs/pages/dom.js +143 -0
- package/docs/pages/dom.pug +22 -0
- package/docs/pages/elevation.eta +35 -0
- package/{docs-src/components → docs/pages}/elevation.js +0 -0
- package/{docs-src/components → docs/pages}/elevation.pug +0 -0
- package/docs/pages/fab.eta +99 -0
- package/{docs-src/components → docs/pages}/fab.js +3 -3
- package/{docs-src/components → docs/pages}/fab.pug +2 -2
- package/docs/pages/grid.eta +135 -0
- package/{docs-src/components → docs/pages}/grid.js +1 -1
- package/{docs-src/components → docs/pages}/grid.pug +3 -3
- package/docs/pages/layout.eta +8 -0
- package/{docs-src/components → docs/pages}/layout.js +0 -0
- package/{docs-src/components → docs/pages}/layout.pug +0 -0
- package/docs/pages/list.eta +465 -0
- package/{docs-src/components → docs/pages}/list.js +2 -2
- package/{docs-src/components → docs/pages}/list.pug +7 -14
- package/docs/pages/menu.eta +276 -0
- package/{docs-src/components → docs/pages}/menu.js +14 -10
- package/{docs-src/components → docs/pages}/menu.pug +0 -0
- package/docs/pages/overlay.eta +69 -0
- package/docs/pages/overlay.js +4 -0
- package/{docs-src/core → docs/pages}/overlay.pug +14 -11
- package/docs/pages/progress.eta +23 -0
- package/{docs-src/components → docs/pages}/progress.js +1 -1
- package/{docs-src/components → docs/pages}/progress.pug +1 -1
- package/docs/pages/ripple.eta +27 -0
- package/docs/pages/ripple.js +4 -0
- package/{docs-src/core → docs/pages}/ripple.pug +4 -4
- package/docs/pages/search.eta +246 -0
- package/{docs-src/components → docs/pages}/search.js +59 -42
- package/{docs-src/components → docs/pages}/search.pug +50 -51
- package/docs/pages/selection.eta +111 -0
- package/docs/pages/selection.js +13 -0
- package/docs/pages/selection.pug +74 -0
- package/docs/pages/slider.eta +23 -0
- package/{docs-src/components → docs/pages}/slider.js +0 -0
- package/{docs-src/components → docs/pages}/slider.pug +0 -0
- package/docs/pages/snackbar.eta +83 -0
- package/{docs-src/components → docs/pages}/snackbar.js +3 -3
- package/{docs-src/components → docs/pages}/snackbar.pug +0 -0
- package/docs/pages/tab.eta +421 -0
- package/{docs-src/components → docs/pages}/tab.js +18 -35
- package/{docs-src/components → docs/pages}/tab.pug +4 -4
- package/docs/pages/textfield.eta +486 -0
- package/{docs-src/components → docs/pages}/textfield.js +3 -4
- package/{docs-src/components → docs/pages}/textfield.pug +87 -35
- package/docs/pages/tooltip.eta +94 -0
- package/{docs-src/components → docs/pages}/tooltip.js +0 -0
- package/{docs-src/components → docs/pages}/tooltip.pug +0 -1
- package/docs/pages/transition.eta +117 -0
- package/{docs-src/core → docs/pages}/transition.js +7 -8
- package/{docs-src/core → docs/pages}/transition.pug +0 -0
- package/docs/pages/type.eta +31 -0
- package/{docs-src/components → docs/pages}/type.js +0 -0
- package/{docs-src/components → docs/pages}/type.pug +0 -1
- package/docs/postrender.js +39 -0
- package/{docs-src → docs}/prerender.js +3 -9
- package/docs/pwa/_dialogs.eta +143 -0
- package/docs/pwa/_dialogs.pug +96 -0
- package/docs/pwa/_menus.eta +16 -0
- package/{docs-src → docs}/pwa/_menus.pug +0 -0
- package/docs/pwa/pwa-prerender.js +3 -0
- package/docs/pwa/pwa.eta +480 -0
- package/docs/pwa/pwa.js +306 -0
- package/{docs-src → docs}/pwa/pwa.pug +166 -263
- package/docs/pwa/pwa.scss +26 -0
- package/docs/spec.scss +26 -0
- package/docs/themes/_component-themes.scss +26 -0
- package/docs/themes/theme-colored-fallbacks.scss +17 -0
- package/docs/themes/theme-colored.scss +17 -0
- package/docs/themes/theme-default-fallbacks.scss +17 -0
- package/docs/themes/theme-default.scss +17 -0
- package/jsconfig.json +4 -2
- package/package.json +40 -27
- package/scripts/deploy-docs.sh +9 -0
- package/templates/index.eta +2 -0
- package/utils/function.js +3 -0
- package/webpack.config.cjs +257 -0
- package/_spec.scss +0 -27
- package/_theme.scss +0 -27
- package/components/list/expander.js +0 -142
- package/components/list/itemgroup.js +0 -22
- package/core/theme/_builder.scss +0 -116
- package/core/theme/index.scss +0 -68
- package/docs/appbar.html +0 -1
- package/docs/appbar.min.js +0 -2
- package/docs/appbar.min.js.map +0 -1
- package/docs/bottomnav.html +0 -1
- package/docs/bottomnav.min.js +0 -2
- package/docs/bottomnav.min.js.map +0 -1
- package/docs/button.html +0 -1
- package/docs/button.min.js +0 -2
- package/docs/button.min.js.map +0 -1
- package/docs/card.html +0 -1
- package/docs/card.min.js +0 -2
- package/docs/card.min.js.map +0 -1
- package/docs/chip.html +0 -1
- package/docs/chip.min.js +0 -2
- package/docs/chip.min.js.map +0 -1
- package/docs/color.html +0 -1
- package/docs/color.min.js +0 -2
- package/docs/color.min.js.map +0 -1
- package/docs/datatable.html +0 -1
- package/docs/datatable.min.js +0 -2
- package/docs/datatable.min.js.map +0 -1
- package/docs/default.common.min.js +0 -2
- package/docs/default.common.min.js.map +0 -1
- package/docs/dialog.html +0 -1
- package/docs/dialog.min.js +0 -2
- package/docs/dialog.min.js.map +0 -1
- package/docs/docs.min.css +0 -1
- package/docs/docs.min.js +0 -2
- package/docs/docs.min.js.map +0 -1
- package/docs/elevation.html +0 -1
- package/docs/elevation.min.js +0 -2
- package/docs/elevation.min.js.map +0 -1
- package/docs/fab.html +0 -1
- package/docs/fab.min.js +0 -2
- package/docs/fab.min.js.map +0 -1
- package/docs/grid.html +0 -1
- package/docs/grid.min.js +0 -2
- package/docs/grid.min.js.map +0 -1
- package/docs/index.html +0 -1
- package/docs/index.min.js +0 -2
- package/docs/index.min.js.map +0 -1
- package/docs/ink.html +0 -1
- package/docs/ink.min.js +0 -2
- package/docs/ink.min.js.map +0 -1
- package/docs/layout.html +0 -1
- package/docs/layout.min.js +0 -2
- package/docs/layout.min.js.map +0 -1
- package/docs/list.html +0 -1
- package/docs/list.min.js +0 -2
- package/docs/list.min.js.map +0 -1
- package/docs/menu.html +0 -1
- package/docs/menu.min.js +0 -2
- package/docs/menu.min.js.map +0 -1
- package/docs/overlay.html +0 -1
- package/docs/overlay.min.js +0 -2
- package/docs/overlay.min.js.map +0 -1
- package/docs/prerender.common.min.js +0 -2
- package/docs/prerender.common.min.js.map +0 -1
- package/docs/prerender.min.js +0 -2
- package/docs/prerender.min.js.map +0 -1
- package/docs/progress.html +0 -1
- package/docs/progress.min.js +0 -2
- package/docs/progress.min.js.map +0 -1
- package/docs/pwa-prerender.min.js +0 -2
- package/docs/pwa-prerender.min.js.map +0 -1
- package/docs/pwa.html +0 -11
- package/docs/pwa.min.css +0 -1
- package/docs/pwa.min.js +0 -2
- package/docs/pwa.min.js.map +0 -1
- package/docs/ripple.html +0 -1
- package/docs/ripple.min.js +0 -2
- package/docs/ripple.min.js.map +0 -1
- package/docs/search.html +0 -1
- package/docs/search.min.js +0 -2
- package/docs/search.min.js.map +0 -1
- package/docs/selection.html +0 -1
- package/docs/selection.min.js +0 -2
- package/docs/selection.min.js.map +0 -1
- package/docs/slider.html +0 -1
- package/docs/slider.min.js +0 -2
- package/docs/slider.min.js.map +0 -1
- package/docs/snackbar.html +0 -1
- package/docs/snackbar.min.js +0 -2
- package/docs/snackbar.min.js.map +0 -1
- package/docs/spec.min.css +0 -1
- package/docs/spec.min.js +0 -2
- package/docs/spec.min.js.map +0 -1
- package/docs/surface.html +0 -1
- package/docs/surface.min.js +0 -2
- package/docs/surface.min.js.map +0 -1
- package/docs/tab.html +0 -1
- package/docs/tab.min.js +0 -2
- package/docs/tab.min.js.map +0 -1
- package/docs/textfield.html +0 -2
- package/docs/textfield.min.js +0 -2
- package/docs/textfield.min.js.map +0 -1
- package/docs/theme-colored-fallbacks.min.css +0 -1
- package/docs/theme-colored-fallbacks.min.js +0 -2
- package/docs/theme-colored-fallbacks.min.js.map +0 -1
- package/docs/theme-colored.min.css +0 -1
- package/docs/theme-colored.min.js +0 -2
- package/docs/theme-colored.min.js.map +0 -1
- package/docs/theme-default-fallbacks.min.css +0 -1
- package/docs/theme-default-fallbacks.min.js +0 -2
- package/docs/theme-default-fallbacks.min.js.map +0 -1
- package/docs/theme-default.min.css +0 -1
- package/docs/theme-default.min.js +0 -2
- package/docs/theme-default.min.js.map +0 -1
- package/docs/themes-fallbacks.min.css +0 -1
- package/docs/themes-fallbacks.min.js +0 -2
- package/docs/themes-fallbacks.min.js.map +0 -1
- package/docs/themes.min.css +0 -1
- package/docs/themes.min.js +0 -2
- package/docs/themes.min.js.map +0 -1
- package/docs/tooltip.html +0 -1
- package/docs/tooltip.min.js +0 -2
- package/docs/tooltip.min.js.map +0 -1
- package/docs/transition.html +0 -1
- package/docs/transition.min.js +0 -2
- package/docs/transition.min.js.map +0 -1
- package/docs/type.html +0 -1
- package/docs/type.min.js +0 -2
- package/docs/type.min.js.map +0 -1
- package/docs-src/components/datatable.pug +0 -327
- package/docs-src/components/selection.js +0 -9
- package/docs-src/components/selection.pug +0 -77
- package/docs-src/core/color.pug +0 -201
- package/docs-src/core/overlay.js +0 -4
- package/docs-src/core/ripple.js +0 -4
- package/docs-src/index.pug +0 -9
- package/docs-src/pwa/_dialogs.pug +0 -15
- package/docs-src/pwa/pwa-prerender.js +0 -3
- package/docs-src/pwa/pwa.js +0 -182
- package/docs-src/pwa/pwa.scss +0 -25
- package/docs-src/spec.scss +0 -1
- package/docs-src/themes/theme-colored-fallbacks.scss +0 -14
- package/docs-src/themes/theme-colored.scss +0 -14
- package/docs-src/themes/theme-default-fallbacks.scss +0 -14
- package/docs-src/themes/theme-default.scss +0 -14
- package/index.js +0 -51
- package/index.scss +0 -2
- package/webpack.config.js +0 -187
package/docs/pwa.min.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-surface=white]{background-color:#fff}.mdw-theme[mdw-surface=black]{background-color:#000}.mdw-theme[mdw-ink=white]{color:#fff}.mdw-theme[mdw-ink=black]{color:#000}.mdw-theme[mdw-surface="primary 50"]{background-color:#e8f5e9}.mdw-theme[mdw-ink^="primary 50"]{color:#e8f5e9}.mdw-theme[mdw-surface="secondary 50"]{background-color:#fbe9e7}.mdw-theme[mdw-ink^="secondary 50"]{color:#fbe9e7}.mdw-theme[mdw-surface="warn 50"]{background-color:#ffebee}.mdw-theme[mdw-ink^="warn 50"]{color:#ffebee}.mdw-theme[mdw-surface="background 50"]{background-color:#eceff1}.mdw-theme[mdw-ink^="background 50"]{color:#eceff1}.mdw-theme[mdw-surface="primary 100"]{background-color:#c8e6c9}.mdw-theme[mdw-ink^="primary 100"]{color:#c8e6c9}.mdw-theme[mdw-surface="secondary 100"]{background-color:#ffccbc}.mdw-theme[mdw-ink^="secondary 100"]{color:#ffccbc}.mdw-theme[mdw-surface="warn 100"]{background-color:#ffcdd2}.mdw-theme[mdw-ink^="warn 100"]{color:#ffcdd2}.mdw-theme[mdw-surface="background 100"]{background-color:#cfd8dc}.mdw-theme[mdw-ink^="background 100"]{color:#cfd8dc}.mdw-theme[mdw-surface="primary 200"]{background-color:#a5d6a7}.mdw-theme[mdw-ink^="primary 200"]{color:#a5d6a7}.mdw-theme[mdw-surface="secondary 200"]{background-color:#ffab91}.mdw-theme[mdw-ink^="secondary 200"]{color:#ffab91}.mdw-theme[mdw-surface="warn 200"]{background-color:#ef9a9a}.mdw-theme[mdw-ink^="warn 200"]{color:#ef9a9a}.mdw-theme[mdw-surface="background 200"]{background-color:#b0bec5}.mdw-theme[mdw-ink^="background 200"]{color:#b0bec5}.mdw-theme[mdw-surface="primary 300"]{background-color:#81c784}.mdw-theme[mdw-ink^="primary 300"]{color:#81c784}.mdw-theme[mdw-surface="secondary 300"]{background-color:#ff8a65}.mdw-theme[mdw-ink^="secondary 300"]{color:#ff8a65}.mdw-theme[mdw-surface="warn 300"]{background-color:#e57373}.mdw-theme[mdw-ink^="warn 300"]{color:#e57373}.mdw-theme[mdw-surface="background 300"]{background-color:#90a4ae}.mdw-theme[mdw-ink^="background 300"]{color:#90a4ae}.mdw-theme[mdw-surface="primary 400"]{background-color:#66bb6a}.mdw-theme[mdw-ink^="primary 400"]{color:#66bb6a}.mdw-theme[mdw-surface="secondary 400"]{background-color:#ff7043}.mdw-theme[mdw-ink^="secondary 400"]{color:#ff7043}.mdw-theme[mdw-surface="warn 400"]{background-color:#ef5350}.mdw-theme[mdw-ink^="warn 400"]{color:#ef5350}.mdw-theme[mdw-surface="background 400"]{background-color:#78909c}.mdw-theme[mdw-ink^="background 400"]{color:#78909c}.mdw-theme[mdw-surface="primary 500"]{background-color:#4caf50}.mdw-theme[mdw-ink^="primary 500"]{color:#4caf50}.mdw-theme[mdw-surface="secondary 500"]{background-color:#ff5722}.mdw-theme[mdw-ink^="secondary 500"]{color:#ff5722}.mdw-theme[mdw-surface="warn 500"]{background-color:#f44336}.mdw-theme[mdw-ink^="warn 500"]{color:#f44336}.mdw-theme[mdw-surface="background 500"]{background-color:#607d8b}.mdw-theme[mdw-ink^="background 500"]{color:#607d8b}.mdw-theme[mdw-surface="primary 600"]{background-color:#43a047}.mdw-theme[mdw-ink^="primary 600"]{color:#43a047}.mdw-theme[mdw-surface="secondary 600"]{background-color:#f4511e}.mdw-theme[mdw-ink^="secondary 600"]{color:#f4511e}.mdw-theme[mdw-surface="warn 600"]{background-color:#e53935}.mdw-theme[mdw-ink^="warn 600"]{color:#e53935}.mdw-theme[mdw-surface="background 600"]{background-color:#546e7a}.mdw-theme[mdw-ink^="background 600"]{color:#546e7a}.mdw-theme[mdw-surface="primary 700"]{background-color:#388e3c}.mdw-theme[mdw-ink^="primary 700"]{color:#388e3c}.mdw-theme[mdw-surface="secondary 700"]{background-color:#e64a19}.mdw-theme[mdw-ink^="secondary 700"]{color:#e64a19}.mdw-theme[mdw-surface="warn 700"]{background-color:#d32f2f}.mdw-theme[mdw-ink^="warn 700"]{color:#d32f2f}.mdw-theme[mdw-surface="background 700"]{background-color:#455a64}.mdw-theme[mdw-ink^="background 700"]{color:#455a64}.mdw-theme[mdw-surface="primary 800"]{background-color:#2e7d32}.mdw-theme[mdw-ink^="primary 800"]{color:#2e7d32}.mdw-theme[mdw-surface="secondary 800"]{background-color:#d84315}.mdw-theme[mdw-ink^="secondary 800"]{color:#d84315}.mdw-theme[mdw-surface="warn 800"]{background-color:#c62828}.mdw-theme[mdw-ink^="warn 800"]{color:#c62828}.mdw-theme[mdw-surface="background 800"]{background-color:#37474f}.mdw-theme[mdw-ink^="background 800"]{color:#37474f}.mdw-theme[mdw-surface="primary 900"]{background-color:#1b5e20}.mdw-theme[mdw-ink^="primary 900"]{color:#1b5e20}.mdw-theme[mdw-surface="secondary 900"]{background-color:#bf360c}.mdw-theme[mdw-ink^="secondary 900"]{color:#bf360c}.mdw-theme[mdw-surface="warn 900"]{background-color:#b71c1c}.mdw-theme[mdw-ink^="warn 900"]{color:#b71c1c}.mdw-theme[mdw-surface="background 900"]{background-color:#263238}.mdw-theme[mdw-ink^="background 900"]{color:#263238}.mdw-theme[mdw-surface="primary A100"]{background-color:#b9f6ca}.mdw-theme[mdw-ink^="primary A100"]{color:#b9f6ca}.mdw-theme[mdw-surface="secondary A100"]{background-color:#ff9e80}.mdw-theme[mdw-ink^="secondary A100"]{color:#ff9e80}.mdw-theme[mdw-surface="warn A100"]{background-color:#ff8a80}.mdw-theme[mdw-ink^="warn A100"]{color:#ff8a80}.mdw-theme[mdw-surface="background A100"]{background-color:#cfd8dc}.mdw-theme[mdw-ink^="background A100"]{color:#cfd8dc}.mdw-theme[mdw-surface="primary A200"]{background-color:#69f0ae}.mdw-theme[mdw-ink^="primary A200"]{color:#69f0ae}.mdw-theme[mdw-surface="secondary A200"]{background-color:#ff6e40}.mdw-theme[mdw-ink^="secondary A200"]{color:#ff6e40}.mdw-theme[mdw-surface="warn A200"]{background-color:#ff5252}.mdw-theme[mdw-ink^="warn A200"]{color:#ff5252}.mdw-theme[mdw-surface="background A200"]{background-color:#b0bec5}.mdw-theme[mdw-ink^="background A200"]{color:#b0bec5}.mdw-theme[mdw-surface="primary A400"]{background-color:#00e676}.mdw-theme[mdw-ink^="primary A400"]{color:#00e676}.mdw-theme[mdw-surface="secondary A400"]{background-color:#ff3d00}.mdw-theme[mdw-ink^="secondary A400"]{color:#ff3d00}.mdw-theme[mdw-surface="warn A400"]{background-color:#ff1744}.mdw-theme[mdw-ink^="warn A400"]{color:#ff1744}.mdw-theme[mdw-surface="background A400"]{background-color:#78909c}.mdw-theme[mdw-ink^="background A400"]{color:#78909c}.mdw-theme[mdw-surface="primary A700"]{background-color:#00c853}.mdw-theme[mdw-ink^="primary A700"]{color:#00c853}.mdw-theme[mdw-surface="secondary A700"]{background-color:#dd2c00}.mdw-theme[mdw-ink^="secondary A700"]{color:#dd2c00}.mdw-theme[mdw-surface="warn A700"]{background-color:#d50000}.mdw-theme[mdw-ink^="warn A700"]{color:#d50000}.mdw-theme[mdw-surface="background A700"]{background-color:#455a64}.mdw-theme[mdw-ink^="background A700"]{color:#455a64}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink=default],.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface]:not([mdw-ink]),.mdw-theme[mdw-light][mdw-ink=default],.mdw-theme[mdw-light][mdw-surface]:not([mdw-ink]){color:rgba(0,96,100,.87)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=binary],.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=card],.mdw-theme[mdw-light][mdw-surface=binary],.mdw-theme[mdw-light][mdw-surface=card]{background-color:#fff}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=background],.mdw-theme[mdw-light][mdw-surface=background]{background-color:#eceff1}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=primary],.mdw-theme[mdw-light][mdw-surface=primary]{background-color:#e8f5e9}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=secondary],.mdw-theme[mdw-light][mdw-surface=secondary]{background-color:#fbe9e7}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface=warn],.mdw-theme[mdw-light][mdw-surface=warn]{background-color:#ffebee}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface="background alt"],.mdw-theme[mdw-light][mdw-surface="background alt"]{background-color:#cfd8dc}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface="primary alt"],.mdw-theme[mdw-light][mdw-surface="primary alt"]{background-color:#c8e6c9}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface="secondary alt"],.mdw-theme[mdw-light][mdw-surface="secondary alt"]{background-color:#ffccbc}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-surface="warn alt"],.mdw-theme[mdw-light][mdw-surface="warn alt"]{background-color:#ffcdd2}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=primary],.mdw-theme[mdw-light][mdw-ink~=primary]{color:#00c853}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=secondary],.mdw-theme[mdw-light][mdw-ink~=secondary]{color:#dd2c00}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=warn],.mdw-theme[mdw-light][mdw-ink~=warn]{color:#d50000}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="primary contrast"],.mdw-theme[mdw-light][mdw-ink^="primary contrast"]{color:#00c853}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="secondary contrast"],.mdw-theme[mdw-light][mdw-ink^="secondary contrast"]{color:#dd2c00}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="warn contrast"],.mdw-theme[mdw-light][mdw-ink^="warn contrast"]{color:#d50000}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="primary light"],.mdw-theme[mdw-light][mdw-ink^="primary light"]{color:#00e676}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="secondary light"],.mdw-theme[mdw-light][mdw-ink^="secondary light"]{color:#ff3d00}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink^="warn light"],.mdw-theme[mdw-light][mdw-ink^="warn light"]{color:#ff1744}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=high],.mdw-theme[mdw-light][mdw-ink~=high]{color:rgba(0,96,100,.87)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=medium],.mdw-theme[mdw-light][mdw-ink~=medium]{color:rgba(0,96,100,.6)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=inactive],.mdw-theme[mdw-light][mdw-ink~=inactive]{color:rgba(0,96,100,.38)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-ink~=divider],.mdw-theme[mdw-light][mdw-ink~=divider]{color:rgba(0,96,100,.12)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-border-ink=default],.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-border-ink],.mdw-theme[mdw-light][mdw-border-ink=default],.mdw-theme[mdw-light][mdw-border-ink]{border-color:rgba(0,96,100,.12)}.mdw-theme[mdw-light] .mdw-theme:not([mdw-dark])[mdw-border-ink=none],.mdw-theme[mdw-light][mdw-border-ink=none]{border-color:transparent}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink=default],.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface]:not([mdw-ink]),.mdw-theme[mdw-dark][mdw-ink=default],.mdw-theme[mdw-dark][mdw-surface]:not([mdw-ink]){color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=binary],.mdw-theme[mdw-dark][mdw-surface=binary]{background-color:#000}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=card],.mdw-theme[mdw-dark][mdw-surface=card]{background-color:#37474f}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=background],.mdw-theme[mdw-dark][mdw-surface=background]{background-color:#263238}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=primary],.mdw-theme[mdw-dark][mdw-surface=primary]{background-color:#1b5e20}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=secondary],.mdw-theme[mdw-dark][mdw-surface=secondary]{background-color:#bf360c}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface=warn],.mdw-theme[mdw-dark][mdw-surface=warn]{background-color:#b71c1c}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface="background alt"],.mdw-theme[mdw-dark][mdw-surface="background alt"]{background-color:#37474f}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface="primary alt"],.mdw-theme[mdw-dark][mdw-surface="primary alt"]{background-color:#2e7d32}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface="secondary alt"],.mdw-theme[mdw-dark][mdw-surface="secondary alt"]{background-color:#d84315}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-surface="warn alt"],.mdw-theme[mdw-dark][mdw-surface="warn alt"]{background-color:#c62828}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=primary],.mdw-theme[mdw-dark][mdw-ink~=primary]{color:#69f0ae}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=secondary],.mdw-theme[mdw-dark][mdw-ink~=secondary]{color:#ff6e40}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=warn],.mdw-theme[mdw-dark][mdw-ink~=warn]{color:#ff5252}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="primary contrast"],.mdw-theme[mdw-dark][mdw-ink^="primary contrast"]{color:#b9f6ca}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="secondary contrast"],.mdw-theme[mdw-dark][mdw-ink^="secondary contrast"]{color:#ff9e80}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="warn contrast"],.mdw-theme[mdw-dark][mdw-ink^="warn contrast"]{color:#ff8a80}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="primary light"],.mdw-theme[mdw-dark][mdw-ink^="primary light"]{color:#b9f6ca}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="secondary light"],.mdw-theme[mdw-dark][mdw-ink^="secondary light"]{color:#ff9e80}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink^="warn light"],.mdw-theme[mdw-dark][mdw-ink^="warn light"]{color:#ff8a80}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=high],.mdw-theme[mdw-dark][mdw-ink~=high]{color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=medium],.mdw-theme[mdw-dark][mdw-ink~=medium]{color:rgba(224,247,250,.7)}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=inactive],.mdw-theme[mdw-dark][mdw-ink~=inactive]{color:rgba(224,247,250,.5)}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-ink~=divider],.mdw-theme[mdw-dark][mdw-ink~=divider]{color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-border-ink=default],.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-border-ink],.mdw-theme[mdw-dark][mdw-border-ink=default],.mdw-theme[mdw-dark][mdw-border-ink]{border-color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-theme:not([mdw-light])[mdw-border-ink=none],.mdw-theme[mdw-dark][mdw-border-ink=none]{border-color:transparent}}@supports (--v:v){.mdw-theme[mdw-light],:root{--color__default-ink:var(--foreground-light-color);--color__high-ink-opacity:0.87;--color__medium-ink-opacity:0.6;--color__inactive-ink-opacity:0.38;--color__divider-ink-opacity:0.12;--color__primary-ink:var(--primary-A700-color);--color__secondary-ink:var(--secondary-A700-color);--color__warn-ink:var(--warn-A700-color);--color__primary-contrast-ink:var(--primary-A700-color);--color__secondary-contrast-ink:var(--secondary-A700-color);--color__warn-contrast-ink:var(--warn-A700-color);--color__primary-light-ink:var(--primary-A400-color);--color__secondary-light-ink:var(--secondary-A400-color);--color__warn-light-ink:var(--warn-A400-color);--color__card-surface:255,255,255;--color__binary-surface:255,255,255;--color__background-surface:var(--background-50-color);--color__primary-surface:var(--primary-50-color);--color__secondary-surface:var(--secondary-50-color);--color__warn-surface:var(--warn-50-color);--color__background-alt-surface:var(--background-100-color);--color__primary-alt-surface:var(--primary-100-color);--color__secondary-alt-surface:var(--secondary-100-color);--color__warn-alt-surface:var(--warn-100-color)}.mdw-theme[mdw-dark]{--color__default-ink:var(--foreground-dark-color);--color__high-ink-opacity:1;--color__medium-ink-opacity:0.7;--color__inactive-ink-opacity:0.5;--color__divider-ink-opacity:0.24;--color__primary-ink:var(--primary-A200-color);--color__secondary-ink:var(--secondary-A200-color);--color__warn-ink:var(--warn-A200-color);--color__primary-contrast-ink:var(--primary-A100-color);--color__secondary-contrast-ink:var(--secondary-A100-color);--color__warn-contrast-ink:var(--warn-A100-color);--color__primary-light-ink:var(--primary-A100-color);--color__secondary-light-ink:var(--secondary-A100-color);--color__warn-light-ink:var(--warn-A100-color);--color__card-surface:var(--background-800-color);--color__binary-surface:0,0,0;--color__background-surface:var(--background-900-color);--color__primary-surface:var(--primary-900-color);--color__secondary-surface:var(--secondary-900-color);--color__warn-surface:var(--warn-900-color);--color__background-alt-surface:var(--background-800-color);--color__primary-alt-surface:var(--primary-800-color);--color__secondary-alt-surface:var(--secondary-800-color);--color__warn-alt-surface:var(--warn-800-color)}.mdw-theme,:root{--foreground-light-color:0,96,100;--foreground-dark-color:224,247,250;--primary-50-color:232,245,233;--primary-100-color:200,230,201;--primary-200-color:165,214,167;--primary-300-color:129,199,132;--primary-400-color:102,187,106;--primary-500-color:76,175,80;--primary-600-color:67,160,71;--primary-700-color:56,142,60;--primary-800-color:46,125,50;--primary-900-color:27,94,32;--primary-A100-color:185,246,202;--primary-A200-color:105,240,174;--primary-A400-color:0,230,118;--primary-A700-color:0,200,83;--secondary-50-color:251,233,231;--secondary-100-color:255,204,188;--secondary-200-color:255,171,145;--secondary-300-color:255,138,101;--secondary-400-color:255,112,67;--secondary-500-color:255,87,34;--secondary-600-color:244,81,30;--secondary-700-color:230,74,25;--secondary-800-color:216,67,21;--secondary-900-color:191,54,12;--secondary-A100-color:255,158,128;--secondary-A200-color:255,110,64;--secondary-A400-color:255,61,0;--secondary-A700-color:221,44,0;--warn-50-color:255,235,238;--warn-100-color:255,205,210;--warn-200-color:239,154,154;--warn-300-color:229,115,115;--warn-400-color:239,83,80;--warn-500-color:244,67,54;--warn-600-color:229,57,53;--warn-700-color:211,47,47;--warn-800-color:198,40,40;--warn-900-color:183,28,28;--warn-A100-color:255,138,128;--warn-A200-color:255,82,82;--warn-A400-color:255,23,68;--warn-A700-color:213,0,0;--background-50-color:236,239,241;--background-100-color:207,216,220;--background-200-color:176,190,197;--background-300-color:144,164,174;--background-400-color:120,144,156;--background-500-color:96,125,139;--background-600-color:84,110,122;--background-700-color:69,90,100;--background-800-color:55,71,79;--background-900-color:38,50,56;--background-A100-color:207,216,220;--background-A200-color:176,190,197;--background-A400-color:120,144,156;--background-A700-color:69,90,100}.mdw-theme[mdw-surface]{background-color:RGB(var(--surface-color))}.mdw-themesvg[mdw-surface]{background-color:transparent;fill:RGBA(var(--surface-color))}.mdw-theme[mdw-surface~=primary]{--50-surface:var(--primary-50-color);--100-surface:var(--primary-100-color);--200-surface:var(--primary-200-color);--300-surface:var(--primary-300-color);--400-surface:var(--primary-400-color);--500-surface:var(--primary-500-color);--600-surface:var(--primary-600-color);--700-surface:var(--primary-700-color);--800-surface:var(--primary-800-color);--900-surface:var(--primary-900-color);--A100-surface:var(--primary-A100-color);--A200-surface:var(--primary-A200-color);--A400-surface:var(--primary-A400-color);--A700-surface:var(--primary-A700-color)}.mdw-theme[mdw-ink~=primary]{--50-color:var(--primary-50-color);--100-color:var(--primary-100-color);--200-color:var(--primary-200-color);--300-color:var(--primary-300-color);--400-color:var(--primary-400-color);--500-color:var(--primary-500-color);--600-color:var(--primary-600-color);--700-color:var(--primary-700-color);--800-color:var(--primary-800-color);--900-color:var(--primary-900-color);--A100-color:var(--primary-A100-color);--A200-color:var(--primary-A200-color);--A400-color:var(--primary-A400-color);--A700-color:var(--primary-A700-color)}.mdw-theme[mdw-surface~=secondary]{--50-surface:var(--secondary-50-color);--100-surface:var(--secondary-100-color);--200-surface:var(--secondary-200-color);--300-surface:var(--secondary-300-color);--400-surface:var(--secondary-400-color);--500-surface:var(--secondary-500-color);--600-surface:var(--secondary-600-color);--700-surface:var(--secondary-700-color);--800-surface:var(--secondary-800-color);--900-surface:var(--secondary-900-color);--A100-surface:var(--secondary-A100-color);--A200-surface:var(--secondary-A200-color);--A400-surface:var(--secondary-A400-color);--A700-surface:var(--secondary-A700-color)}.mdw-theme[mdw-ink~=secondary]{--50-color:var(--secondary-50-color);--100-color:var(--secondary-100-color);--200-color:var(--secondary-200-color);--300-color:var(--secondary-300-color);--400-color:var(--secondary-400-color);--500-color:var(--secondary-500-color);--600-color:var(--secondary-600-color);--700-color:var(--secondary-700-color);--800-color:var(--secondary-800-color);--900-color:var(--secondary-900-color);--A100-color:var(--secondary-A100-color);--A200-color:var(--secondary-A200-color);--A400-color:var(--secondary-A400-color);--A700-color:var(--secondary-A700-color)}.mdw-theme[mdw-surface~=warn]{--50-surface:var(--warn-50-color);--100-surface:var(--warn-100-color);--200-surface:var(--warn-200-color);--300-surface:var(--warn-300-color);--400-surface:var(--warn-400-color);--500-surface:var(--warn-500-color);--600-surface:var(--warn-600-color);--700-surface:var(--warn-700-color);--800-surface:var(--warn-800-color);--900-surface:var(--warn-900-color);--A100-surface:var(--warn-A100-color);--A200-surface:var(--warn-A200-color);--A400-surface:var(--warn-A400-color);--A700-surface:var(--warn-A700-color)}.mdw-theme[mdw-ink~=warn]{--50-color:var(--warn-50-color);--100-color:var(--warn-100-color);--200-color:var(--warn-200-color);--300-color:var(--warn-300-color);--400-color:var(--warn-400-color);--500-color:var(--warn-500-color);--600-color:var(--warn-600-color);--700-color:var(--warn-700-color);--800-color:var(--warn-800-color);--900-color:var(--warn-900-color);--A100-color:var(--warn-A100-color);--A200-color:var(--warn-A200-color);--A400-color:var(--warn-A400-color);--A700-color:var(--warn-A700-color)}.mdw-theme[mdw-surface~=background]{--50-surface:var(--background-50-color);--100-surface:var(--background-100-color);--200-surface:var(--background-200-color);--300-surface:var(--background-300-color);--400-surface:var(--background-400-color);--500-surface:var(--background-500-color);--600-surface:var(--background-600-color);--700-surface:var(--background-700-color);--800-surface:var(--background-800-color);--900-surface:var(--background-900-color);--A100-surface:var(--background-A100-color);--A200-surface:var(--background-A200-color);--A400-surface:var(--background-A400-color);--A700-surface:var(--background-A700-color)}.mdw-theme[mdw-ink~=background]{--50-color:var(--background-50-color);--100-color:var(--background-100-color);--200-color:var(--background-200-color);--300-color:var(--background-300-color);--400-color:var(--background-400-color);--500-color:var(--background-500-color);--600-color:var(--background-600-color);--700-color:var(--background-700-color);--800-color:var(--background-800-color);--900-color:var(--background-900-color);--A100-color:var(--background-A100-color);--A200-color:var(--background-A200-color);--A400-color:var(--background-A400-color);--A700-color:var(--background-A700-color)}.mdw-theme[mdw-ink],.mdw-theme[mdw-surface]:not([mdw-ink]){--ink-color:var(--color__default-ink);--ink-opacity:var(--color__high-ink-opacity);color:RGBA(var(--ink-color),var(--ink-opacity))}.mdw-theme[mdw-surface=white]{--surface-color:255,255,255}.mdw-theme[mdw-surface=black]{--surface-color:0,0,0}.mdw-theme[mdw-surface=binary]{--surface-color:var(--color__binary-surface)}.mdw-theme[mdw-surface=card]{--surface-color:var(--color__card-surface)}.mdw-theme[mdw-surface=background]{--surface-color:var(--color__background-surface)}.mdw-theme[mdw-surface=primary]{--surface-color:var(--color__primary-surface)}.mdw-theme[mdw-surface=secondary]{--surface-color:var(--color__secondary-surface)}.mdw-theme[mdw-surface=warn]{--surface-color:var(--color__warn-surface)}.mdw-theme[mdw-surface="background alt"]{--surface-color:var(--color__background-alt-surface)}.mdw-theme[mdw-surface="primary alt"]{--surface-color:var(--color__primary-alt-surface)}.mdw-theme[mdw-surface="secondary alt"]{--surface-color:var(--color__secondary-alt-surface)}.mdw-theme[mdw-surface="warn alt"]{--surface-color:var(--color__warn-alt-surface)}.mdw-theme[mdw-ink~=white]{--ink-color:255,255,255}.mdw-theme[mdw-ink~=black]{--ink-color:0,0,0}.mdw-theme[mdw-ink~=default]{--ink-color:var(--color__default-ink)}.mdw-theme[mdw-ink~=primary]{--ink-opacity:1;--ink-color:var(--color__primary-ink)}.mdw-theme[mdw-ink~=secondary]{--ink-opacity:1;--ink-color:var(--color__secondary-ink)}.mdw-theme[mdw-ink~=warn]{--ink-opacity:1;--ink-color:var(--color__warn-ink)}.mdw-theme[mdw-surface~="50"]{--surface-color:var(--50-surface)}.mdw-theme[mdw-ink~="50"]{--ink-color:var(--50-color)}.mdw-theme[mdw-surface~="100"]{--surface-color:var(--100-surface)}.mdw-theme[mdw-ink~="100"]{--ink-color:var(--100-color)}.mdw-theme[mdw-surface~="200"]{--surface-color:var(--200-surface)}.mdw-theme[mdw-ink~="200"]{--ink-color:var(--200-color)}.mdw-theme[mdw-surface~="300"]{--surface-color:var(--300-surface)}.mdw-theme[mdw-ink~="300"]{--ink-color:var(--300-color)}.mdw-theme[mdw-surface~="400"]{--surface-color:var(--400-surface)}.mdw-theme[mdw-ink~="400"]{--ink-color:var(--400-color)}.mdw-theme[mdw-surface~="500"]{--surface-color:var(--500-surface)}.mdw-theme[mdw-ink~="500"]{--ink-color:var(--500-color)}.mdw-theme[mdw-surface~="600"]{--surface-color:var(--600-surface)}.mdw-theme[mdw-ink~="600"]{--ink-color:var(--600-color)}.mdw-theme[mdw-surface~="700"]{--surface-color:var(--700-surface)}.mdw-theme[mdw-ink~="700"]{--ink-color:var(--700-color)}.mdw-theme[mdw-surface~="800"]{--surface-color:var(--800-surface)}.mdw-theme[mdw-ink~="800"]{--ink-color:var(--800-color)}.mdw-theme[mdw-surface~="900"]{--surface-color:var(--900-surface)}.mdw-theme[mdw-ink~="900"]{--ink-color:var(--900-color)}.mdw-theme[mdw-surface~=A100]{--surface-color:var(--A100-surface)}.mdw-theme[mdw-ink~=A100]{--ink-color:var(--A100-color)}.mdw-theme[mdw-surface~=A200]{--surface-color:var(--A200-surface)}.mdw-theme[mdw-ink~=A200]{--ink-color:var(--A200-color)}.mdw-theme[mdw-surface~=A400]{--surface-color:var(--A400-surface)}.mdw-theme[mdw-ink~=A400]{--ink-color:var(--A400-color)}.mdw-theme[mdw-surface~=A700]{--surface-color:var(--A700-surface)}.mdw-theme[mdw-ink~=A700]{--ink-color:var(--A700-color)}.mdw-theme[mdw-ink^="primary contrast"]{--ink-color:var(--color__primary-contrast-ink)}.mdw-theme[mdw-ink^="secondary contrast"]{--ink-color:var(--color__secondary-contrast-ink)}.mdw-theme[mdw-ink^="warn contrast"]{--ink-color:var(--color__warn-contrast-ink)}.mdw-theme[mdw-ink^="primary light"]{--ink-color:var(--color__primary-light-ink)}.mdw-theme[mdw-ink^="secondary light"]{--ink-color:var(--color__secondary-light-ink)}.mdw-theme[mdw-ink^="warn light"]{--ink-color:var(--color__warn-light-ink)}.mdw-theme[mdw-ink~=high]{--ink-opacity:var(--color__high-ink-opacity)}.mdw-theme[mdw-ink~=medium]{--ink-opacity:var(--color__medium-ink-opacity)}.mdw-theme[mdw-ink~=inactive]{--ink-opacity:var(--color__inactive-ink-opacity)}.mdw-theme[mdw-ink~=divider]{--ink-opacity:var(--color__divider-ink-opacity)}.mdw-theme[mdw-border-ink]{border-color:RGBA(var(--ink-color),var(--color__divider-ink-opacity))}.mdw-theme[mdw-border-ink=default]{border-color:RGBA(var(--color__default-ink),var(--color__divider-ink-opacity))}.mdw-theme[mdw-border-ink=none]{border-color:transparent}}.mdw-overlay{position:relative;outline:none;-webkit-tap-highlight-color:transparent}.mdw-overlay::-moz-focus-inner{border:0}.mdw-overlay:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transition-delay:1ms;transition-duration:0ms;transition-property:opacity,color,background-color;opacity:0;pointer-events:none;background-color:currentColor;border-radius:inherit}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay:active:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-current]:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:before,.mdw-theme[mdw-light] .mdw-overlay:active:before,.mdw-theme[mdw-light] .mdw-overlay:before,.mdw-theme[mdw-light] .mdw-overlay[aria-current]:before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:before{color:inherit}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true]:active:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true]:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false]:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false]:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled]:active:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled]:before,.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true]:active:before,.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true]:before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false]:before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false]:before,.mdw-theme[mdw-light] .mdw-overlay[disabled]:active:before,.mdw-theme[mdw-light] .mdw-overlay[disabled]:before{color:#006064}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme,.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme,.mdw-theme[mdw-light] .mdw-overlay[disabled],.mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme{color:rgba(0,96,100,.87)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-border-ink]{border-color:rgba(0,96,100,.12)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=medium]{color:rgba(0,96,100,.6)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=inactive]{color:rgba(0,96,100,.38)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=false][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[aria-selected=false][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-overlay[disabled][mdw-overlay-default=divider]{color:rgba(0,96,100,.12)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[disabled],.mdw-theme[mdw-light] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-light] .mdw-overlay[disabled]{opacity:.38}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before,.mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:.12}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.04}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.16}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before{opacity:.08}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.2}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.12}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.24}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):before{opacity:.12}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.24}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.16}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.28}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-overlay:active:before,.mdw-theme[mdw-dark] .mdw-overlay:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-current]:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay:active:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-current]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:before{color:inherit}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme,.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true]:active:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true]:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false]:before,.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme,.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false]:before,.mdw-theme[mdw-dark] .mdw-overlay[disabled],.mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme,.mdw-theme[mdw-dark] .mdw-overlay[disabled]:active:before,.mdw-theme[mdw-dark] .mdw-overlay[disabled]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true]:active:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled]:active:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled]:before{color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-border-ink],.mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-border-ink],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-border-ink]{border-color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=medium],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=medium]{color:rgba(224,247,250,.7)}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=inactive],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=inactive]{color:rgba(224,247,250,.5)}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=false][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=false][mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled].mdw-theme[mdw-overlay-default=divider],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled][mdw-overlay-default=divider]{color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-dark] .mdw-overlay[disabled],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-disabled=true],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[disabled]{opacity:.5}.mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:.24}.mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.08}.mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.32}.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before{opacity:.16}.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.4}.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.24}.mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.48}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):before{opacity:.24}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.48}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:.32}.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.56}}@supports (--v:v){.mdw-theme[mdw-light],:root{--overlay__off-color:RGBA(var(--foreground-light-color),0.87);--overlay__off-medium-color:RGBA(var(--foreground-light-color),0.6);--overlay__off-inactive-color:RGBA(var(--foreground-light-color),0.38);--overlay__off-divider-color:RGBA(var(--foreground-light-color),0.12);--overlay__disabled-opacity:0.38;--overlay__overlay-color:RGBA(var(--foreground-light-color),1);--overlay__hover-opacity:0.04;--overlay__focus-opacity:0.12;--overlay__selected-opacity:0.08;--overlay__activated-opacity:0.12;--overlay__hover-focus-opacity:0.16;--overlay__selected-hover-opacity:0.12;--overlay__selected-focus-opacity:0.2;--overlay__selected-hover-focus-opacity:0.24;--overlay__activated-hover-opacity:0.16;--overlay__activated-focus-opacity:0.24;--overlay__activated-hover-focus-opacity:0.28}.mdw-theme[mdw-dark]{--overlay__off-color:RGBA(var(--foreground-dark-color),1);--overlay__off-medium-color:RGBA(var(--foreground-dark-color),0.7);--overlay__off-inactive-color:RGBA(var(--foreground-dark-color),0.5);--overlay__off-divider-color:RGBA(var(--foreground-dark-color),0.24);--overlay__disabled-opacity:0.5;--overlay__overlay-color:RGBA(var(--foreground-dark-color),1);--overlay__hover-opacity:0.08;--overlay__focus-opacity:0.24;--overlay__selected-opacity:0.16;--overlay__activated-opacity:0.24;--overlay__hover-focus-opacity:0.32;--overlay__selected-hover-opacity:0.24;--overlay__selected-focus-opacity:0.4;--overlay__selected-hover-focus-opacity:0.48;--overlay__activated-hover-opacity:0.32;--overlay__activated-focus-opacity:0.48;--overlay__activated-hover-focus-opacity:0.56}.mdw-overlay:active:before,.mdw-overlay:before,.mdw-overlay[aria-current]:before,.mdw-overlay[aria-pressed=true]:before,.mdw-overlay[aria-selected=true]:before{color:inherit;color:RGB(var(--ink-color))}.mdw-overlay[aria-disabled=true]:active:before,.mdw-overlay[aria-disabled=true]:before,.mdw-overlay[aria-pressed=false]:before,.mdw-overlay[aria-selected=false]:before,.mdw-overlay[disabled]:active:before,.mdw-overlay[disabled]:before{color:var(--overlay__overlay-color)}.mdw-overlay[aria-disabled=true],.mdw-overlay[aria-pressed=false],.mdw-overlay[aria-selected=false],.mdw-overlay[disabled],.mdw-overlay__group[aria-multiselectable=true] .mdw-overlay[aria-selected=true]{color:var(--overlay__off-color)}.mdw-overlay[aria-disabled=true][mdw-border-ink],.mdw-overlay[aria-pressed=false][mdw-border-ink],.mdw-overlay[aria-selected=false][mdw-border-ink],.mdw-overlay[disabled][mdw-border-ink]{border-color:var(--overlay__off-divider-color)}.mdw-overlay[aria-disabled=true][mdw-overlay-default=medium],.mdw-overlay[aria-pressed=false][mdw-overlay-default=medium],.mdw-overlay[aria-selected=false][mdw-overlay-default=medium],.mdw-overlay[disabled][mdw-overlay-default=medium]{color:var(--overlay__off-medium-color)}.mdw-overlay[aria-disabled=true][mdw-overlay-default=inactive],.mdw-overlay[aria-pressed=false][mdw-overlay-default=inactive],.mdw-overlay[aria-selected=false][mdw-overlay-default=inactive],.mdw-overlay[disabled][mdw-overlay-default=inactive]{color:var(--overlay__off-inactive-color)}.mdw-overlay[aria-disabled=true][mdw-overlay-default=divider],.mdw-overlay[aria-pressed=false][mdw-overlay-default=divider],.mdw-overlay[aria-selected=false][mdw-overlay-default=divider],.mdw-overlay[disabled][mdw-overlay-default=divider]{color:var(--overlay__off-divider-color)}.mdw-overlay[aria-disabled=true],.mdw-overlay[disabled]{opacity:var(--overlay__disabled-opacity)}.mdw-overlay:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:var(--overlay__focus-opacity)}.mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:var(--overlay__hover-opacity)}.mdw-overlay:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--overlay__hover-focus-opacity)}.mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before{opacity:var(--overlay__selected-opacity)}.mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:var(--overlay__selected-focus-opacity)}.mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:var(--overlay__selected-hover-opacity)}.mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--overlay__selected-hover-focus-opacity)}.mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):before,.mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):before{opacity:var(--overlay__activated-opacity)}.mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:var(--overlay__activated-focus-opacity)}.mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):before{opacity:var(--overlay__activated-hover-opacity)}.mdw-overlay[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-overlay[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-overlay__group[aria-multiselectable=false] .mdw-overlay[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--overlay__activated-hover-focus-opacity)}}.mdw-ripple{position:relative;-webkit-tap-highlight-color:transparent}.mdw-ripple:not([mdw-ripple-js]){overflow:hidden}.mdw-ripple__container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden;box-sizing:border-box;pointer-events:none;z-index:1;border-radius:inherit}.mdw-ripple__inner{display:block;position:absolute;animation-name:none;animation-duration:.25s;animation-timing-function:linear;animation-direction:normal;animation-fill-mode:forwards;transition-delay:0s;transition-duration:.1s;transition-property:background-color,color;transition-timing-function:cubic-bezier(.4,0,.2,1);opacity:.16;pointer-events:none;transform:scale(0);background-color:currentColor;border-radius:50%}.mdw-ripple__inner[mdw-fade-in-out]{animation-name:ripple-fade-in,ripple-fade-out;animation-duration:.25s,.33333333s;animation-timing-function:linear,cubic-bezier(0,0,.2,1);animation-delay:0ms,.25s}.mdw-ripple__inner[mdw-fade-in]{animation-name:ripple-fade-in}.mdw-ripple__inner[mdw-fade-in-repeat]{animation-name:ripple-fade-in-repeat}.mdw-ripple:not(:active)>.mdw-ripple__container>.mdw-ripple__inner[mdw-fade-in-complete][mdw-fade-in],.mdw-ripple__inner[mdw-fade-out]{animation-name:ripple-fade-out;animation-duration:.33333333s;animation-timing-function:cubic-bezier(0,0,.2,1)}@keyframes ripple-fade-in{0%{transform:scale(0)}to{transform:scale(2)}}@keyframes ripple-fade-in-repeat{0%{transform:scale(0)}to{transform:scale(2)}}@keyframes ripple-fade-out{0%{transform:scale(2)}to{transform:scale(2);opacity:0}}.mdw-ripple:after{display:table;position:absolute;top:50%;left:50%;height:0;width:0;padding:50%;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;transition-delay:80ms,.33s;transition-duration:583.33333ms,.33333333s;transition-property:transform,background-color;transition-timing-function:linear,cubic-bezier(0,0,.2,1);will-change:transform,background-color;opacity:.16;pointer-events:none;transform:translateX(-50%) translateY(-50%) scale(2);background-color:transparent;border-radius:50%;color:inherit;content:""}.mdw-ripple:active:after{transition-delay:0s;transition-duration:0s;transform:translateX(-50%) translateY(-50%) scale(0);background-color:currentColor}.mdw-ripple[aria-disabled=true]:after,.mdw-ripple[aria-disabled=true]>.mdw-ripple__container,.mdw-ripple[disabled]:after,.mdw-ripple[disabled]>.mdw-ripple__container,.mdw-ripple[mdw-ripple-js]:after{display:none}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-ripple:after,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-ripple>.mdw-ripple__container>.mdw-ripple__inner,.mdw-theme[mdw-light] .mdw-ripple:after,.mdw-theme[mdw-light] .mdw-ripple>.mdw-ripple__container>.mdw-ripple__inner{opacity:.16;color:inherit}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-ripple:after,.mdw-theme[mdw-dark] .mdw-ripple>.mdw-ripple__container>.mdw-ripple__inner,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-ripple:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-ripple>.mdw-ripple__container>.mdw-ripple__inner{opacity:.32;color:inherit}}@supports (--v:v){.mdw-theme[mdw-light],:root{--ripple__overlay-color:RGBA(var(--foreground-light-color),1);--ripple__pressed-opacity:0.16}.mdw-theme[mdw-dark]{--ripple__overlay-color:RGBA(var(--foreground-dark-color),1);--ripple__pressed-opacity:0.32}.mdw-ripple:after,.mdw-ripple>.mdw-ripple__container>.mdw-ripple__inner{opacity:var(--ripple__pressed-opacity);color:inherit;color:RGB(var(--ink-color))}}.mdw-appbar{display:flex;flex-direction:column}.mdw-appbar__action{display:flex;flex-direction:row;justify-content:space-between;min-height:64px;transition-duration:inherit;transition-property:min-height;transition-timing-function:inherit;z-index:1}.mdw-appbar[mdw-prominent]>.mdw-appbar__action{min-height:128px}.mdw-appbar[mdw-dense]>.mdw-appbar__action{min-height:48px}.mdw-appbar[mdw-dense][mdw-prominent]>.mdw-appbar__action{min-height:96px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense][mdw-prominent]>.mdw-appbar__action{min-height:128px}}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense]>.mdw-appbar__action,.mdw-appbar__action{min-height:56px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense]>.mdw-appbar__action,.mdw-appbar__action{min-height:48px}}.mdw-appbar__content{display:flex;flex-direction:column;flex-grow:1;margin-right:24px;margin-left:80px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__content{margin-right:16px;margin-left:72px}}.mdw-appbar__title{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem;align-self:flex-end;justify-content:space-around;overflow-x:hidden;height:auto;flex-grow:1;margin:0 16px;transition-duration:inherit;transition-property:font,letter-spacing;transition-timing-function:inherit;text-overflow:ellipsis;white-space:nowrap}.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-24px}.mdw-appbar__title[mdw-centered]{flex-grow:0}.mdw-appbar[mdw-dense] .mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-16px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__title:after,.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-20px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__title:after,.mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-16px}}.mdw-appbar[mdw-prominent] .mdw-appbar__title{white-space:normal;font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem}.mdw-appbar[mdw-prominent] .mdw-appbar__title:after{content:"";display:inline-block;vertical-align:-28px}.mdw-appbar__title[mdw-custom]{margin-top:0}.mdw-appbar__title[mdw-custom]:after{display:none}.mdw-appbar__start{order:-1;margin-left:8px;padding:0 8px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__start{margin-left:0}}.mdw-appbar__end{order:1;margin-left:0;margin-right:12px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-appbar__end{margin-left:0;margin-right:4px}}[dir=rtl] .mdw-appbar__end{margin-left:12px;margin-right:0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){[dir=rtl] .mdw-appbar__end{margin-left:4px;margin-right:0}}.mdw-appbar__end,.mdw-appbar__start{display:flex;align-items:flex-start;flex-direction:row}.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:12px;transition-property:margin-top}.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title{margin-top:4px}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title,.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:8px}}@media screen and (max-device-width:959px) and (min-device-aspect-ratio:1/1){.mdw-appbar[mdw-dense] .mdw-appbar__end,.mdw-appbar[mdw-dense] .mdw-appbar__start,.mdw-appbar[mdw-dense] .mdw-appbar__title,.mdw-appbar__end,.mdw-appbar__start,.mdw-appbar__title{margin-top:4px}}.mdw-appbar__start .mdw-button{margin:0}.mdw-appbar__end .mdw-button{margin:0 4px}.mdw-appbar__end .mdw-button[mdw-more-button]{margin-right:-2px;margin-left:0}:root[dir=rtl] .mdw-appbar__end .mdw-button[mdw-more-button]{margin-right:0;margin-left:-2px}.mdw-banner{display:flex;align-items:center;flex-direction:row;justify-content:center;width:100%;border-bottom:1px solid}.mdw-banner__container{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;position:relative;align-items:center;flex-wrap:wrap;justify-content:flex-end;box-sizing:border-box;max-width:960px;flex:1;padding-top:8px;padding-bottom:7px}.mdw-banner__icon{position:absolute;top:24px;right:auto;left:16px}:root[dir=rtl] .mdw-banner__icon{right:16px;left:auto}.mdw-banner__icon~.mdw-banner__text{margin-right:0;margin-left:56px}:root[dir=rtl] .mdw-banner__icon~.mdw-banner__text{margin-right:56px;margin-left:0}.mdw-banner__text{flex-grow:1;padding-right:0;padding-left:24px;white-space:pre-line}.mdw-banner__text:before{content:"";display:inline-block;height:1em;margin-top:12px}.mdw-banner__text:after{content:"";display:inline-block;vertical-align:-12px}.mdw-banner__text :root[dir=rtl]{padding-right:24px;padding-left:0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-banner__text{padding-right:0;padding-left:16px}:root[dir=rtl] .mdw-banner__text{padding-right:16px;padding-left:0}}.mdw-banner__buttons{display:flex;flex-direction:row-reverse;flex-wrap:wrap;justify-content:flex-start;max-width:100%;flex:none}.mdw-banner__buttons .mdw-button{margin-right:8px;margin-left:0;text-align:end}:root[dir=rtl] .mdw-banner__buttons .mdw-button{margin-right:0;margin-left:8px}@media screen and (min-width:1024px){.mdw-banner{flex-wrap:nowrap}.mdw-banner__buttons{margin-right:0;margin-left:90px}:root[dir=rtl] .mdw-banner__buttons{margin-right:90px;margin-left:0}}.mdw-button{display:inline-flex;position:relative;align-items:center;justify-content:center;overflow:hidden;box-sizing:border-box;height:36px;min-width:64px;margin:0 8px;border:none;padding:0 8px;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;transition-duration:.2s,.1s;transition-property:box-shadow,background-color,color;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:0;border-radius:4px;color:inherit;text-align:center;text-decoration:none}.mdw-button::-moz-focus-inner{border:0}.mdw-button[mdw-border-ink],.mdw-button[mdw-surface]{padding:0 16px}.mdw-button:not([mdw-surface]){background-color:transparent}.mdw-button:not([mdw-icon]){font-weight:500;text-transform:uppercase;letter-spacing:.07812rem;font-size:.875rem;line-height:1rem;font-family:inherit;word-spacing:normal}.mdw-button[mdw-border-ink]{border-style:solid;border-width:1px}.mdw-button[mdw-border-ink]:before,.mdw-button[mdw-border-ink]>.mdw-ripple{box-sizing:content-box;height:100%;width:100%;margin-top:-1px;margin-left:-1px;padding-right:2px;padding-bottom:2px}.mdw-button[mdw-icon]{height:40px;min-width:40px;padding:8px;font-size:24px}.mdw-button[mdw-icon],.mdw-button[mdw-image]{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;border-radius:50%}.mdw-button[mdw-image]{height:24px;min-width:24px;margin:0;padding:0}.mdw-button[mdw-image]>{position:absolute;top:0;left:0;height:100%;width:auto}.mdw-button[mdw-raised]{box-shadow:0 0 4px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)}.mdw-button[mdw-raised]:active{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-button[aria-disabled=true],.mdw-button[disabled]{cursor:not-allowed}.mdw-button[aria-disabled=true],.mdw-button[aria-disabled=true][mdw-raised],.mdw-button[disabled],.mdw-button[disabled][mdw-raised]{box-shadow:none}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-button[aria-disabled=true][mdw-surface],.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-button[disabled][mdw-surface],.mdw-theme[mdw-light] .mdw-button[aria-disabled=true][mdw-surface],.mdw-theme[mdw-light] .mdw-button[disabled][mdw-surface]{background-color:rgba(0,96,100,.38);color:rgba(0,96,100,.87)}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-button[aria-disabled=true][mdw-surface],.mdw-theme[mdw-dark] .mdw-button[disabled][mdw-surface],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-button[aria-disabled=true][mdw-surface],.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-button[disabled][mdw-surface]{background-color:rgba(224,247,250,.5);color:#e0f7fa}}@supports (--v:v){.mdw-theme[mdw-light],:root{--button__inactive-color:RGBA(var(--foreground-light-color),0.38);--button__disabled-text-color:RGBA(var(--foreground-light-color),0.87);--button__disabled-background-color:RGBA(var(--foreground-light-color),0.38);--button__outline-color:RGBA(var(--foreground-light-color),0.12)}.mdw-theme[mdw-dark]{--button__inactive-color:RGBA(var(--foreground-dark-color),0.5);--button__disabled-text-color:RGBA(var(--foreground-dark-color),1);--button__disabled-background-color:RGBA(var(--foreground-dark-color),0.5);--button__outline-color:RGBA(var(--foreground-dark-color),0.24)}.mdw-button[aria-disabled=true][mdw-surface],.mdw-button[disabled][mdw-surface]{background-color:var(--button__disabled-background-color);color:var(--button__disabled-text-color)}.mdw-button[aria-disabled=true][mdw-surface][mdw-dark],.mdw-button[aria-disabled=true][mdw-surface][mdw-light],.mdw-button[disabled][mdw-surface][mdw-dark],.mdw-button[disabled][mdw-surface][mdw-light]{--button__disabled-text-color:inherit;--button__disabled-background-color:inherit}}.mdw-card{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:block;position:relative;outline:none;transition-duration:.2s;transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);border-radius:4px;box-shadow:none}.mdw-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:1px solid;border-color:inherit;border-radius:inherit}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-card:not([mdw-elevation]){box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-card:not([mdw-elevation]):before{border-color:transparent}}.mdw-card[mdw-elevation="1"]{box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-card[mdw-elevation="8"],.mdw-card[mdw-raised~=focus-within]:focus-within,.mdw-card[mdw-raised~=focus]:focus,.mdw-card[mdw-raised~=hover]:hover{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-card[mdw-elevation="1"]:before,.mdw-card[mdw-elevation="8"]:before{border-color:transparent}.mdw-card__actions,.mdw-card__end,.mdw-card__start{position:relative;z-index:2}.mdw-card__content,.mdw-card__header,.mdw-card__subheader,.mdw-card__supporting-text{padding:0 16px}.mdw-card__supporting-text:before{content:"";display:inline-block;height:1em;margin-top:14px}.mdw-card__supporting-text:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card>.mdw-divider{width:calc(100% - 32px);margin-right:16px;margin-left:16px}.mdw-card__thumbnail{margin:16px 16px 0}.mdw-card__start{float:left}.mdw-card__end,:root[dir=rtl] .mdw-card__start{float:right}:root[dir=rtl] .mdw-card__end{float:left}.mdw-card__image{height:auto;width:100%}.mdw-card__media{position:relative;line-height:0}.mdw-card__media[mdw-ratio]>.mdw-card__image{position:absolute;height:100%;object-fit:cover}.mdw-card__media[mdw-ratio]:after{content:"";display:inline-block;height:0;width:auto}.mdw-card__media[mdw-ratio="16:9"]:after{padding-bottom:56.25%}.mdw-card__media[mdw-ratio="3:2"]:after{padding-bottom:66.66667%}.mdw-card__media[mdw-ratio="4:3"]:after{padding-bottom:75%}.mdw-card__media[mdw-ratio="1:1"]:after{padding-bottom:100%}.mdw-card__header-thumbnail{align-self:center;min-height:40px;min-width:40px;margin-right:16px;margin-left:0}:root[dir=rtl] .mdw-card__header-thumbnail{margin-right:0;margin-left:16px}.mdw-card__header{margin:0}h5.mdw-card__header{font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem;margin-bottom:-28px}h5.mdw-card__header:before{content:"";display:inline-block;height:1em;margin-top:16px}h5.mdw-card__header:after{content:"";display:inline-block;vertical-align:-28px}h6.mdw-card__header{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem}h6.mdw-card__header:before{content:"";display:inline-block;height:1em;margin-top:14px}.mdw-card__header[mdw-two-line]{margin-bottom:-22px}.mdw-card__header[mdw-two-line]:after{content:"";display:inline-block;vertical-align:-22px}.mdw-card__header[mdw-two-line]~.mdw-card__subheader:before{content:"";display:inline-block;height:1em;margin-top:8px}.mdw-card__header[mdw-two-line]~.mdw-card__subheader:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card__actions{display:flex;padding-top:8px;padding-right:4px;padding-left:4px}.mdw-card__actions>.mdw-button{margin:0 4px}.mdw-card__actions>span{flex:1}.mdw-card__actions:last-child,.mdw-card__supporting-text:last-child{padding-bottom:8px}.mdw-button.mdw-card__button{margin:0;padding:0;z-index:1;border-radius:inherit}.mdw-button.mdw-card__button,.mdw-dialog__close{position:absolute;top:0;left:0;height:100%;width:100%}.mdw-dialog__close{-ms-overflow-style:none;overflow-y:scroll;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;cursor:default;pointer-events:inherit;z-index:8}.mdw-dialog__close::-webkit-scrollbar{display:none}.mdw-dialog__close:after{display:block;content:"";height:200%;width:200%}.mdw-dialog{display:flex;position:absolute;top:0;left:0;align-items:center;flex-direction:row;justify-content:center;box-sizing:border-box;height:100%;width:100%;padding:84px 40px;transition-duration:75ms;transition-property:opacity,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;pointer-events:none;visibility:hidden;z-index:24;background-color:rgba(0,0,0,.5)}.mdw-dialog:not([aria-hidden]){transition:none}.mdw-dialog[mdw-width-units="3"] .mdw-dialog__popup{min-width:168px}.mdw-dialog[mdw-width-units="4"] .mdw-dialog__popup{min-width:224px}.mdw-dialog[mdw-width-units="5"] .mdw-dialog__popup{min-width:280px}.mdw-dialog[mdw-width-units="6"] .mdw-dialog__popup{min-width:336px}.mdw-dialog[mdw-width-units="7"] .mdw-dialog__popup{min-width:392px}.mdw-dialog[aria-hidden=false],.mdw-dialog[id]:target{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(0,0,.2,1);opacity:1;pointer-events:auto;visibility:visible}.mdw-dialog[aria-hidden=false] .mdw-dialog__popup,.mdw-dialog[id]:target .mdw-dialog__popup{transform:scale(1)}.mdw-dialog__popup{display:flex;position:relative;flex-direction:column;overflow-y:auto;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;max-height:100%;min-width:224px;max-width:100%;flex-shrink:1;transition-duration:inherit;transition-property:transform;transition-timing-function:inherit;transform:scale(0);transform-origin:bottom center;z-index:24;border-radius:4px;box-shadow:0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px 0 rgba(0,0,0,.2)}.mdw-dialog__title{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem;margin-bottom:-36px;padding:0 24px}.mdw-dialog__title:before{content:"";display:inline-block;height:1em;margin-top:20px}.mdw-dialog__title:after{content:"";display:inline-block;vertical-align:-36px}.mdw-dialog__body{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;padding:0 24px}.mdw-dialog__body:before{content:"";display:inline-block;height:1em;margin-top:20px}.mdw-dialog__body:after{content:"";display:inline-block;vertical-align:-28px}.mdw-dialog__header{min-height:64px}.mdw-dialog__scrolling{overflow-y:scroll}.mdw-dialog__button-area{display:flex;flex-direction:row-reverse;flex-wrap:wrap;justify-content:flex-start;flex:none;margin-top:8px;margin-bottom:8px}.mdw-dialog__button-area[mdw-stacked]{margin-top:0}.mdw-dialog__button-area[mdw-stacked] .mdw-button{justify-content:flex-end;min-height:48px;flex-basis:100%;margin-right:0;padding-right:16px;padding-left:16px}.mdw-dialog__button-area[mdw-stacked] .mdw-button,:root[dir=rtl] .mdw-dialog__button-area[mdw-stacked] .mdw-button{margin-left:0}.mdw-dialog__button-area .mdw-button{margin-right:8px;margin-left:0;text-align:end}:root[dir=rtl] .mdw-dialog__button-area .mdw-button{margin-right:0;margin-left:8px}.mdw-divider{min-height:1px;height:1px;width:100%;margin-top:-1px;background-color:currentColor}.mdw-fab{display:flex;position:relative;align-items:flex-end;flex-direction:column-reverse;justify-content:center;height:56px;pointer-events:none;z-index:6}.mdw-fab[mdw-horizontal]{flex-direction:row-reverse}.mdw-fab__close{position:fixed;top:0;right:0;bottom:0;left:0;cursor:default;pointer-events:auto;visibility:hidden}.mdw-fab__button.mdw-button{order:-1;box-sizing:content-box;height:24px;min-width:24px;margin:0;padding:16px;pointer-events:auto;border-radius:32px;box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-fab__button.mdw-button:active{box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)}.mdw-fab__button.mdw-button[mdw-extended]{padding:12px}.mdw-fab__button.mdw-button[mdw-mini]{padding:8px}.mdw-fab__speed-dial{display:flex;position:absolute;right:0;bottom:100%;left:auto;align-items:center;flex-direction:inherit;order:1;pointer-events:none;z-index:inherit}:root[dir=rtl] .mdw-fab__speed-dial{right:auto;left:0}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button{margin:0 0 16px;transition-duration:.2s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;transform:scale(0)}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 8px 16px}.mdw-fab__button[mdw-mini]~.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 0 16px}.mdw-fab__button[mdw-extended]~.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini]{margin:0 4px 16px}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:last-child{transition-delay:0ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(2){transition-delay:40ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(3){transition-delay:80ms}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(4){transition-delay:.12s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(5){transition-delay:.16s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(6){transition-delay:.2s}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-last-child(7){transition-delay:.24s}.mdw-fab__icon{position:relative;height:24px;width:24px;transition-duration:.2s;transition-property:margin;transition-timing-function:linear}.mdw-fab__text{overflow:hidden;transition-duration:.2s;transition-property:font-size,margin-left,margin-right;transition-timing-function:linear;will-change:font-size;font-size:0;letter-spacing:0}.mdw-fab__button[mdw-extended=hover]:hover,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]){padding:12px 16px}.mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__text,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__text{font-size:inherit;letter-spacing:inherit}.mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__icon+.mdw-fab__text,.mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__icon+.mdw-fab__text{margin-right:4px;margin-left:8px}:root[dir=rtl] .mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__icon+.mdw-fab__text,:root[dir=rtl] .mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__icon+.mdw-fab__text{margin-right:8px;margin-left:4px}.mdw-fab__hidden-icon,.mdw-fab__shown-icon{position:absolute;top:0;left:0}.mdw-fab__shown-icon{display:none}.mdw-fab:target>.mdw-fab__button{pointer-events:none}.mdw-fab:target>.mdw-fab__button .mdw-fab__hidden-icon,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__button .mdw-fab__hidden-icon{display:none}.mdw-fab:target>.mdw-fab__button .mdw-fab__shown-icon,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__button .mdw-fab__shown-icon{display:block}.mdw-fab:target>.mdw-fab__close,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__close{visibility:visible}.mdw-fab:target>.mdw-fab__speed-dial,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover],.mdw-fab__speed-dial[mdw-hover]:hover{pointer-events:auto}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);opacity:1;transform:scale(1);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:active,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:active,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:active,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:active{box-shadow:0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12),0 7px 8px 0 rgba(0,0,0,.2)}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:first-child,.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:first-child,.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:first-child,.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:first-child{transition-delay:0ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(2),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(2){transition-delay:40ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(3),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(3){transition-delay:80ms}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(4),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(4){transition-delay:.12s}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(5),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(5){transition-delay:.16s}.mdw-fab:target>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab[mdw-show]:not([mdw-hide])>.mdw-fab__speed-dial>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab__button:hover+.mdw-fab__speed-dial[mdw-hover]>.mdw-fab__button.mdw-button:nth-child(6),.mdw-fab__speed-dial[mdw-hover]:hover>.mdw-fab__button.mdw-button:nth-child(6){transition-delay:.2s}.mdw-grid{display:flex;flex-wrap:wrap;grid-auto-flow:row;grid-auto-rows:auto;grid-template-columns:repeat(12,1fr);margin-top:-24px;margin-left:-24px;padding-right:24px;padding-left:24px;-ms-grid-columns:(1fr)[12];-ms-grid-rows:auto}.mdw-grid[mdw-grid]{display:grid;display:-ms-grid}.mdw-grid[mdw-dense]{grid-auto-flow:row dense}.mdw-grid[mdw-center]{justify-content:center}.mdw-grid[mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-margin-bottom]{padding-bottom:24px}.mdw-grid__item{box-sizing:border-box;max-width:100%;flex-grow:0;flex-shrink:1;padding-top:24px;padding-left:24px;transition-duration:.2s;transition-property:flex,width,padding;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:8.33333%}.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid__item[mdw-colspan="2"]{width:16.66667%}.mdw-grid__item[mdw-colspan="3"]{width:25%}.mdw-grid__item[mdw-colspan="4"]{width:33.33333%}.mdw-grid__item[mdw-colspan="5"]{width:41.66667%}.mdw-grid__item[mdw-colspan="6"]{width:50%}.mdw-grid__item[mdw-colspan="7"]{width:58.33333%}.mdw-grid__item[mdw-colspan="8"]{width:66.66667%}.mdw-grid__item[mdw-colspan="9"]{width:75%}.mdw-grid__item[mdw-colspan="10"]{width:83.33333%}.mdw-grid__item[mdw-colspan="11"]{width:91.66667%}.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:9;grid-column-end:span 9}.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:12;grid-column-end:span 12}.mdw-grid[mdw-grid]>.mdw-grid__item{min-width:100%}.mdw-grid[mdw-stretch]>.mdw-grid__item{flex-grow:1}.mdw-grid__item[mdw-colspan="25%"]{width:25%}.mdw-grid__item[mdw-colspan="50%"]{width:50%}.mdw-grid__item[mdw-colspan="75%"]{width:75%}.mdw-grid__item[mdw-colspan="100%"]{width:100%}.mdw-grid__item[mdw-rowspan="2"]{-ms-grid-row-span:2;grid-row-end:span 2}.mdw-grid__item[mdw-colspan="2"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid__item[mdw-rowspan="3"]{-ms-grid-row-span:3;grid-row-end:span 3}.mdw-grid__item[mdw-colspan="3"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid__item[mdw-rowspan="4"]{-ms-grid-row-span:4;grid-row-end:span 4}.mdw-grid__item[mdw-colspan="4"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid__item[mdw-rowspan="5"]{-ms-grid-row-span:5;grid-row-end:span 5}.mdw-grid__item[mdw-colspan="5"]{-ms-grid-column-span:5;grid-column-end:span 5}.mdw-grid__item[mdw-rowspan="6"]{-ms-grid-row-span:6;grid-row-end:span 6}.mdw-grid__item[mdw-colspan="6"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-rowspan="7"]{-ms-grid-row-span:7;grid-row-end:span 7}.mdw-grid__item[mdw-colspan="7"]{-ms-grid-column-span:7;grid-column-end:span 7}.mdw-grid__item[mdw-rowspan="8"]{-ms-grid-row-span:8;grid-row-end:span 8}.mdw-grid__item[mdw-colspan="8"]{-ms-grid-column-span:8;grid-column-end:span 8}.mdw-grid__item[mdw-rowspan="9"]{-ms-grid-row-span:9;grid-row-end:span 9}.mdw-grid__item[mdw-colspan="9"]{-ms-grid-column-span:9;grid-column-end:span 9}.mdw-grid__item[mdw-rowspan="10"]{-ms-grid-row-span:10;grid-row-end:span 10}.mdw-grid__item[mdw-colspan="10"]{-ms-grid-column-span:10;grid-column-end:span 10}.mdw-grid__item[mdw-rowspan="11"]{-ms-grid-row-span:11;grid-row-end:span 11}.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:11;grid-column-end:span 11}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-grid{margin-top:-16px;margin-left:-16px;padding-right:16px;padding-left:16px}.mdw-grid[mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-margin-bottom]{padding-bottom:16px}.mdw-grid>.mdw-grid__item{padding-top:16px;padding-left:16px}}.mdw-grid__content{box-sizing:border-box;max-height:100%;height:100%;max-width:100%;width:100%;flex:100%}.mdw-grid[mdw-columns="8"]{grid-template-columns:repeat(8,1fr);-ms-grid-columns:(1fr)[8]}.mdw-grid[mdw-columns="8"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="1"]{width:12.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="2"]{width:25%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="3"]{width:37.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="4"]{width:50%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="5"]{width:62.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="6"]{width:75%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="7"]{width:87.5%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="8"]{width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:8;grid-column-end:span 8;width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}@media screen and (max-width:839px){.mdw-grid{grid-template-columns:repeat(8,1fr);-ms-grid-columns:(1fr)[8]}.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:12.5%}.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid__item[mdw-colspan="2"]{width:25%}.mdw-grid__item[mdw-colspan="3"]{width:37.5%}.mdw-grid__item[mdw-colspan="4"]{width:50%}.mdw-grid__item[mdw-colspan="5"]{width:62.5%}.mdw-grid__item[mdw-colspan="6"]{width:75%}.mdw-grid__item[mdw-colspan="7"]{width:87.5%}.mdw-grid__item[mdw-colspan="8"]{width:100%}.mdw-grid__item[mdw-colspan="9"],.mdw-grid__item[mdw-colspan="10"],.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:8;grid-column-end:span 8;width:100%}.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}}.mdw-grid[mdw-columns="4"]{grid-template-columns:repeat(4,1fr);-ms-grid-columns:(1fr)[4]}.mdw-grid[mdw-columns="4"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="1"]{width:25%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="2"]{width:50%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="3"]{width:75%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="4"]{width:100%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:4;grid-column-end:span 4;width:100%}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid[mdw-columns="4"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}@media screen and (max-width:599px){.mdw-grid,.mdw-grid[mdw-columns="8"]{grid-template-columns:repeat(4,1fr);-ms-grid-columns:(1fr)[4]}.mdw-grid[mdw-columns="8"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="1"],.mdw-grid__item:not([mdw-colspan]),.mdw-grid__item[mdw-colspan="1"]{width:25%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-stretch],.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="2"],.mdw-grid__item[mdw-colspan="2"]{width:50%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="3"],.mdw-grid__item[mdw-colspan="3"]{width:75%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="4"],.mdw-grid__item[mdw-colspan="4"]{width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="11"],.mdw-grid__item[mdw-colspan="5"],.mdw-grid__item[mdw-colspan="6"],.mdw-grid__item[mdw-colspan="7"],.mdw-grid__item[mdw-colspan="8"],.mdw-grid__item[mdw-colspan="9"],.mdw-grid__item[mdw-colspan="10"],.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:4;grid-column-end:span 4;width:100%}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="25%"],.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="50%"],.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="75%"],.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-grid[mdw-columns="8"]>.mdw-grid__item[mdw-colspan="100%"],.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}}.mdw-grid[mdw-columns="1"]{grid-template-columns:1fr;-ms-grid-columns:1fr}.mdw-grid[mdw-columns="1"]>.mdw-grid__item:not([mdw-colspan]),.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="1"]{width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-stretch]{max-width:none}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="2"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="3"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="4"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="5"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="6"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="7"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="8"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="9"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="10"],.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="11"]{-ms-grid-column-span:1;grid-column-end:span 1;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="25%"]{-ms-grid-column-span:.25;grid-column-end:span .25;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="50%"]{-ms-grid-column-span:.5;grid-column-end:span .5;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="75%"]{-ms-grid-column-span:.75;grid-column-end:span .75;width:100%}.mdw-grid[mdw-columns="1"]>.mdw-grid__item[mdw-colspan="100%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-grid[mdw-columns="1"][mdw-margin="0"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"],.mdw-grid[mdw-margin="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-columns="1"][mdw-margin="0"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"][mdw-margin-bottom],.mdw-grid[mdw-margin="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-columns="1"][mdw-margin="0"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="0"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="0"][mdw-margin-top],.mdw-grid[mdw-margin="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-columns="1"][mdw-gutter="0"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="0"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="0"],.mdw-grid[mdw-gutter="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-columns="1"][mdw-gutter="0"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="0"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="0"]>.mdw-grid__item,.mdw-grid[mdw-gutter="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-columns="1"][mdw-margin="8"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"],.mdw-grid[mdw-margin="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-columns="1"][mdw-margin="8"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"][mdw-margin-bottom],.mdw-grid[mdw-margin="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-columns="1"][mdw-margin="8"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="8"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="8"][mdw-margin-top],.mdw-grid[mdw-margin="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-columns="1"][mdw-gutter="8"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="8"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="8"],.mdw-grid[mdw-gutter="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-columns="1"][mdw-gutter="8"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="8"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="8"]>.mdw-grid__item,.mdw-grid[mdw-gutter="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-columns="1"][mdw-margin="16"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"],.mdw-grid[mdw-margin="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-columns="1"][mdw-margin="16"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"][mdw-margin-bottom],.mdw-grid[mdw-margin="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-columns="1"][mdw-margin="16"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="16"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="16"][mdw-margin-top],.mdw-grid[mdw-margin="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-columns="1"][mdw-gutter="16"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="16"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="16"],.mdw-grid[mdw-gutter="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-columns="1"][mdw-gutter="16"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="16"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="16"]>.mdw-grid__item,.mdw-grid[mdw-gutter="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-columns="1"][mdw-margin="24"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"],.mdw-grid[mdw-margin="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-columns="1"][mdw-margin="24"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"][mdw-margin-bottom],.mdw-grid[mdw-margin="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-columns="1"][mdw-margin="24"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="24"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="24"][mdw-margin-top],.mdw-grid[mdw-margin="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-columns="1"][mdw-gutter="24"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="24"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="24"],.mdw-grid[mdw-gutter="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-columns="1"][mdw-gutter="24"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="24"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="24"]>.mdw-grid__item,.mdw-grid[mdw-gutter="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-columns="1"][mdw-margin="40"],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"],.mdw-grid[mdw-margin="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-columns="1"][mdw-margin="40"][mdw-margin-bottom],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"][mdw-margin-bottom],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"][mdw-margin-bottom],.mdw-grid[mdw-margin="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-columns="1"][mdw-margin="40"][mdw-margin-top],.mdw-grid[mdw-columns="4"][mdw-margin-4col="40"][mdw-margin-top],.mdw-grid[mdw-columns="8"][mdw-margin-8col="40"][mdw-margin-top],.mdw-grid[mdw-margin="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-columns="1"][mdw-gutter="40"],.mdw-grid[mdw-columns="4"][mdw-gutter-4col="40"],.mdw-grid[mdw-columns="8"][mdw-gutter-8col="40"],.mdw-grid[mdw-gutter="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-columns="1"][mdw-gutter="40"]>.mdw-grid__item,.mdw-grid[mdw-columns="4"][mdw-gutter-4col="40"]>.mdw-grid__item,.mdw-grid[mdw-columns="8"][mdw-gutter-8col="40"]>.mdw-grid__item,.mdw-grid[mdw-gutter="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}@media screen and (max-width:839px){.mdw-grid[mdw-margin-8col="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-margin-8col="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-margin-8col="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-gutter-8col="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-gutter-8col="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-margin-8col="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-margin-8col="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-margin-8col="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-gutter-8col="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-gutter-8col="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-margin-8col="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-margin-8col="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-margin-8col="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-gutter-8col="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-gutter-8col="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-margin-8col="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-margin-8col="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-margin-8col="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-gutter-8col="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-gutter-8col="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-margin-8col="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-margin-8col="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-margin-8col="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-gutter-8col="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-gutter-8col="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}}@media screen and (max-width:599px){.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"],.mdw-grid[mdw-margin-4col="0"]{padding-right:0;padding-left:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="0"][mdw-margin-bottom]{padding-bottom:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="0"][mdw-margin-top],.mdw-grid[mdw-margin-4col="0"][mdw-margin-top]{padding-top:0}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="0"],.mdw-grid[mdw-gutter-4col="0"]{margin-top:0;margin-left:0}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="0"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="0"]>.mdw-grid__item{padding-top:0;padding-left:0}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"],.mdw-grid[mdw-margin-4col="8"]{padding-right:8px;padding-left:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="8"][mdw-margin-bottom]{padding-bottom:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="8"][mdw-margin-top],.mdw-grid[mdw-margin-4col="8"][mdw-margin-top]{padding-top:8px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="8"],.mdw-grid[mdw-gutter-4col="8"]{margin-top:-8px;margin-left:-8px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="8"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="8"]>.mdw-grid__item{padding-top:8px;padding-left:8px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"],.mdw-grid[mdw-margin-4col="16"]{padding-right:16px;padding-left:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="16"][mdw-margin-bottom]{padding-bottom:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="16"][mdw-margin-top],.mdw-grid[mdw-margin-4col="16"][mdw-margin-top]{padding-top:16px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="16"],.mdw-grid[mdw-gutter-4col="16"]{margin-top:-16px;margin-left:-16px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="16"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="16"]>.mdw-grid__item{padding-top:16px;padding-left:16px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"],.mdw-grid[mdw-margin-4col="24"]{padding-right:24px;padding-left:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="24"][mdw-margin-bottom]{padding-bottom:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="24"][mdw-margin-top],.mdw-grid[mdw-margin-4col="24"][mdw-margin-top]{padding-top:24px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="24"],.mdw-grid[mdw-gutter-4col="24"]{margin-top:-24px;margin-left:-24px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="24"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="24"]>.mdw-grid__item{padding-top:24px;padding-left:24px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"],.mdw-grid[mdw-margin-4col="40"]{padding-right:40px;padding-left:40px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"][mdw-margin-bottom],.mdw-grid[mdw-margin-4col="40"][mdw-margin-bottom]{padding-bottom:40px}.mdw-grid[mdw-columns="8"][mdw-margin-4col="40"][mdw-margin-top],.mdw-grid[mdw-margin-4col="40"][mdw-margin-top]{padding-top:40px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="40"],.mdw-grid[mdw-gutter-4col="40"]{margin-top:-40px;margin-left:-40px}.mdw-grid[mdw-columns="8"][mdw-gutter-4col="40"]>.mdw-grid__item,.mdw-grid[mdw-gutter-4col="40"]>.mdw-grid__item{padding-top:40px;padding-left:40px}}.mdw-layout{min-height:100vh;min-width:100vw;font:-apple-system-body;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}.mdw-layout,.mdw-layout__body{overflow-y:hidden;height:100vh;margin:0;padding:0}.mdw-layout__body{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;display:-ms-grid;display:grid;position:relative;grid-template-columns:auto minmax(0,1fr) auto;-ms-grid-columns:auto minmax(0,1fr) auto;grid-template-rows:auto auto 1fr auto;-ms-grid-rows:auto auto 1fr auto;overflow-x:hidden;max-width:100vw;width:100vw;transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:inherit}.mdw-layout__appbar{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:1;grid-row-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:0;margin-top:0;transition-duration:.25s;transition-property:transform,margin-top;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:transform,margin-top;transform:translateY(0);z-index:4}.mdw-layout[mdw-ios][mdw-standalone] .mdw-layout__appbar{padding-top:env(safe-area-inset-top)}.mdw-layout__appbar[mdw-hide]{transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-layout__scrim{content:"";position:fixed;top:0;left:0;-ms-overflow-style:none;overflow-y:scroll;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;height:100%;width:100%;cursor:auto;transition-duration:75ms;transition-property:background-color;transition-timing-function:cubic-bezier(.4,0,1,1);pointer-events:none;z-index:16;background-color:transparent}.mdw-layout__scrim::-webkit-scrollbar{display:none}.mdw-layout__scrim:after{display:block;content:"";height:200%;width:200%}.mdw-layout__navdrawer,.mdw-layout__sidesheet{-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:4;grid-row-end:span 4;box-sizing:border-box;max-height:100vh;height:100%;max-width:calc(100vw - 56px);width:256px;transition-duration:.25s;transition-property:width,max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:max-width,transform,position;transform:translateX(0);z-index:5;background-color:inherit;box-shadow:none}.mdw-layout__sheet-content{overflow-y:auto;box-sizing:border-box;max-height:100%;height:100%;border-width:1px}.mdw-layout__navdrawer{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout__navdrawer .mdw-list__content.mdw-overlay:before,.mdw-layout__navdrawer .mdw-list__content.mdw-overlay>.mdw-ripple__container{margin:4px 8px;border-radius:4px}.mdw-layout__sidesheet{-ms-grid-column:3;grid-column-start:3;-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout__navdrawer .mdw-layout__sheet-content,:root[dir=rtl] .mdw-layout__sidesheet .mdw-layout__sheet-content{border-right-style:solid;border-left-style:none}.mdw-layout__sidesheet .mdw-layout__sheet-content,:root[dir=rtl] .mdw-layout__navdrawer .mdw-layout__sheet-content{border-right-style:none;border-left-style:solid}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer-hide{display:none}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:auto;left:0;transform:translateX(-100%)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer{right:0;left:auto;transform:translateX(100%)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false].mdw-layout__appbar .mdw-layout__navdrawer-show,.mdw-layout__body[mdw-navdrawer-style=modal] .mdw-layout__navdrawer[aria-hidden=false] .mdw-layout__navdrawer-show{display:none}@media screen and (max-width:1023px){.mdw-layout__navdrawer-hide{display:none}.mdw-layout__navdrawer{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:auto;left:0;transform:translateX(-100%)}.mdw-layout__navdrawer .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__navdrawer{right:0;left:auto;transform:translateX(100%)}.mdw-layout__navdrawer[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__navdrawer[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__navdrawer[aria-hidden=false].mdw-layout__appbar .mdw-layout__navdrawer-show,.mdw-layout__navdrawer[aria-hidden=false] .mdw-layout__navdrawer-show{display:none}}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet-hide{display:none}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:0;left:auto;transform:translateX(100%)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet{right:auto;left:0;transform:translateX(-100%)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false].mdw-layout__appbar .mdw-layout__sidesheet-show,.mdw-layout__body[mdw-sidesheet-style=modal] .mdw-layout__sidesheet[aria-hidden=false] .mdw-layout__sidesheet-show{display:none}@media screen and (max-width:1023px){.mdw-layout__sidesheet-hide{display:none}.mdw-layout__sidesheet{display:inline-block;position:fixed;top:0;bottom:0;flex-direction:column;transition-duration:.2s;transition-property:max-width,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden;z-index:17;right:0;left:auto;transform:translateX(100%)}.mdw-layout__sidesheet .mdw-layout__sheet-content{border-width:0}:root[dir=rtl] .mdw-layout__sidesheet{right:auto;left:0;transform:translateX(-100%)}.mdw-layout__sidesheet[aria-hidden=false]{transition-duration:.25s;transition-property:max-width,transform;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateX(0);visibility:visible;box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px 0 rgba(0,0,0,.2)}.mdw-layout__sidesheet[aria-hidden=false]~.mdw-layout__scrim{pointer-events:auto;background-color:rgba(0,0,0,.5)}.mdw-layout__sidesheet[aria-hidden=false].mdw-layout__appbar .mdw-layout__sidesheet-show,.mdw-layout__sidesheet[aria-hidden=false] .mdw-layout__sidesheet-show{display:none}}.mdw-layout__banner{-ms-grid-row:2;grid-row-start:2;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;z-index:0}.mdw-layout__content{-ms-grid-row:3;grid-row-start:3;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;display:flex;position:relative;align-items:center;flex-direction:column;overflow-x:visible;overflow-y:auto}.mdw-layout__content-page{width:100%}.mdw-layout__fab,.mdw-layout__snackbar{-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:auto;bottom:0;width:auto;transition-duration:.25s;transition-property:transform;transition-timing-function:cubic-bezier(0,0,.2,1);pointer-events:none;transform:translateY(-100%);z-index:6}.mdw-layout__menus{position:absolute;z-index:8}.mdw-layout__dialogs{position:fixed;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:24}.mdw-layout__snackbar-anchor{position:absolute;right:auto;bottom:0;left:0;box-sizing:border-box;padding:12px 0 12px 12px;transition-duration:inherit;transition-property:transform,bottom;transition-timing-function:inherit}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__snackbar-anchor{padding:8px 0 8px 8px}}:root[dir=rtl] .mdw-layout__snackbar-anchor{right:0;left:auto;padding:12px 12px 12px 0}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){:root[dir=rtl] .mdw-layout__snackbar-anchor{padding:8px 8px 8px 0}}.mdw-layout__snackbar .mdw-snackbar__container{position:relative}.mdw-layout__fab-anchor{position:absolute;right:0;bottom:0;left:auto;padding:24px;transition-duration:inherit;transition-property:transform,right,padding-top,padding-bottom;transition-timing-function:inherit}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__fab-anchor{padding:16px}}:root[dir=rtl] .mdw-layout__fab-anchor{right:100%;transform:translateX(100%)}.mdw-layout__fab-anchor .mdw-fab{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:scale(0)}.mdw-layout__bottomnav{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:1;grid-column-end:span 1;-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;bottom:0;z-index:4}.mdw-layout__appbar-shape{display:flex;position:absolute;top:0;left:0;overflow:hidden;height:100%;width:100%;transition-duration:inherit;transition-property:box-shadow;transition-timing-function:inherit;box-shadow:0 2px 4px 0 rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.12),0 1px 10px 0 rgba(0,0,0,.2);color:transparent}.mdw-layout__appbar[mdw-autoraise]:not([mdw-raise]) .mdw-layout__appbar-shape{filter:none;box-shadow:none}.mdw-layout__appbar-shape:after,.mdw-layout__appbar-shape:before{content:"";min-width:24px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__appbar-shape:after,.mdw-layout__appbar-shape:before{min-width:16px}}.mdw-layout__fab-cut-track{display:flex;position:relative;top:0;left:0;flex-direction:row;height:100%;width:100%;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transform:translateX(100%) translateX(-28px)}.mdw-layout__fab-cut-track:after,.mdw-layout__fab-cut-track:before,.mdw-layout__fab-cut-track>svg{position:absolute;top:0;height:100%}.mdw-layout__fab-cut-track:after,.mdw-layout__fab-cut-track:before{content:"";width:100%;margin-left:-36px;background-color:currentColor}.mdw-layout__fab-cut-track:before{left:-100%}.mdw-layout__fab-cut-track:after{left:72px}.mdw-layout__fab-cut-track>svg{left:-36px;width:72px;fill:currentColor}.mdw-layout__fab-mask-shape{transition-delay:.1s;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:scale(0)}@media screen and (max-width:599px){.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide~=mobile][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@media screen and (min-width:600px) and (max-width:1023px){.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide~=tablet][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@media screen and (max-width:1023px){.mdw-layout__appbar[mdw-bottom]{-ms-grid-row:4;grid-row-start:4;-ms-grid-row-span:1;grid-row-end:span 1;top:auto;bottom:0;z-index:8}.mdw-layout__appbar[mdw-bottom] .mdw-layout__appbar-shape{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut]~.mdw-layout__fab{transform:translateY(-100%) translateY(28px)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut] .mdw-layout__appbar-shape{transition-property:filter;filter:drop-shadow(0 7.33px 4px rgba(0,0,0,.26)) drop-shadow(0 0 5.33px rgba(0,0,0,.08));box-shadow:none}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut] .mdw-layout__fab-mask-shape{transform:scale(0)}.mdw-layout__appbar[mdw-bottom][mdw-fab-cut~=open] .mdw-layout__fab-mask-shape{transition-delay:0s;transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]{transform:translateY(100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]~.mdw-layout__fab,.mdw-layout__appbar[mdw-autohide=""][mdw-hide][mdw-bottom]~.mdw-layout__snackbar{transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);transform:translateY(0)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}.mdw-layout__snackbar-anchor,:root[dir=rtl] .mdw-layout__snackbar-anchor{right:0;left:0;padding:12px}}@media screen and (max-width:1023px) and (orientation:landscape) and (max-height:599px),screen and (max-width:1023px) and (orientation:portrait) and (max-width:599px){.mdw-layout__snackbar-anchor,:root[dir=rtl] .mdw-layout__snackbar-anchor{padding:8px}}@media screen and (max-width:1023px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:24px;transform:translateY(-56px)}}@media screen and (max-width:1023px) and (orientation:landscape) and (max-height:599px),screen and (max-width:1023px) and (orientation:portrait) and (max-width:599px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:16px}}@media screen and (max-width:1023px){.mdw-layout__fab[mdw-mobile]~.mdw-layout__content{padding-bottom:80px}.mdw-layout__fab[mdw-mobile][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-fab-cut~=center] .mdw-layout__fab-cut-track,.mdw-layout__fab[mdw-mobile=center] .mdw-layout__fab-anchor{right:50%;transform:translateX(50%)}.mdw-layout__appbar[mdw-fab-cut~=full] .mdw-layout__fab-cut-track,.mdw-layout__fab[mdw-mobile=full] .mdw-layout__fab-anchor{right:0;left:0;transform:none}.mdw-layout__fab[mdw-mobile=full] .mdw-fab__button{width:100%;padding-right:0;padding-left:0}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab{z-index:8}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab .mdw-fab{transform:scale(0)}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab[aria-hidden=false] .mdw-fab{transition-delay:.1s;transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__fab .mdw-layout__fab-anchor{padding-top:0;padding-bottom:0}.mdw-layout__appbar[mdw-fab-cut][mdw-bottom]:not([mdw-hide])~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{bottom:0;transform:translateY(-28px)}}@media screen and (min-width:1024px){.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-hide,.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-show,.mdw-layout__body:not([mdw-navdrawer-toggle]):not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer-toggle,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-hide,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-show,.mdw-layout__body:not([mdw-sidesheet-toggle]):not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet-toggle{display:none}.mdw-layout__navdrawer,.mdw-layout__sidesheet{position:static;position:-webkit-sticky;position:-moz-sticky;position:sticky;top:0;bottom:auto;transform:none}.mdw-layout__snackbar-anchor{width:50%}.mdw-layout__body[mdw-navdrawer-style~=clipped],.mdw-layout__body[mdw-sidesheet-style~=clipped]{overflow-y:hidden}.mdw-layout__body[mdw-navdrawer-style~=clipped]>.mdw-layout__content,.mdw-layout__body[mdw-sidesheet-style~=clipped]>.mdw-layout__content{overflow-y:auto}.mdw-layout__fab[mdw-desktop][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:scale(1)}.mdw-layout__fab[mdw-desktop]:not([mdw-desktop=appbar])~.mdw-layout__content{padding-bottom:80px}.mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-row:1;grid-row-start:1;-ms-grid-row-span:1;grid-row-end:span 1;top:0;bottom:auto;transform:translateY(100%)}.mdw-layout__fab[mdw-desktop=appbar][aria-hidden=false] .mdw-fab{transition-duration:.25s;transition-timing-function:cubic-bezier(0,0,.2,1);transform:translateY(-50%) scale(1)}.mdw-layout__fab[mdw-desktop=appbar]~.mdw-layout__snackbar .mdw-layout__snackbar-anchor{width:75%}.mdw-layout__fab[mdw-desktop=appbar] .mdw-layout__fab-anchor{top:0;right:auto;bottom:auto;left:0;padding:0 8px;transform:none}:root[dir=rtl] .mdw-layout__fab[mdw-desktop=appbar] .mdw-layout__fab-anchor{right:0;left:auto}.mdw-layout__appbar[mdw-hide]~.mdw-layout__fab[mdw-desktop=appbar] .mdw-fab,.mdw-layout__fab[mdw-desktop=appbar][aria-hidden=true] .mdw-fab{transform:translateY(-50%) scale(0)}.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__sidesheet{-ms-grid-row:2;grid-row-start:2;-ms-grid-row-span:3;grid-row-end:span 3;z-index:0}.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-navdrawer-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-sidesheet-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=clipped][mdw-sidesheet-style~=clipped] .mdw-layout__appbar,.mdw-layout__body[mdw-navdrawer-style~=clipped][mdw-sidesheet-style~=clipped] .mdw-layout__fab[mdw-desktop=appbar]{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__sidesheet{-ms-grid-row:3;grid-row-start:3;-ms-grid-row-span:2;grid-row-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__navdrawer .mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__sidesheet .mdw-layout__sheet-content{height:auto;border-width:0}.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-navdrawer-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-sidesheet-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:2;grid-column-start:2;-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__body[mdw-navdrawer-style~=floating][mdw-sidesheet-style~=floating] .mdw-layout__banner,.mdw-layout__body[mdw-navdrawer-style~=floating][mdw-sidesheet-style~=floating] .mdw-layout__bottomnav{-ms-grid-column:1;grid-column-start:1;-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout__body[mdw-navdrawer-style~=card] .mdw-layout__navdrawer,.mdw-layout__body[mdw-sidesheet-style~=card] .mdw-layout__sidesheet{margin:0 24px;padding:24px 0}.mdw-layout__body[mdw-navdrawer-style~=card] .mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-style~=card] .mdw-layout__sidesheet>.mdw-layout__sheet-content{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}.mdw-layout__body[mdw-navdrawer-toggle~=dismissible]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]),.mdw-layout__body[mdw-sidesheet-toggle~=dismissible]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]){max-width:0;width:0;margin-right:0;margin-left:0;transition-duration:.2s;transition-property:width,max-width,margin,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);visibility:hidden}.mdw-layout__body[mdw-navdrawer-toggle~=dismissible]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]) .mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-toggle~=dismissible]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]) .mdw-layout__sheet-content{box-shadow:none}.mdw-layout__body[mdw-navdrawer-toggle~=mini]:not([mdw-navdrawer-style=modal]) .mdw-layout__navdrawer:not([aria-hidden=false]),.mdw-layout__body[mdw-sidesheet-toggle~=mini]:not([mdw-sidesheet-style=modal]) .mdw-layout__sidesheet:not([aria-hidden=false]){max-width:72px;width:72px;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide]{transform:translateY(-100%)}.mdw-layout__appbar[mdw-autohide=""][mdw-hide] .mdw-layout__appbar-shape{filter:none;box-shadow:none}}@supports (position:sticky) or (position:-webkit-sticky) or (position:-moz-sticky){.mdw-layout__body{overflow-y:auto}.mdw-layout__body>.mdw-layout__content{overflow-y:visible}}@media screen and (-ms-high-contrast:active) and (min-width:1024px),screen and (-ms-high-contrast:none) and (min-width:1024px){.mdw-theme[mdw-dark] .mdw-layout__body[mdw-navdrawer-style~=floating]:not([mdw-navdrawer-style~=card])>.mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-theme[mdw-dark] .mdw-layout__body[mdw-sidesheet-style~=floating]:not([mdw-sidesheet-style~=card])>.mdw-layout__sidesheet>.mdw-layout__sheet-content,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-layout__body[mdw-navdrawer-style~=floating]:not([mdw-navdrawer-style~=card])>.mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-layout__body[mdw-sidesheet-style~=floating]:not([mdw-sidesheet-style~=card])>.mdw-layout__sidesheet>.mdw-layout__sheet-content,.mdw-theme[mdw-light] .mdw-layout__body[mdw-navdrawer-style~=floating]:not([mdw-navdrawer-style~=card])>.mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-theme[mdw-light] .mdw-layout__body[mdw-sidesheet-style~=floating]:not([mdw-sidesheet-style~=card])>.mdw-layout__sidesheet>.mdw-layout__sheet-content,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-layout__body[mdw-navdrawer-style~=floating]:not([mdw-navdrawer-style~=card])>.mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-layout__body[mdw-sidesheet-style~=floating]:not([mdw-sidesheet-style~=card])>.mdw-layout__sidesheet>.mdw-layout__sheet-content{background-color:transparent}}@supports (--v:v){.mdw-theme[mdw-light],:root{--layout__divider-color:RGBA(var(--foreground-light-color),0.12)}.mdw-theme[mdw-dark]{--layout__divider-color:RGBA(var(--foreground-dark-color),0.24)}.mdw-layout__appbar.mdw-theme[mdw-fab-cut],.mdw-layout__appbar[mdw-fab-cut]{background-color:transparent}.mdw-layout__appbar-shape{color:RGB(var(--surface-color))}@media screen and (min-width:1024px){.mdw-layout__body[mdw-navdrawer-style~=floating]:not([mdw-navdrawer-style~=card])>.mdw-layout__navdrawer>.mdw-layout__sheet-content,.mdw-layout__body[mdw-sidesheet-style~=floating]:not([mdw-sidesheet-style~=card])>.mdw-layout__sidesheet>.mdw-layout__sheet-content{background-color:transparent}}}.mdw-list{padding-top:8px;padding-bottom:8px}.mdw-list__item-group{display:flex;flex-direction:column}ul.mdw-list,ul.mdw-list__item-group{margin:0;padding-right:0;padding-left:0;list-style-type:none}li.mdw-list__item{position:relative;margin:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;text-align:start;text-decoration:none;text-transform:none}.mdw-list__item{display:flex;position:relative;align-content:flex-start;flex-direction:row;overflow:hidden}a.mdw-list__content,a.mdw-list__expander-content{text-decoration:none}.mdw-list__content,.mdw-list__expander-content{font-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem;display:flex;align-items:center;flex-direction:row;justify-content:stretch;overflow:hidden;min-height:48px;flex:1;padding:0 24px;cursor:pointer;text-align:start;text-overflow:ellipsis;white-space:nowrap}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__content,.mdw-list__expander-content{padding:0 16px}}.mdw-list__content[aria-hidden=true],.mdw-list__expander-content[aria-hidden=true]{display:none}.mdw-list__subheader{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;align-items:center;flex-direction:row;justify-content:stretch;min-height:48px;padding-right:16px;padding-left:16px}.mdw-list__avatar,.mdw-list__icon{display:flex;align-self:flex-start;flex-direction:row;justify-content:flex-start;order:-1;min-width:56px;max-width:56px;margin:16px 0}.mdw-list__avatar{min-height:40px}.mdw-list__expander{display:flex;position:relative;flex-direction:column;outline:none}.mdw-list__expander:after,.mdw-list__expander:before{content:"";position:absolute;right:0;left:0;background-color:transparent;transition-property:background-color;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1);height:1px}.mdw-list__expander:before{top:-1px}.mdw-list__expander:after{bottom:0}.mdw-list__expander>.mdw-list__expander-content .mdw-list__secondary{min-height:48px;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);pointer-events:none;transform:rotate(0deg)}.mdw-list__expander>.mdw-list__item-group .mdw-list__item{flex-basis:0;animation-duration:.2s;animation-timing-function:cubic-bezier(.4,0,1,1);animation-fill-mode:forwards}.mdw-list__expander[aria-expanded=false]>.mdw-list__item-group .mdw-list__item{animation-name:collapseRow}.mdw-list__expander[aria-expanded=true]>.mdw-list__item .mdw-list__secondary{transform:rotate(180deg)}.mdw-list__expander[aria-expanded=true]>.mdw-list__item-group .mdw-list__item{animation-name:expandRow;animation-duration:.25s;animation-timing-function:cubic-bezier(0,0,.2,1)}.mdw-list__expander:not([mdw-expander-js])>.mdw-list__item-group .mdw-list__item{animation-duration:0s}.mdw-list__expander[aria-expanded=true]+.mdw-list__expander[aria-expanded=true]:before{display:none}@keyframes expandRow{0%{min-height:0;flex-basis:0}99.99%{min-height:48px;flex-basis:0}to{min-height:48px;flex-basis:100%}}@keyframes collapseRow{0%{min-height:48px;flex-basis:0}to{min-height:0;flex-basis:0}}.mdw-list__expand-checkbox{display:none;max-height:0;max-width:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;pointer-events:none}.mdw-list__secondary{display:flex;align-items:center;flex-direction:row;-ms-grid-column:3;grid-column:3;-ms-grid-column-span:1;grid-column-end:span 1;justify-content:center;order:1;min-height:56px;min-width:24px;margin-right:0;margin-left:16px;z-index:1;pointer-events:none}:root[dir=rtl] .mdw-list__secondary{margin-right:16px;margin-left:0}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-list__icon:after,.mdw-list__secondary:after{content:"";min-height:inherit;width:0}}.mdw-list__text{position:static;overflow-x:hidden;flex-grow:1;pointer-events:none;text-overflow:ellipsis}.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list__text:after{content:"";position:absolute;right:0;bottom:0;left:0;height:1px;width:100%}.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__icon~.mdw-list__text:after,.mdw-list[mdw-divider] .mdw-list__item:not(:last-child) .mdw-list__avatar~.mdw-list__text:after{margin-left:72px}.mdw-list__text-line{overflow-x:hidden;overflow-y:hidden;text-overflow:ellipsis}.mdw-list__meta:before,.mdw-list__text-block:first-child:before,.mdw-list__text-line:first-child:before{content:"";display:inline-block;height:28px}.mdw-list__meta{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem;align-self:flex-start;margin-right:0;margin-left:28px}:root[dir=rtl] .mdw-list__meta{margin-right:28px;margin-left:0}.mdw-list__text-line:first-child:after{content:"";display:inline-block;vertical-align:-20px}.mdw-list__text-block:not(:first-child),.mdw-list__text-line:not(:first-child){font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;margin-top:-20px}.mdw-list__text-block:not(:first-child):before,.mdw-list__text-line:not(:first-child):before{content:"";display:inline-block;height:20px}.mdw-list__text-line:last-child:after{content:"";display:inline-block;vertical-align:-16px}.mdw-list__text-line:not(:first-child):not(:last-child):after,.mdw-list__text-line:nth-child(3):after{content:"";display:inline-block;vertical-align:-20px}.mdw-list__text-block{display:block;display:-webkit-box;overflow-x:hidden;overflow-y:hidden;pointer-events:none;text-align:start;text-overflow:ellipsis;text-transform:none;white-space:normal;-webkit-box-orient:vertical;-webkit-line-clamp:2;word-break:break-word}.mdw-list__text-block:not(:only-child){max-height:2.5rem;height:2.5rem;margin-bottom:16px;padding-bottom:4px}.mdw-list__text-block:only-child:after{content:"";display:inline-block;vertical-align:-16px}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-current] .mdw-list__icon,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-current] .mdw-list__text,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__icon,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__text,.mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-current] .mdw-list__icon,.mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-current] .mdw-list__text,.mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__icon,.mdw-theme[mdw-light] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__text{color:inherit}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after,.mdw-theme[mdw-light] .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after{background-color:rgba(0,96,100,.12)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:.12}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.16}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.2}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.24}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.28}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true]:after,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true]:before,.mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true]:after,.mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true]:before{background-color:rgba(0,96,100,.12)}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-current] .mdw-list__icon,.mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-current] .mdw-list__text,.mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__icon,.mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__text,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content>.mdw-list__text,.mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content,.mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content:before,.mdw-theme[mdw-light] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content>.mdw-list__text,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-current] .mdw-list__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-current] .mdw-list__text,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__text{color:inherit}.mdw-theme[mdw-dark] .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after{background-color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:.24}.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.32}.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:.4}.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.48}.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:.56}.mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true]:after,.mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true]:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true]:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true]:before{background-color:rgba(224,247,250,.24)}.mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content,.mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content:before,.mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content>.mdw-list__text,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content>.mdw-list__text{color:inherit}}@supports (--v:v){.mdw-theme[mdw-light],:root{--list__text-color:RGBA(var(--foreground-light-color),0.87);--list__divider-color:RGBA(var(--foreground-light-color),0.12);--list__focus-opacity:0.12;--list__hover-focus-opacity:0.16;--list__selected-focus-opacity:0.2;--list__selected-hover-focus-opacity:0.24;--list__activated-focus-opacity:0.24;--list__activated-hover-focus-opacity:0.28}.mdw-theme[mdw-dark]{--list__text-color:RGBA(var(--foreground-dark-color),1);--list__divider-color:RGBA(var(--foreground-dark-color),0.24);--list__focus-opacity:0.24;--list__hover-focus-opacity:0.32;--list__selected-focus-opacity:0.4;--list__selected-hover-focus-opacity:0.48;--list__activated-focus-opacity:0.48;--list__activated-hover-focus-opacity:0.56}.mdw-list__content[mdw-ink][aria-current] .mdw-list__icon,.mdw-list__content[mdw-ink][aria-current] .mdw-list__text,.mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__icon,.mdw-list__content[mdw-ink][aria-selected=true] .mdw-list__text{color:inherit}.mdw-list[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after{background-color:var(--list__divider-color)}.mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]):before{opacity:var(--list__focus-opacity)}.mdw-list__expander:focus>.mdw-list__expander-content:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--list__hover-focus-opacity)}.mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):before{opacity:var(--list__selected-focus-opacity)}.mdw-list__expander:focus>.mdw-list__expander-content[aria-selected=true]:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--list__selected-hover-focus-opacity)}.mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before,.mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([mdw-overlay-off~=focus]):before{opacity:var(--list__activated-focus-opacity)}.mdw-list__expander:focus>.mdw-list__expander-content[aria-current]:not([mdw-overlay-off~=current]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before,.mdw-list__expander:focus>.mdw-list__expander-content[aria-pressed=true]:not([mdw-overlay-off~=activated]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]):before{opacity:var(--list__activated-hover-focus-opacity)}.mdw-list__expander[aria-expanded=true]:after,.mdw-list__expander[aria-expanded=true]:before{background-color:var(--list__divider-color)}.mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content,.mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content:before,.mdw-list__expander[aria-expanded=true][mdw-ink][aria-expanded=true]>.mdw-list__expander-content>.mdw-list__text{color:inherit}}.mdw-menu__wrapper{display:inline-flex;position:relative}.mdw-menu__close{position:fixed;top:0;left:0;height:100%;width:100%;cursor:default;pointer-events:inherit;z-index:8}.mdw-menu{display:block;position:absolute;top:100%;right:auto;bottom:auto;left:0;-ms-overflow-style:none;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;scrollbar-width:none;transition-duration:75ms;transition-property:none;transition-timing-function:cubic-bezier(0,0,.2,1);pointer-events:none;transform-origin:left top}:root[dir=rtl] .mdw-menu{right:0;left:auto;transform-origin:right top}.mdw-menu:after{display:block;height:200%;width:200%;content:""}.mdw-menu::-webkit-scrollbar{display:none}.mdw-menu[aria-hidden=false],.mdw-menu[id]:target{pointer-events:auto}.mdw-menu[aria-hidden=false] .mdw-menu__popup,.mdw-menu[id]:target .mdw-menu__popup{transition-delay:0s;transition-duration:0s;transition-property:box-shadow,opacity,transform;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:1;transform:scale(1);visibility:visible;box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2)}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-menu[aria-hidden=false] .mdw-menu__popup,.mdw-menu[id]:target .mdw-menu__popup{transition-duration:.25s}}.mdw-menu[mdw-position~=top]{top:0}.mdw-menu[mdw-position~=vcenter]{top:50%}.mdw-menu[mdw-position~=hcenter]{left:50%}.mdw-menu[mdw-position~=end],.mdw-menu[mdw-position~=right]{right:auto;left:100%}:root[dir=rtl] .mdw-menu[mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-position~=right]{right:100%;left:auto}.mdw-menu[mdw-direction~=reverse],.mdw-menu[mdw-direction~=rtl]{right:100%;left:auto;transform-origin:right top}:root[dir=rtl] .mdw-menu[mdw-direction~=reverse],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl]{right:auto;left:100%;transform-origin:left top}.mdw-menu[mdw-direction~=reverse][mdw-position~=end],.mdw-menu[mdw-direction~=reverse][mdw-position~=right],.mdw-menu[mdw-direction~=rtl][mdw-position~=end],.mdw-menu[mdw-direction~=rtl][mdw-position~=right]{right:0;left:auto}:root[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=right],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=end],:root[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=right]{right:auto;left:0}.mdw-menu[mdw-direction~=up]{top:auto;bottom:0;transform-origin:left bottom}:root[dir=rtl] .mdw-menu[mdw-direction~=up]{transform-origin:right bottom}.mdw-menu[mdw-direction~=up][mdw-position~=top]{bottom:100%}.mdw-menu[mdw-direction~=up][mdw-position~=vcenter]{bottom:50%}.mdw-menu[mdw-direction~=up][mdw-direction~=reverse],.mdw-menu[mdw-direction~=up][mdw-direction~=rtl]{transform-origin:right bottom}:root[dir=rtl] .mdw-menu[mdw-direction~=up][mdw-direction~=reverse],:root[dir=rtl] .mdw-menu[mdw-direction~=up][mdw-direction~=rtl]{transform-origin:left bottom}.mdw-menu[mdw-width-units="3"] .mdw-menu__popup{width:168px}.mdw-menu[mdw-width-units="4"] .mdw-menu__popup{width:224px}.mdw-menu[mdw-width-units="5"] .mdw-menu__popup{width:280px}.mdw-menu[mdw-width-units="6"] .mdw-menu__popup{width:336px}.mdw-menu[mdw-width-units="7"] .mdw-menu__popup{width:392px}.mdw-menu[mdw-menu-js]{position:fixed;top:0;right:auto;bottom:auto;left:0;overflow-y:scroll;height:100%;width:100%;margin:0;cursor:default;z-index:8}:root[dir=rtl] .mdw-menu[mdw-menu-js]{right:0;left:auto}.mdw-menu[mdw-menu-js] .mdw-menu__close{display:none}.mdw-menu[mdw-menu-js] .mdw-menu__popup{margin:0}.mdw-menu__popup{display:inline-flex;position:absolute;top:inherit;right:inherit;bottom:inherit;left:inherit;flex-direction:column;-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto;overscroll-behavior:none;overscroll-behavior:contain;-ms-scroll-chaining:none;max-height:50vh;min-width:112px;max-width:392px;margin-right:8px;margin-left:8px;padding-top:8px;padding-bottom:8px;outline:none;transition-delay:0s,0s,75ms,75ms;transition-duration:75ms;transition-property:box-shadow,opacity,transform,visibility;transition-timing-function:cubic-bezier(.4,0,1,1);opacity:0;pointer-events:inherit;transform:scale(0);transform-origin:inherit;z-index:8;border-radius:4px;box-shadow:none}.mdw-menu__text{overflow-x:hidden;flex:auto;text-overflow:ellipsis;white-space:nowrap}.mdw-menu__check,.mdw-menu__icon,.mdw-menu__radio{min-width:40px}.mdw-menu__check,.mdw-menu__radio{visibility:hidden}.mdw-menu__item[aria-checked=true] .mdw-menu__check,.mdw-menu__item[aria-checked=true] .mdw-menu__radio{visibility:visible}.mdw-menu__popup>.mdw-divider{height:1px;margin-top:7px;margin-bottom:8px}.mdw-menu__item{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem;display:flex;position:relative;align-items:center;flex-direction:row;overflow:hidden;box-sizing:border-box;min-height:48px;padding-right:16px;padding-left:16px;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:0}.mdw-menu__item[aria-disabled=true]{cursor:not-allowed}.mdw-menu[mdw-dense]:not([mdw-dense=never]) .mdw-menu__item,.mdw-menu[mdw-dropdown] .mdw-menu__item{min-height:32px;padding-right:24px;padding-left:24px}@media not all and (any-pointer:coarse){.mdw-menu:not([mdw-dense=never]) .mdw-menu__item{min-height:32px;padding-right:24px;padding-left:24px}}.mdw-menu__info{padding-right:0;padding-left:16px;text-align:right;text-align:end}:root[dir=rtl] .mdw-menu__info{padding-right:16px;padding-left:0;text-align:left;text-align:end}.mdw-selection{display:inline-flex;position:relative;flex-direction:row}.mdw-selection__input{display:inline-flex;order:1;min-height:24px;min-width:24px;margin:auto 0;padding:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;transition-property:transform,color,opacity;opacity:0;transform:scale(0);background-color:currentColor;border-radius:50%;color:inherit}.mdw-selection__input::-ms-check{background-color:transparent;border-color:transparent;border-radius:50%;color:transparent}.mdw-selection__input:disabled{cursor:not-allowed}.mdw-selection:active>.mdw-selection__input:not([disabled]),.mdw-selection:hover>.mdw-selection__input:not([disabled]),.mdw-selection__input:active:not([disabled]),.mdw-selection__input:focus,.mdw-selection__input:hover:not([disabled]){transform:scale(2)}.mdw-selection__icon{display:inline-flex;position:relative;box-sizing:border-box;height:24px;max-width:0;width:24px;margin:auto 0;padding:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;transition-property:background-color,border-color;pointer-events:none;z-index:1;background-color:transparent}.mdw-selection__input:disabled~.mdw-selection__icon{cursor:not-allowed}.mdw-selection__icon:before{top:0;left:0;box-sizing:border-box;transition-property:border-width,border-color,background-color,color;background-color:transparent;border:2px solid}.mdw-selection__icon:after,.mdw-selection__icon:before{position:absolute;content:""}.mdw-selection__label{order:-1;padding-right:8px;padding-left:0;cursor:pointer;-webkit-tap-highlight-color:transparent;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;z-index:1}.mdw-selection__input:disabled~.mdw-selection__label{cursor:not-allowed}.mdw-selection__icon~.mdw-selection__label{order:1;padding-right:0;padding-left:8px}:root[dir=rtl] .mdw-selection__icon{order:1}:root[dir=rtl] .mdw-selection__label{padding-right:0;padding-left:8px}:root[dir=rtl] .mdw-selection__icon~.mdw-selection__label{padding-right:8px;padding-left:0}.mdw-selection>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:before{top:3px;left:3px;height:18px;width:18px;border-radius:2px}.mdw-selection>.mdw-selection__input[type=checkbox]:active:not(:disabled)~.mdw-selection__icon:before,.mdw-selection>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{border-width:9px}.mdw-selection>.mdw-selection__input[type=checkbox]:checked:not(:active):not(:disabled)~.mdw-selection__icon:before{background-color:currentColor}.mdw-selection>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:after{top:5px;left:5px;height:12.73px;width:5.93px;margin-top:-.86px;margin-left:4.04px}.mdw-selection>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{box-sizing:border-box;border-right-style:solid;border-bottom-style:solid;border-width:2px;animation-name:showCheck;animation-direction:normal;animation-fill-mode:forwards;transform:rotate(45deg);background-color:transparent}.mdw-selection>.mdw-selection__input[type=radio]~.mdw-selection__icon:before{top:2px;left:2px;height:20px;width:20px;border-color:currentColor;border-radius:50%}.mdw-selection>.mdw-selection__input[type=radio]:active:not(:disabled)~.mdw-selection__icon:before{border-width:10px}.mdw-selection>.mdw-selection__input[type=radio]~.mdw-selection__icon:after{top:2px;left:2px;height:20px;width:20px;transition-property:transform,background-color;transform:scale(0);background-color:currentColor;border-radius:50%}.mdw-selection>.mdw-selection__input[type=radio]:checked~.mdw-selection__icon:after{transform:scale(.5)}.mdw-selection__input.mdw-overlay:before{display:none;content:none}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]{margin-right:12px;transform:scale(0) translateX(-2px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked{transform:scale(0) translateX(14px)}.mdw-selection:active:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox],.mdw-selection:hover:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox],.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled),.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:hover:not(:disabled){transform:translateX(-2px) scale(2)}.mdw-selection:active:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked,.mdw-selection:hover:not(:disabled)>.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled):checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus:checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:hover:not(:disabled):checked{transform:translateX(14px) scale(2)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:not(:disabled)~.mdw-selection__icon{color:inherit}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:before{top:2px;left:0;height:20px;width:20px;border-style:none;transition-property:background-color,transform;transform:translateX(0);z-index:1;border-radius:50%;box-shadow:0 0 2px 0 rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.12),0 1px 3px 0 rgba(0,0,0,.2)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{transform:translateX(16px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active~.mdw-selection__icon:before,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:before{color:inherit}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:after{top:5px;bottom:5px;left:0;height:14px;width:36px;margin:0;border-style:none;animation-name:none;transform:none;border-radius:7px}.mdw-selection__icon,.mdw-selection__icon:after,.mdw-selection__icon:before,.mdw-selection__input{animation-duration:.1s;animation-timing-function:cubic-bezier(.4,0,.2,1);animation-delay:0s;transition-delay:0s;transition-duration:.1s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@keyframes showCheck{0%{clip:rect(11.23px,0,auto,auto)}31.77921%{clip:rect(11.23px,5.93px,auto,auto)}to{clip:rect(0,5.93px,auto,auto)}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:active:not(:disabled),.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:not(:checked),.mdw-theme[mdw-light] .mdw-selection__input:checked:active:not(:disabled),.mdw-theme[mdw-light] .mdw-selection__input:not(:checked){color:#006064}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:active:not(:disabled)~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:not(:checked)~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-selection__input:checked:active:not(:disabled)~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-selection__input:not(:checked)~.mdw-selection__icon{color:rgba(0,96,100,.6)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]),.mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]){opacity:.12}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]),.mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]){opacity:.04}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:.16}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]),.mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]){opacity:.08}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]){opacity:.2}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]),.mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]){opacity:.12}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:.24}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{border-color:#fff}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__label,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__label{opacity:.38}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-selection__input[disabled]~.mdw-selection__icon:before{color:rgba(0,96,100,.38)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-ink] .mdw-selection__input:not([disabled]):not([aria-disabled=true])~.mdw-selection__label,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection__label,.mdw-theme[mdw-light] .mdw-selection[mdw-ink] .mdw-selection__input:not([disabled]):not([aria-disabled=true])~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-selection__label{color:rgba(0,96,100,.87)}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:before{background-color:#eceff1}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:after{opacity:.38;background-color:#006064}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:after,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:before{background-color:currentColor}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:before{background-color:#78909c}.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:after,.mdw-theme[mdw-dark] .mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:after{opacity:.12}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-theme[mdw-dark] .mdw-selection__input:checked:active:not(:disabled),.mdw-theme[mdw-dark] .mdw-selection__input:not(:checked),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:active:not(:disabled),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:not(:checked){color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-selection__input:checked:active:not(:disabled)~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-selection__input:not(:checked)~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:active:not(:disabled)~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:not(:checked)~.mdw-selection__icon{color:rgba(224,247,250,.7)}.mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]){opacity:.24}.mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]){opacity:.08}.mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:.32}.mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]){opacity:.16}.mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]){opacity:.4}.mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]){opacity:.24}.mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]),.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:.48}.mdw-theme[mdw-dark] .mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{border-color:#fff}.mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__label,.mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__label{opacity:.5}.mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__icon,.mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__icon,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__input[disabled]~.mdw-selection__icon:before{color:rgba(224,247,250,.5)}.mdw-theme[mdw-dark] .mdw-selection[mdw-ink] .mdw-selection__input:not([disabled]):not([aria-disabled=true])~.mdw-selection__label,.mdw-theme[mdw-dark] .mdw-selection__label,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-ink] .mdw-selection__input:not([disabled]):not([aria-disabled=true])~.mdw-selection__label,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection__label{color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:before{background-color:#78909c}.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:after{opacity:.3;background-color:#e0f7fa}.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:after,.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:before{background-color:currentColor}.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:before{background-color:#37474f}.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:after,.mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:after,.mdw-theme[mdw-light] .mdw-theme[mdw-dark] .mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:after{opacity:.1}}@supports (--v:v){.mdw-theme[mdw-light],:root{--selection__text-color:RGBA(var(--foreground-light-color),0.87);--selection__icon-color:RGBA(var(--foreground-light-color),0.6);--selection__disabled-color:RGBA(var(--foreground-light-color),0.38);--selection__ripple-color:RGBA(var(--foreground-light-color),1);--selection__thumb-off-color:RGBA(var(--background-50-color),1);--selection__track-off-color:RGBA(var(--foreground-light-color),1);--selection__track-off-opacity:0.38;--selection__thumb-disabled-color:RGBA(var(--background-400-color),1);--selection__track-disabled-opacity:0.12;--selection__disabled-opacity:0.38;--selection__hover-opacity:0.04;--selection__focus-opacity:0.12;--selection__selected-opacity:0.08;--selection__hover-focus-opacity:0.16;--selection__selected-hover-opacity:0.12;--selection__selected-focus-opacity:0.2;--selection__selected-hover-focus-opacity:0.24}.mdw-theme[mdw-dark],.mdw-theme[mdw-light],:root{--selection__thumb-on-color:currentColor;--selection__track-on-color:currentColor;--selection__track-on-opacity:0.5}.mdw-theme[mdw-dark]{--selection__text-color:RGBA(var(--foreground-dark-color),1);--selection__icon-color:RGBA(var(--foreground-dark-color),0.7);--selection__disabled-color:RGBA(var(--foreground-dark-color),0.5);--selection__ripple-color:RGBA(var(--foreground-dark-color),1);--selection__thumb-off-color:RGBA(var(--background-400-color),1);--selection__track-off-color:RGBA(var(--foreground-dark-color),1);--selection__track-off-opacity:0.3;--selection__thumb-disabled-color:RGBA(var(--background-800-color),1);--selection__track-disabled-opacity:0.1;--selection__disabled-opacity:0.5;--selection__hover-opacity:0.08;--selection__focus-opacity:0.24;--selection__selected-opacity:0.16;--selection__hover-focus-opacity:0.32;--selection__selected-hover-opacity:0.24;--selection__selected-focus-opacity:0.4;--selection__selected-hover-focus-opacity:0.48}.mdw-selection__input:checked:active:not(:disabled),.mdw-selection__input:not(:checked){color:var(--selection__ripple-color)}.mdw-selection__input:checked:active:not(:disabled)~.mdw-selection__icon,.mdw-selection__input:not(:checked)~.mdw-selection__icon{color:var(--selection__icon-color)}.mdw-selection__input:not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]):not([mdw-overlay-touch=true]){opacity:var(--overlay__focus-opacity)}.mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:not([mdw-overlay-off~=hover]){opacity:var(--overlay__hover-opacity)}.mdw-selection__input:not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):not([mdw-overlay-touch=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:var(--overlay__hover-focus-opacity)}.mdw-selection__input:checked:not([mdw-overlay-off~=selected]){opacity:var(--overlay__selected-opacity)}.mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):focus:not([mdw-overlay-off~=focus]){opacity:var(--overlay__selected-focus-opacity)}.mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:not([mdw-overlay-off~=hover]){opacity:var(--overlay__selected-hover-opacity)}.mdw-selection__input:checked:not([mdw-overlay-off~=selected]):not([mdw-overlay-touch=true]):not([disabled]):not([aria-disabled=true]):hover:focus:not([mdw-overlay-off~=hover]):not([mdw-overlay-off~=focus]){opacity:var(--overlay__selected-hover-focus-opacity)}.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{border-color:rgba(var(--surface-color))}.mdw-selection__input[aria-disabled=true]~.mdw-selection__label,.mdw-selection__input[disabled]~.mdw-selection__label{opacity:var(--selection__disabled-opacity)}.mdw-selection__input[aria-disabled=true]~.mdw-selection__icon,.mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-selection__input[disabled]~.mdw-selection__icon,.mdw-selection__input[disabled]~.mdw-selection__icon:before{color:var(--selection__disabled-color)}.mdw-selection[mdw-ink] .mdw-selection__input:not([disabled]):not([aria-disabled=true])~.mdw-selection__label,.mdw-selection__label{color:var(--selection__text-color)}.mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:before{background-color:var(--selection__thumb-off-color)}.mdw-selection[mdw-switch] .mdw-selection__input~.mdw-selection__icon:after{opacity:var(--selection__track-off-opacity);background-color:var(--selection__track-off-color)}.mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:before{background-color:var(--selection__thumb-on-color)}.mdw-selection[mdw-switch] .mdw-selection__input:checked~.mdw-selection__icon:after{background-color:var(--selection__track-on-color)}.mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:before,.mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:before{background-color:var(--selection__thumb-disabled-color)}.mdw-selection[mdw-switch] .mdw-selection__input[aria-disabled=true]~.mdw-selection__icon:after,.mdw-selection[mdw-switch] .mdw-selection__input[disabled]~.mdw-selection__icon:after{opacity:var(--selection__track-disabled-opacity)}}.mdw-snackbar__wrapper{position:relative;z-index:6}.mdw-snackbar__container{display:flex;position:absolute;right:0;bottom:0;left:0;flex-direction:row;justify-content:flex-start;z-index:6}.mdw-snackbar__container[mdw-position=end]{justify-content:flex-end}.mdw-snackbar__container[mdw-position=center]{justify-content:center}.mdw-snackbar{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem;display:flex;position:absolute;bottom:0;align-items:center;justify-content:space-between;min-height:48px;max-width:100%;padding-right:8px;padding-left:8px;animation-name:none;animation-duration:.15s;animation-timing-function:cubic-bezier(0,0,.2,1);animation-direction:normal;animation-fill-mode:forwards;will-change:opacity,transform,visibility;opacity:0;pointer-events:auto;transform:scale(.85);visibility:hidden;border-radius:4px;box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px 0 rgba(0,0,0,.2)}.mdw-snackbar[aria-hidden=false]{animation-name:showSnackbar;opacity:1;transform:scale(1);visibility:visible}.mdw-snackbar[aria-hidden=true]{animation-name:hideSnackbar;animation-duration:75ms;animation-timing-function:cubic-bezier(.4,0,1,1)}.mdw-snackbar:focus{outline:none}@keyframes hideSnackbar{0%{opacity:1;transform:scale(1);visibility:visible}to{opacity:0;transform:scale(.85);visibility:hidden}}@keyframes showSnackbar{0%{opacity:0;transform:scale(.85);visibility:hidden}to{opacity:1;transform:scale(1);visibility:visible}}.mdw-snackbar .mdw-button{order:1;flex:none;margin:6px 0}.mdw-snackbar>span{box-sizing:border-box;padding:0 8px;white-space:pre-line}.mdw-snackbar>span:before{content:"";display:inline-block;height:1em;margin-top:16px}.mdw-snackbar>span:after{content:"";display:inline-block;vertical-align:-18px}@media screen and (max-width:599px){.mdw-snackbar{right:0;left:0}.mdw-snackbar[mdw-stacked]{align-items:flex-end;flex-direction:column;justify-content:center}.mdw-snackbar[mdw-stacked]>span{width:100%}.mdw-snackbar[mdw-stacked] .mdw-button{margin-top:2px;margin-bottom:8px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-snackbar:after{min-height:inherit;min-width:0;content:""}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar{transform:translateX(-50%)}html[dir=rtl] .mdw-snackbar__container[mdw-position=center] .mdw-snackbar{transform:translateX(50%)}html[dir=rtl] .mdw-snackbar__container[mdw-position=center] .mdw-snackbar[mdw-hide]{transform:translateX(50%) scale(.85)}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar[mdw-hide]{transform:translateX(-50%) scale(.85)}.mdw-snackbar__container[mdw-position=end] .mdw-snackbar{right:0}html[dir=rtl] .mdw-snackbar__container[mdw-position=end] .mdw-snackbar{right:auto;left:0}}h1.mdw-type,h2.mdw-type,h3.mdw-type,h4.mdw-type,h5.mdw-type,h6.mdw-type,p.mdw-type{margin:0}p.mdw-type{hyphens:auto;-webkit-hyphens:auto;-ms-hyphens:auto}.mdw-type[mdw-style=h1],h1.mdw-type{font-weight:300;letter-spacing:-.09375rem;font-size:6rem;line-height:7rem}.mdw-type[mdw-style=h2],h2.mdw-type{font-weight:300;letter-spacing:-.03125rem;font-size:3.75rem;line-height:4.5rem}.mdw-type[mdw-style=h3],h3.mdw-type{font-weight:400;letter-spacing:0;font-size:3rem;line-height:3.5rem}.mdw-type[mdw-style=h4],h4.mdw-type{font-weight:400;letter-spacing:.01562rem;font-size:2.125rem;line-height:2.5rem}.mdw-type[mdw-style=h5],h5.mdw-type{font-weight:400;letter-spacing:0;font-size:1.5rem;line-height:1.75rem}.mdw-type[mdw-style=h6],h6.mdw-type{font-weight:500;letter-spacing:.00937rem;font-size:1.25rem;line-height:1.5rem}.mdw-type[mdw-style=subtitle]{font-weight:400;letter-spacing:.00937rem;font-size:1rem;line-height:1.25rem}.mdw-type[mdw-style=subtitle-2]{font-weight:500;letter-spacing:.00625rem;font-size:.875rem;line-height:1rem}.mdw-type[mdw-style=body],body.mdw-type,p.mdw-type{font-weight:400;letter-spacing:.03125rem;font-size:1rem;line-height:1.5rem}.mdw-type[mdw-style=body-2]{font-weight:400;letter-spacing:.01562rem;font-size:.875rem;line-height:1.25rem}.mdw-type[mdw-style=button]{font-weight:500;text-transform:uppercase;letter-spacing:.07812rem;font-size:.875rem;line-height:1rem}.mdw-type[mdw-style=caption]{font-weight:400;letter-spacing:.025rem;font-size:.75rem;line-height:1rem}.mdw-type[mdw-style=overline]{font-weight:400;letter-spacing:.09375rem;font-size:.625rem;line-height:.75rem}.mdw-type[mdw-style|=display]{font-weight:400;font-size:2.125rem;line-height:2.5rem}.mdw-type[mdw-style=display-4]{font-size:7rem;line-height:normal;font-weight:300;white-space:nowrap}.mdw-type[mdw-style=display-3]{font-size:3.5rem;line-height:normal;white-space:nowrap}.mdw-type[mdw-style=display-2]{font-size:2.8125rem;line-height:3rem}.mdw-type[mdw-style=headline]{font-size:1.5rem;line-height:2rem;font-weight:400}.mdw-type[mdw-style=title]{font-size:1.25rem;font-weight:500;white-space:nowrap}.mdw-type[mdw-style|=subheading]{font-size:.9375rem;font-weight:400;line-height:1.5rem}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-type[mdw-style|=subheading]{font-size:1rem}}.mdw-type[mdw-style=subheading-2]{line-height:1.75rem}@media screen and (max-device-width:959px) and (max-device-aspect-ratio:1/1),screen and (max-device-width:1439px) and (min-device-aspect-ratio:1/1){.mdw-type[mdw-style=subheading-2]{line-height:1.75rem}}.mdw-type[mdw-texttop-top]:before{content:"";display:inline-block;height:1em}.mdw-type[mdw-baseline-bottom]:after,.mdw-type[mdw-baseline-next]+.mdw-type:before,.mdw-type[mdw-baseline-next]:after,.mdw-type[mdw-baseline-top]:before{content:"";display:inline-block}.mdw-type[mdw-texttop-top="4dp"]:before{margin-top:4px}.mdw-type[mdw-texttop-top="4"]:before{margin-top:.25rem}.mdw-type[mdw-baseline-top="4dp"]:before{height:4px}.mdw-type[mdw-baseline-top="4"]:before{height:.25rem}.mdw-type[mdw-baseline-bottom="4dp"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-bottom="4"]:after{vertical-align:-.25rem}.mdw-type[mdw-baseline-next="4dp"]{margin-bottom:-4px}.mdw-type[mdw-baseline-next="4dp"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-next="4dp"]+.mdw-type:before{height:4px}.mdw-type[mdw-baseline-next="4"]{margin-bottom:-.25rem}.mdw-type[mdw-baseline-next="4"]:after{vertical-align:-.25rem}.mdw-type[mdw-baseline-next="4"]+.mdw-type:before{height:.25rem}.mdw-type[mdw-texttop-top="8dp"]:before{margin-top:8px}.mdw-type[mdw-texttop-top="8"]:before{margin-top:.5rem}.mdw-type[mdw-baseline-top="8dp"]:before{height:8px}.mdw-type[mdw-baseline-top="8"]:before{height:.5rem}.mdw-type[mdw-baseline-bottom="8dp"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-bottom="8"]:after{vertical-align:-.5rem}.mdw-type[mdw-baseline-next="8dp"]{margin-bottom:-8px}.mdw-type[mdw-baseline-next="8dp"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-next="8dp"]+.mdw-type:before{height:8px}.mdw-type[mdw-baseline-next="8"]{margin-bottom:-.5rem}.mdw-type[mdw-baseline-next="8"]:after{vertical-align:-.5rem}.mdw-type[mdw-baseline-next="8"]+.mdw-type:before{height:.5rem}.mdw-type[mdw-texttop-top="12dp"]:before{margin-top:12px}.mdw-type[mdw-texttop-top="12"]:before{margin-top:.75rem}.mdw-type[mdw-baseline-top="12dp"]:before{height:12px}.mdw-type[mdw-baseline-top="12"]:before{height:.75rem}.mdw-type[mdw-baseline-bottom="12dp"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-bottom="12"]:after{vertical-align:-.75rem}.mdw-type[mdw-baseline-next="12dp"]{margin-bottom:-12px}.mdw-type[mdw-baseline-next="12dp"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-next="12dp"]+.mdw-type:before{height:12px}.mdw-type[mdw-baseline-next="12"]{margin-bottom:-.75rem}.mdw-type[mdw-baseline-next="12"]:after{vertical-align:-.75rem}.mdw-type[mdw-baseline-next="12"]+.mdw-type:before{height:.75rem}.mdw-type[mdw-texttop-top="16dp"]:before{margin-top:16px}.mdw-type[mdw-texttop-top="16"]:before{margin-top:1rem}.mdw-type[mdw-baseline-top="16dp"]:before{height:16px}.mdw-type[mdw-baseline-top="16"]:before{height:1rem}.mdw-type[mdw-baseline-bottom="16dp"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-bottom="16"]:after{vertical-align:-1rem}.mdw-type[mdw-baseline-next="16dp"]{margin-bottom:-16px}.mdw-type[mdw-baseline-next="16dp"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-next="16dp"]+.mdw-type:before{height:16px}.mdw-type[mdw-baseline-next="16"]{margin-bottom:-1rem}.mdw-type[mdw-baseline-next="16"]:after{vertical-align:-1rem}.mdw-type[mdw-baseline-next="16"]+.mdw-type:before{height:1rem}.mdw-type[mdw-texttop-top="20dp"]:before{margin-top:20px}.mdw-type[mdw-texttop-top="20"]:before{margin-top:1.25rem}.mdw-type[mdw-baseline-top="20dp"]:before{height:20px}.mdw-type[mdw-baseline-top="20"]:before{height:1.25rem}.mdw-type[mdw-baseline-bottom="20dp"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-bottom="20"]:after{vertical-align:-1.25rem}.mdw-type[mdw-baseline-next="20dp"]{margin-bottom:-20px}.mdw-type[mdw-baseline-next="20dp"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-next="20dp"]+.mdw-type:before{height:20px}.mdw-type[mdw-baseline-next="20"]{margin-bottom:-1.25rem}.mdw-type[mdw-baseline-next="20"]:after{vertical-align:-1.25rem}.mdw-type[mdw-baseline-next="20"]+.mdw-type:before{height:1.25rem}.mdw-type[mdw-texttop-top="24dp"]:before{margin-top:24px}.mdw-type[mdw-texttop-top="24"]:before{margin-top:1.5rem}.mdw-type[mdw-baseline-top="24dp"]:before{height:24px}.mdw-type[mdw-baseline-top="24"]:before{height:1.5rem}.mdw-type[mdw-baseline-bottom="24dp"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-bottom="24"]:after{vertical-align:-1.5rem}.mdw-type[mdw-baseline-next="24dp"]{margin-bottom:-24px}.mdw-type[mdw-baseline-next="24dp"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-next="24dp"]+.mdw-type:before{height:24px}.mdw-type[mdw-baseline-next="24"]{margin-bottom:-1.5rem}.mdw-type[mdw-baseline-next="24"]:after{vertical-align:-1.5rem}.mdw-type[mdw-baseline-next="24"]+.mdw-type:before{height:1.5rem}.mdw-type[mdw-texttop-top="28dp"]:before{margin-top:28px}.mdw-type[mdw-texttop-top="28"]:before{margin-top:1.75rem}.mdw-type[mdw-baseline-top="28dp"]:before{height:28px}.mdw-type[mdw-baseline-top="28"]:before{height:1.75rem}.mdw-type[mdw-baseline-bottom="28dp"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-bottom="28"]:after{vertical-align:-1.75rem}.mdw-type[mdw-baseline-next="28dp"]{margin-bottom:-28px}.mdw-type[mdw-baseline-next="28dp"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-next="28dp"]+.mdw-type:before{height:28px}.mdw-type[mdw-baseline-next="28"]{margin-bottom:-1.75rem}.mdw-type[mdw-baseline-next="28"]:after{vertical-align:-1.75rem}.mdw-type[mdw-baseline-next="28"]+.mdw-type:before{height:1.75rem}.mdw-type[mdw-texttop-top="32dp"]:before{margin-top:32px}.mdw-type[mdw-texttop-top="32"]:before{margin-top:2rem}.mdw-type[mdw-baseline-top="32dp"]:before{height:32px}.mdw-type[mdw-baseline-top="32"]:before{height:2rem}.mdw-type[mdw-baseline-bottom="32dp"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-bottom="32"]:after{vertical-align:-2rem}.mdw-type[mdw-baseline-next="32dp"]{margin-bottom:-32px}.mdw-type[mdw-baseline-next="32dp"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-next="32dp"]+.mdw-type:before{height:32px}.mdw-type[mdw-baseline-next="32"]{margin-bottom:-2rem}.mdw-type[mdw-baseline-next="32"]:after{vertical-align:-2rem}.mdw-type[mdw-baseline-next="32"]+.mdw-type:before{height:2rem}.mdw-type[mdw-texttop-top="36dp"]:before{margin-top:36px}.mdw-type[mdw-texttop-top="36"]:before{margin-top:2.25rem}.mdw-type[mdw-baseline-top="36dp"]:before{height:36px}.mdw-type[mdw-baseline-top="36"]:before{height:2.25rem}.mdw-type[mdw-baseline-bottom="36dp"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-bottom="36"]:after{vertical-align:-2.25rem}.mdw-type[mdw-baseline-next="36dp"]{margin-bottom:-36px}.mdw-type[mdw-baseline-next="36dp"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-next="36dp"]+.mdw-type:before{height:36px}.mdw-type[mdw-baseline-next="36"]{margin-bottom:-2.25rem}.mdw-type[mdw-baseline-next="36"]:after{vertical-align:-2.25rem}.mdw-type[mdw-baseline-next="36"]+.mdw-type:before{height:2.25rem}.mdw-type[mdw-texttop-top="40dp"]:before{margin-top:40px}.mdw-type[mdw-texttop-top="40"]:before{margin-top:2.5rem}.mdw-type[mdw-baseline-top="40dp"]:before{height:40px}.mdw-type[mdw-baseline-top="40"]:before{height:2.5rem}.mdw-type[mdw-baseline-bottom="40dp"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-bottom="40"]:after{vertical-align:-2.5rem}.mdw-type[mdw-baseline-next="40dp"]{margin-bottom:-40px}.mdw-type[mdw-baseline-next="40dp"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-next="40dp"]+.mdw-type:before{height:40px}.mdw-type[mdw-baseline-next="40"]{margin-bottom:-2.5rem}.mdw-type[mdw-baseline-next="40"]:after{vertical-align:-2.5rem}.mdw-type[mdw-baseline-next="40"]+.mdw-type:before{height:2.5rem}.mdw-type[mdw-texttop-top="48dp"]:before{margin-top:48px}.mdw-type[mdw-texttop-top="48"]:before{margin-top:3rem}.mdw-type[mdw-baseline-top="48dp"]:before{height:48px}.mdw-type[mdw-baseline-top="48"]:before{height:3rem}.mdw-type[mdw-baseline-bottom="48dp"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-bottom="48"]:after{vertical-align:-3rem}.mdw-type[mdw-baseline-next="48dp"]{margin-bottom:-48px}.mdw-type[mdw-baseline-next="48dp"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-next="48dp"]+.mdw-type:before{height:48px}.mdw-type[mdw-baseline-next="48"]{margin-bottom:-3rem}.mdw-type[mdw-baseline-next="48"]:after{vertical-align:-3rem}.mdw-type[mdw-baseline-next="48"]+.mdw-type:before{height:3rem}.mdw-type[mdw-texttop-top="56dp"]:before{margin-top:56px}.mdw-type[mdw-texttop-top="56"]:before{margin-top:3.5rem}.mdw-type[mdw-baseline-top="56dp"]:before{height:56px}.mdw-type[mdw-baseline-top="56"]:before{height:3.5rem}.mdw-type[mdw-baseline-bottom="56dp"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-bottom="56"]:after{vertical-align:-3.5rem}.mdw-type[mdw-baseline-next="56dp"]{margin-bottom:-56px}.mdw-type[mdw-baseline-next="56dp"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-next="56dp"]+.mdw-type:before{height:56px}.mdw-type[mdw-baseline-next="56"]{margin-bottom:-3.5rem}.mdw-type[mdw-baseline-next="56"]:after{vertical-align:-3.5rem}.mdw-type[mdw-baseline-next="56"]+.mdw-type:before{height:3.5rem}.mdw-type[mdw-texttop-top="64dp"]:before{margin-top:64px}.mdw-type[mdw-texttop-top="64"]:before{margin-top:4rem}.mdw-type[mdw-baseline-top="64dp"]:before{height:64px}.mdw-type[mdw-baseline-top="64"]:before{height:4rem}.mdw-type[mdw-baseline-bottom="64dp"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-bottom="64"]:after{vertical-align:-4rem}.mdw-type[mdw-baseline-next="64dp"]{margin-bottom:-64px}.mdw-type[mdw-baseline-next="64dp"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-next="64dp"]+.mdw-type:before{height:64px}.mdw-type[mdw-baseline-next="64"]{margin-bottom:-4rem}.mdw-type[mdw-baseline-next="64"]:after{vertical-align:-4rem}.mdw-type[mdw-baseline-next="64"]+.mdw-type:before{height:4rem}
|
package/docs/pwa.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e){function t(t){for(var n,u,c=t[0],b=t[1],i=t[2],s=0,d=[];s<c.length;s++)u=c[s],r[u]&&d.push(r[u][0]),r[u]=0;for(n in b)Object.prototype.hasOwnProperty.call(b,n)&&(e[n]=b[n]);for(m&&m(t);d.length;)d.shift()();return o.push.apply(o,i||[]),a()}function a(){for(var e,t=0;t<o.length;t++){for(var a=o[t],n=!0,c=1;c<a.length;c++){var b=a[c];0!==r[b]&&(n=!1)}n&&(o.splice(t--,1),e=u(u.s=a[0]))}return e}var n={},r={21:0},o=[];function u(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,u),a.l=!0,a.exports}u.m=e,u.c=n,u.d=function(e,t,a){u.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},u.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},u.t=function(e,t){if(1&t&&(e=u(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(u.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)u.d(a,n,function(t){return e[t]}.bind(null,n));return a},u.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u.p="";var c=window.webpackJsonp=window.webpackJsonp||[],b=c.push.bind(c);c.push=t,c=c.slice();for(var i=0;i<c.length;i++)t(c[i]);var m=b;o.push([26,1,0]),a()}({26:function(e,t,a){a(27),a(28),e.exports=a(29)},27:function(e,t,a){"use strict";a.r(t);var n=a(0),r=a(5),o=a(3),u=a(7),c=a(4),b=a(1),i=a(12),m=a(8);function s(e){return document.querySelector('input[name="'.concat(e,'"]'))}function d(e){var t=null;return Object(n.j)(document.querySelectorAll('input[name="'.concat(e,'"]')),function(e){return!!e.checked&&(t=e.value,!0)}),t}function l(e){var t=document.querySelector('input[name="'.concat(e,'"]'));return!(!t||!t.checked)}function f(){if(l("use-fab-mobile")&&l("fab-cut")){var e=l("fab-show"),t=d("fab-mobile");r.b().setAttribute("mdw-fab-cut",[e?"open":"",t].join(" ").trim())}else r.b().removeAttribute("mdw-fab-cut")}function p(e){var t=e.currentTarget,a=t.name,o=t.value,u=t.checked;switch(a){case"use-appbar-autohide":Object(n.h)(document.querySelectorAll('input[name="appbar-autohide"]'),function(e){return u?e.removeAttribute("disabled"):e.setAttribute("disabled","")}),u?r.b().setAttribute("mdw-autohide",d("appbar-autohide")):r.b().removeAttribute("mdw-autohide"),r.e();break;case"use-fab-mobile":Object(n.h)(document.querySelectorAll('input[name="fab-mobile"]'),function(e){return u?e.removeAttribute("disabled"):e.setAttribute("disabled","")}),u?document.getElementsByClassName("mdw-layout__fab")[0].setAttribute("mdw-mobile",d("fab-mobile")):document.getElementsByClassName("mdw-layout__fab")[0].removeAttribute("mdw-mobile"),f();break;case"use-fab-desktop":Object(n.h)(document.querySelectorAll('input[name="fab-desktop"]'),function(e){return u?e.removeAttribute("disabled"):e.setAttribute("disabled","")}),u?document.getElementsByClassName("mdw-layout__fab")[0].setAttribute("mdw-desktop",d("fab-desktop")):document.getElementsByClassName("mdw-layout__fab")[0].removeAttribute("mdw-desktop");break;case"appbar-autohide":r.b().setAttribute("mdw-autohide",o);break;case"appbar-autoraise":u?r.b().setAttribute("mdw-autoraise",""):r.b().removeAttribute("mdw-autoraise");break;case"fab-mobile":document.getElementsByClassName("mdw-layout__fab")[0].setAttribute("mdw-mobile",o),f();break;case"fab-desktop":document.getElementsByClassName("mdw-layout__fab")[0].setAttribute("mdw-desktop",o);break;case"appbar-bottom":"bottom"===o?(r.b().setAttribute("mdw-bottom",""),s("fab-cut").removeAttribute("disabled")):(r.b().removeAttribute("mdw-bottom"),s("fab-cut").setAttribute("disabled",""));break;case"appbar-autoprominent":u?r.b().setAttribute("mdw-autoprominent",""):r.b().removeAttribute("mdw-autoprominent");break;case"fab-cut":f();break;case"fab-show":u?r.f():r.c();break;case"navdrawer-style":case"navdrawer-toggle":case"sidesheet-style":case"sidesheet-toggle":o?document.body.setAttribute("mdw-".concat(a),o):document.body.removeAttribute("mdw-".concat(a))}0===a.indexOf("appbar")&&r.e()}r.a(),Object(n.h)(document.getElementsByClassName("mdw-overlay"),c.a),Object(n.h)(document.getElementsByClassName("mdw-ripple"),b.a),Object(n.h)(document.getElementsByClassName("mdw-button"),o.a),Object(n.h)(document.getElementsByClassName("mdw-list"),i.a),Object(n.h)(document.getElementsByClassName("mdw-dialog"),u.c),Object(n.h)(document.getElementsByClassName("mdw-menu"),m.a),Object(n.h)(document.querySelectorAll("input[name]"),function(e){e.addEventListener("change",p)}),document.getElementById("dialog-alert-button").addEventListener("click",function(e){u.f(document.getElementById("dialog-alert"),e)}),document.getElementById("menu-button").addEventListener("click",function(e){m.d(document.getElementById("sample-menu"),e)})},28:function(e,t,a){e.exports=a.p+"pwa.html"},29:function(e,t,a){e.exports=a.p+"pwa.min.css"}});
|
|
2
|
-
//# sourceMappingURL=pwa.min.js.map
|
package/docs/pwa.min.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./pwa/pwa.js","webpack:///./pwa/pwa.pug","webpack:///./pwa/pwa.scss"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","21","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","__webpack_exports__","_core_dom__WEBPACK_IMPORTED_MODULE_0__","_components_layout_index__WEBPACK_IMPORTED_MODULE_1__","_components_button_index__WEBPACK_IMPORTED_MODULE_2__","_components_dialog_index__WEBPACK_IMPORTED_MODULE_3__","_core_overlay_index__WEBPACK_IMPORTED_MODULE_4__","_core_ripple_index__WEBPACK_IMPORTED_MODULE_5__","_components_list_index__WEBPACK_IMPORTED_MODULE_6__","_components_menu_index__WEBPACK_IMPORTED_MODULE_7__","getInputElementByName","inputName","document","querySelector","concat","getCheckedRadioValue","iterateSomeOfArrayLike","querySelectorAll","el","checked","getCheckedCheckboxValue","refreshFabCut","shown","alignment","Layout","setAttribute","join","trim","removeAttribute","onOptionChange","event","inputElement","currentTarget","iterateArrayLike","getElementsByClassName","body","indexOf","Overlay","Ripple","Button","List","Dialog","Menu","addEventListener","getElementById"],"mappings":"aACA,SAAAA,EAAAC,GAQA,IAPA,IAMAC,EAAAC,EANAC,EAAAH,EAAA,GACAI,EAAAJ,EAAA,GACAK,EAAAL,EAAA,GAIAM,EAAA,EAAAC,EAAA,GACQD,EAAAH,EAAAK,OAAoBF,IAC5BJ,EAAAC,EAAAG,GACAG,EAAAP,IACAK,EAAAG,KAAAD,EAAAP,GAAA,IAEAO,EAAAP,GAAA,EAEA,IAAAD,KAAAG,EACAO,OAAAC,UAAAC,eAAAC,KAAAV,EAAAH,KACAc,EAAAd,GAAAG,EAAAH,IAKA,IAFAe,KAAAhB,GAEAO,EAAAC,QACAD,EAAAU,OAAAV,GAOA,OAHAW,EAAAR,KAAAS,MAAAD,EAAAb,GAAA,IAGAe,IAEA,SAAAA,IAEA,IADA,IAAAC,EACAf,EAAA,EAAiBA,EAAAY,EAAAV,OAA4BF,IAAA,CAG7C,IAFA,IAAAgB,EAAAJ,EAAAZ,GACAiB,GAAA,EACAC,EAAA,EAAkBA,EAAAF,EAAAd,OAA2BgB,IAAA,CAC7C,IAAAC,EAAAH,EAAAE,GACA,IAAAf,EAAAgB,KAAAF,GAAA,GAEAA,IACAL,EAAAQ,OAAApB,IAAA,GACAe,EAAAM,IAAAC,EAAAN,EAAA,KAGA,OAAAD,EAIA,IAAAQ,EAAA,GAKApB,EAAA,CACAqB,GAAA,GAGAZ,EAAA,GAGA,SAAAS,EAAA1B,GAGA,GAAA4B,EAAA5B,GACA,OAAA4B,EAAA5B,GAAA8B,QAGA,IAAAC,EAAAH,EAAA5B,GAAA,CACAK,EAAAL,EACAgC,GAAA,EACAF,QAAA,IAUA,OANAhB,EAAAd,GAAAa,KAAAkB,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAnB,EAGAY,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACA1B,OAAA6B,eAAAT,EAAAM,EAAA,CAA0CI,YAAA,EAAAC,IAAAJ,KAK1CX,EAAAgB,EAAA,SAAAZ,GACA,oBAAAa,eAAAC,aACAlC,OAAA6B,eAAAT,EAAAa,OAAAC,YAAA,CAAwDC,MAAA,WAExDnC,OAAA6B,eAAAT,EAAA,cAAiDe,OAAA,KAQjDnB,EAAAoB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAAnB,EAAAmB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,iBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAvC,OAAAwC,OAAA,MAGA,GAFAxB,EAAAgB,EAAAO,GACAvC,OAAA6B,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAAnB,EAAAS,EAAAc,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAvB,EAAA2B,EAAA,SAAAtB,GACA,IAAAM,EAAAN,KAAAiB,WACA,WAA2B,OAAAjB,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAgB,EAAAC,GAAsD,OAAA7C,OAAAC,UAAAC,eAAAC,KAAAyC,EAAAC,IAGtD7B,EAAA8B,EAAA,GAEA,IAAAC,EAAAC,OAAA,aAAAA,OAAA,iBACAC,EAAAF,EAAAhD,KAAA2C,KAAAK,GACAA,EAAAhD,KAAAX,EACA2D,IAAAG,QACA,QAAAvD,EAAA,EAAgBA,EAAAoD,EAAAlD,OAAuBF,IAAAP,EAAA2D,EAAApD,IACvC,IAAAU,EAAA4C,EAIA1C,EAAAR,KAAA,UAEAU,sFCtJAO,EAAAgB,EAAAmB,GAAA,IAAAC,EAAApC,EAAA,GAAAqC,EAAArC,EAAA,GAAAsC,EAAAtC,EAAA,GAAAuC,EAAAvC,EAAA,GAAAwC,EAAAxC,EAAA,GAAAyC,EAAAzC,EAAA,GAAA0C,EAAA1C,EAAA,IAAA2C,EAAA3C,EAAA,GAyBA,SAAS4C,EAAsBC,GAC7B,OAAOC,SAASC,cAAT,eAAAC,OAAsCH,EAAtC,OAOT,SAASI,EAAqBJ,GAC5B,IAAI1B,EAAQ,KAQZ,OAPA+B,YAAuBJ,SAASK,iBAAT,eAAAH,OAAyCH,EAAzC,OAAyD,SAACO,GAC/E,QAAIA,EAAGC,UACLlC,EAAQiC,EAAGjC,OACJ,KAIJA,EAOT,SAASmC,EAAwBT,GAC/B,IAAMO,EAAKN,SAASC,cAAT,eAAAC,OAAsCH,EAAtC,OACX,SAAIO,IAAMA,EAAGC,SAOf,SAASE,IAEP,GADgBD,EAAwB,mBAAqBA,EAAwB,WACrF,CAIA,IAAME,EAAQF,EAAwB,YAChCG,EAAYR,EAAqB,cACvCS,MAA0BC,aAAa,cAAe,CAACH,EAAQ,OAAS,GAAIC,GAAWG,KAAK,KAAKC,aAL/FH,MAA0BI,gBAAgB,eAY9C,SAASC,EAAeC,GAEtB,IAAMC,EAAgBD,EAAME,cACpBxD,EAAyBuD,EAAzBvD,KAAMS,EAAmB8C,EAAnB9C,MAAOkC,EAAYY,EAAZZ,QACrB,OAAQ3C,GACN,IAAK,sBACHyD,YAAiBrB,SAASK,iBAAiB,iCACzC,SAAAC,GAAE,OAAKC,EAAUD,EAAGU,gBAAgB,YAAcV,EAAGO,aAAa,WAAY,MAC5EN,EACFK,MAA0BC,aAAa,eAAgBV,EAAqB,oBAE5ES,MAA0BI,gBAAgB,gBAE5CJ,MACA,MACF,IAAK,iBACHS,YAAiBrB,SAASK,iBAAiB,4BACzC,SAAAC,GAAE,OAAKC,EAAUD,EAAGU,gBAAgB,YAAcV,EAAGO,aAAa,WAAY,MAC5EN,EACFP,SAASsB,uBAAuB,mBAAmB,GAAGT,aAAa,aAAcV,EAAqB,eAEtGH,SAASsB,uBAAuB,mBAAmB,GAAGN,gBAAgB,cAExEP,IACA,MACF,IAAK,kBACHY,YAAiBrB,SAASK,iBAAiB,6BACzC,SAAAC,GAAE,OAAKC,EAAUD,EAAGU,gBAAgB,YAAcV,EAAGO,aAAa,WAAY,MAC5EN,EACFP,SAASsB,uBAAuB,mBAAmB,GAAGT,aAAa,cAAeV,EAAqB,gBAEvGH,SAASsB,uBAAuB,mBAAmB,GAAGN,gBAAgB,eAExE,MACF,IAAK,kBACHJ,MAA0BC,aAAa,eAAgBxC,GACvD,MACF,IAAK,mBACCkC,EACFK,MAA0BC,aAAa,gBAAiB,IAExDD,MAA0BI,gBAAgB,iBAE5C,MACF,IAAK,aACHhB,SAASsB,uBAAuB,mBAAmB,GAAGT,aAAa,aAAcxC,GACjFoC,IACA,MACF,IAAK,cACHT,SAASsB,uBAAuB,mBAAmB,GAAGT,aAAa,cAAexC,GAClF,MACF,IAAK,gBACW,WAAVA,GACFuC,MAA0BC,aAAa,aAAc,IACrDf,EAAsB,WAAWkB,gBAAgB,cAEjDJ,MAA0BI,gBAAgB,cAC1ClB,EAAsB,WAAWe,aAAa,WAAY,KAE5D,MACF,IAAK,uBACCN,EACFK,MAA0BC,aAAa,oBAAqB,IAE5DD,MAA0BI,gBAAgB,qBAE5C,MACF,IAAK,UACHP,IACA,MACF,IAAK,WACCF,EACFK,MAEAA,MAEF,MACF,IAAK,kBACL,IAAK,mBACL,IAAK,kBACL,IAAK,mBACCvC,EACF2B,SAASuB,KAAKV,aAAd,OAAAX,OAAkCtC,GAAQS,GAE1C2B,SAASuB,KAAKP,gBAAd,OAAAd,OAAqCtC,IAKZ,IAA3BA,EAAK4D,QAAQ,WACfZ,MA1JJA,MAIES,YAAiBrB,SAASsB,uBAAuB,eAAgBG,KACjEJ,YAAiBrB,SAASsB,uBAAuB,cAAeI,KAChEL,YAAiBrB,SAASsB,uBAAuB,cAAeK,KAChEN,YAAiBrB,SAASsB,uBAAuB,YAAaM,KAC9DP,YAAiBrB,SAASsB,uBAAuB,cAAeO,KAChER,YAAiBrB,SAASsB,uBAAuB,YAAaQ,KAuJ9DT,YAAiBrB,SAASK,iBAAiB,eAAgB,SAACC,GAC1DA,EAAGyB,iBAAiB,SAAUd,KAEhCjB,SAASgC,eAAe,uBAAuBD,iBAAiB,QAAS,SAACb,GACxEW,IAAY7B,SAASgC,eAAe,gBAAiBd,KAEvDlB,SAASgC,eAAe,eAAeD,iBAAiB,QAAS,SAACb,GAChEY,IAAU9B,SAASgC,eAAe,eAAgBd,yBChLtD3D,EAAAD,QAAiBJ,EAAA8B,EAAuB,+BCAxCzB,EAAAD,QAAiBJ,EAAA8B,EAAuB","file":"pwa.min.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t21: 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([26,1,0]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","import { iterateArrayLike, iterateSomeOfArrayLike } from '../../core/dom';\nimport * as Layout from '../../components/layout/index';\nimport * as Button from '../../components/button/index';\nimport * as Dialog from '../../components/dialog/index';\nimport * as Overlay from '../../core/overlay/index';\nimport * as Ripple from '../../core/ripple/index';\nimport * as List from '../../components/list/index';\nimport * as Menu from '../../components/menu/index';\n\nLayout.attach();\n\n/** @return {void} */\nfunction initializeSampleComponents() {\n iterateArrayLike(document.getElementsByClassName('mdw-overlay'), Overlay.attach);\n iterateArrayLike(document.getElementsByClassName('mdw-ripple'), Ripple.attach);\n iterateArrayLike(document.getElementsByClassName('mdw-button'), Button.attach);\n iterateArrayLike(document.getElementsByClassName('mdw-list'), List.attach);\n iterateArrayLike(document.getElementsByClassName('mdw-dialog'), Dialog.attach);\n iterateArrayLike(document.getElementsByClassName('mdw-menu'), Menu.attach);\n}\n\n/**\n * @param {string} inputName\n * @return {Element}\n */\nfunction getInputElementByName(inputName) {\n return document.querySelector(`input[name=\"${inputName}\"]`);\n}\n\n/**\n * @param {string} inputName\n * @return {string}\n */\nfunction getCheckedRadioValue(inputName) {\n let value = null;\n iterateSomeOfArrayLike(document.querySelectorAll(`input[name=\"${inputName}\"]`), (el) => {\n if (el.checked) {\n value = el.value;\n return true;\n }\n return false;\n });\n return value;\n}\n\n/**\n * @param {string} inputName\n * @return {boolean}\n */\nfunction getCheckedCheckboxValue(inputName) {\n const el = document.querySelector(`input[name=\"${inputName}\"]`);\n if (el && el.checked) {\n return true;\n }\n return false;\n}\n\n/** @return {void} */\nfunction refreshFabCut() {\n const enabled = getCheckedCheckboxValue('use-fab-mobile') && getCheckedCheckboxValue('fab-cut');\n if (!enabled) {\n Layout.getAppBarElement().removeAttribute('mdw-fab-cut');\n return;\n }\n const shown = getCheckedCheckboxValue('fab-show');\n const alignment = getCheckedRadioValue('fab-mobile');\n Layout.getAppBarElement().setAttribute('mdw-fab-cut', [shown ? 'open' : '', alignment].join(' ').trim());\n}\n\n/**\n * @param {Event} event\n * @return {void}\n */\nfunction onOptionChange(event) {\n /** @type {HTMLInputElement} */\n const inputElement = (event.currentTarget);\n const { name, value, checked } = inputElement;\n switch (name) {\n case 'use-appbar-autohide':\n iterateArrayLike(document.querySelectorAll('input[name=\"appbar-autohide\"]'),\n el => (checked ? el.removeAttribute('disabled') : el.setAttribute('disabled', '')));\n if (checked) {\n Layout.getAppBarElement().setAttribute('mdw-autohide', getCheckedRadioValue('appbar-autohide'));\n } else {\n Layout.getAppBarElement().removeAttribute('mdw-autohide');\n }\n Layout.resetScroll();\n break;\n case 'use-fab-mobile':\n iterateArrayLike(document.querySelectorAll('input[name=\"fab-mobile\"]'),\n el => (checked ? el.removeAttribute('disabled') : el.setAttribute('disabled', '')));\n if (checked) {\n document.getElementsByClassName('mdw-layout__fab')[0].setAttribute('mdw-mobile', getCheckedRadioValue('fab-mobile'));\n } else {\n document.getElementsByClassName('mdw-layout__fab')[0].removeAttribute('mdw-mobile');\n }\n refreshFabCut();\n break;\n case 'use-fab-desktop':\n iterateArrayLike(document.querySelectorAll('input[name=\"fab-desktop\"]'),\n el => (checked ? el.removeAttribute('disabled') : el.setAttribute('disabled', '')));\n if (checked) {\n document.getElementsByClassName('mdw-layout__fab')[0].setAttribute('mdw-desktop', getCheckedRadioValue('fab-desktop'));\n } else {\n document.getElementsByClassName('mdw-layout__fab')[0].removeAttribute('mdw-desktop');\n }\n break;\n case 'appbar-autohide':\n Layout.getAppBarElement().setAttribute('mdw-autohide', value);\n break;\n case 'appbar-autoraise':\n if (checked) {\n Layout.getAppBarElement().setAttribute('mdw-autoraise', '');\n } else {\n Layout.getAppBarElement().removeAttribute('mdw-autoraise');\n }\n break;\n case 'fab-mobile':\n document.getElementsByClassName('mdw-layout__fab')[0].setAttribute('mdw-mobile', value);\n refreshFabCut();\n break;\n case 'fab-desktop':\n document.getElementsByClassName('mdw-layout__fab')[0].setAttribute('mdw-desktop', value);\n break;\n case 'appbar-bottom':\n if (value === 'bottom') {\n Layout.getAppBarElement().setAttribute('mdw-bottom', '');\n getInputElementByName('fab-cut').removeAttribute('disabled');\n } else {\n Layout.getAppBarElement().removeAttribute('mdw-bottom');\n getInputElementByName('fab-cut').setAttribute('disabled', '');\n }\n break;\n case 'appbar-autoprominent':\n if (checked) {\n Layout.getAppBarElement().setAttribute('mdw-autoprominent', '');\n } else {\n Layout.getAppBarElement().removeAttribute('mdw-autoprominent');\n }\n break;\n case 'fab-cut':\n refreshFabCut();\n break;\n case 'fab-show':\n if (checked) {\n Layout.showFab();\n } else {\n Layout.hideFab();\n }\n break;\n case 'navdrawer-style':\n case 'navdrawer-toggle':\n case 'sidesheet-style':\n case 'sidesheet-toggle':\n if (value) {\n document.body.setAttribute(`mdw-${name}`, value);\n } else {\n document.body.removeAttribute(`mdw-${name}`);\n }\n break;\n default:\n }\n if (name.indexOf('appbar') === 0) {\n Layout.resetScroll();\n }\n}\n\n/** @return {void} */\nfunction setupComponentOptions() {\n iterateArrayLike(document.querySelectorAll('input[name]'), (el) => {\n el.addEventListener('change', onOptionChange);\n });\n document.getElementById('dialog-alert-button').addEventListener('click', (event) => {\n Dialog.show(document.getElementById('dialog-alert'), event);\n });\n document.getElementById('menu-button').addEventListener('click', (event) => {\n Menu.show(document.getElementById('sample-menu'), event);\n });\n}\n\ninitializeSampleComponents();\nsetupComponentOptions();\n","module.exports = __webpack_public_path__ + \"pwa.html\";","module.exports = __webpack_public_path__ + \"pwa.min.css\";"],"sourceRoot":""}
|