@shortfuse/materialdesignweb 0.2.0 → 0.5.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/.browserslistrc +2 -1
- package/.eslintrc.json +188 -30
- package/.stylelintrc.json +643 -2
- package/.vscode/launch.json +20 -5
- package/.vscode/settings.json +3 -0
- package/CHANGELOG.md +36 -0
- package/README.md +82 -2
- package/adapters/datatable/column.js +176 -0
- package/adapters/datatable/index.js +253 -437
- package/adapters/dom/index.js +586 -0
- package/adapters/list/index.js +36 -113
- package/adapters/search/index.js +153 -180
- package/components/appbar/_spec.scss +165 -0
- package/components/appbar/_theme.scss +0 -0
- package/components/appbar/index.scss +2 -0
- package/components/banner/_spec.scss +83 -0
- package/components/banner/_theme.scss +0 -0
- package/components/banner/index.scss +2 -0
- package/components/bottomnav/README.md +4 -4
- package/components/bottomnav/_spec.scss +149 -0
- package/components/bottomnav/_theme.scss +0 -0
- package/components/bottomnav/index.js +100 -120
- package/components/bottomnav/index.scss +2 -0
- package/components/bottomnav/item.js +88 -0
- package/components/button/README.md +16 -22
- package/components/button/_spec.scss +162 -0
- package/components/button/_theme.scss +42 -0
- package/components/button/index.eta +32 -0
- package/components/button/index.js +37 -48
- package/components/button/index.pug +18 -0
- package/components/button/index.scss +2 -0
- package/components/card/_spec.scss +241 -0
- package/components/card/_theme.scss +0 -0
- package/components/card/index.scss +2 -0
- package/components/chip/_spec.scss +111 -0
- package/components/chip/_theme.scss +105 -0
- package/components/chip/index.js +23 -0
- package/components/chip/index.scss +2 -0
- package/components/chip/item.js +20 -0
- package/components/datatable/_spec.scss +225 -0
- package/components/datatable/_theme.scss +128 -0
- package/components/datatable/cell.js +44 -0
- package/components/datatable/columnheader.js +46 -0
- package/components/datatable/index.js +339 -443
- package/components/datatable/index.scss +2 -0
- package/components/datatable/row.js +48 -0
- package/components/datatable/rowheader.js +18 -0
- package/components/dialog/_spec.scss +203 -0
- package/components/dialog/_theme.scss +7 -0
- package/components/dialog/index.js +512 -437
- package/components/dialog/index.scss +2 -0
- package/components/divider/_spec.scss +11 -0
- package/components/divider/_theme.scss +0 -0
- package/components/divider/index.scss +2 -0
- package/components/elevation/_spec.scss +9 -0
- package/components/elevation/_theme.scss +0 -0
- package/components/elevation/index.scss +2 -0
- package/components/fab/{style.scss → _spec.scss} +104 -79
- package/components/fab/_theme.scss +0 -0
- package/components/fab/index.js +85 -79
- package/components/fab/index.scss +2 -0
- package/components/grid/_spec.scss +169 -0
- package/components/grid/_theme.scss +0 -0
- package/components/grid/index.scss +2 -0
- package/components/layout/_mixins.scss +11 -0
- package/components/layout/_spec.scss +916 -0
- package/components/layout/_theme.scss +19 -0
- package/components/layout/index.js +454 -0
- package/components/layout/index.scss +2 -0
- package/components/list/_spec.scss +363 -0
- package/components/list/_theme.scss +102 -0
- package/components/list/content.js +106 -0
- package/components/list/index.js +234 -79
- package/components/list/index.scss +2 -0
- package/components/list/item.js +167 -0
- package/components/list/secondary.js +45 -0
- package/components/menu/_spec.scss +329 -0
- package/components/menu/_theme.scss +0 -0
- package/components/menu/index.js +636 -651
- package/components/menu/index.scss +2 -0
- package/components/menu/item.js +231 -0
- package/components/progress/_spec.scss +156 -0
- package/components/progress/_theme.scss +0 -0
- package/components/progress/index.js +29 -13
- package/components/progress/index.scss +2 -0
- package/components/selection/_spec.scss +376 -0
- package/components/selection/_theme.scss +134 -0
- package/components/selection/index.eta +60 -0
- package/components/selection/index.js +70 -0
- package/components/selection/index.pug +30 -0
- package/components/selection/index.scss +2 -0
- package/components/selection/input.js +54 -0
- package/components/selection/radiogroup.js +40 -0
- package/components/slider/{style.scss → _spec.scss} +31 -34
- package/components/slider/_theme.scss +0 -0
- package/components/slider/index.scss +2 -0
- package/components/snackbar/_spec.scss +150 -0
- package/components/snackbar/_theme.scss +0 -0
- package/components/snackbar/index.js +293 -206
- package/components/snackbar/index.scss +2 -0
- package/components/tab/_spec.scss +220 -0
- package/components/tab/_theme.scss +0 -0
- package/components/tab/content.js +210 -0
- package/components/tab/index.js +229 -213
- package/components/tab/index.scss +2 -0
- package/components/tab/item.js +88 -0
- package/components/tab/list.js +196 -0
- package/components/tab/panel.js +54 -0
- package/components/textfield/README.md +4 -4
- package/components/textfield/_spec.scss +763 -0
- package/components/textfield/_theme.scss +264 -0
- package/components/textfield/index.eta +74 -0
- package/components/textfield/index.js +132 -138
- package/components/textfield/index.pug +30 -0
- package/components/textfield/index.scss +2 -0
- package/components/tooltip/_spec.scss +185 -0
- package/components/tooltip/_theme.scss +0 -0
- package/components/tooltip/index.scss +2 -0
- package/components/type/_spec.scss +227 -0
- package/components/type/_theme.scss +0 -0
- package/components/type/index.scss +2 -0
- package/core/_breakpoint.scss +189 -0
- package/core/_elevation.scss +78 -0
- package/core/_length.scss +8 -0
- package/core/_motion.scss +31 -0
- package/core/_platform.scss +12 -0
- package/core/_type.scss +128 -0
- package/core/aria/attributes.js +141 -0
- package/core/aria/button.js +49 -0
- package/core/aria/keyboard.js +92 -0
- package/core/aria/rovingtabindex.js +175 -0
- package/core/aria/tab.js +59 -0
- package/core/document/index.js +39 -0
- package/core/dom.js +180 -0
- package/core/overlay/_spec.scss +28 -0
- package/core/overlay/_theme.scss +147 -0
- package/core/overlay/index.js +95 -0
- package/core/overlay/index.scss +2 -0
- package/core/ripple/_spec.scss +196 -0
- package/core/ripple/_theme.scss +20 -0
- package/core/ripple/index.js +286 -0
- package/core/ripple/index.scss +2 -0
- package/core/theme/_aliases.scss +15 -0
- package/core/theme/_config.scss +8 -0
- package/core/theme/_functions.scss +22 -0
- package/{components/theming/palettes.scss → core/theme/_palettes.scss} +173 -151
- package/core/theme/_spec.scss +0 -0
- package/core/theme/_theme.scss +268 -0
- package/core/theme/index.js +50 -0
- package/core/theme/index.scss +4 -0
- package/core/throttler.js +42 -0
- package/core/transition/index.js +465 -0
- package/docs/_flex.scss +28 -0
- package/docs/_menuoptions.js +183 -0
- package/docs/_partials/_androidnavbar.eta +5 -0
- package/docs/_partials/_androidstatusbar.eta +13 -0
- package/docs/_partials/_appbar.eta +27 -0
- package/docs/_partials/_buttontest.eta +31 -0
- package/docs/_partials/_header.eta +146 -0
- package/docs/_partials/_navlistitem.eta +16 -0
- package/docs/_partials/_target.eta +1 -0
- package/docs/_sample-utils.js +88 -0
- package/docs/{src/storage.js → _storage.js} +0 -0
- package/docs/docs.scss +331 -0
- package/docs/framework.scss +26 -0
- package/docs/index.eta +12 -0
- package/docs/index.js +7 -0
- package/docs/pages/appbar.eta +108 -0
- package/docs/pages/appbar.js +0 -0
- package/docs/pages/bottomnav.eta +188 -0
- package/docs/pages/bottomnav.js +118 -0
- package/docs/pages/button.eta +124 -0
- package/docs/pages/button.js +224 -0
- package/docs/pages/card.eta +90 -0
- package/docs/pages/card.js +175 -0
- package/docs/pages/chip.eta +122 -0
- package/docs/pages/chip.js +80 -0
- package/docs/pages/color.eta +143 -0
- package/docs/pages/color.js +261 -0
- package/docs/pages/datatable.eta +323 -0
- package/docs/pages/datatable.js +160 -0
- package/docs/pages/dialog.eta +184 -0
- package/docs/{src/components → pages}/dialog.js +35 -48
- package/docs/pages/dom.eta +26 -0
- package/docs/pages/dom.js +140 -0
- package/docs/pages/elevation.eta +35 -0
- package/docs/pages/elevation.js +0 -0
- package/docs/pages/fab.eta +99 -0
- package/docs/{src/components → pages}/fab.js +6 -13
- package/docs/pages/grid.eta +135 -0
- package/docs/pages/grid.js +128 -0
- package/docs/pages/layout.eta +8 -0
- package/docs/pages/layout.js +0 -0
- package/docs/pages/list.eta +465 -0
- package/docs/pages/list.js +8 -0
- package/docs/pages/menu.eta +274 -0
- package/docs/{src/components → pages}/menu.js +26 -42
- package/docs/pages/overlay.eta +69 -0
- package/docs/pages/overlay.js +3 -0
- package/docs/pages/progress.eta +23 -0
- package/docs/{src/components → pages}/progress.js +2 -4
- package/docs/pages/ripple.eta +27 -0
- package/docs/pages/ripple.js +3 -0
- package/docs/pages/search.eta +242 -0
- package/docs/pages/search.js +226 -0
- package/docs/pages/selection.eta +107 -0
- package/docs/pages/selection.js +12 -0
- package/docs/pages/slider.eta +23 -0
- package/docs/pages/slider.js +0 -0
- package/docs/pages/snackbar.eta +83 -0
- package/docs/{src/components → pages}/snackbar.js +31 -36
- package/docs/pages/tab.eta +407 -0
- package/docs/pages/tab.js +152 -0
- package/docs/pages/textfield.eta +487 -0
- package/docs/{src/components → pages}/textfield.js +41 -45
- package/docs/pages/tooltip.eta +92 -0
- package/docs/pages/tooltip.js +0 -0
- package/docs/pages/transition.eta +117 -0
- package/docs/pages/transition.js +52 -0
- package/docs/pages/type.eta +31 -0
- package/docs/pages/type.js +0 -0
- package/docs/postrender.js +41 -0
- package/docs/prerender.js +16 -0
- package/docs/pwa/_dialogs.eta +143 -0
- package/docs/pwa/_menus.eta +16 -0
- package/docs/pwa/pwa-prerender.js +3 -0
- package/docs/pwa/pwa.eta +478 -0
- package/docs/pwa/pwa.js +298 -0
- package/docs/pwa/pwa.scss +31 -0
- package/docs/themes/theme-colored.scss +15 -0
- package/docs/themes/theme-default.scss +3 -0
- package/index.scss +27 -0
- package/jsconfig.json +8 -2
- package/package.json +54 -27
- package/scripts/deploy-docs.sh +9 -0
- package/templates/index.eta +2 -0
- package/templates/index.pug +3 -0
- package/tsconfig.json +16 -0
- package/utils/function.js +3 -0
- package/webpack.config.js +224 -68
- package/_index.scss +0 -4
- package/components/all-components.scss +0 -21
- package/components/bottomnav/style.scss +0 -190
- package/components/bottomnav/theming.scss +0 -76
- package/components/button/style.scss +0 -315
- package/components/button/theming.scss +0 -134
- package/components/card/style.scss +0 -175
- package/components/card/theming.scss +0 -43
- package/components/common/dom.js +0 -51
- package/components/common/functions.scss +0 -174
- package/components/common/mixins.scss +0 -122
- package/components/common/motion.scss +0 -36
- package/components/common/type.scss +0 -104
- package/components/common/variables.scss +0 -46
- package/components/datatable/style.scss +0 -257
- package/components/datatable/theming.scss +0 -119
- package/components/dialog/style.scss +0 -159
- package/components/dialog/theming.scss +0 -29
- package/components/divider/style.scss +0 -7
- package/components/divider/theming.scss +0 -20
- package/components/elevation/style.scss +0 -32
- package/components/layout/style.scss +0 -223
- package/components/list/style.scss +0 -358
- package/components/list/theming.scss +0 -83
- package/components/menu/style.scss +0 -280
- package/components/menu/theming.scss +0 -80
- package/components/navdrawer/index.js +0 -200
- package/components/navdrawer/style.scss +0 -595
- package/components/navdrawer/theming.scss +0 -62
- package/components/progress/style.scss +0 -136
- package/components/ripple/index.js +0 -63
- package/components/ripple/ripple.scss +0 -122
- package/components/selection/style.scss +0 -320
- package/components/selection/theming.scss +0 -98
- package/components/snackbar/style.scss +0 -212
- package/components/switch/style.scss +0 -3
- package/components/tab/style.scss +0 -275
- package/components/tab/theming.scss +0 -34
- package/components/template/theming.scss +0 -31
- package/components/textfield/style.scss +0 -795
- package/components/textfield/theming.scss +0 -256
- package/components/theming/globals.scss +0 -25
- package/components/theming/theming.scss +0 -559
- package/components/toolbar/style.scss +0 -190
- package/components/toolbar/theming.scss +0 -32
- package/components/tooltip/style.scss +0 -135
- package/components/type/style.scss +0 -167
- package/components/type/theming.scss +0 -25
- 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/components.min.css +0 -1
- package/docs/components.min.js +0 -2
- package/docs/components.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/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/index.html +0 -1
- package/docs/index.min.js +0 -2
- package/docs/index.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/navdrawer.html +0 -1
- package/docs/navdrawer.min.js +0 -2
- package/docs/navdrawer.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/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/src/components/bottomnav.js +0 -16
- package/docs/src/components/bottomnav.pug +0 -112
- package/docs/src/components/button.js +0 -156
- package/docs/src/components/button.pug +0 -194
- package/docs/src/components/card.js +0 -136
- package/docs/src/components/card.pug +0 -133
- package/docs/src/components/datatable.js +0 -183
- package/docs/src/components/datatable.pug +0 -324
- package/docs/src/components/dialog.pug +0 -138
- package/docs/src/components/elevation.js +0 -3
- package/docs/src/components/elevation.pug +0 -17
- package/docs/src/components/fab.pug +0 -84
- package/docs/src/components/layout.js +0 -116
- package/docs/src/components/layout.pug +0 -104
- package/docs/src/components/list.js +0 -15
- package/docs/src/components/list.pug +0 -293
- package/docs/src/components/menu.pug +0 -292
- package/docs/src/components/navdrawer.js +0 -112
- package/docs/src/components/navdrawer.pug +0 -113
- package/docs/src/components/progress.pug +0 -17
- package/docs/src/components/search.js +0 -206
- package/docs/src/components/search.pug +0 -149
- package/docs/src/components/selection.js +0 -6
- package/docs/src/components/selection.pug +0 -116
- package/docs/src/components/slider.js +0 -3
- package/docs/src/components/slider.pug +0 -19
- package/docs/src/components/snackbar.pug +0 -145
- package/docs/src/components/tab.js +0 -137
- package/docs/src/components/tab.pug +0 -329
- package/docs/src/components/textfield.pug +0 -416
- package/docs/src/components/toolbar.js +0 -6
- package/docs/src/components/toolbar.pug +0 -86
- package/docs/src/components/tooltip.js +0 -6
- package/docs/src/components/tooltip.pug +0 -76
- package/docs/src/components/type.js +0 -6
- package/docs/src/components/type.pug +0 -34
- package/docs/src/components.scss +0 -1
- package/docs/src/docs.scss +0 -284
- package/docs/src/index.js +0 -3
- package/docs/src/index.pug +0 -6
- package/docs/src/menuoptions.js +0 -136
- package/docs/src/mixins.pug +0 -139
- package/docs/src/prerender.js +0 -26
- package/docs/src/sample-utils.js +0 -108
- package/docs/src/targetHandler.js +0 -50
- package/docs/src/theming.ie11.scss +0 -18
- package/docs/src/theming.scss +0 -18
- 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/theming.ie11.min.css +0 -1
- package/docs/theming.ie11.min.js +0 -2
- package/docs/theming.ie11.min.js.map +0 -1
- package/docs/theming.min.css +0 -1
- package/docs/theming.min.js +0 -2
- package/docs/theming.min.js.map +0 -1
- package/docs/toolbar.html +0 -1
- package/docs/toolbar.min.js +0 -2
- package/docs/toolbar.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/type.html +0 -1
- package/docs/type.min.js +0 -2
- package/docs/type.min.js.map +0 -1
- package/index.js +0 -16
package/docs/components.min.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.mdw-bottomnav{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);flex-direction:row;justify-content:center;min-height:56px;overflow:hidden;width:100%}.mdw-bottomnav,.mdw-bottomnav__item{align-items:center;display:flex;position:relative}.mdw-bottomnav__item{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;border-radius:0;box-shadow:none;cursor:pointer;flex:1;flex-direction:column;justify-content:flex-start;margin:0;max-width:168px;min-width:80px;overflow:visible;padding:0;user-select:none;z-index:0}.mdw-bottomnav__item>.mdw-ripple{border-radius:inherit;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{display:block!important}.mdw-bottomnav__item:after,.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:transparent;border-radius:50%;color:inherit;content:"";display:table;height:0;left:50%;opacity:.26;padding:50%;pointer-events:none;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) scale(1);transition-delay:0s,0s,.15s;transition-duration:.3s,.15s,.15s;transition-property:transform,opacity,background-color;transition-timing-function:cubic-bezier(.4,0,.6,1);user-select:none;width:0;will-change:transform,opacity,background-color}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-bottomnav__item:after,.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@supports (-ms-ime-align:auto){.mdw-bottomnav__item:after,.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-bottomnav__item:after,.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.2s;transition-duration:.4s,.2s,.2s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-bottomnav__item:after,.mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.26s;transition-duration:.52s,.26s,.26s}}.mdw-bottomnav__item:active:after,.mdw-bottomnav__item>.mdw-ripple:active>.mdw-ripple__inner{background-color:currentColor;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0);transition-delay:0s;transition-duration:0s}.mdw-bottomnav__item[mdw-ripple]{overflow:visible}.mdw-bottomnav__item[mdw-ripple]:after{content:none}.mdw-bottomnav__icon{left:50%;margin:0 0 0 -12px;padding:0;pointer-events:none;position:absolute;top:0;transform:translateY(8px);transition-duration:.2s;transition-property:transform,color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-bottomnav__icon:last-child{transform:translateY(16px)}.mdw-bottomnav__item[mdw-badge]:before{border-radius:8px;box-sizing:border-box;content:attr(mdw-badge);font-size:10px;font-weight:400;left:50%;letter-spacing:normal;line-height:12px;margin-left:4px;min-height:8px;min-width:8px;padding:2px;position:absolute;top:0;transform:translateY(8px);transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:1}.mdw-bottomnav__item[data-mdw-badge]:before{content:attr(data-mdw-badge)}.mdw-bottomnav__label{box-sizing:border-box;font-size:.75rem;font-weight:400;letter-spacing:.025rem;line-height:16px;max-width:100%;padding:0 12px;pointer-events:none;text-align:center;transition-duration:.2s;transition-property:transform,opacity,color;transition-timing-function:cubic-bezier(.4,0,.2,1);word-break:break-all;word-break:break-word}.mdw-bottomnav__label:before{content:"";display:inline-block;height:44px}.mdw-bottomnav__label:after{content:"";display:inline-block;vertical-align:-8px}.mdw-bottomnav__input{-moz-appearance:none;-webkit-appearance:none;display:inline-block;height:0;margin:0;outline:none;padding:0;pointer-events:none;width:0}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__icon,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item:before{transform:translateY(16px)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__label{opacity:0;transform:translateY(8px)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__input:checked+.mdw-bottomnav__item>.mdw-bottomnav__label,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__input:checked~.mdw-bottomnav__label,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item[mdw-selected]>.mdw-bottomnav__label{opacity:1;transform:translateY(0)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__input:checked+.mdw-bottomnav__item>.mdw-bottomnav__icon,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__input:checked~.mdw-bottomnav__icon,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item[mdw-selected]>.mdw-bottomnav__icon{transform:translateY(8px)}.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__input:checked+.mdw-bottomnav__item:before,.mdw-bottomnav[mdw-shifting] .mdw-bottomnav__item[mdw-selected]:before{transform:translateY(8px)}.mdw-bottomnav[mdw-theme-color] .mdw-bottomnav__item{color:inherit}.mdw-bottomnav[mdw-theme-color] .mdw-bottomnav__item:after,.mdw-bottomnav[mdw-theme-color] .mdw-bottomnav__item>.mdw-ripple>.mdw-ripple__inner{color:inherit}.mdw-button{-moz-appearance:none;-moz-user-select:none;-ms-user-select:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;align-items:center;appearance:none;border:none;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;justify-content:center;margin:0 8px;min-height:36px;min-width:64px;outline:none;overflow:hidden;padding:0 8px;position:relative;text-align:center;text-decoration:none;transition-delay:0s;transition-duration:.1s,.5s;transition-property:box-shadow,background-color;transition-timing-function:cubic-bezier(.4,0,1,1);user-select:none;z-index:0}.mdw-button[mdw-outline],.mdw-button[mdw-theme-fill]{padding:0 16px}.mdw-button[disabled]{cursor:not-allowed}.mdw-button:active{transition-delay:0s,.1s;transition-duration:.1s,.4s;transition-timing-function:cubic-bezier(0,0,.2,1)}.mdw-button:not([mdw-theme-fill]){background-color:transparent}.mdw-button::-moz-focus-inner{border:0}.mdw-button:not([mdw-icon]){font-family:inherit;font-size:.875rem;font-weight:500;letter-spacing:.07812rem;line-height:16px;text-transform:uppercase;word-spacing:normal}.mdw-button[mdw-outline]{border-style:solid;border-width:1px}.mdw-button[mdw-outline]:before,.mdw-button[mdw-outline]>.mdw-ripple{margin-left:-1px;margin-top:-1px;padding-bottom:2px;padding-right:2px}.mdw-button[mdw-icon]{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;box-sizing:content-box;font-size:24px;min-height:1em;min-width:1em;padding:8px;user-select:none}.mdw-button[mdw-image]{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;border-radius:50%;box-sizing:content-box;margin:0;min-height:24px;min-width:24px;padding:0;user-select:none}.mdw-button[mdw-image]>*{height:100%;left:0;position:absolute;top:0;width:auto}.mdw-button[disabled]:after,.mdw-button[disabled]:before,.mdw-button[disabled]>.mdw-button__focus-ring,.mdw-button[disabled]>.mdw-ripple{content:none;display:none}.mdw-button:before{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:currentColor;border-radius:inherit;color:rgba(0,0,0,.12);content:"";height:100%;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transform:scale(1);transition-duration:.2s;transition-property:opacity,transform;user-select:none;width:100%;z-index:-1}.mdw-button:focus:before{opacity:1}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){a.mdw-button:not([mdw-icon]){line-height:2.5em!important}}.mdw-button__focus-ring{overflow:hidden}.mdw-button__focus-ring,.mdw-button__focus-ring:after{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;height:100%;left:0;pointer-events:none;position:absolute;top:0;user-select:none;width:100%}.mdw-button__focus-ring:after{background-image:radial-gradient(circle at center,transparent 10%,currentColor 10.0001%);background-position:50%;color:#000;content:"";opacity:0;transform:scale(10);transition-delay:5ms;transition-duration:.2s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-button:focus:not(:active)>.mdw-button__focus-ring:after{animation-delay:3334ms;animation-direction:alternate;animation-duration:1667ms;animation-iteration-count:infinite;animation-name:focus-pulse;animation-timing-function:cubic-bezier(.4,0,.2,1);opacity:.12;transform:scale(7.5);transition-delay:1667ms;transition-duration:1667ms}.mdw-button[mdw-ripple]{overflow:visible}.mdw-button[mdw-ripple]:after{content:none}.mdw-button>.mdw-ripple{border-radius:inherit;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.mdw-button>.mdw-ripple>.mdw-ripple__inner{display:block!important}.mdw-button:after,.mdw-button>.mdw-ripple>.mdw-ripple__inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:transparent;border-radius:50%;color:inherit;content:"";display:table;height:0;left:50%;opacity:.26;padding:50%;pointer-events:none;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) scale(1);transition-delay:0s,0s,.15s;transition-duration:.3s,.15s,.15s;transition-property:transform,opacity,background-color;transition-timing-function:cubic-bezier(.4,0,.6,1);user-select:none;width:0;will-change:transform,opacity,background-color}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-button:after,.mdw-button>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@supports (-ms-ime-align:auto){.mdw-button:after,.mdw-button>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-button:after,.mdw-button>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.2s;transition-duration:.4s,.2s,.2s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-button:after,.mdw-button>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.26s;transition-duration:.52s,.26s,.26s}}.mdw-button:active:after,.mdw-button>.mdw-ripple:active>.mdw-ripple__inner{background-color:currentColor;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0);transition-delay:0s;transition-duration:0s}.mdw-button[mdw-raised]:not([disabled]){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]:not([disabled]):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)}@media (any-pointer:fine){.mdw-button[mdw-raised]:not([disabled]):not([mdw-raised=always]){box-shadow:none}.mdw-button[mdw-raised]:not([disabled]):not([mdw-raised=always]):hover{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]:not([disabled]):not([mdw-raised=always]):active,.mdw-button[mdw-raised]:not([disabled]):not([mdw-raised=always]):hover: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)}}@keyframes focus-pulse{0%{transform:scale(7.5)}to{transform:scale(8)}}.mdw-button[mdw-theme-color]:before{color:inherit}.mdw-button[mdw-theme-color]:focus:before{opacity:.12}.mdw-button[mdw-theme-color]:active:before{opacity:.26;transition-delay:.1s;transition-duration:.4s;transition-timing-function:cubic-bezier(0,0,.2,1)}.mdw-button[mdw-theme-color]:focus:not(:active)>.mdw-button__focus-ring:after{color:inherit;opacity:.26}.mdw-card{box-shadow:none;display:block;font-size:.875rem;font-weight:400;letter-spacing:.01562rem;line-height:20px;outline:none;position:relative;transition-duration:175ms;transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-card:before{border:1px solid;border-color:inherit;border-radius:inherit;bottom:0;content:"";left:0;position:absolute;right:0;top:0}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-card{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: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="1"]:before{border-color:transparent}.mdw-card:focus,.mdw-card:focus-within,.mdw-card:hover,.mdw-card[mdw-raised]{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 (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-card{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-card{transition-duration:.39s}}.mdw-card>.mdw-divider,.mdw-card__supporting-text{padding:0 16px}.mdw-card__thumbnail{float:left;margin:16px 16px 0}html[dir=rtl] .mdw-card__thumbnail{float:right}.mdw-card__image{height:auto;width:100%}.mdw-card__media{line-height:0;position:relative;z-index:1}.mdw-card__media[mdw-ratio]>.mdw-card__image{height:100%;object-fit:cover;position:absolute}.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;margin-left:0;margin-right:16px;min-height:40px;min-width:40px}html[dir=rtl] .mdw-card__header-thumbnail{margin-left:16px;margin-right:0}.mdw-card__header{margin:0;white-space:nowrap}h5.mdw-card__header{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:28px;margin-bottom:-28px}h5.mdw-card__header:before{content:"";display:inline-block;height:40px}h5.mdw-card__header:after{content:"";display:inline-block;vertical-align:-28px}h6.mdw-card__header{font-size:1.25rem;font-weight:500;letter-spacing:.00937rem;line-height:24px}h6.mdw-card__header:before{content:"";display:inline-block;height:34px}.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:22px}.mdw-card__header[mdw-two-line]~.mdw-card__subheader:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card__supporting-text:before{content:"";display:inline-block;height:28px}.mdw-card__supporting-text:after{content:"";display:inline-block;vertical-align:-16px}.mdw-card__actions{display:flex;padding-left:4px;padding-right:4px;padding-top:8px}.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-datatable table,table.mdw-datatable{border-collapse:collapse;display:table;width:100%}.mdw-datatable__header,.mdw-datatable caption{font-size:1.25rem;font-weight:500;letter-spacing:.00937rem;line-height:24px;min-height:64px}.mdw-datatable caption{caption-side:top;line-height:64px;padding:0 16px;text-align:left;text-align:start}.mdw-datatable caption html[dir=rtl]{text-align:right;text-align:start}.mdw-datatable__header{align-items:center;display:flex;flex-direction:row}.mdw-datatable__header-actions,.mdw-datatable__header-text{flex-grow:1}.mdw-datatable__header-actions,.mdw-datatable__header-controls,.mdw-datatable__header-text{display:flex}.mdw-datatable__header-text{padding-left:16px;padding-right:0}html[dir=rtl] .mdw-datatable__header-text{padding-left:0;padding-right:16px}.mdw-datatable tr{border-bottom-style:solid;border-bottom-width:1px;height:48px;outline:none}.mdw-datatable thead>tr{height:48px}.mdw-datatable td{font-size:.875rem;font-weight:400;letter-spacing:.01562rem;line-height:20px;outline:none;padding-bottom:3px;padding-top:4px}.mdw-datatable td[mdw-selector]+td{padding-left:12px;padding-right:16px}html[dir=rtl] .mdw-datatable td[mdw-selector]+td{padding-left:16px;padding-right:12px}.mdw-datatable td[mdw-selector],.mdw-datatable th[mdw-selector]{padding-left:16px;padding-right:0;width:24px}html[dir=rtl] .mdw-datatable td[mdw-selector],html[dir=rtl] .mdw-datatable th[mdw-selector]{padding-left:0;padding-right:16px}.mdw-datatable th{font-size:.75rem;font-weight:400;letter-spacing:.025rem;line-height:16px;white-space:nowrap}.mdw-datatable th[mdw-selector]+th{padding-left:12px;padding-right:16px}html[dir=rtl] .mdw-datatable th[mdw-selector]+th{padding-left:16px;padding-right:12px}.mdw-datatable td,.mdw-datatable th{padding-left:16px;padding-right:16px;text-align:center}.mdw-datatable td .mdw-selection__input,.mdw-datatable th .mdw-selection__input{visibility:hidden}.mdw-datatable td[mdw-primary-column],.mdw-datatable th[mdw-primary-column]{border-right-style:solid;border-width:1px;width:100%}html[dir=rtl] .mdw-datatable td[mdw-primary-column],html[dir=rtl] .mdw-datatable th[mdw-primary-column]{border-left-style:solid;border-right-style:none}.mdw-datatable__sort-icon{color:transparent;display:inline-block;max-width:0;transform:translateX(-16px) rotate(180deg);transform-origin:8px 8px;transition-duration:175ms;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);vertical-align:bottom}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-datatable__sort-icon{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-datatable__sort-icon{transition-duration:.39s}}.mdw-datatable__sort-icon.material-icons{font-size:16px}.mdw-datatable th[mdw-sortable]{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;cursor:pointer;user-select:none}.mdw-datatable th[mdw-sortable]:hover .mdw-datatable__sort-icon,.mdw-datatable th[mdw-sortable][mdw-sorted] .mdw-datatable__sort-icon{color:inherit;transform:translateX(-16px) rotate(180deg)}.mdw-datatable th[mdw-sortable][mdw-sorted=desc] .mdw-datatable__sort-icon{transform:translateX(-16px) rotate(0deg)}.mdw-datatable td[data-type=text],.mdw-datatable th[data-type=text]{text-align:left;text-align:start}html[dir=rtl] .mdw-datatable td[data-type=text],html[dir=rtl] .mdw-datatable th[data-type=text]{text-align:right;text-align:start}.mdw-datatable td[data-type=number],.mdw-datatable th[data-type=number]{text-align:right;text-align:end}html[dir=rtl] .mdw-datatable td[data-type=number],html[dir=rtl] .mdw-datatable th[data-type=number]{text-align:left;text-align:end}.mdw-datatable__footer{align-items:center;display:flex;flex-direction:row;font-size:.75rem;font-weight:400;justify-content:flex-end;letter-spacing:.025rem;line-height:16px;min-height:56px}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-datatable__footer:after,.mdw-datatable__header:after{content:"";min-height:inherit;width:0}}.mdw-datatable__footer-details,.mdw-datatable__footer-options{margin-left:2px;margin-right:28px}html[dir=rtl] .mdw-datatable__footer-details,html[dir=rtl] .mdw-datatable__footer-options{margin-left:28px;margin-right:2px}.mdw-datatable__footer-controls,.mdw-datatable__header-controls{display:inline-flex;margin-left:4px;margin-right:4px}.mdw-datatable__footer-controls .mdw-button,.mdw-datatable__header-controls .mdw-button{margin:0 4px}.mdw-datatable__footer-controls{direction:ltr}html[dir=rtl] .mdw-datatable__footer-controls{transform:scaleX(-1)}.mdw-datatable__footer-options{align-items:center;display:flex}.mdw-datatable__footer-options select.mdw-textfield__input{direction:rtl;min-width:64px}html[dir=rtl] .mdw-datatable__footer-options select.mdw-textfield__input{direction:ltr}.mdw-dialog__close{background-color:rgba(0,0,0,.5);cursor:default;pointer-events:inherit;visibility:hidden}.mdw-dialog,.mdw-dialog__close{height:100%;left:0;position:absolute;top:0;width:100%}.mdw-dialog{align-items:center;box-sizing:border-box;display:flex;flex-direction:row;justify-content:center;opacity:0;padding:84px 40px;pointer-events:none;transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(0,0,.2,1);z-index:24}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-dialog{transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-dialog{transition-duration:.2535s}}.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[id]:target,.mdw-dialog[mdw-show]:not([mdw-hide]){opacity:1;pointer-events:auto;transition-duration:185ms;transition-timing-function:cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-dialog[id]:target,.mdw-dialog[mdw-show]:not([mdw-hide]){transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-dialog[id]:target,.mdw-dialog[mdw-show]:not([mdw-hide]){transition-duration:.2925s}}.mdw-dialog[id]:target .mdw-dialog__close,.mdw-dialog[mdw-show]:not([mdw-hide]) .mdw-dialog__close{visibility:visible}.mdw-dialog[id]:target .mdw-dialog__popup,.mdw-dialog[mdw-show]:not([mdw-hide]) .mdw-dialog__popup{transform:scale(1)}.mdw-dialog__popup{border-radius:2px;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);display:flex;flex-direction:column;flex-shrink:1;max-height:100%;max-width:100%;min-width:224px;transform:scale(0);transform-origin:center bottom;transition-duration:inherit;transition-property:transform;transition-timing-function:inherit;z-index:24}.mdw-dialog__title{font-size:1.25rem;font-weight:500;letter-spacing:.00937rem;line-height:24px;margin-bottom:-36px;padding:0 24px}.mdw-dialog__title:before{content:"";display:inline-block;height:40px}.mdw-dialog__title:after{content:"";display:inline-block;vertical-align:-36px}.mdw-dialog__body{font-size:1rem;font-weight:400;letter-spacing:.03125rem;line-height:24px;padding:0 24px}.mdw-dialog__body:before{content:"";display:inline-block;height:36px}.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:none;flex-direction:row-reverse;flex-wrap:wrap;justify-content:flex-start;margin-bottom:8px;margin-top:8px}.mdw-dialog__button-area[mdw-stacked]{margin-top:0}.mdw-dialog__button-area[mdw-stacked] .mdw-button{flex-basis:100%;justify-content:flex-end;margin-right:0;min-height:48px;padding-left:16px;padding-right:16px}.mdw-dialog__button-area[mdw-stacked] .mdw-button,html[dir=rtl] .mdw-dialog__button-area[mdw-stacked] .mdw-button{margin-left:0}.mdw-dialog__button-area .mdw-button{margin-left:0;margin-right:8px;text-align:end}html[dir=rtl] .mdw-dialog__button-area .mdw-button{margin-left:8px;margin-right:0}.mdw-divider{background-color:currentColor;height:1px;margin-top:-1px;min-height:1px;width:100%}[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-elevation="2"]{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-elevation="3"]{box-shadow:0 3px 3px 0 rgba(0,0,0,.14),0 3px 4px 0 rgba(0,0,0,.12),0 1px 8px 0 rgba(0,0,0,.2)}[mdw-elevation="4"]{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)}[mdw-elevation="6"]{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-elevation="8"]{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-elevation="9"]{box-shadow:0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12),0 5px 6px 0 rgba(0,0,0,.2)}[mdw-elevation="12"]{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-elevation="16"]{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-elevation="24"]{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-fab{align-items:flex-end;display:flex;flex-direction:column-reverse;pointer-events:none;position:relative;z-index:6}.mdw-fab[mdw-horizontal]{flex-direction:row-reverse}.mdw-fab__close{bottom:0;cursor:default;left:0;pointer-events:auto;position:fixed;right:0;top:0;visibility:hidden}.mdw-fab__button.mdw-button{border-radius:28px;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);margin:0;min-height:0;min-width:0;order:-1;padding:16px;pointer-events:auto}.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]{margin:0 4px 4px;padding:12px}.mdw-fab__button.mdw-button[mdw-mini]{margin:0 8px 8px;padding:8px}.mdw-fab__speed-dial{align-items:center;bottom:100%;display:flex;flex-direction:inherit;order:1;pointer-events:none;position:absolute;z-index:inherit}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button{opacity:0;transform:scale(0);transition-duration:.15s;transition-property:transform,opacity;transition-timing-function:cubic-bezier(0,0,.2,1)}.mdw-fab__speed-dial>.mdw-fab__button.mdw-button,.mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-mini] .mdw-fab__speed-dial>.mdw-fab__button.mdw-button[mdw-extended]{margin-bottom:16px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-fab__speed-dial>.mdw-fab__button.mdw-button{transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-fab__speed-dial>.mdw-fab__button.mdw-button{transition-duration:.2535s}}.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{min-height:24px;min-width:24px;position:relative;transition-duration:.2s;transition-property:margin;transition-timing-function:linear}.mdw-fab__text{font-size:0;overflow:hidden;transition-duration:.2s;transition-property:font-size,margin-left,margin-right;transition-timing-function:linear;will-change:font-size}.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:1em}.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-left:8px;margin-right:4px}html[dir=rtl] .mdw-fab__button[mdw-extended=hover]:hover .mdw-fab__icon+.mdw-fab__text,html[dir=rtl] .mdw-fab__button[mdw-extended]:not([mdw-extended=hover]) .mdw-fab__icon+.mdw-fab__text{margin-left:4px;margin-right:8px}.mdw-fab__hidden-icon,.mdw-fab__shown-icon{left:0;position:absolute;top: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{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);opacity:1;transform:scale(1);transition-duration:185ms;transition-timing-function:cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.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:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.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:.2925s}}.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-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-menu__wrapper{display:inline-flex;position:relative}.mdw-menu__close{cursor:default;height:100vh;left:0;pointer-events:inherit;position:fixed;top:0;visibility:hidden;width:100vw;z-index:8}.mdw-menu{bottom:auto;display:inline-flex;left:0;position:absolute;right:auto;top:100%;transform-origin:left top}.mdw-menu[id]:target:not([mdw-hide]) .mdw-menu__close,.mdw-menu[mdw-show]:not([mdw-hide]) .mdw-menu__close{visibility:visible}.mdw-menu[id]:target:not([mdw-hide]) .mdw-menu__popup,.mdw-menu[mdw-show]:not([mdw-hide]) .mdw-menu__popup{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);opacity:1;pointer-events:auto;transform:scale(1);transition-duration:185ms;transition-timing-function:cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-menu[id]:target:not([mdw-hide]) .mdw-menu__popup,.mdw-menu[mdw-show]:not([mdw-hide]) .mdw-menu__popup{transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-menu[id]:target:not([mdw-hide]) .mdw-menu__popup,.mdw-menu[mdw-show]:not([mdw-hide]) .mdw-menu__popup{transition-duration:.2925s}}html[dir=rtl] .mdw-menu{left:auto;right:0;transform-origin:right top}.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]{left:100%;right:auto}html[dir=rtl] .mdw-menu[mdw-position~=end],html[dir=rtl] .mdw-menu[mdw-position~=right]{left:auto;right:100%}.mdw-menu[mdw-direction~=reverse],.mdw-menu[mdw-direction~=rtl]{left:auto;right:100%;transform-origin:right top}html[dir=rtl] .mdw-menu[mdw-direction~=reverse],html[dir=rtl] .mdw-menu[mdw-direction~=rtl]{left:100%;right:auto;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]{left:auto;right:0}html[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=end],html[dir=rtl] .mdw-menu[mdw-direction~=reverse][mdw-position~=right],html[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=end],html[dir=rtl] .mdw-menu[mdw-direction~=rtl][mdw-position~=right]{left:0;right:auto}.mdw-menu[mdw-direction~=up]{bottom:0;top:auto;transform-origin:left bottom}html[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}html[dir=rtl] .mdw-menu[mdw-direction~=up][mdw-direction~=reverse],html[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__popup{-ms-overflow-style:-ms-autohiding-scrollbar;border-radius:4px;bottom:inherit;box-shadow:none;display:flex;flex-direction:column;left:inherit;margin-left:8px;margin-right:8px;max-height:50vh;max-width:392px;min-width:112px;opacity:0;outline:none;overflow-y:auto;padding-bottom:8px;padding-top:8px;pointer-events:none;position:absolute;right:inherit;top:inherit;transform:scale(0);transform-origin:inherit;transition-duration:.15s;transition-property:transform,box-shadow,opacity;transition-timing-function:cubic-bezier(0,0,.2,1);z-index:8}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-menu__popup{transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-menu__popup{transition-duration:.2535s}}.mdw-menu__text{flex:auto;overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.mdw-menu__check,.mdw-menu__icon{min-width:40px}.mdw-menu__check{visibility:hidden}.mdw-menu__item[mdw-checked] .mdw-menu__check{visibility:visible}.mdw-menu__divider{height:1px;margin-bottom:8px;margin-top:7px}.mdw-menu__item{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;align-items:center;box-sizing:border-box;cursor:pointer;display:flex;flex-direction:row;font-size:1rem;font-weight:400;letter-spacing:.03125rem;line-height:24px;min-height:48px;outline:none;overflow:hidden;padding-left:16px;padding-right:16px;position:relative;user-select:none;z-index:0}.mdw-menu__item[disabled]{cursor:not-allowed}.mdw-menu__item[disabled]:after,.mdw-menu__item[disabled]>.mdw-ripple{display:none}.mdw-menu__item>.mdw-ripple{border-radius:inherit;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{display:block!important}.mdw-menu__item:after,.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:transparent;border-radius:50%;color:inherit;content:"";display:table;height:0;left:50%;opacity:.26;padding:50%;pointer-events:none;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) scale(1);transition-delay:0s,0s,.15s;transition-duration:.3s,.15s,.15s;transition-property:transform,opacity,background-color;transition-timing-function:cubic-bezier(.4,0,.6,1);user-select:none;width:0;will-change:transform,opacity,background-color}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-menu__item:after,.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@supports (-ms-ime-align:auto){.mdw-menu__item:after,.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-menu__item:after,.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.2s;transition-duration:.4s,.2s,.2s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-menu__item:after,.mdw-menu__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.26s;transition-duration:.52s,.26s,.26s}}.mdw-menu__item:active:after,.mdw-menu__item>.mdw-ripple:active>.mdw-ripple__inner{background-color:currentColor;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0);transition-delay:0s;transition-duration:0s}.mdw-menu__item[mdw-ripple]{overflow:visible}.mdw-menu__item[mdw-ripple]:after{content:none}.mdw-menu[mdw-dense]:not([mdw-dense=never]) .mdw-menu__item,.mdw-menu[mdw-dropdown] .mdw-menu__item{min-height:32px;padding-left:24px;padding-right:24px}@media not all and (any-pointer:coarse){.mdw-menu:not([mdw-dense=never]) .mdw-menu__item{min-height:32px;padding-left:24px;padding-right:24px}}.mdw-menu__info{padding-left:16px;padding-right:0;text-align:right;text-align:end}html[dir=rtl] .mdw-menu__info{padding-left:0;padding-right:16px;text-align:left;text-align:end}.mdw-navdrawer{-ms-grid-columns:auto 16px 1fr;-ms-grid-rows:auto 1fr 16px;display:grid;display:-ms-grid;grid-template-columns:auto 16px 1fr;grid-template-rows:auto 1fr 16px;height:100%;overflow:hidden;position:relative;transition-duration:.15s;transition-timing-function:cubic-bezier(0,0,.2,1);width:100%}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-navdrawer{transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-navdrawer{transition-duration:.2535s}}.mdw-navdrawer[id]:target,.mdw-navdrawer[mdw-show]:not([mdw-hide]){transition-duration:185ms;transition-timing-function:cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-navdrawer[id]:target,.mdw-navdrawer[mdw-show]:not([mdw-hide]){transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-navdrawer[id]:target,.mdw-navdrawer[mdw-show]:not([mdw-hide]){transition-duration:.2925s}}.mdw-navdrawer__scrim{background-color:transparent;bottom:0;content:"";cursor:auto;display:none;left:0;pointer-events:none;position:absolute;right:0;top:0;transition-duration:inherit;transition-property:background-color;transition-timing-function:inherit;z-index:16}.mdw-navdrawer__toolbar{-ms-grid-column:2;-ms-grid-column-span:2;-ms-grid-row:1;-ms-grid-row-span:1;grid-column:2;grid-column-end:span 2;grid-row-end:span 1;grid-row-start:1}.mdw-navdrawer__toolbar .mdw-toolbar__start{display:none}.mdw-navdrawer__close{-ms-grid-column:2;-ms-grid-row:1;align-self:flex-start;color:#fff!important;display:none;grid-column:2;grid-row:1;height:40px;width:40px}.mdw-navdrawer__close,.mdw-navdrawer__close.mdw-button{margin:16px 8px 0;padding:0}.mdw-navdrawer__drawer{-ms-grid-column:1;-ms-grid-column-span:1;-ms-grid-row:1;-ms-grid-row-align:start;-ms-grid-row-span:3;-ms-overflow-style:-ms-autohiding-scrollbar;align-self:flex-start;border-style:solid;border-width:0 1px 0 0;box-shadow:none;grid-column:1;grid-column-end:span 1;grid-row:1;grid-row-end:span 3;height:100%;max-height:100%;max-width:calc(100vw - 64px);min-width:256px;overflow-y:auto;pointer-events:auto;position:relative;transform:translateX(0);transition-duration:inherit;transition-property:box-shadow,transform,min-width,max-width;transition-timing-function:inherit;z-index:16}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-navdrawer__drawer{max-width:calc(100vw - 56px)}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-navdrawer__drawer:after{content:"";height:0;min-width:inherit}}html[mdw-ios][mdw-standalone] .mdw-navdrawer__drawer{padding-left:env(safe-area-inset-left);padding-right:0;padding-top:env(safe-area-inset-top)}html[mdw-ios][mdw-standalone][dir=rtl] .mdw-navdrawer__drawer{padding-left:0;padding-right:env(safe-area-inset-right)}.mdw-navdrawer__content{-ms-grid-column:2;-ms-grid-column-span:2;-ms-grid-row:2;-ms-grid-row-span:2;-ms-overflow-style:-ms-autohiding-scrollbar;grid-column:2;grid-column-end:span 2;grid-row:2;grid-row-end:span 2;overflow-y:auto;position:relative}.mdw-navdrawer__drawer .mdw-list__item:before,.mdw-navdrawer__drawer .mdw-list__item>.mdw-ripple{border-radius:4px;margin:4px 8px}.mdw-navdrawer__drawer .mdw-list__item:before{transition-property:background-color,opacity}.mdw-navdrawer__drawer .mdw-list__item[mdw-selected]{background-color:transparent}.mdw-navdrawer__drawer .mdw-list__item[mdw-selected] .mdw-list__icon,.mdw-navdrawer__drawer .mdw-list__item[mdw-selected] .mdw-list__text{color:inherit}.mdw-navdrawer__drawer .mdw-list__item[mdw-selected]:before{background-color:currentColor;opacity:.12}.mdw-navdrawer__drawer .mdw-list__subheader,.mdw-navdrawer__drawer .mdw-list__text{font-size:.875rem;font-weight:500}.mdw-navdrawer__account{-ms-grid-columns:auto minmax(0,56px);-ms-grid-rows:auto minmax(64px,auto);display:grid;display:-ms-grid;grid-template-columns:auto minmax(0,56px);grid-template-rows:auto minmax(64px,auto);position:relative}.mdw-navdrawer__account:after{-ms-grid-column:1;-ms-grid-column-span:2;-ms-grid-row:1;-ms-grid-row-span:2;content:"";grid-column:1;grid-column-end:span 2;grid-row:1;grid-row-end:span 2;height:0;padding-bottom:56.25%;width:auto}.mdw-navdrawer__avatars{-ms-grid-column:1;-ms-grid-column-span:2;-ms-grid-row:1;align-items:flex-start;align-self:flex-end;display:flex;grid-column:1;grid-column-end:span 2;grid-row:1;height:64px;justify-content:space-between;padding:16px 16px 4px}.mdw-navdrawer__avatars-current>.mdw-button,.mdw-navdrawer__avatars-others>.mdw-button{border-style:solid;border-width:1px;box-sizing:border-box}.mdw-navdrawer__avatars-current>.mdw-button{height:64px;width:64px}.mdw-navdrawer__avatars-others{display:flex}.mdw-navdrawer__avatars-others>.mdw-button{height:40px;width:40px}.mdw-navdrawer__avatars-others>.mdw-button:not(:last-child){margin:0 16px}.mdw-navdrawer__image{-ms-grid-column:1;-ms-grid-column-span:2;-ms-grid-row:1;-ms-grid-row-span:2;grid-column:1;grid-column-end:span 2;grid-row:1;grid-row-end:span 2;overflow:hidden;position:relative}.mdw-navdrawer__image>*{height:auto;left:0;position:absolute;top:0;width:100%}.mdw-navdrawer__subtitle{-ms-grid-column:1;-ms-grid-column-span:2;-ms-grid-row:2;align-items:flex-start;display:flex;flex-direction:column;grid-column:1;grid-column-end:span 2;grid-row:2;justify-content:center;min-height:56px;padding-left:16px;padding-right:16px;position:relative}.mdw-navdrawer__subtitle,.mdw-navdrawer__subtitle.mdw-button{color:#fff!important;margin:0 0 8px}.mdw-navdrawer__subtitle.mdw-button{align-items:flex-start;text-transform:none}.mdw-navdrawer__name{box-sizing:border-box;color:inherit;font-size:.875rem;font-weight:500;max-width:100%;overflow-x:hidden;text-overflow:ellipsis}.mdw-navdrawer__name:after{bottom:16px;content:"\25BE";font-size:16px;padding:inherit;position:absolute;right:24px}[dir=rtl] .mdw-navdrawer__name:after{left:24px;right:auto}.mdw-navdrawer__email{box-sizing:border-box;color:inherit;font-size:.875rem;font-weight:400;max-width:100%;overflow-x:hidden;padding-right:32px;text-overflow:ellipsis}[dir=rtl] .mdw-navdrawer__email{padding-left:32px;padding-right:0}.mdw-navdrawer[mdw-dismissible]>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__toolbar .mdw-toolbar__start{display:flex}.mdw-navdrawer[mdw-dismissible] .mdw-navdrawer__close,.mdw-navdrawer[mdw-mini] .mdw-navdrawer__close{display:flex}.mdw-navdrawer[mdw-dismissible] .mdw-navdrawer__open,.mdw-navdrawer[mdw-mini] .mdw-navdrawer__open{display:none}.mdw-navdrawer[mdw-dismissible]:not([mdw-show]):not(:target) .mdw-navdrawer__close,.mdw-navdrawer[mdw-dismissible][mdw-hide] .mdw-navdrawer__close,.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__close,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__close{display:none}.mdw-navdrawer[mdw-dismissible]:not([mdw-show]):not(:target) .mdw-navdrawer__open,.mdw-navdrawer[mdw-dismissible][mdw-hide] .mdw-navdrawer__open,.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__open,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__open{display:flex}.mdw-navdrawer[mdw-dismissible]:not([mdw-show]):not(:target)>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-dismissible][mdw-hide]>.mdw-navdrawer__drawer{border-style:none;box-shadow:none;margin-left:0;margin-right:0;max-width:0;min-width:0}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__close,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__close{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__open,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__open{display:flex}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__image,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__image{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__account,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__account{display:flex;justify-content:center}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__avatars{-ms-grid-column-span:1;grid-column-end:span 1;height:32px;justify-content:center;padding-left:20px;padding-right:20px;padding-top:20px}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__avatars-current>.mdw-button,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__avatars-current>.mdw-button{height:32px;width:32px}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__avatars-others,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__avatars-others{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-list__subheader,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-list__subheader{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-list__divider,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-list__divider{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target)>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-mini][mdw-hide]>.mdw-navdrawer__toolbar{-ms-grid-column:1;-ms-grid-column-span:3;grid-column:1;grid-column-end:span 3}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target)>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini][mdw-hide]>.mdw-navdrawer__drawer{-ms-grid-row:2;grid-row:2;min-width:56px;z-index:auto}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target)>.mdw-navdrawer__drawer>.mdw-list~.mdw-list,.mdw-navdrawer[mdw-mini][mdw-hide]>.mdw-navdrawer__drawer>.mdw-list~.mdw-list{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__account,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__account{-ms-grid-columns:auto;-ms-grid-rows:auto;grid-template-columns:auto;grid-template-rows:auto}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__account:after,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__account:after{content:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-list__icon,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-list__icon{align-items:center;justify-content:center;margin-top:0;min-height:56px;min-width:100%}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-navdrawer__subtitle,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-navdrawer__subtitle{display:none}.mdw-navdrawer[mdw-mini]:not([mdw-show]):not(:target) .mdw-list__text,.mdw-navdrawer[mdw-mini][mdw-hide] .mdw-list__text{display:none}.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__drawer{border-right-width:0;height:auto}.mdw-navdrawer[mdw-floating=card]>.mdw-navdrawer__content{-ms-grid-column:3;grid-column:3}.mdw-navdrawer[mdw-floating=card]>.mdw-navdrawer__drawer{-ms-grid-column-span:1;-ms-grid-row-span:1;border-radius:2px;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);grid-column-end:span 1;grid-row-end:span 1;margin:8px}.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__toolbar{-ms-grid-column:1;-ms-grid-column-span:3;grid-column:1;grid-column-end:span 3}.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__drawer{-ms-grid-row:2;grid-row:2;z-index:auto}.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__content,.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__toolbar{-ms-grid-column:1;-ms-grid-column-span:4;grid-column:1;grid-column-end:span 4}.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__toolbar .mdw-toolbar__start{display:flex}.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__drawer .mdw-navdrawer__avatars{-ms-grid-column-span:2;grid-column-end:span 2;padding-right:16px}.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__drawer{-ms-grid-column-span:3;-ms-grid-row:1;border-radius:0;border-right-width:0;box-shadow:none;grid-column-end:span 3;grid-row:1;height:100%;margin:0;min-width:auto;position:absolute;transform:translateX(-100%);z-index:16}[dir=rtl] .mdw-navdrawer[mdw-modal]>.mdw-navdrawer__drawer{transform:translateX(100%)}.mdw-navdrawer[mdw-modal]>.mdw-navdrawer__scrim{display:block}.mdw-navdrawer[mdw-modal][id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-modal][mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer{-ms-grid-row-span:3;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);grid-row-end:span 3;transform:translateX(0)}.mdw-navdrawer[mdw-modal][id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-modal][mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim{-webkit-tap-highlight-color:transparent;background-color:rgba(0,0,0,.5);cursor:pointer;display:block;pointer-events:auto}@media screen and (max-width:599px){.mdw-navdrawer>.mdw-navdrawer__content,.mdw-navdrawer>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__content,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__content,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__content,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__toolbar{-ms-grid-column:1;-ms-grid-column-span:4;grid-column:1;grid-column-end:span 4}.mdw-navdrawer>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__toolbar .mdw-toolbar__start{display:flex}.mdw-navdrawer>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__drawer .mdw-navdrawer__avatars{-ms-grid-column-span:2;grid-column-end:span 2;padding-right:16px}.mdw-navdrawer>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__drawer{-ms-grid-column-span:3;-ms-grid-row:1;border-radius:0;border-right-width:0;box-shadow:none;grid-column-end:span 3;grid-row:1;height:100%;margin:0;min-width:auto;position:absolute;transform:translateX(-100%);z-index:16}[dir=rtl] .mdw-navdrawer>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-floating]>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-mini]>.mdw-navdrawer__drawer{transform:translateX(100%)}.mdw-navdrawer>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped]>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating]>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini]>.mdw-navdrawer__scrim{display:block}.mdw-navdrawer[id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped][id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped][mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating][id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating][mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini][id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini][mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer{-ms-grid-row-span:3;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);grid-row-end:span 3;transform:translateX(0)}.mdw-navdrawer[id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped][id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped][mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating][id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating][mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini][id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini][mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim{-webkit-tap-highlight-color:transparent;background-color:rgba(0,0,0,.5);cursor:pointer;display:block;pointer-events:auto}}@media screen and (max-width:1279px){.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__content,.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__content,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__content,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__toolbar,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__content,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__toolbar{-ms-grid-column:1;-ms-grid-column-span:4;grid-column:1;grid-column-end:span 4}.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__toolbar .mdw-toolbar__start,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__toolbar .mdw-toolbar__start{display:flex}.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__drawer .mdw-navdrawer__avatars,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__drawer .mdw-navdrawer__avatars{-ms-grid-column-span:2;grid-column-end:span 2;padding-right:16px}.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__drawer{-ms-grid-column-span:3;-ms-grid-row:1;border-radius:0;border-right-width:0;box-shadow:none;grid-column-end:span 3;grid-row:1;height:100%;margin:0;min-width:auto;position:absolute;transform:translateX(-100%);z-index:16}[dir=rtl] .mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__drawer,[dir=rtl] .mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__drawer{transform:translateX(100%)}.mdw-navdrawer:not([mdw-dismissible])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])>.mdw-navdrawer__scrim{display:block}.mdw-navdrawer:not([mdw-dismissible])[id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__drawer,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__drawer{-ms-grid-row-span:3;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);grid-row-end:span 3;transform:translateX(0)}.mdw-navdrawer:not([mdw-dismissible])[id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-clipped]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-floating]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])[id]:target>.mdw-navdrawer__scrim,.mdw-navdrawer[mdw-mini]:not([mdw-dismissible])[mdw-show]:not([mdw-hide])>.mdw-navdrawer__scrim{-webkit-tap-highlight-color:transparent;background-color:rgba(0,0,0,.5);cursor:pointer;display:block;pointer-events:auto}}.mdw-layout{-ms-grid-columns:1fr [12];-ms-grid-rows:auto;border-color:transparent;border-style:none solid;border-width:24px;display:flex;flex-wrap:wrap;grid-auto-flow:row;grid-auto-rows:auto;grid-template-columns:repeat(12,1fr);margin-left:-24px;margin-top:-24px}.mdw-layout[mdw-grid]{display:grid;display:-ms-grid}.mdw-layout[mdw-dense]{grid-auto-flow:row dense}.mdw-layout[mdw-stretch]>.mdw-layout__item{flex-grow:1}.mdw-layout[mdw-center]{justify-content:center}.mdw-layout[mdw-margin-bottom]{border-bottom-style:solid}.mdw-layout[mdw-margin-top]{border-top-style:solid}.mdw-layout[mdw-margin="0"]{border-width:0}.mdw-layout[mdw-gutter="0"]{margin-left:0;margin-top:0}.mdw-layout[mdw-gutter="0"]>.mdw-layout__item{border-width:0}.mdw-layout[mdw-margin="8"]{border-width:8px}.mdw-layout[mdw-gutter="8"]{margin-left:-8px;margin-top:-8px}.mdw-layout[mdw-gutter="8"]>.mdw-layout__item{border-width:8px}.mdw-layout[mdw-margin="16"]{border-width:16px}.mdw-layout[mdw-gutter="16"]{margin-left:-16px;margin-top:-16px}.mdw-layout[mdw-gutter="16"]>.mdw-layout__item{border-width:16px}.mdw-layout[mdw-margin="24"]{border-width:24px}.mdw-layout[mdw-gutter="24"]{margin-left:-24px;margin-top:-24px}.mdw-layout[mdw-gutter="24"]>.mdw-layout__item{border-width:24px}.mdw-layout[mdw-margin="40"]{border-width:40px}.mdw-layout[mdw-gutter="40"]{margin-left:-40px;margin-top:-40px}.mdw-layout[mdw-gutter="40"]>.mdw-layout__item{border-width:40px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout{border-width:16px;margin-left:-16px;margin-top:-16px}.mdw-layout>.mdw-layout__item{border-width:16px}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout[mdw-margin-mobile][mdw-margin-mobile="0"]{border-width:0}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="0"]{margin-left:0;margin-top:0}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="0"]>.mdw-layout__item{border-width:0}.mdw-layout[mdw-margin-mobile][mdw-margin-mobile="8"]{border-width:8px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="8"]{margin-left:-8px;margin-top:-8px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="8"]>.mdw-layout__item{border-width:8px}.mdw-layout[mdw-margin-mobile][mdw-margin-mobile="16"]{border-width:16px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="16"]{margin-left:-16px;margin-top:-16px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="16"]>.mdw-layout__item{border-width:16px}.mdw-layout[mdw-margin-mobile][mdw-margin-mobile="24"]{border-width:24px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="24"]{margin-left:-24px;margin-top:-24px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="24"]>.mdw-layout__item{border-width:24px}.mdw-layout[mdw-margin-mobile][mdw-margin-mobile="40"]{border-width:40px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="40"]{margin-left:-40px;margin-top:-40px}.mdw-layout[mdw-gutter-mobile][mdw-gutter-mobile="40"]>.mdw-layout__item{border-width:40px}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-layout[mdw-margin-tablet][mdw-margin-tablet="0"]{border-width:0}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="0"]{margin-left:0;margin-top:0}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="0"]>.mdw-layout__item{border-width:0}.mdw-layout[mdw-margin-tablet][mdw-margin-tablet="8"]{border-width:8px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="8"]{margin-left:-8px;margin-top:-8px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="8"]>.mdw-layout__item{border-width:8px}.mdw-layout[mdw-margin-tablet][mdw-margin-tablet="16"]{border-width:16px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="16"]{margin-left:-16px;margin-top:-16px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="16"]>.mdw-layout__item{border-width:16px}.mdw-layout[mdw-margin-tablet][mdw-margin-tablet="24"]{border-width:24px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="24"]{margin-left:-24px;margin-top:-24px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="24"]>.mdw-layout__item{border-width:24px}.mdw-layout[mdw-margin-tablet][mdw-margin-tablet="40"]{border-width:40px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="40"]{margin-left:-40px;margin-top:-40px}.mdw-layout[mdw-gutter-tablet][mdw-gutter-tablet="40"]>.mdw-layout__item{border-width:40px}}.mdw-layout__item{border-color:transparent;border-style:solid none none solid;border-width:24px;box-sizing:border-box;display:flex;flex-basis:8.33333%;flex-grow:0;flex-shrink:1;transition-duration:175ms;transition-property:flex-basis;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-layout__item[mdw-rowspan="2"]{-ms-grid-row-span:span 2;grid-row-end:span 2}.mdw-layout__item[mdw-rowspan="3"]{-ms-grid-row-span:span 3;grid-row-end:span 3}.mdw-layout__item[mdw-rowspan="4"]{-ms-grid-row-span:span 4;grid-row-end:span 4}.mdw-layout__item[mdw-rowspan="5"]{-ms-grid-row-span:span 5;grid-row-end:span 5}.mdw-layout__item[mdw-rowspan="6"]{-ms-grid-row-span:span 6;grid-row-end:span 6}.mdw-layout__item[mdw-rowspan="7"]{-ms-grid-row-span:span 7;grid-row-end:span 7}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-layout__item{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-layout__item{transition-duration:.39s}}.mdw-layout__item[mdw-colspan="2"]{-ms-grid-column-span:span 12;flex-basis:16.66667%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="3"]{-ms-grid-column-span:span 12;flex-basis:25%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="4"]{-ms-grid-column-span:span 12;flex-basis:33.33333%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="5"]{-ms-grid-column-span:span 12;flex-basis:41.66667%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="6"]{-ms-grid-column-span:span 12;flex-basis:50%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="7"]{-ms-grid-column-span:span 12;flex-basis:58.33333%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="8"]{-ms-grid-column-span:span 12;flex-basis:66.66667%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="9"]{-ms-grid-column-span:span 12;flex-basis:75%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="10"]{-ms-grid-column-span:span 12;flex-basis:83.33333%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="11"]{-ms-grid-column-span:span 12;flex-basis:91.66667%;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="25%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout__item[mdw-colspan="50%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-layout__item[mdw-colspan="75%"]{-ms-grid-column-span:9;grid-column-end:span 9}.mdw-layout__item[mdw-colspan="100%"]{-ms-grid-column-span:12;grid-column-end:span 12}.mdw-layout__item[mdw-colspan="25%"]{flex-basis:25%}.mdw-layout__item[mdw-colspan="50%"]{flex-basis:50%}.mdw-layout__item[mdw-colspan="75%"]{flex-basis:75%}.mdw-layout__item[mdw-colspan="100%"]{flex-basis:100%}.mdw-layout__item>:first-child{flex:auto;max-height:100%;max-width:100%}.mdw-layout[mdw-columns="8"]{-ms-grid-columns:1fr [8];grid-template-columns:repeat(8,1fr)}.mdw-layout[mdw-columns="8"] .mdw-layout__item{flex-basis:12.5%}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="2"]{-ms-grid-column-span:span 8;flex-basis:25%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="3"]{-ms-grid-column-span:span 8;flex-basis:37.5%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="4"]{-ms-grid-column-span:span 8;flex-basis:50%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="5"]{-ms-grid-column-span:span 8;flex-basis:62.5%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="6"]{-ms-grid-column-span:span 8;flex-basis:75%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="7"]{-ms-grid-column-span:span 8;flex-basis:87.5%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="8"]{-ms-grid-column-span:span 8;flex-basis:100%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="9"]{-ms-grid-column-span:span 8;flex-basis:112.5%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="10"]{-ms-grid-column-span:span 8;flex-basis:125%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="11"]{-ms-grid-column-span:span 8;flex-basis:137.5%;grid-column-end:span 8}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}@media screen and (max-width:839px){.mdw-layout{-ms-grid-columns:1fr [8];grid-template-columns:repeat(8,1fr)}.mdw-layout__item{flex-basis:12.5%}.mdw-layout__item[mdw-colspan="2"]{-ms-grid-column-span:span 8;flex-basis:25%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="3"]{-ms-grid-column-span:span 8;flex-basis:37.5%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="4"]{-ms-grid-column-span:span 8;flex-basis:50%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="5"]{-ms-grid-column-span:span 8;flex-basis:62.5%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="6"]{-ms-grid-column-span:span 8;flex-basis:75%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="7"]{-ms-grid-column-span:span 8;flex-basis:87.5%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="8"]{-ms-grid-column-span:span 8;flex-basis:100%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="9"]{-ms-grid-column-span:span 8;flex-basis:112.5%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="10"]{-ms-grid-column-span:span 8;flex-basis:125%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="11"]{-ms-grid-column-span:span 8;flex-basis:137.5%;grid-column-end:span 8}.mdw-layout__item[mdw-colspan="25%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout__item[mdw-colspan="50%"]{-ms-grid-column-span:4;grid-column-end:span 4}.mdw-layout__item[mdw-colspan="75%"]{-ms-grid-column-span:6;grid-column-end:span 6}.mdw-layout__item[mdw-colspan="100%"]{-ms-grid-column-span:8;grid-column-end:span 8}}.mdw-layout[mdw-columns="4"]{-ms-grid-columns:1fr [4];grid-template-columns:repeat(4,1fr)}.mdw-layout[mdw-columns="4"] .mdw-layout__item{flex-basis:25%}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="2"]{-ms-grid-column-span:span 4;flex-basis:50%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="3"]{-ms-grid-column-span:span 4;flex-basis:75%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="4"]{-ms-grid-column-span:span 4;flex-basis:100%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="5"]{-ms-grid-column-span:span 4;flex-basis:125%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="6"]{-ms-grid-column-span:span 4;flex-basis:150%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="7"]{-ms-grid-column-span:span 4;flex-basis:175%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="8"]{-ms-grid-column-span:span 4;flex-basis:200%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="9"]{-ms-grid-column-span:span 4;flex-basis:225%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="10"]{-ms-grid-column-span:span 4;flex-basis:250%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="11"]{-ms-grid-column-span:span 4;flex-basis:275%;grid-column-end:span 4}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout[mdw-columns="4"] .mdw-layout__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}@media screen and (max-width:599px){.mdw-layout,.mdw-layout[mdw-columns="8"]{-ms-grid-columns:1fr [4];grid-template-columns:repeat(4,1fr)}.mdw-layout[mdw-columns="8"] .mdw-layout__item,.mdw-layout__item{flex-basis:25%}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="2"],.mdw-layout__item[mdw-colspan="2"]{-ms-grid-column-span:span 4;flex-basis:50%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="3"],.mdw-layout__item[mdw-colspan="3"]{-ms-grid-column-span:span 4;flex-basis:75%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="4"],.mdw-layout__item[mdw-colspan="4"]{-ms-grid-column-span:span 4;flex-basis:100%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="5"],.mdw-layout__item[mdw-colspan="5"]{-ms-grid-column-span:span 4;flex-basis:125%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="6"],.mdw-layout__item[mdw-colspan="6"]{-ms-grid-column-span:span 4;flex-basis:150%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="7"],.mdw-layout__item[mdw-colspan="7"]{-ms-grid-column-span:span 4;flex-basis:175%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="8"],.mdw-layout__item[mdw-colspan="8"]{-ms-grid-column-span:span 4;flex-basis:200%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="9"],.mdw-layout__item[mdw-colspan="9"]{-ms-grid-column-span:span 4;flex-basis:225%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="10"],.mdw-layout__item[mdw-colspan="10"]{-ms-grid-column-span:span 4;flex-basis:250%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="11"],.mdw-layout__item[mdw-colspan="11"]{-ms-grid-column-span:span 4;flex-basis:275%;grid-column-end:span 4}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="25%"],.mdw-layout__item[mdw-colspan="25%"]{-ms-grid-column-span:1;grid-column-end:span 1}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="50%"],.mdw-layout__item[mdw-colspan="50%"]{-ms-grid-column-span:2;grid-column-end:span 2}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="75%"],.mdw-layout__item[mdw-colspan="75%"]{-ms-grid-column-span:3;grid-column-end:span 3}.mdw-layout[mdw-columns="8"] .mdw-layout__item[mdw-colspan="100%"],.mdw-layout__item[mdw-colspan="100%"]{-ms-grid-column-span:4;grid-column-end:span 4}}.mdw-list{display:flex;flex-direction:column;margin:0;min-width:100%;padding:8px 0}.mdw-list__divider{border-top-style:solid;border-top-width:1px;height:0;min-width:100%}.mdw-list__subheader{align-items:center;display:flex;flex-direction:row;font-size:.875rem;font-weight:400;justify-content:stretch;letter-spacing:.01562rem;line-height:20px;min-height:48px;padding-left:16px;padding-right:16px}.mdw-list__subheader:first-child{margin-top:-8px}.mdw-list__item{-webkit-tap-highlight-color:transparent;align-items:center;cursor:pointer;display:flex;flex-direction:row;font-size:1rem;font-weight:400;justify-content:stretch;letter-spacing:.00937rem;line-height:20px;margin:0;min-height:48px;outline:none;overflow:hidden;padding:0 16px;position:relative;text-align:start;text-decoration:none;text-overflow:ellipsis;text-transform:none;white-space:nowrap;z-index:0}.mdw-list__item[hidden]{display:none}.mdw-list__avatar,.mdw-list__icon{align-self:flex-start;display:flex;flex-direction:row;justify-content:flex-start;margin:16px 0;max-width:56px;min-width:56px;order:-1}.mdw-list__avatar{min-height:40px}.mdw-list__expander{display:flex;flex-direction:column;position:relative}.mdw-list__expander:after,.mdw-list__expander:before{content:none;height:1px;left:0;position:absolute;right:0}.mdw-list__expander:before{top:-1}.mdw-list__expander:after{bottom:0}.mdw-list__expander[mdw-expanded]:after,.mdw-list__expander[mdw-expanded]:before{content:""}.mdw-list__expander[mdw-theme-color][mdw-expanded] .mdw-list__item:first-child{color:inherit}.mdw-list__expander>.mdw-list__item{animation-duration:.15s;animation-fill-mode:forwards;animation-timing-function:cubic-bezier(.4,0,1,1);flex-basis:auto}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__expander>.mdw-list__item{animation-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-list__expander>.mdw-list__item{animation-duration:.2535s}}.mdw-list__expander>.mdw-list__item:not(:first-child){animation-name:collapseRow;flex-basis:0}.mdw-list__expander>.mdw-list__item:first-child .mdw-list__secondary{min-height:48px;pointer-events:none;transform:rotate(0deg);transition-duration:175ms;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__expander>.mdw-list__item:first-child .mdw-list__secondary{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-list__expander>.mdw-list__item:first-child .mdw-list__secondary{transition-duration:.39s}}.mdw-list__expander[mdw-expanded]>.mdw-list__item:first-child .mdw-list__secondary{transform:rotate(180deg)}.mdw-list__expander[mdw-expanded]>.mdw-list__item:not(:first-child){animation-duration:185ms;animation-name:expandRow;animation-timing-function:cubic-bezier(0,0,.2,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__expander[mdw-expanded]>.mdw-list__item:not(:first-child){animation-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-list__expander[mdw-expanded]>.mdw-list__item:not(:first-child){animation-duration:.2925s}}@keyframes expandRow{0%{flex-basis:0;min-height:0}99.99%{flex-basis:0;min-height:48px}to{flex-basis:100%;min-height:48px}}@keyframes collapseRow{0%{flex-basis:0;min-height:48px}to{flex-basis:0;min-height:0}}.mdw-list__expand-checkbox{-moz-appearance:none;-webkit-appearance:none;appearance:none;display:none;max-height:0;max-width:0;pointer-events:none}.mdw-list__secondary{-ms-grid-column:3;-ms-grid-column-span:1;align-items:center;display:flex;flex-direction:row;grid-column:3;grid-column-end:span 1;justify-content:center;margin-left:16px;margin-right:0;min-height:56px;min-width:24px;order:1;z-index:1}html[dir=rtl] .mdw-list__secondary{margin-left:0;margin-right:16px}@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{align-items:stretch;display:flex;flex-direction:column;flex-grow:1;justify-content:flex-end;overflow-x:hidden;pointer-events:none;position:static;text-overflow:ellipsis}[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__text:after{bottom:0;content:"";height:1px;left:0;position:absolute;right:0;width:100%}[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__avatar~.mdw-list__text:after,[mdw-divider]>.mdw-list__item:not(:last-child) .mdw-list__icon~.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-line:first-child:before{content:"";display:inline-block;height:28px}.mdw-list__meta{align-self:flex-start;font-size:.75rem;font-weight:400;letter-spacing:.025rem;line-height:16px;margin-left:28px;margin-right:0}html[dir=rtl] .mdw-list__meta{margin-left:0;margin-right:28px}.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){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:not(:first-child),.mdw-list__text-line:not(:first-child){font-size:.875rem;font-weight:400;letter-spacing:.01562rem;line-height:20px}.mdw-list__text-block{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:block;display:-webkit-box;height:40px;margin-bottom:16px;max-height:40px;overflow-x:hidden;overflow-y:hidden;padding-bottom:4px;pointer-events:none;text-align:start;text-overflow:ellipsis;text-transform:none;white-space:normal}.mdw-list__item:before{bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0;transition-delay:5ms;transition-duration:.5s;transition-property:background-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-list__item>.mdw-ripple{border-radius:inherit;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{display:block!important}.mdw-list__item:after,.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:transparent;border-radius:50%;color:inherit;content:"";display:table;height:0;left:50%;opacity:.26;padding:50%;pointer-events:none;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) scale(1);transition-delay:0s,0s,.15s;transition-duration:.3s,.15s,.15s;transition-property:transform,opacity,background-color;transition-timing-function:cubic-bezier(.4,0,.6,1);user-select:none;width:0;will-change:transform,opacity,background-color}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-list__item:after,.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@supports (-ms-ime-align:auto){.mdw-list__item:after,.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-list__item:after,.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.2s;transition-duration:.4s,.2s,.2s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-list__item:after,.mdw-list__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.26s;transition-duration:.52s,.26s,.26s}}.mdw-list__item:active:after,.mdw-list__item>.mdw-ripple:active>.mdw-ripple__inner{background-color:currentColor;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0);transition-delay:0s;transition-duration:0s}.mdw-list__item[mdw-ripple]{overflow-y:visible}.mdw-list__item[mdw-ripple]:after{content:none}@keyframes rotate-clockwise{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate-counterclockwise{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@keyframes mdw-progress-dash{0%{stroke-dashoffset:123.42532}50%{stroke-dashoffset:82.46681}to{stroke-dashoffset:41.50829}}.mdw-progress-circle{height:48px;margin:8px;stroke-width:2.5;width:48px}.mdw-progress-circle svg{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:rotate-clockwise;animation-timing-function:linear;height:100%;transform:rotate(0deg);width:100%;will-change:transform}.mdw-progress-circle svg>path{fill:none;stroke:currentColor;stroke-width:inherit;transform-origin:center center}.mdw-progress-circle svg>path:first-child{animation-duration:1.5s,6s;animation-iteration-count:infinite;animation-name:mdw-progress-dash,rotate-counterclockwise;animation-timing-function:cubic-bezier(.4,0,.2,1),steps(4);stroke-dasharray:41.2334;stroke-dashoffset:105.37609;stroke-linecap:square;transform:rotate(0deg);will-change:stroke-dashoffset,transform}.mdw-progress-circle svg>path:nth-child(2){display:none;stroke-dasharray:54.97787;stroke-dashoffset:164.93361;transition-duration:1.5s;transition-property:stroke-dashoffset}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-progress-circle:not([mdw-determinate]) svg{animation-duration:.75s}}@supports (-ms-ime-align:auto){.mdw-progress-circle:not([mdw-determinate]) svg{animation-duration:.75s}}.mdw-progress-circle[mdw-determinate] svg{animation:none;transform:none;will-change:none}.mdw-progress-circle[mdw-determinate] svg>path:first-child{animation:none;display:none;transform:none;will-change:none}.mdw-progress-circle[mdw-determinate] svg>path:nth-child(2){display:inline}.mdw-progress-circle[value="100"] svg>path:nth-child(2){stroke-dashoffset:109.95574}.mdw-selection{animation-duration:185ms;display:inline-flex;flex-direction:row;position:relative;transition-duration:175ms}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-selection{animation-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-selection{animation-duration:.2925s}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-selection{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-selection{transition-duration:.39s}}.mdw-selection__input{-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;appearance:none;background-color:transparent;border-radius:50%;cursor:pointer;display:inline-flex;height:24px;margin:auto 0;opacity:0;order:1;outline:none;padding:0;transform:scale(1);transition-duration:inherit;transition-property:transform,color,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);width:24px}.mdw-selection__input:disabled{cursor:not-allowed}.mdw-selection__input::-ms-check{background-color:transparent;border-color:transparent;border-radius:50%;color:transparent}.mdw-selection__input:active:not(:disabled),.mdw-selection__input:focus{background-color:currentColor;transform:scale(2)}.mdw-selection__icon{-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;animation-duration:inherit;animation-timing-function:cubic-bezier(0,0,.2,1);appearance:none;background-color:transparent;box-sizing:border-box;cursor:pointer;display:inline-flex;height:24px;margin:auto 0;max-width:0;outline:none;padding:0;position:relative;transition-duration:inherit;transition-property:background-color,border-color;transition-timing-function:cubic-bezier(.4,0,.2,1);width:24px;z-index:1}.mdw-selection__input:disabled~.mdw-selection__icon{cursor:not-allowed}.mdw-selection__icon:before{background-color:transparent;border:2px solid;box-sizing:border-box;content:"";left:0;position:absolute;top:0;transition-duration:inherit;transition-property:border-width,border-color,background-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-selection__icon:after{content:"";position:absolute}.mdw-selection__label{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;align-items:center;cursor:pointer;display:flex;order:-1;padding-left:0;padding-right:8px;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-left:8px;padding-right:0}[dir=rtl] .mdw-selection__icon{order:1}[dir=rtl] .mdw-selection__label{padding-left:8px;padding-right:0}[dir=rtl] .mdw-selection__icon~.mdw-selection__label{padding-left:0;padding-right:8px}.mdw-selection>.mdw-selection__input[type=checkbox]~.mdw-selection__icon:before{border-radius:2px;height:18px;left:3px;top:3px;width:18px}.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{animation-duration:inherit;animation-timing-function:cubic-bezier(0,0,.2,1);height:12.73px;left:5px;margin-left:4.04px;margin-top:-.86px;top:5px;width:5.93px}.mdw-selection>.mdw-selection__input[type=checkbox]:checked~.mdw-selection__icon:after{animation-direction:normal;animation-fill-mode:forwards;animation-name:showCheck;background-color:transparent;border-bottom-style:solid;border-right-style:solid;border-width:2px;box-sizing:border-box;transform:rotate(45deg)}.mdw-selection>.mdw-selection__input[type=radio]~.mdw-selection__icon:before{border-color:currentColor;border-radius:50%;height:20px;left:2px;top:2px;width:20px}.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{background-color:currentColor;border-radius:50%;height:20px;left:2px;top:2px;transform:scale(0);transition-duration:inherit;transition-property:transform,background-color;transition-timing-function:cubic-bezier(.4,0,.2,1);width:20px}.mdw-selection>.mdw-selection__input[type=radio]:checked~.mdw-selection__icon:after{transform:scale(.5)}.mdw-selection[mdw-theme-color] .mdw-selection__input[type=checkbox]:checked:not(:active),.mdw-selection[mdw-theme-color] .mdw-selection__input[type=radio]:checked{color:inherit;opacity:.26}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]{margin-right:12px;transform:scale(1) translateX(-2px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:checked{transform:scale(1) translateX(14px)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus{transform:translateX(-2px) scale(2)}.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:active:checked,.mdw-selection[mdw-switch]>.mdw-selection__input[type=checkbox]:focus: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{border-radius:50%;border-style:none;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);height:20px;left:0;top:2px;transform:translateX(0);transition-property:background-color,transform;width:20px;z-index:1}.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{animation-name:none;border-radius:7px;border-style:none;bottom:5px;height:14px;left:0;margin:0;top:5px;transform:none;width:36px}@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)}}.mdw-slider__input{-moz-appearance:none;-webkit-appearance:none;background:transparent;color:inherit;width:100%}.mdw-slider__input:focus{outline:none}.mdw-slider__input::-ms-track{background:transparent;color:transparent;cursor:pointer}.mdw-slider__input::-moz-range-track{background-color:currentColor;border-color:transparent;color:inherit;height:2px;width:100%}.mdw-slider__input::-ms-track{background-color:currentColor;border-color:transparent;color:inherit;height:2px;width:100%}.mdw-slider__input::-webkit-slider-runnable-track{background-color:currentColor;border-color:transparent;color:inherit;height:2px;width:100%}.mdw-slider__input::-ms-thumb{background-color:currentColor;border-radius:50%;color:inherit;cursor:pointer;height:12px;width:12px}.mdw-slider__input::-moz-range-thumb{background-color:currentColor;border-radius:50%;color:inherit;cursor:pointer;height:12px;width:12px}.mdw-slider__input::-webkit-slider-thumb{-webkit-appearance:none;background-color:currentColor;border-radius:50%;color:inherit;cursor:pointer;height:12px;margin-top:-5px;width:12px}.mdw-snackbar__wrapper{position:relative;z-index:6}.mdw-snackbar__container{bottom:0;display:flex;flex-direction:row;justify-content:flex-start;left:0;position:absolute;right:0;z-index:6}.mdw-snackbar__container[mdw-position=end]{justify-content:flex-end}.mdw-snackbar__container[mdw-position=center]{justify-content:center}.mdw-snackbar{align-items:center;background:#212121;border-radius:4px;bottom:0;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);color:hsla(0,0%,100%,.87);display:flex;font-size:.875rem;font-weight:400;justify-content:space-between;letter-spacing:.01562rem;line-height:20px;max-width:100%;min-height:48px;opacity:1;padding:0 16px;position:absolute;transform:scale(1);transition-delay:0s,0s;transition-duration:185ms;transition-property:opacity,transform;transition-timing-function:cubic-bezier(0,0,.2,1);will-change:opacity,transform}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-snackbar{transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-snackbar{transition-duration:.2925s}}.mdw-snackbar[mdw-autohide]{animation-delay:0s,4s;animation-duration:185ms,.15s;animation-fill-mode:forwards;animation-name:showSnackbar,hideSnackbar;animation-timing-function:cubic-bezier(0,0,.2,1),cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-snackbar[mdw-autohide]{animation-duration:225ms,195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-snackbar[mdw-autohide]{animation-duration:.2925s,.2535s}}.mdw-snackbar[mdw-hide],.mdw-snackbar[mdw-show]{animation-name:none}.mdw-snackbar[mdw-consecutive]:not([mdw-hide]){transition-delay:.15s}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-snackbar[mdw-consecutive]:not([mdw-hide]){transition-delay:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-snackbar[mdw-consecutive]:not([mdw-hide]){transition-delay:.2535s}}.mdw-snackbar[mdw-hide]{opacity:0;transform:scale(.85);transition-delay:0s,.15s;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,1,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-snackbar[mdw-hide]{transition-delay:0s,195ms;transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-snackbar[mdw-hide]{transition-delay:0s,.2535s;transition-duration:.2535s}}.mdw-snackbar[mdw-autohide="5"]{animation-delay:0s,5s}.mdw-snackbar[mdw-autohide="6"]{animation-delay:0s,6s}.mdw-snackbar[mdw-autohide="7"]{animation-delay:0s,7s}.mdw-snackbar[mdw-autohide="8"]{animation-delay:0s,8s}.mdw-snackbar[mdw-autohide="9"]{animation-delay:0s,9s}.mdw-snackbar[mdw-autohide="10"]{animation-delay:0s,10s}@keyframes hideSnackbar{0%{opacity:1}to{opacity:0}}@keyframes showSnackbar{0%{opacity:0}to{opacity:1}}.mdw-snackbar .mdw-button{margin:6px -8px 6px 8px;order:1}html[dir=rtl] .mdw-snackbar .mdw-button{margin-left:-8px;margin-right:8px}.mdw-snackbar>span{white-space:pre-line}.mdw-snackbar>span:before{content:"";display:inline-block;height:30px}.mdw-snackbar>span:after{content:"";display:inline-block;vertical-align:-18px}@media screen and (max-width:600px){.mdw-snackbar{left:0;right: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-bottom:8px;margin-top:2px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-snackbar:after{content:"";min-height:inherit;min-width:0}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar{transform:translateX(-50%)}.mdw-snackbar__container[mdw-position=center] .mdw-snackbar[mdw-hide]{transform:translateX(-50%) scale(.85)}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=end] .mdw-snackbar{right:0}html[dir=rtl] .mdw-snackbar__container[mdw-position=end] .mdw-snackbar{left:0;right:auto}}.mdw-tab{display:flex;flex-direction:column}.mdw-tab__items{display:flex;display:grid;flex:none;flex-direction:row;grid-auto-columns:1fr;justify-content:flex-start;overflow-y:hidden;position:relative}.mdw-tab__items[mdw-scrollable]{box-sizing:border-box;display:flex;overflow-x:auto}.mdw-tab__items[mdw-scrollable]>.mdw-tab__item{flex:none;max-width:100%;min-width:90px}.mdw-tab__items[mdw-scrollable]>.mdw-tab__indicator{margin-left:52px}.mdw-tab__items[mdw-scrollable]:after,.mdw-tab__items[mdw-scrollable]:before{content:"";min-width:52px}.mdw-tab__indicator{background-color:currentColor;bottom:0;height:2px;left:0;position:absolute;right:auto;transform-origin:left center;transition-duration:175ms;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);width:0}html[dir=rtl] .mdw-tab__indicator{left:auto;right:0}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-tab__indicator{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-tab__indicator{transition-duration:.39s}}.mdw-tab__indicator:nth-child(2){width:100%}.mdw-tab__indicator:nth-child(3){width:50%}.mdw-tab__indicator:nth-child(4){width:33.33333%}.mdw-tab__indicator:nth-child(5){width:25%}.mdw-tab__indicator:nth-child(6){width:20%}.mdw-tab__indicator:nth-child(7){width:16.66667%}.mdw-tab__indicator:nth-child(8){width:14.28571%}.mdw-tab__indicator:nth-child(9){width:12.5%}.mdw-tab__input:checked:first-of-type~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:first-of-type~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:first-of-type~.mdw-tab__indicator{transform:translateX(0)}html[dir=rtl] .mdw-tab__input:checked:first-of-type~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:first-of-type~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:first-of-type~.mdw-tab__indicator{transform:translateX(0)}.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(2)~.mdw-tab__indicator{transform:translateX(100%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(2)~.mdw-tab__indicator{transform:translateX(-100%)}.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(3)~.mdw-tab__indicator{transform:translateX(200%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(3)~.mdw-tab__indicator{transform:translateX(-200%)}.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(4)~.mdw-tab__indicator{transform:translateX(300%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(4)~.mdw-tab__indicator{transform:translateX(-300%)}.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(5)~.mdw-tab__indicator{transform:translateX(400%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(5)~.mdw-tab__indicator{transform:translateX(-400%)}.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(6)~.mdw-tab__indicator{transform:translateX(500%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(6)~.mdw-tab__indicator{transform:translateX(-500%)}.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(7)~.mdw-tab__indicator{transform:translateX(600%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(7)~.mdw-tab__indicator{transform:translateX(-600%)}.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items>.mdw-tab__indicator,.mdw-tab__item[mdw-selected]:nth-of-type(8)~.mdw-tab__indicator{transform:translateX(700%)}html[dir=rtl] .mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items>.mdw-tab__indicator,html[dir=rtl] .mdw-tab__item[mdw-selected]:nth-of-type(8)~.mdw-tab__indicator{transform:translateX(-700%)}.mdw-tab__indicator[mdw-js-indicator]{transform:translateX(0);width:1px}.mdw-tab__item{-moz-user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;align-items:center;border-radius:0;box-shadow:none;box-sizing:content-box;cursor:pointer;display:flex;flex:auto;flex-direction:column;grid-row:1;min-height:48px;overflow:hidden;position:relative;user-select:none;z-index:0}.mdw-tab__input:checked+.mdw-tab__item{cursor:default}.mdw-tab__item>.mdw-ripple{border-radius:inherit;bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{display:block!important}.mdw-tab__item:after,.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;background-color:transparent;border-radius:50%;color:inherit;content:"";display:table;height:0;left:50%;opacity:.26;padding:50%;pointer-events:none;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) scale(1);transition-delay:0s,0s,.15s;transition-duration:.3s,.15s,.15s;transition-property:transform,opacity,background-color;transition-timing-function:cubic-bezier(.4,0,.6,1);user-select:none;width:0;will-change:transform,opacity,background-color}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.mdw-tab__item:after,.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@supports (-ms-ime-align:auto){.mdw-tab__item:after,.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{opacity:.26!important}}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-tab__item:after,.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.2s;transition-duration:.4s,.2s,.2s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-tab__item:after,.mdw-tab__item>.mdw-ripple>.mdw-ripple__inner{transition-delay:0s,0s,.26s;transition-duration:.52s,.26s,.26s}}.mdw-tab__item:active:after,.mdw-tab__item>.mdw-ripple:active>.mdw-ripple__inner{background-color:currentColor;opacity:0;transform:translateX(-50%) translateY(-50%) scale(0);transition-delay:0s;transition-duration:0s}.mdw-tab__item[mdw-ripple]{overflow:visible}.mdw-tab__item[mdw-ripple]:after{content:none}.mdw-tab__icon{margin-bottom:-20px;margin-top:12px;pointer-events:none;transition-duration:175ms;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-tab__icon:after{content:"";display:inline-block;vertical-align:-20px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-tab__icon{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-tab__icon{transition-duration:.39s}}.mdw-tab__label{box-sizing:border-box;font-size:.875rem;font-weight:500;letter-spacing:.07812rem;line-height:16px;margin-bottom:auto;margin-top:auto;padding:0 16px;pointer-events:none;text-align:center;text-transform:uppercase;transition-duration:175ms;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-tab__label{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-tab__label{transition-duration:.39s}}.mdw-tab__icon~.mdw-tab__label{display:block;margin:0;min-height:0}.mdw-tab__icon~.mdw-tab__label:before{content:"";display:inline-block;height:20px}.mdw-tab__icon~.mdw-tab__label:after{content:"";display:inline-block;vertical-align:-16px}.mdw-tab__input{-moz-appearance:none;-webkit-appearance:none;display:inline-block;height:0;margin:0;outline:none;padding:0;pointer-events:none;width:0}.mdw-tab__item[mdw-selected]>.mdw-tab__icon,.mdw-tab__item[mdw-selected]>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:first-of-type~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:first-child>.mdw-tab__icon,.mdw-tab__input:checked:first-of-type~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:first-child>.mdw-tab__label,.mdw-tab__input:checked:first-of-type~.mdw-tab__items>.mdw-tab__item:first-child>.mdw-tab__icon,.mdw-tab__input:checked:first-of-type~.mdw-tab__items>.mdw-tab__item:first-child>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(2)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(2)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items>.mdw-tab__item:nth-child(2)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__items>.mdw-tab__item:nth-child(2)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(3)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(3)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items>.mdw-tab__item:nth-child(3)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__items>.mdw-tab__item:nth-child(3)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(4)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(4)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items>.mdw-tab__item:nth-child(4)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__items>.mdw-tab__item:nth-child(4)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(5)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(5)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items>.mdw-tab__item:nth-child(5)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__items>.mdw-tab__item:nth-child(5)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(6)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(6)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items>.mdw-tab__item:nth-child(6)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__items>.mdw-tab__item:nth-child(6)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(7)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(7)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items>.mdw-tab__item:nth-child(7)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__items>.mdw-tab__item:nth-child(7)>.mdw-tab__label{color:inherit}.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(8)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items-wrapper .mdw-tab__items>.mdw-tab__item:nth-child(8)>.mdw-tab__label,.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items>.mdw-tab__item:nth-child(8)>.mdw-tab__icon,.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__items>.mdw-tab__item:nth-child(8)>.mdw-tab__label{color:inherit}.mdw-tab__content{align-items:stretch;display:flex;flex-direction:row;flex-grow:1;overflow-x:hidden;position:relative}.mdw-tab__content-item{flex-basis:100%;flex-shrink:0;max-width:100%;transition-delay:0s,175ms;transition-duration:175ms,0s;transition-property:transform,visibility;transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-tab__content-item{transition-delay:0s,.3s;transition-duration:.3s,0s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-tab__content-item{transition-delay:0s,.39s;transition-duration:.39s,0s}}.mdw-tab__content[mdw-selected-index="0"]>.mdw-tab__content-item,.mdw-tab__input:checked:first-of-type~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(0)}.mdw-tab__content[mdw-selected-index="0"]>.mdw-tab__content-item:first-child,.mdw-tab__input:checked:first-of-type~.mdw-tab__content>.mdw-tab__content-item:first-child{transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="0"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:first-of-type~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(0)}.mdw-tab__content[mdw-selected-index="1"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-100%)}.mdw-tab__content[mdw-selected-index="1"]>.mdw-tab__content-item:nth-child(2),.mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__content>.mdw-tab__content-item:nth-child(2){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="1"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(2)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(100%)}.mdw-tab__content[mdw-selected-index="2"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-200%)}.mdw-tab__content[mdw-selected-index="2"]>.mdw-tab__content-item:nth-child(3),.mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__content>.mdw-tab__content-item:nth-child(3){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="2"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(3)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(200%)}.mdw-tab__content[mdw-selected-index="3"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-300%)}.mdw-tab__content[mdw-selected-index="3"]>.mdw-tab__content-item:nth-child(4),.mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__content>.mdw-tab__content-item:nth-child(4){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="3"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(4)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(300%)}.mdw-tab__content[mdw-selected-index="4"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-400%)}.mdw-tab__content[mdw-selected-index="4"]>.mdw-tab__content-item:nth-child(5),.mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__content>.mdw-tab__content-item:nth-child(5){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="4"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(5)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(400%)}.mdw-tab__content[mdw-selected-index="5"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-500%)}.mdw-tab__content[mdw-selected-index="5"]>.mdw-tab__content-item:nth-child(6),.mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__content>.mdw-tab__content-item:nth-child(6){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="5"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(6)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(500%)}.mdw-tab__content[mdw-selected-index="6"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-600%)}.mdw-tab__content[mdw-selected-index="6"]>.mdw-tab__content-item:nth-child(7),.mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__content>.mdw-tab__content-item:nth-child(7){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="6"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(7)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(600%)}.mdw-tab__content[mdw-selected-index="7"]>.mdw-tab__content-item,.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(-700%)}.mdw-tab__content[mdw-selected-index="7"]>.mdw-tab__content-item:nth-child(8),.mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__content>.mdw-tab__content-item:nth-child(8){transition-delay:0s,0s;visibility:visible}html[dir=rtl] .mdw-tab__content[mdw-selected-index="7"]>.mdw-tab__content-item,html[dir=rtl] .mdw-tab__input:checked:nth-of-type(8)~.mdw-tab__content>.mdw-tab__content-item{transform:translateX(700%)}.mdw-tab__content[mdw-scrollsnap]{-ms-scroll-snap-type:x mandatory;overflow-x:scroll;scroll-snap-type:x mandatory}.mdw-tab__content[mdw-scrollsnap] .mdw-tab__content-item{scroll-snap-align:start none}.mdw-textfield{-ms-grid-columns:12px auto auto 1fr auto auto 8px;-ms-grid-rows:auto auto;align-items:baseline;display:grid;display:-ms-grid;grid-template-columns:12px auto auto 1fr auto auto 8px;grid-template-rows:auto auto;padding:8px 0;position:relative;transition-duration:175ms;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-textfield[mdw-solo]{-ms-grid-columns:0 auto auto 1fr auto auto 0;grid-template-columns:0 auto auto 1fr auto auto 0;padding:0}.mdw-textfield[mdw-solo] .mdw-textfield__input{-ms-grid-row-align:center;align-self:center;margin:0}.mdw-textfield[mdw-solo] .mdw-textfield__border{display:none}.mdw-textfield:not([mdw-solo]){font-size:1rem;font-weight:400;letter-spacing:.00937rem;line-height:20px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield{transition-duration:.39s}}.mdw-textfield:before{-ms-grid-column:4;-ms-grid-row:1;content:"";display:inline-block;grid-column:4;grid-row:1;height:1em;margin-bottom:16px;margin-top:20px;min-height:20px;vertical-align:baseline}.mdw-textfield[mdw-outlined] .mdw-textfield__icon,.mdw-textfield[mdw-outlined] .mdw-textfield__prefix,.mdw-textfield[mdw-outlined] .mdw-textfield__suffix,.mdw-textfield[mdw-solo] .mdw-textfield__icon,.mdw-textfield[mdw-solo] .mdw-textfield__prefix,.mdw-textfield[mdw-solo] .mdw-textfield__suffix{-ms-grid-row-align:center;align-self:center;margin-bottom:0;margin-top:0}.mdw-textfield[mdw-outlined] textarea.mdw-textfield__input~.mdw-textfield__prefix,.mdw-textfield[mdw-outlined] textarea.mdw-textfield__input~.mdw-textfield__suffix,.mdw-textfield[mdw-solo] textarea.mdw-textfield__input~.mdw-textfield__prefix,.mdw-textfield[mdw-solo] textarea.mdw-textfield__input~.mdw-textfield__suffix{-ms-grid-row-align:start;align-self:flex-start;margin-bottom:8px;margin-top:8px}.mdw-textfield__prefix,.mdw-textfield__suffix{-ms-grid-row:1;grid-row:1;pointer-events:none;transition-duration:175ms;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:color}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__prefix,.mdw-textfield__suffix{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__prefix,.mdw-textfield__suffix{transition-duration:.39s}}.mdw-textfield__prefix{-ms-grid-column:3;grid-column:3}.mdw-textfield__suffix{-ms-grid-column:6;grid-column:6}.mdw-textfield__prefix:after,.mdw-textfield__suffix:before{content:"";display:inline-block;width:4px}.mdw-textfield__outline-gap{-ms-grid-column:2;-ms-grid-row:1;bottom:0;grid-column:2;grid-row:1;left:12px;margin-bottom:-1px;margin-top:-2px;position:absolute;right:12px;top:2px}.mdw-textfield__outline-gap:after,.mdw-textfield__outline-gap:before{border-color:inherit;border-top-style:solid;border-top-width:1px;content:none;position:absolute;top:0;transform:scaleX(0);transition-delay:1ms;transition-duration:87.5ms;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__outline-gap:after,.mdw-textfield__outline-gap:before{transition-duration:.15s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__outline-gap:after,.mdw-textfield__outline-gap:before{transition-duration:195ms}}.mdw-textfield__outline-gap:before,html[dir=rtl] .mdw-textfield__outline-gap:after{left:0;right:50%;transform-origin:left center}.mdw-textfield__outline-gap:after,html[dir=rtl] .mdw-textfield__outline-gap:before{left:50%;right:0;transform-origin:right center}.mdw-textfield__border{-ms-grid-column:1;-ms-grid-column-span:7;-ms-grid-row:1;-ms-grid-row-align:stretch;align-self:stretch;border:1px transparent;border-bottom:1px solid;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:4px;border-top-right-radius:4px;cursor:pointer;display:flex;grid-column-end:span 7;grid-column-start:1;grid-row:1;position:relative;transition-delay:1ms;transition-duration:175ms;transition-property:color,border-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.mdw-textfield__input:focus~.mdw-textfield__border{pointer-events:none}.mdw-textfield__input:disabled~.mdw-textfield__border{cursor:not-allowed}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__border{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__border{transition-duration:.39s}}.mdw-textfield__border:after,.mdw-textfield__border:before{border-bottom-style:solid;border-radius:inherit;border-width:2px;bottom:-2px;color:transparent;content:"";height:100%;left:0;position:absolute;right:0;transform:scaleX(0) translateY(-.5px);transition-delay:1ms;transition-duration:185ms;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,1,1);will-change:transform}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__border:after,.mdw-textfield__border:before{transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__border:after,.mdw-textfield__border:before{transition-duration:.2925s}}.mdw-textfield[mdw-outlined] .mdw-textfield__border{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;transition:none}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after,.mdw-textfield[mdw-outlined] .mdw-textfield__border:before{bottom:auto;color:inherit;content:"";left:auto;position:relative;right:auto;top:auto;transform:none;transition:none;will-change:auto}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after{flex-grow:1}.mdw-textfield[mdw-outlined] .mdw-textfield__border:before,html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__border:after{border-bottom-left-radius:inherit;border-bottom-right-radius:0;border-color:currentColor transparent transparent currentColor;border-style:solid none solid solid;border-top-left-radius:inherit;border-top-right-radius:0;border-width:inherit;margin-left:-1px;margin-right:0;margin-top:-1px;min-width:9px}.mdw-textfield[mdw-outlined] .mdw-textfield__border:after,html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__border:before{border-bottom-left-radius:0;border-bottom-right-radius:inherit;border-color:currentColor currentColor transparent transparent;border-style:solid solid solid none;border-top-left-radius:0;border-top-right-radius:inherit;border-width:inherit;margin-left:0;margin-right:-1px;margin-top:-1px;min-width:7px}.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap{bottom:auto;color:inherit;left:auto;margin-bottom:-1px;margin-top:-1px;max-width:calc(100% - 24px);position:relative;right:auto;top:auto}.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-outlined] .mdw-textfield__border .mdw-textfield__outline-gap:before{border-radius:0;border-style:solid none none;border-top-color:currentColor;color:inherit;content:""}.mdw-textfield[mdw-outlined] .mdw-textfield__input{-ms-grid-row-align:center;align-self:center;border-left:2px solid transparent;border-right:none;margin:8px 0}html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__input{border-left:none;border-right:2px solid transparent}.mdw-textfield[mdw-outlined] .mdw-textfield__label{padding:0 4px;position:relative;top:0;transform:translateY(-50%)}.mdw-textfield[mdw-outlined] .mdw-textfield__label:before{content:"";display:inline-block;height:0}.mdw-textfield[mdw-value-empty]>input.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__label,.mdw-textfield[mdw-value-empty]>textarea.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__label{font-size:1rem;font-weight:400;letter-spacing:.00937rem;line-height:20px;top:50%;transform:translateY(-50%)}.mdw-textfield[mdw-value-empty]>input.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-value-empty]>input.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:before,.mdw-textfield[mdw-value-empty]>textarea.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-value-empty]>textarea.mdw-textfield__input:not(:focus)~.mdw-textfield__border .mdw-textfield__outline-gap:before{transform:scaleX(1)}.mdw-textfield>input.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__label,.mdw-textfield>textarea.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__label{font-size:1rem;font-weight:400;letter-spacing:.00937rem;line-height:20px;top:50%;transform:translateY(-50%)}.mdw-textfield>input.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield>input.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:before,.mdw-textfield>textarea.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield>textarea.mdw-textfield__input:not(:focus):placeholder-shown~.mdw-textfield__border .mdw-textfield__outline-gap:before{transform:scaleX(1)}.mdw-textfield__label{-ms-grid-row-align:start;align-self:flex-start;font-size:.75rem;font-weight:400;left:0;letter-spacing:.025rem;line-height:16px;margin:0;overflow-x:hidden;padding:0;pointer-events:none;position:absolute;right:0;text-overflow:ellipsis;top:0;transform:translateY(0);transition-duration:175ms;transition-property:top,transform,font-size,color;transition-timing-function:cubic-bezier(.4,0,.2,1);white-space:nowrap;will-change:top,transform,font-size}.mdw-textfield__label:before{content:"";display:inline-block;height:20px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__label{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__label{transition-duration:.39s}}.mdw-textfield__signifier{-ms-grid-column:2;-ms-grid-row:1;-ms-grid-row-align:center;align-self:center;grid-column:2;grid-row:1;margin-bottom:8px;margin-top:8px}.mdw-textfield__signifier:after{content:"";display:inline-block;width:8px}.mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-left:32px;margin-right:0}html[dir=rtl] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-left:0;margin-right:32px}.mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border:before{padding-left:0;padding-right:32px}html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border:before{padding-left:32px;padding-right:0}.mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-left:0;max-width:calc(100% - 56px)}html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__signifier~.mdw-textfield__border .mdw-textfield__outline-gap{margin-right:0}.mdw-textfield__input{-moz-appearance:none;-ms-grid-column:4;-ms-grid-column-span:2;-ms-grid-row:1;-webkit-appearance:none;appearance:none;background:none;border:none;box-shadow:none;box-sizing:border-box;font-family:inherit;font-size:inherit;font-weight:inherit;grid-column-end:span 2;grid-column-start:4;grid-row:1;letter-spacing:inherit;line-height:inherit;margin:0;min-width:0;outline:none;padding:0;width:100%;z-index:1}.mdw-textfield__input:not(:focus){cursor:pointer}.mdw-textfield__input:disabled{cursor:not-allowed}.mdw-textfield__input::placeholder{transition-delay:1ms;transition-duration:175ms;transition-property:color;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:color}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__input::placeholder{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__input::placeholder{transition-duration:.39s}}.mdw-textfield__icon,.mdw-textfield__input,.mdw-textfield__prefix,.mdw-textfield__suffix{-ms-grid-row-align:center;margin-bottom:8px;margin-top:20px}textarea.mdw-textfield__input{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto;padding-bottom:0;padding-left:0;padding-right:16px;resize:none}[dir=rtl] textarea.mdw-textfield__input{padding-left:16px;padding-right:0}.mdw-textfield[mdw-autosize]>textarea.mdw-textfield__input{min-height:1em}select.mdw-textfield__input{-webkit-tap-highlight-color:transparent;cursor:pointer;padding-left:0;padding-right:24px}select.mdw-textfield__input option{-moz-appearance:none;-webkit-appearance:none;appearance:none;font-family:inherit;font-size:inherit;font-weight:inherit}select.mdw-textfield__input::-ms-expand{display:none}[dir=rtl] select.mdw-textfield__input{padding-left:24px;padding-right:0}select.mdw-textfield__input:-moz-focusring{color:#000;text-shadow:none}.mdw-textfield__error-text{transform:translateY(-25%)}.mdw-textfield__error-text,.mdw-textfield__helper-text{-ms-grid-column:3;-ms-grid-column-span:4;-ms-grid-row:2;font-size:.75rem;font-weight:400;grid-column:3;grid-column-end:span 4;grid-row:2;letter-spacing:.025rem;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdw-textfield__error-text:before,.mdw-textfield__helper-text:before{content:"";display:inline-block;height:16px}.mdw-textfield__icon{-ms-grid-column:5;-ms-grid-row:1;display:flex;grid-column:5;grid-row:1;height:24px;justify-content:center;margin-bottom:16px;margin-top:16px;width:24px}.mdw-textfield__icon[mdw-dropdown]{pointer-events:none}.mdw-textfield__icon[mdw-dropdown]:after{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;content:"";margin-left:auto;margin-right:auto;margin-top:10px;width:0}.mdw-textfield__dropdown{-ms-grid-column:1;-ms-grid-column-span:7;-ms-grid-row:2;border-bottom-left-radius:4px;border-bottom-right-radius:4px;box-shadow:none;grid-column:1;grid-column-end:span 7;grid-row:2;margin-bottom:8px;margin-top:0;max-height:0;max-width:100%;overflow:hidden;position:absolute;transition-duration:.15s;transition-property:box-shadow,max-height;transition-timing-function:cubic-bezier(0,0,.2,1);width:100%;z-index:2}.mdw-textfield[mdw-outlined] .mdw-textfield__dropdown{border-top-left-radius:4px;border-top-right-radius:4px;margin-top:8px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__dropdown{transition-duration:195ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__dropdown{transition-duration:.2535s}}.mdw-textfield__dropdown[mdw-type=list]{-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:auto}.mdw-textfield__dropdown:active:not([mdw-hide]),.mdw-textfield__dropdown[mdw-show]:not([mdw-hide]),input:focus~.mdw-textfield__dropdown:not([mdw-hide]){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);transition-duration:185ms;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-textfield__dropdown:active:not([mdw-hide])[mdw-type=list],.mdw-textfield__dropdown[mdw-show]:not([mdw-hide])[mdw-type=list],input:focus~.mdw-textfield__dropdown:not([mdw-hide])[mdw-type=list]{max-height:300px}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__dropdown:active:not([mdw-hide]),.mdw-textfield__dropdown[mdw-show]:not([mdw-hide]),input:focus~.mdw-textfield__dropdown:not([mdw-hide]){transition-duration:225ms}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__dropdown:active:not([mdw-hide]),.mdw-textfield__dropdown[mdw-show]:not([mdw-hide]),input:focus~.mdw-textfield__dropdown:not([mdw-hide]){transition-duration:.2925s}}.mdw-textfield:active>.mdw-textfield__input:not(:disabled):invalid~.mdw-textfield__border .mdw-textfield__outline-gap,.mdw-textfield>.mdw-textfield__input:not(:disabled):focus:invalid~.mdw-textfield__border .mdw-textfield__outline-gap{animation-delay:175ms;animation-duration:.25s;animation-name:labelShake}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield:active>.mdw-textfield__input:not(:disabled):invalid~.mdw-textfield__border .mdw-textfield__outline-gap,.mdw-textfield>.mdw-textfield__input:not(:disabled):focus:invalid~.mdw-textfield__border .mdw-textfield__outline-gap{animation-delay:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield:active>.mdw-textfield__input:not(:disabled):invalid~.mdw-textfield__border .mdw-textfield__outline-gap,.mdw-textfield>.mdw-textfield__input:not(:disabled):focus:invalid~.mdw-textfield__border .mdw-textfield__outline-gap{animation-delay:.39s}}.mdw-textfield:not([mdw-outlined]):active>.mdw-textfield__input:not(:disabled):invalid~.mdw-textfield__border:after,.mdw-textfield:not([mdw-outlined]):active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:before,.mdw-textfield:not([mdw-outlined])>.mdw-textfield__input:not(:disabled):focus:invalid~.mdw-textfield__border:after,.mdw-textfield:not([mdw-outlined])>.mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:before{transform:scaleX(1) translateY(-.5px)}.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border{border-width:2px}.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:before,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:before,html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:after,html[dir=rtl] .mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:after{margin-left:-2px;margin-right:0;margin-top:-2px;min-width:8px}.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:after,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:after,html[dir=rtl] .mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border:before,html[dir=rtl] .mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border:before{margin-left:0;margin-right:-2px;margin-top:-2px;min-width:6px}.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border .mdw-textfield__outline-gap,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border .mdw-textfield__outline-gap{margin-bottom:-2px;margin-top:-2px}.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-outlined] .mdw-textfield__input:not(:disabled):focus~.mdw-textfield__border .mdw-textfield__outline-gap:before,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border .mdw-textfield__outline-gap:after,.mdw-textfield[mdw-outlined]:active>.mdw-textfield__input:not(:disabled)~.mdw-textfield__border .mdw-textfield__outline-gap:before{border-top-width:2px}.mdw-textfield__input:focus:invalid~.mdw-textfield__error-text{transform:translateY(0);transition-duration:175ms;transition-property:transform,color;transition-timing-function:cubic-bezier(.4,0,.2,1);will-change:transform,color}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-textfield__input:focus:invalid~.mdw-textfield__error-text{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-textfield__input:focus:invalid~.mdw-textfield__error-text{transition-duration:.39s}}@keyframes labelShake{0%{transform:translateX(0)}33%{transform:translateX(4px)}66%{transform:translateX(-4px)}to{transform:translateX(0)}}.mdw-toolbar{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);display:flex;flex-direction:column;position:relative;transition-duration:175ms;transition-timing-function:cubic-bezier(.4,0,.2,1);z-index:4}html[mdw-ios][mdw-standalone] .mdw-toolbar[mdw-app-bar]{padding-top:env(safe-area-inset-top)}@media screen and (orientation:landscape) and (max-width:959px),screen and (orientation:portrait) and (max-width:599px){.mdw-toolbar{transition-duration:.3s}}@media screen and (orientation:landscape) and (min-width:960px) and (max-width:1279px),screen and (orientation:portrait) and (min-width:600px) and (max-width:839px){.mdw-toolbar{transition-duration:.39s}}.mdw-toolbar__action{display:flex;flex-direction:row;justify-content:space-between;min-height:64px;transition-duration:inherit;transition-property:min-height;transition-timing-function:inherit}.mdw-toolbar[mdw-prominent]>.mdw-toolbar__action{min-height:128px}.mdw-toolbar[mdw-dense]>.mdw-toolbar__action{min-height:48px}.mdw-toolbar[mdw-dense][mdw-prominent]>.mdw-toolbar__action{min-height:96px}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-toolbar[mdw-dense][mdw-prominent]>.mdw-toolbar__action{min-height:128px}}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-toolbar[mdw-dense]>.mdw-toolbar__action,.mdw-toolbar__action{min-height:56px}}@media screen and (orientation:landscape) and (max-width:959px){.mdw-toolbar[mdw-dense]>.mdw-toolbar__action,.mdw-toolbar__action{min-height:48px}}.mdw-toolbar__content{display:flex;flex-direction:column;flex-grow:1;margin-left:80px;margin-right:24px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-toolbar__content{margin-left:72px;margin-right:16px}}.mdw-toolbar__title{align-self:flex-end;flex-grow:1;font-size:1.25rem;font-weight:500;height:auto;justify-content:space-around;letter-spacing:.00937rem;line-height:24px;margin:0 16px;overflow-x:hidden;text-overflow:ellipsis;transition-duration:inherit;transition-property:font,letter-spacing;transition-timing-function:inherit;white-space:nowrap}.mdw-toolbar__title[mdw-centered]{flex-grow:0}.mdw-toolbar__title:after{content:"";display:inline-block;vertical-align:-24px}.mdw-toolbar[mdw-dense] .mdw-toolbar__title:after{content:"";display:inline-block;vertical-align:-16px}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-toolbar[mdw-dense] .mdw-toolbar__title:after,.mdw-toolbar__title:after{content:"";display:inline-block;vertical-align:-20px}}@media screen and (orientation:landscape) and (max-width:959px){.mdw-toolbar[mdw-dense] .mdw-toolbar__title:after,.mdw-toolbar__title:after{content:"";display:inline-block;vertical-align:-16px}}.mdw-toolbar[mdw-prominent] .mdw-toolbar__title{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:28px;white-space:normal}.mdw-toolbar[mdw-prominent] .mdw-toolbar__title:after{content:"";display:inline-block;vertical-align:-28px}.mdw-toolbar__title[mdw-custom]:after{display:none}.mdw-toolbar__start{margin-left:8px;order:-1;padding:0 8px}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-toolbar__start{margin-left:0}}.mdw-toolbar__end{margin-left:0;margin-right:12px;order:1}@media screen and (orientation:landscape) and (max-height:599px),screen and (orientation:portrait) and (max-width:599px){.mdw-toolbar__end{margin-left:0;margin-right:4px}}[dir=rtl] .mdw-toolbar__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-toolbar__end{margin-left:4px;margin-right:0}}.mdw-toolbar__end,.mdw-toolbar__start{align-items:flex-start;display:flex;flex-direction:row;margin-top:12px;transition-property:margin-top}.mdw-toolbar[mdw-dense] .mdw-toolbar__end,.mdw-toolbar[mdw-dense] .mdw-toolbar__start{margin-top:4px}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-toolbar[mdw-dense] .mdw-toolbar__end,.mdw-toolbar[mdw-dense] .mdw-toolbar__start,.mdw-toolbar__end,.mdw-toolbar__start{margin-top:8px}}@media screen and (orientation:landscape) and (max-width:959px){.mdw-toolbar[mdw-dense] .mdw-toolbar__end,.mdw-toolbar[mdw-dense] .mdw-toolbar__start,.mdw-toolbar__end,.mdw-toolbar__start{margin-top:4px}}.mdw-toolbar__start .mdw-button{margin:0}.mdw-toolbar__end .mdw-button{margin:0 4px}.mdw-toolbar__end .mdw-button[mdw-more-button]{margin-left:0;margin-right:-2px}[dir=rtl] .mdw-toolbar__end .mdw-button[mdw-more-button]{margin-left:-2px;margin-right:0}.mdw-tooltip__wrapper{overflow:visible;position:relative}.mdw-tooltip{align-items:center;background-color:#616161;border-radius:4px;color:#fff;cursor:none;display:flex;flex-direction:column;font-size:.75rem;font-weight:400;justify-content:center;left:50%;letter-spacing:.025rem;line-height:16px;min-height:24px;opacity:0;padding-left:8px;padding-right:8px;pointer-events:none;position:absolute;top:100%;transform:translateX(-50%) translateY(14px);transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(0,0,.2,1);white-space:nowrap;width:auto;z-index:8}.mdw-tooltip__target:focus>.mdw-tooltip,.mdw-tooltip__target:hover>.mdw-tooltip,.mdw-tooltip__wrapper>.mdw-tooltip__target:hover~.mdw-tooltip,.mdw-tooltip__wrapper>.mdw-tooltip__target:not([tabindex="-1"]):focus~.mdw-tooltip{opacity:.9;transition-timing-function:cubic-bezier(.4,0,1,1)}.mdw-tooltip[mdw-position=end],.mdw-tooltip[mdw-position=left],.mdw-tooltip[mdw-position=right],.mdw-tooltip[mdw-position=start]{left:0;top:50%}.mdw-tooltip[mdw-position=left],.mdw-tooltip[mdw-position=start],[dir=rtl] .mdw-tooltip[mdw-position=end]{transform:translateY(-50%) translateX(-100%) translateX(-14px)}.mdw-tooltip[mdw-position=end],.mdw-tooltip[mdw-position=right],[dir=rtl] .mdw-tooltip[mdw-position=start]{transform:translateY(-50%) translateX(100%) translateX(14px)}.mdw-tooltip[mdw-position=top]{top:0;transform:translateX(-50%) translateY(-100%) translateY(-14px)}.mdw-tooltip__wrapper>.mdw-button[mdw-icon]~.mdw-tooltip{margin-top:-8px}.mdw-tooltip__wrapper>.mdw-button[mdw-icon]~.mdw-tooltip[mdw-position=top]{margin-top:8px}.mdw-menu__wrapper>.mdw-menu:target~.mdw-tooltip,.mdw-menu__wrapper>.mdw-menu[mdw-show]:not([mdw-hide])~.mdw-tooltip{opacity:0;transition-delay:0}@media (any-pointer:coarse){.mdw-tooltip{font-size:.875rem;min-height:32px;padding-left:16px;padding-right:16px;transform:translateX(-50%) translateY(24px);transition-delay:1.5s}.mdw-tooltip[mdw-position=left],.mdw-tooltip[mdw-position=start],[dir=rtl] .mdw-tooltip[mdw-position=end]{transform:translateY(-50%) translateX(-100%) translateX(-24px)}.mdw-tooltip[mdw-position=end],.mdw-tooltip[mdw-position=right],[dir=rtl] .mdw-tooltip[mdw-position=start]{transform:translateY(-50%) translateX(100%) translateX(24px)}.mdw-tooltip[mdw-position=top]{transform:translateX(-50%) translateY(-100%) translateY(-24px)}.mdw-tooltip__target:focus:not(:active)>.mdw-tooltip,.mdw-tooltip__target:hover:not(:active)>.mdw-tooltip,.mdw-tooltip__wrapper>.mdw-tooltip__target:hover:not(:active)~.mdw-tooltip,.mdw-tooltip__wrapper>.mdw-tooltip__target:not([tabindex="-1"]):focus:not(:active)~.mdw-tooltip{opacity:0}.mdw-tooltip .mdw-tooltip__wrapper>.mdw-tooltip__target:active~.mdw-tooltip,.mdw-tooltip__target:active>.mdw-tooltip{opacity:.9;transition-timing-function:cubic-bezier(.4,0,1,1)}}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{-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}h1.mdw-type{font-size:6rem;font-weight:300;letter-spacing:-.09375rem;line-height:112px}h2.mdw-type{font-size:3.75rem;font-weight:300;letter-spacing:-.03125rem;line-height:72px}h3.mdw-type{font-size:3rem;font-weight:400;letter-spacing:0;line-height:56px}h4.mdw-type{font-size:2.125rem;font-weight:400;letter-spacing:.01562rem;line-height:40px}h5.mdw-type{font-size:1.5rem;font-weight:400;letter-spacing:0;line-height:28px}h6.mdw-type{font-size:1.25rem;font-weight:500;letter-spacing:.00937rem;line-height:24px}.mdw-type[mdw-style=subtitle]{font-size:1rem;font-weight:400;letter-spacing:.00937rem;line-height:20px}.mdw-type[mdw-style=subtitle-2]{font-size:.875rem;font-weight:500;letter-spacing:.00625rem;line-height:16px}.mdw-type[mdw-style=body],body.mdw-type,p.mdw-type{font-size:1rem;font-weight:400;letter-spacing:.03125rem;line-height:24px}.mdw-type[mdw-style=body-2]{font-size:.875rem;font-weight:400;letter-spacing:.01562rem;line-height:20px}.mdw-type[mdw-style=button]{font-size:.875rem;font-weight:500;letter-spacing:.07812rem;line-height:16px;text-transform:uppercase}.mdw-type[mdw-style=caption]{font-size:.75rem;font-weight:400;letter-spacing:.025rem;line-height:16px}.mdw-type[mdw-style=overline]{font-size:.625rem;font-weight:400;letter-spacing:.09375rem;line-height:12px}.mdw-type[mdw-style|=display]{font-size:2.125rem;font-weight:400;line-height:40px}.mdw-type[mdw-style=display-4]{font-size:7rem;font-weight:300;line-height:normal;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:48px}.mdw-type[mdw-style=headline]{font-size:1.5rem;font-weight:400;line-height:32px}.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:24px}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-type[mdw-style|=subheading]{font-size:1rem}}.mdw-type[mdw-style=subheading-2]{line-height:28px}@media screen and (orientation:landscape) and (max-width:1279px),screen and (orientation:portrait) and (max-width:839px){.mdw-type[mdw-style=subheading-2]{line-height:28px}}.mdw-type[mdw-baseline-top]:before{content:"";display:inline-block}.mdw-type[mdw-baseline-bottom]:after,.mdw-type[mdw-baseline-next]:after{content:"";display:inline-block}.mdw-type[mdw-baseline-next]+.mdw-type:before{content:"";display:inline-block}.mdw-type[mdw-baseline-top="4"]:before{height:4px}.mdw-type[mdw-baseline-bottom="4"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-next="4"]{margin-bottom:-4px}.mdw-type[mdw-baseline-next="4"]:after{vertical-align:-4px}.mdw-type[mdw-baseline-next="4"]+.mdw-type:before{height:4px}.mdw-type[mdw-baseline-top="8"]:before{height:8px}.mdw-type[mdw-baseline-bottom="8"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-next="8"]{margin-bottom:-8px}.mdw-type[mdw-baseline-next="8"]:after{vertical-align:-8px}.mdw-type[mdw-baseline-next="8"]+.mdw-type:before{height:8px}.mdw-type[mdw-baseline-top="10"]:before{height:10px}.mdw-type[mdw-baseline-bottom="10"]:after{vertical-align:-10px}.mdw-type[mdw-baseline-next="10"]{margin-bottom:-10px}.mdw-type[mdw-baseline-next="10"]:after{vertical-align:-10px}.mdw-type[mdw-baseline-next="10"]+.mdw-type:before{height:10px}.mdw-type[mdw-baseline-top="12"]:before{height:12px}.mdw-type[mdw-baseline-bottom="12"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-next="12"]{margin-bottom:-12px}.mdw-type[mdw-baseline-next="12"]:after{vertical-align:-12px}.mdw-type[mdw-baseline-next="12"]+.mdw-type:before{height:12px}.mdw-type[mdw-baseline-top="16"]:before{height:16px}.mdw-type[mdw-baseline-bottom="16"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-next="16"]{margin-bottom:-16px}.mdw-type[mdw-baseline-next="16"]:after{vertical-align:-16px}.mdw-type[mdw-baseline-next="16"]+.mdw-type:before{height:16px}.mdw-type[mdw-baseline-top="20"]:before{height:20px}.mdw-type[mdw-baseline-bottom="20"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-next="20"]{margin-bottom:-20px}.mdw-type[mdw-baseline-next="20"]:after{vertical-align:-20px}.mdw-type[mdw-baseline-next="20"]+.mdw-type:before{height:20px}.mdw-type[mdw-baseline-top="24"]:before{height:24px}.mdw-type[mdw-baseline-bottom="24"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-next="24"]{margin-bottom:-24px}.mdw-type[mdw-baseline-next="24"]:after{vertical-align:-24px}.mdw-type[mdw-baseline-next="24"]+.mdw-type:before{height:24px}.mdw-type[mdw-baseline-top="28"]:before{height:28px}.mdw-type[mdw-baseline-bottom="28"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-next="28"]{margin-bottom:-28px}.mdw-type[mdw-baseline-next="28"]:after{vertical-align:-28px}.mdw-type[mdw-baseline-next="28"]+.mdw-type:before{height:28px}.mdw-type[mdw-baseline-top="32"]:before{height:32px}.mdw-type[mdw-baseline-bottom="32"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-next="32"]{margin-bottom:-32px}.mdw-type[mdw-baseline-next="32"]:after{vertical-align:-32px}.mdw-type[mdw-baseline-next="32"]+.mdw-type:before{height:32px}.mdw-type[mdw-baseline-top="36"]:before{height:36px}.mdw-type[mdw-baseline-bottom="36"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-next="36"]{margin-bottom:-36px}.mdw-type[mdw-baseline-next="36"]:after{vertical-align:-36px}.mdw-type[mdw-baseline-next="36"]+.mdw-type:before{height:36px}.mdw-type[mdw-baseline-top="40"]:before{height:40px}.mdw-type[mdw-baseline-bottom="40"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-next="40"]{margin-bottom:-40px}.mdw-type[mdw-baseline-next="40"]:after{vertical-align:-40px}.mdw-type[mdw-baseline-next="40"]+.mdw-type:before{height:40px}.mdw-type[mdw-baseline-top="44"]:before{height:44px}.mdw-type[mdw-baseline-bottom="44"]:after{vertical-align:-44px}.mdw-type[mdw-baseline-next="44"]{margin-bottom:-44px}.mdw-type[mdw-baseline-next="44"]:after{vertical-align:-44px}.mdw-type[mdw-baseline-next="44"]+.mdw-type:before{height:44px}.mdw-type[mdw-baseline-top="48"]:before{height:48px}.mdw-type[mdw-baseline-bottom="48"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-next="48"]{margin-bottom:-48px}.mdw-type[mdw-baseline-next="48"]:after{vertical-align:-48px}.mdw-type[mdw-baseline-next="48"]+.mdw-type:before{height:48px}.mdw-type[mdw-baseline-top="52"]:before{height:52px}.mdw-type[mdw-baseline-bottom="52"]:after{vertical-align:-52px}.mdw-type[mdw-baseline-next="52"]{margin-bottom:-52px}.mdw-type[mdw-baseline-next="52"]:after{vertical-align:-52px}.mdw-type[mdw-baseline-next="52"]+.mdw-type:before{height:52px}.mdw-type[mdw-baseline-top="56"]:before{height:56px}.mdw-type[mdw-baseline-bottom="56"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-next="56"]{margin-bottom:-56px}.mdw-type[mdw-baseline-next="56"]:after{vertical-align:-56px}.mdw-type[mdw-baseline-next="56"]+.mdw-type:before{height:56px}.mdw-type[mdw-baseline-top="60"]:before{height:60px}.mdw-type[mdw-baseline-bottom="60"]:after{vertical-align:-60px}.mdw-type[mdw-baseline-next="60"]{margin-bottom:-60px}.mdw-type[mdw-baseline-next="60"]:after{vertical-align:-60px}.mdw-type[mdw-baseline-next="60"]+.mdw-type:before{height:60px}.mdw-type[mdw-baseline-top="64"]:before{height:64px}.mdw-type[mdw-baseline-bottom="64"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-next="64"]{margin-bottom:-64px}.mdw-type[mdw-baseline-next="64"]:after{vertical-align:-64px}.mdw-type[mdw-baseline-next="64"]+.mdw-type:before{height:64px}.mdw-type[mdw-baseline-top="68"]:before{height:68px}.mdw-type[mdw-baseline-bottom="68"]:after{vertical-align:-68px}.mdw-type[mdw-baseline-next="68"]{margin-bottom:-68px}.mdw-type[mdw-baseline-next="68"]:after{vertical-align:-68px}.mdw-type[mdw-baseline-next="68"]+.mdw-type:before{height:68px}.mdw-type[mdw-baseline-top="72"]:before{height:72px}.mdw-type[mdw-baseline-bottom="72"]:after{vertical-align:-72px}.mdw-type[mdw-baseline-next="72"]{margin-bottom:-72px}.mdw-type[mdw-baseline-next="72"]:after{vertical-align:-72px}.mdw-type[mdw-baseline-next="72"]+.mdw-type:before{height:72px}.mdw-type[mdw-baseline-top="76"]:before{height:76px}.mdw-type[mdw-baseline-bottom="76"]:after{vertical-align:-76px}.mdw-type[mdw-baseline-next="76"]{margin-bottom:-76px}.mdw-type[mdw-baseline-next="76"]:after{vertical-align:-76px}.mdw-type[mdw-baseline-next="76"]+.mdw-type:before{height:76px}.mdw-type[mdw-baseline-top="80"]:before{height:80px}.mdw-type[mdw-baseline-bottom="80"]:after{vertical-align:-80px}.mdw-type[mdw-baseline-next="80"]{margin-bottom:-80px}.mdw-type[mdw-baseline-next="80"]:after{vertical-align:-80px}.mdw-type[mdw-baseline-next="80"]+.mdw-type:before{height:80px}.mdw-type[mdw-baseline-top="84"]:before{height:84px}.mdw-type[mdw-baseline-bottom="84"]:after{vertical-align:-84px}.mdw-type[mdw-baseline-next="84"]{margin-bottom:-84px}.mdw-type[mdw-baseline-next="84"]:after{vertical-align:-84px}.mdw-type[mdw-baseline-next="84"]+.mdw-type:before{height:84px}.mdw-type[mdw-baseline-top="88"]:before{height:88px}.mdw-type[mdw-baseline-bottom="88"]:after{vertical-align:-88px}.mdw-type[mdw-baseline-next="88"]{margin-bottom:-88px}.mdw-type[mdw-baseline-next="88"]:after{vertical-align:-88px}.mdw-type[mdw-baseline-next="88"]+.mdw-type:before{height:88px}.mdw-type[mdw-baseline-top="92"]:before{height:92px}.mdw-type[mdw-baseline-bottom="92"]:after{vertical-align:-92px}.mdw-type[mdw-baseline-next="92"]{margin-bottom:-92px}.mdw-type[mdw-baseline-next="92"]:after{vertical-align:-92px}.mdw-type[mdw-baseline-next="92"]+.mdw-type:before{height:92px}
|
package/docs/components.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=19)}({19:function(e,t,n){e.exports=n(20)},20:function(e,t,n){e.exports=n.p+"components.min.css"}});
|
|
2
|
-
//# sourceMappingURL=components.min.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./docs/src/components.scss"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","default","object","property","prototype","hasOwnProperty","p","s","19","e","20"],"mappings":"aACA,IAAAA,KAGA,SAAAC,EAAAC,GAGA,GAAAF,EAAAE,GACA,OAAAF,EAAAE,GAAAC,QAGA,IAAAC,EAAAJ,EAAAE,IACAG,EAAAH,EACAI,KACAH,YAUA,OANAI,EAAAL,GAAAM,KAAAJ,EAAAD,QAAAC,IAAAD,QAAAF,GAGAG,EAAAE,KAGAF,EAAAD,QAKAF,EAAAQ,EAAAF,EAGAN,EAAAS,EAAAV,EAGAC,EAAAU,EAAA,SAAAR,EAAAS,EAAAC,GACAZ,EAAAa,EAAAX,EAAAS,IACAG,OAAAC,eAAAb,EAAAS,GAA0CK,cAAAC,IAAAL,KAK1CZ,EAAAkB,EAAA,SAAAhB,GACA,oBAAAiB,eAAAC,aACAN,OAAAC,eAAAb,EAAAiB,OAAAC,aAAwDC,MAAA,WAExDP,OAAAC,eAAAb,EAAA,cAAiDmB,YAQjDrB,EAAAsB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAArB,EAAAqB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,iBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAX,OAAAY,OAAA,MAGA,GAFA1B,EAAAkB,EAAAO,GACAX,OAAAC,eAAAU,EAAA,WAAyCT,cAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAArB,EAAAU,EAAAe,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAzB,EAAA6B,EAAA,SAAA1B,GACA,IAAAS,EAAAT,KAAAqB,WACA,WAA2B,OAAArB,EAAA2B,SAC3B,WAAiC,OAAA3B,GAEjC,OADAH,EAAAU,EAAAE,EAAA,IAAAA,GACAA,GAIAZ,EAAAa,EAAA,SAAAkB,EAAAC,GAAsD,OAAAlB,OAAAmB,UAAAC,eAAA3B,KAAAwB,EAAAC,IAGtDhC,EAAAmC,EAAA,GAIAnC,IAAAoC,EAAA,MAAAC,GAAA,SAAAC,EAAAhB,EAAAO,GAAAS,EAAApC,QAAA2B,EAAA,KAAAU,GAAA,SAAAD,EAAAhB,EAAAO,GClFA1B,EAAAD,QAAiBF,EAAAmC,EAAuB","file":"components.min.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\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\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 19);\n","module.exports = __webpack_public_path__ + \"components.min.css\";"],"sourceRoot":""}
|
package/docs/datatable.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><title>Material Design Web</title><meta charset="utf-8"><meta content="IE=edge" http-equiv="X-UA-Compatible"><meta content="" name="description"><meta content="width=device-width, initial-scale=1, viewport-fit=cover" name="viewport"><meta name="theme-color" content="#E91E63"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="apple-mobile-web-app-capable" content="yes"><link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"><link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700"><link rel="stylesheet" href="docs.min.css"><link rel="stylesheet" href="components.min.css"><link rel="stylesheet" href="theming.min.css"><link rel="stylesheet" href="theming.ie11.min.css" media="screen and (-ms-high-contrast: active), (-ms-high-contrast: none)"><script src="prerender.min.js"></script></head><body class="mdw-type"><div class="mdw-navdrawer" id="docs-navdrawer"><a class="mdw-navdrawer__scrim" href="#"></a><div class="mdw-navdrawer__toolbar"><div class="mdw-toolbar" mdw-theme-fill="accent-500 dark" mdw-app-bar><div class="mdw-toolbar__action"><div class="mdw-toolbar__start"><div class="mdw-tooltip__wrapper"><a class="mdw-tooltip__target mdw-button material-icons" mdw-icon href="#docs-navdrawer">menu</a><div class="mdw-tooltip">Menu</div></div></div><div class="mdw-toolbar__title">datatable</div><div class="mdw-toolbar__end" id="docs-menu-buttons"><div class="mdw-tooltip__wrapper"><div class="mdw-tooltip__target mdw-button docs-rtl" mdw-inactive>RTL</div><div class="mdw-tooltip">Right-to-Left</div></div><div class="mdw-tooltip__wrapper"><div class="mdw-tooltip__target mdw-button material-icons" mdw-icon mdw-inactive>brightness_3</div><div class="mdw-tooltip">Dark Mode</div></div><div class="mdw-tooltip__wrapper"><div class="mdw-tooltip__target mdw-button material-icons" mdw-icon mdw-inactive>format_size</div><div class="mdw-tooltip">Large Font</div></div></div></div></div></div><div class="mdw-navdrawer__drawer"><div class="mdw-list"><a class="mdw-list__item" href="index.html" mdw-theme-color="primary"><div class="mdw-list__text">Home</div></a><div class="mdw-list__subheader">Components</div><a class="mdw-list__item" href="bottomnav.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">call_to_action</div><div class="mdw-list__text">Bottom Navigation</div></a><a class="mdw-list__item" href="button.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">crop_landscape</div><div class="mdw-list__text">Button</div></a><a class="mdw-list__item" href="card.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">crop_square</div><div class="mdw-list__text">Card</div></a><a class="mdw-list__item" href="dialog.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">select_all</div><div class="mdw-list__text">Dialog</div></a><a class="mdw-list__item" mdw-selected href="datatable.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">format_align_justify</div><div class="mdw-list__text">Data Table</div></a><a class="mdw-list__item" href="elevation.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">layers</div><div class="mdw-list__text">Elevation</div></a><a class="mdw-list__item" href="fab.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">add_circle</div><div class="mdw-list__text">Floating Action Button</div></a><a class="mdw-list__item" href="layout.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">view_compact</div><div class="mdw-list__text">Layout</div></a><a class="mdw-list__item" href="list.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">view_list</div><div class="mdw-list__text">List</div></a><a class="mdw-list__item" href="menu.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">picture_in_picture</div><div class="mdw-list__text">Menu</div></a><a class="mdw-list__item" href="navdrawer.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">menu</div><div class="mdw-list__text">Navigation Drawer</div></a><a class="mdw-list__item" href="progress.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">timelapse</div><div class="mdw-list__text">Progress</div></a><a class="mdw-list__item" href="search.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">search</div><div class="mdw-list__text">Search</div></a><a class="mdw-list__item" href="selection.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">toggle_on</div><div class="mdw-list__text">Selection</div></a><a class="mdw-list__item" href="slider.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">tune</div><div class="mdw-list__text">Slider</div></a><a class="mdw-list__item" href="snackbar.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">video_label</div><div class="mdw-list__text">Snackbar</div></a><a class="mdw-list__item" href="tab.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">tab</div><div class="mdw-list__text">Tab</div></a><a class="mdw-list__item" href="textfield.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">text_fields</div><div class="mdw-list__text">Text Field</div></a><a class="mdw-list__item" href="toolbar.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">web_asset</div><div class="mdw-list__text">Toolbar</div></a><a class="mdw-list__item" href="tooltip.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">info</div><div class="mdw-list__text">Tooltip</div></a><a class="mdw-list__item" href="type.html" mdw-theme-color="accent"><div class="mdw-list__icon material-icons">font_download</div><div class="mdw-list__text">Typography</div></a></div></div><div class="mdw-navdrawer__content" style="padding-bottom:24px"><div class="mdw-theme-toolbar js" display="flex" flex-direction="column"><div class="mdw-card mdw-datatable" mdw-theme-color="primary" style="margin:16px"><table><caption>Standard HTML Table</caption><thead><tr><th>Dessert (100g serving)</th><th>Calories</th><th>Fat (g)</th><th>Carbs (g)</th><th>Protein (g)</th><th>Sodium (mg)</th><th>Calcium (%)</th><th>Iron (%)</th></tr></thead><tbody><tr><td>Frozen Yogurt</td><td>159</td><td>6.0</td><td>24</td><td>4.0</td><td>87</td><td>14%</td><td>1%</td></tr><tr><td>Ice cream sandwich</td><td>237</td><td>9.0</td><td>37</td><td>4.3</td><td>129</td><td>8%</td><td>1%</td></tr><tr><td>Eclair</td><td>262</td><td>16.0</td><td>24</td><td>6.0</td><td>337</td><td>6%</td><td>7%</td></tr><tr><td>Cupcake</td><td>305</td><td>3.7</td><td>67</td><td>4.3</td><td>413</td><td>3%</td><td>8%</td></tr><tr><td>Gingerbread</td><td>356</td><td>16.0</td><td>49</td><td>3.9</td><td>327</td><td>7%</td><td>16%</td></tr><tr><td>Jelly bean</td><td>375</td><td>0.0</td><td>94</td><td>0.0</td><td>50</td><td>0%</td><td>0%</td></tr><tr><td>Lollipop</td><td>392</td><td>0.2</td><td>98</td><td>0</td><td>38</td><td>0%</td><td>2%</td></tr><tr><td>Honeycomb</td><td>408</td><td>3.2</td><td>87</td><td>6.5</td><td>562</td><td>0%</td><td>45%</td></tr><tr><td>Donut</td><td>452</td><td>25.0</td><td>51</td><td>4.9</td><td>326</td><td>2%</td><td>22%</td></tr><tr><td>Kitkat</td><td>518</td><td>26.0</td><td>65</td><td>7</td><td>54</td><td>12%</td><td>6%</td></tr></tbody></table></div><div class="mdw-card mdw-datatable" mdw-theme-color="primary" style="margin:16px" mdw-cell-focusable><div class="mdw-datatable__header"><div class="mdw-datatable__header-text">Customized HTML Table</div></div><table><thead><tr><th data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></th><th mdw-sortable data-type="text" mdw-primary-column><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Dessert (100g serving)</span></th><th mdw-sortable data-type="number" mdw-sorted=""><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span class="mdw-tooltip__wrapper"><span class="mdw-tooltip__target">Calories</span><div class="mdw-tooltip">The total amount of food energy in the given serving size.</div></span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Fat (g)</span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Carbs (g)</span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Protein (g)</span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Sodium (mg)</span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span class="mdw-tooltip__wrapper"><span class="mdw-tooltip__target">Calcium (%)</span><div class="mdw-tooltip">The amount of calcium as a percentage of the recommended daily amount.</div></span></th><th mdw-sortable data-type="number"><div class="mdw-datatable__sort-icon material-icons">arrow_downward</div><span>Iron (%)</span></th></tr></thead><tbody><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Frozen Yogurt</td><td data-type="number">159</td><td data-type="number">6.0</td><td data-type="number">24</td><td data-type="number">4.0</td><td data-type="number">87</td><td data-type="number">14%</td><td data-type="number">1%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Ice cream sandwich</td><td data-type="number">237</td><td data-type="number">9.0</td><td data-type="number">37</td><td data-type="number">4.3</td><td data-type="number">129</td><td data-type="number">8%</td><td data-type="number">1%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Eclair</td><td data-type="number">262</td><td data-type="number">16.0</td><td data-type="number">24</td><td data-type="number">6.0</td><td data-type="number">337</td><td data-type="number">6%</td><td data-type="number">7%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Cupcake</td><td data-type="number">305</td><td data-type="number">3.7</td><td data-type="number">67</td><td data-type="number">4.3</td><td data-type="number">413</td><td data-type="number">3%</td><td data-type="number">8%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Gingerbread</td><td data-type="number">356</td><td data-type="number">16.0</td><td data-type="number">49</td><td data-type="number">3.9</td><td data-type="number">327</td><td data-type="number">7%</td><td data-type="number">16%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Jelly bean</td><td data-type="number">375</td><td data-type="number">0.0</td><td data-type="number">94</td><td data-type="number">0.0</td><td data-type="number">50</td><td data-type="number">0%</td><td data-type="number">0%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Lollipop</td><td data-type="number">392</td><td data-type="number">0.2</td><td data-type="number">98</td><td data-type="number">0</td><td data-type="number">38</td><td data-type="number">0%</td><td data-type="number">2%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Honeycomb</td><td data-type="number">408</td><td data-type="number">3.2</td><td data-type="number">87</td><td data-type="number">6.5</td><td data-type="number">562</td><td data-type="number">0%</td><td data-type="number">45%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Donut</td><td data-type="number">452</td><td data-type="number">25.0</td><td data-type="number">51</td><td data-type="number">4.9</td><td data-type="number">326</td><td data-type="number">2%</td><td data-type="number">22%</td></tr><tr><td data-type="checkbox" mdw-selector><label class="mdw-selection"><input class="mdw-selection__input" type="checkbox"><div class="mdw-selection__icon"></div></label></td><td data-type="text" mdw-primary-column>Kitkat</td><td data-type="number">518</td><td data-type="number">26.0</td><td data-type="number">65</td><td data-type="number">7</td><td data-type="number">54</td><td data-type="number">12%</td><td data-type="number">6%</td></tr></tbody></table><div class="mdw-datatable__footer"><div class="mdw-datatable__footer-options"><span>Rows per page</span><label class="mdw-textfield" mdw-solo><select class="mdw-textfield__input"><option value="10">10</option><option value="25">25</option><option value="50">50</option><option value="100">100</option></select><div class="mdw-textfield__icon" mdw-dropdown></div></label></div><div class="mdw-datatable__footer-details">1-10 of 10</div><div class="mdw-datatable__footer-controls"><button class="mdw-button material-icons" mdw-icon disabled>chevron_left</button><button class="mdw-button material-icons" mdw-icon disabled>chevron_right</button></div></div></div><div class="mdw-card mdw-datatable" id="dynamic-table" mdw-theme-color="primary" mdw-row-focusable style="margin:16px;max-height:800px;overflow-y:auto"><div class="mdw-datatable__header"><div class="mdw-datatable__header-text">Dynamic Table</div><div class="mdw-datatable__header-controls"><div class="mdw-menu__wrapper"><button class="mdw-button material-icons" mdw-icon mdw-inactive mdw-theme-color="primary">filter_list</button><div class="mdw-menu" mdw-position="end"><div class="mdw-menu__popup"><div class="mdw-menu__item" mdw-checked><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">No filter</div></div><div class="mdw-menu__item"><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">Contains 'md'</div></div><div class="mdw-menu__item"><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">Random divisible by 9</div></div><div class="mdw-menu__item"><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">bool is checked</div></div></div></div></div><div class="mdw-menu__wrapper"><button class="mdw-button material-icons" mdw-icon>more_vert</button><div class="mdw-menu" mdw-position="end"><div class="mdw-menu__popup"><div class="mdw-menu__item" mdw-checked><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">Throttle</div></div><div class="mdw-menu__item" mdw-checked><div class="mdw-menu__check material-icons">check</div><div class="mdw-menu__text">Paginate</div></div></div></div></div></div></div></div></div></div></div><script src="datatable.min.js"></script></body></html>
|
package/docs/datatable.min.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=31)}({0:function(e,t,n){"use strict";function i(e){return window.localStorage?localStorage.getItem(e):null}function r(e,t){window.localStorage&&localStorage.setItem(e,t)}function a(e){window.localStorage&&localStorage.removeItem(e)}n.d(t,"a",function(){return i}),n.d(t,"c",function(){return r}),n.d(t,"b",function(){return a})},1:function(e,t,n){"use strict";function i(e,t){var n=e.getElementsByClassName(t)[0];return n&&n.parentElement!==e?null:n}function r(e,t,n){var i;for(i=!1===n?e.parentElement:e;null!=i&&!i.classList.contains(t);)i=i.parentElement;return i}function a(){return document.documentElement.hasAttribute("dir")&&"rtl"===document.documentElement.getAttribute("dir").toLowerCase()}function o(e,t){var n=document.createEvent("Event");return n.initEvent(t,!0,!0),e.dispatchEvent(n)}n.d(t,"c",function(){return i}),n.d(t,"b",function(){return r}),n.d(t,"d",function(){return a}),n.d(t,"a",function(){return o}),n.d(t,"e",function(){return s});var s=window.requestAnimationFrame||function(e){return setTimeout(e,17)}},2:function(e,t,n){"use strict";n.d(t,"c",function(){return o}),n.d(t,"a",function(){return s}),n.d(t,"b",function(){return l}),n.d(t,"d",function(){return d});var i=n(0),r="black dark",a="white light";function o(e,t){e?(document.documentElement.setAttribute("dir","rtl"),t&&t.removeAttribute("mdw-inactive"),Object(i.c)("rtlmode","true")):(document.documentElement.removeAttribute("dir"),t&&t.setAttribute("mdw-inactive",""),Object(i.b)("rtlmode"))}function s(e,t){e?(document.documentElement.setAttribute("mdw-theme-fill",r),t&&t.removeAttribute("mdw-inactive")):(document.documentElement.setAttribute("mdw-theme-fill",a),t&&t.setAttribute("mdw-inactive","")),Object(i.c)("darkmode",e?"true":"false")}function l(e,t){e?(document.documentElement.style.setProperty("font-size",e),t&&t.removeAttribute("mdw-inactive"),Object(i.c)("fontsize",e)):(document.documentElement.style.removeProperty("font-size"),t&&t.setAttribute("mdw-inactive",""),Object(i.b)("fontsize"))}function d(){var e=document.getElementById("docs-menu-buttons").getElementsByClassName("mdw-button"),t=e[0],n=e[1],a=e[2];!function(e){"true"===Object(i.a)("rtlmode")&&o(!0,e),e.addEventListener("click",function(){"rtl"===document.documentElement.getAttribute("dir")?o(!1,e):o(!0,e)})}(t),function(e){"true"===Object(i.a)("darkmode")&&s(!0,e),e.addEventListener("click",function(){document.documentElement.getAttribute("mdw-theme-fill")===r?s(!1,e):s(!0,e)})}(n),function(e){l(Object(i.a)("fontsize"),e),e.addEventListener("click",function(){document.documentElement.style.getPropertyValue("font-size")?l(null,e):l("125%",e)})}(a)}},3:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var i=n(1);function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var a=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return function(e,t,n){n&&r(e,n)}(e,0,[{key:"attach",value:function(t){var n=Object(i.c)(t,"mdw-ripple");n||((n=document.createElement("div")).classList.add("mdw-ripple"),t.firstChild?t.insertBefore(n,t.firstChild):t.appendChild(n));var r=Object(i.c)(n,"mdw-ripple__inner");r||((r=document.createElement("div")).classList.add("mdw-ripple__inner"),n.appendChild(r)),t.setAttribute("mdw-ripple",""),n.addEventListener("click",e.onClick)}},{key:"onClick",value:function(e){var t=e.currentTarget,n=Object(i.c)(t,"mdw-ripple__inner");if(n){if(!e.pointerType&&!e.detail)return n.style.removeProperty("left"),void n.style.removeProperty("top");n.style.setProperty("left","".concat(e.offsetX,"px")),n.style.setProperty("top","".concat(e.offsetY,"px"))}}},{key:"detach",value:function(t){var n=Object(i.c)(t,"mdw-ripple");n&&t.removeChild(n),t.removeAttribute("mdw-ripple"),t.removeEventListener("click",e.onClick)}}]),e}()},31:function(e,t,n){n(78),e.exports=n(32)},32:function(e,t,n){e.exports=n.p+"datatable.html"},5:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var i=n(3);function r(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var a=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return function(e,t,n){n&&r(e,n)}(e,0,[{key:"attach",value:function(t){t.setAttribute("mdw-js",""),t.hasAttribute("mdw-icon")||i.a.attach(t),t instanceof HTMLButtonElement==0&&t instanceof HTMLInputElement==0&&t.addEventListener("keydown",e.onKeyDown)}},{key:"detach",value:function(t){t.removeEventListener("keydown",e.onKeyDown),t.removeAttribute("mdw-js"),i.a.detach(t)}},{key:"onKeyDown",value:function(e){if("Enter"===e.key||"Spacebar"===e.key||" "===e.key){var t=e.currentTarget;if(t){e.stopPropagation(),e.preventDefault();var n=document.createEvent("Event");n.initEvent("click",!0,!0),t.dispatchEvent(n)}}}}]),e}()},7:function(e,t,n){"use strict";n.d(t,"a",function(){return u});var i=n(3),r=n(1);function a(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function s(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),e}var l=function(){function e(){a(this,e)}return s(e,null,[{key:"attach",value:function(t){t.setAttribute("mdw-js",""),i.a.attach(t),t.addEventListener("mousemove",e.onMouseMove),t.addEventListener("click",e.onClick)}},{key:"onClick",value:function(e){var t=e.currentTarget;Object(r.a)(t,"mdw:itemactivated")}},{key:"onMouseMove",value:function(e){var t=e.currentTarget;if(t){var n=document.activeElement;n!==t&&(t.focus(),document.activeElement!==t&&n&&document.activeElement!==n&&n.focus())}}},{key:"detach",value:function(t){t.removeEventListener("click",e.onClick),t.removeEventListener("mousemove",e.onMouseMove),t.removeAttribute("mdw-js"),i.a.detach(t)}}]),e}(),d=[],u=function(){function e(){a(this,e)}return s(e,null,[{key:"attach",value:function(t){t.setAttribute("mdw-js","");var n=t.getElementsByClassName("mdw-menu__close")[0];n||((n=document.createElement("div")).classList.add("mdw-menu__close"),t.firstChild?t.insertBefore(n,t.firstChild):t.appendChild(n)),n.addEventListener("click",e.onMenuCloserClick),t.addEventListener("keydown",e.onKeyDown)}},{key:"onMenuCloserClick",value:function(t){var n=t.currentTarget;if(n){var i=n.parentElement;i&&(n instanceof HTMLAnchorElement&&t.preventDefault(),e.hide(i))}}},{key:"onPopState",value:function(t){if(t.state){var n=d[d.length-1];n&&n.previousState&&(n.previousState===t.state||Object.keys(t.state).every(function(e){return t.state[e]===n.previousState[e]}))&&e.hide(n.element)}}},{key:"onKeyDown",value:function(t){var n=t.currentTarget;if(n&&!n.hasAttribute("mdw-hide")&&n.hasAttribute("mdw-show")){if("Tab"===t.key)return this.previousFocus=null,void e.hide(n);if("Escape"===t.key||"Esc"===t.key)return t.stopPropagation(),t.preventDefault(),void e.hide(n);if("ArrowUp"===t.key||"Up"===t.key)return t.stopPropagation(),t.preventDefault(),void e.selectNextMenuItem(n,!0);if("ArrowDown"!==t.key&&"Down"!==t.key||(t.stopPropagation(),t.preventDefault(),e.selectNextMenuItem(n,!1)),document.activeElement&&document.activeElement!==n&&!document.activeElement.hasAttribute("disabled"))return"Spacebar"===t.key||" "===t.key?(t.stopPropagation(),void t.preventDefault()):void("Enter"===t.key&&(t.stopPropagation(),t.preventDefault(),document.activeElement.click()))}}},{key:"detach",value:function(t){e.hide(t);var n=t.getElementsByClassName("mdw-menu__close")[0];n&&n.removeEventListener("click",e.onMenuCloserClick),t.addEventListener("keydown",e.onKeyDown),t.removeAttribute("mdw-js"),t.removeAttribute("mdw-show"),t.removeAttribute("mdw-hide");var i=t.getElementsByClassName("mdw-menu__popup")[0];i&&(i.style.removeProperty("top"),i.style.removeProperty("left"),i.style.removeProperty("right"),i.style.removeProperty("bottom"),i.style.removeProperty("margin"),i.style.removeProperty("transform-origin"),i.style.removeProperty("position"),i.hasAttribute("style")&&!i.getAttribute("style")&&i.removeAttribute("style"));for(var r=t.getElementsByClassName("mdw-menu__item"),a=0;a<r.length;a+=1)l.detach(r.item(a))}},{key:"selectNextMenuItem",value:function(e,t){for(var n=e.getElementsByClassName("mdw-menu__item"),i=!1,r=null,a=null,o=null,s=document.activeElement,l=0;l<n.length;l+=1){var d=n.item(l);d.focus();var u=document.activeElement===d;if(u&&(a||(a=d),o=d),d===s){if(i=!0,t&&r)break}else if(t)u&&(r=d);else if(i&&u){r=d;break}}r||(r=t?o:a),r&&document.activeElement!==r&&r.focus()}},{key:"updateMenuPosition",value:function(e,t,n,i){var a="auto",o="auto",s="",l=!1!==i,d=l?"0":"",u=e.getAttribute("mdw-position")||"",c=e.getAttribute("mdw-direction")||"",m=-1!==u.indexOf("top"),h=-1!==u.indexOf("bottom"),f=-1!==u.indexOf("vcenter"),v=-1!==u.indexOf("start"),p=-1!==u.indexOf("end"),b=-1!==u.indexOf("left"),w=-1!==u.indexOf("right"),g=-1!==u.indexOf("hcenter"),y=-1!==c.indexOf("up"),k=-1!==c.indexOf("down"),E=-1!==c.indexOf("normal"),x=-1!==c.indexOf("reverse"),A=-1!==c.indexOf("vcenter"),C=-1!==c.indexOf("hcenter"),T=-1!==c.indexOf("ltr"),L=-1!==c.indexOf("rtl"),R=n.currentTarget||n.target,P=null;(v||p||E||x)&&(P=Object(r.d)(),(v||p)&&(v?P?w=!0:b=!0:P?b=!0:w=!0),(E||x)&&(E?P?L=!0:T=!0:P?T=!0:L=!0));var B=l?-n.offsetY:0,_=l?R.clientHeight-n.offsetY:0,S=l?-n.offsetX:0,D=l?R.clientWidth-n.offsetX:0,O=n.pageX,M=n.pageY;if(!O&&!M){var N=R.getBoundingClientRect();O=N.x,M=N.y}t.style.setProperty("max-height","none");var H=t.clientHeight,j=!m&&!f&&!y&&!A&&H+(M+_)<=window.innerHeight,I=!h&&!f&&!y&&!A&&H+(M+B)<=window.innerHeight,F=!h&&!f&&!k&&!A&&M+B>=H,z=!m&&!f&&!k&&!A&&M+_>=H,q=!w&&!g&&!L&&!C&&t.clientWidth+(O+S)<=window.innerWidth,W=!b&&!g&&!L&&!C&&t.clientWidth+(O+D)<=window.innerWidth,K=!b&&!g&&!T&&!C&&O+D>=t.clientWidth,V=!w&&!g&&!T&&!C&&O+S>=t.clientWidth,U=!b&&!w&&!m&&!h&&!y&&!k&&(O+S)/2>=t.clientWidth/2&&t.clientWidth/2+(O+S)/2<=window.innerWidth;t.style.removeProperty("max-height");var X=[j&&q,j&&K,F&&q,F&&V,I&&W,I&&V,z&&W,z&&V,I&&q,I&&K,z&&q,z&&W,q,K,U].map(function(e,t){return e?t+1:0}).filter(function(e){return 0!==e});if(X.length){var Y;switch(null===P&&(P=Object(r.d)()),null==(Y=P?[2,1,4,3,6,5,8,7,10,9,12,11,14,13,15].filter(function(e){return-1!==X.indexOf(e)})[0]:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15].filter(function(e){return-1!==X.indexOf(e)})[0])&&(Y=P?2:1),Y){default:case 1:case 8:case 11:h=!0,b=!0;break;case 2:case 7:case 12:h=!0,w=!0;break;case 3:case 6:case 9:m=!0,b=!0;break;case 4:case 5:case 10:m=!0,w=!0;break;case 13:f=!0,b=!0;break;case 14:f=!0,w=!0;break;case 15:f=!0,g=!0}switch(Y){default:case 1:case 5:case 9:k=!0,T=!0;break;case 2:case 6:case 10:k=!0,L=!0;break;case 3:case 7:case 11:y=!0,T=!0;break;case 4:case 8:case 12:y=!0,L=!0;break;case 13:T=!0,A=!0;break;case 14:L=!0,A=!0;break;case 15:C=!0,A=!0}}T?(o="".concat(w?O+D:g?O+(S+D)/2:O+S,"px"),s="left"):C?(o="".concat(b?O+S-t.clientWidth/2:w?O+D-t.clientWidth/2:O+(S+D)/2-t.clientWidth/2,"px"),s="center"):(o="".concat(b?O+S-t.clientWidth:g?O+(S+D)/2-t.clientWidth:O+D-t.clientWidth,"px"),s="right"),y?(a="".concat(h?M+_-t.clientHeight:f?M+(B+_)/2-t.clientHeight:M+B-t.clientHeight,"px"),s+=" bottom"):A?(a="".concat(h?M+_-t.clientHeight/2:m?M+B-t.clientHeight/2:M+(B+_)/2-t.clientHeight/2,"px"),s+=" center"):(a="".concat(m?M+B:f?M+(B+_)/2:M+_,"px"),s+=" top"),t.style.setProperty("top",a),t.style.setProperty("left",o),t.style.setProperty("right","auto"),t.style.setProperty("bottom","auto"),t.style.setProperty("margin",d),t.style.setProperty("transform-origin",s),t.style.setProperty("position","fixed")}},{key:"refreshMenuItems",value:function(e){for(var t=e.getElementsByClassName("mdw-menu__item"),n=0;n<t.length;n+=1){var i=t.item(n);i.setAttribute("tabindex","-1"),l.attach(i)}e.getElementsByClassName("mdw-menu__popup")[0].setAttribute("tabindex","-1")}},{key:"show",value:function(t,n,i){n&&n.currentTarget instanceof HTMLAnchorElement&&n.preventDefault();var r=t.getElementsByClassName("mdw-menu__popup")[0],o=!1;if(n?e.updateMenuPosition(t,r,n,i):(r.style.removeProperty("top"),r.style.removeProperty("left"),r.style.removeProperty("right"),r.style.removeProperty("bottom"),r.style.removeProperty("margin"),r.style.removeProperty("transform-origin"),r.style.removeProperty("position"),r.hasAttribute("style")&&!r.getAttribute("style")&&r.removeAttribute("style")),t.hasAttribute("mdw-hide")&&(t.removeAttribute("mdw-hide"),o=!0),t.hasAttribute("mdw-show")||(t.setAttribute("mdw-show",""),o=!0),o){e.attach(t);var s=document.activeElement,l={hash:Math.random().toString(36).substr(2,16)},u=null;window.history&&window.history.pushState&&(window.history.state||window.history.replaceState({hash:Math.random().toString(36).substr(2,16)},document.title),u=window.history.state,window.history.pushState(l,document.title),window.addEventListener("popstate",e.onPopState));var c=new function e(t,n,i,r){a(this,e),this.element=t,this.previousFocus=n,this.state=i,this.previousState=r}(t,s,l,u);d.push(c),e.refreshMenuItems(t),!n||n.pointerType||n.detail?r.focus():e.selectNextMenuItem(t)}return o}},{key:"hide",value:function(t){if(!t.hasAttribute("mdw-hide")){t.setAttribute("mdw-hide","");var n=-1;if(d.some(function(e,i){return e.element===t&&(n=i,!0)}),-1!==n){var i=d[n];i.previousFocus&&i.previousFocus.focus(),d.splice(n,1),i.state&&window.history&&window.history.state&&i.state.hash===window.history.state.hash&&window.history.back()}return d.length||window.removeEventListener("popstate",e.onPopState),Object(r.a)(t,"mdw:dismiss"),!0}return!1}}]),e}()},78:function(e,t,n){"use strict";n.r(t);var i=n(5),r=n(1);function a(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}var o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return function(e,t,n){n&&a(e,n)}(e,0,[{key:"attach",value:function(t){t.hasAttribute("role")||t.setAttribute("role","grid"),t.setAttribute("mdw-js","");var n=e.getHeaderRow(t),i=e.getTableBody(t),r=t.hasAttribute("mdw-cell-focusable"),a=t.hasAttribute("mdw-row-focusable");n.addEventListener("click",e.onHeaderRowClick),i.addEventListener("keydown",e.onTableBodyKeyDown),i.addEventListener("click",e.onTableBodyClick);for(var o=null,s=!1,l=null,d=!1,u=0;u<i.rows.length;u+=1){var c=i.rows.item(u);a?(o||(o=c),s||"0"!==c.getAttribute("tabindex")?c.setAttribute("tabindex","-1"):s=!0):c.removeAttribute("tabindex");for(var m=0;m<c.cells.length;m+=1){var h=c.cells.item(m);r&&!a?(l||(l=h),d||"0"!==h.getAttribute("tabindex")?h.setAttribute("tabindex","-1"):d=!0):h.removeAttribute("tabindex")}}a&&!s&&o?(o.setAttribute("tabindex","0"),e.dispatchEvent(o,"mdw:tabindexchanged")):r&&!d&&l&&(l.setAttribute("tabindex","0"),e.dispatchEvent(l,"mdw:tabindexchanged"))}},{key:"onTableBodyClick",value:function(t){var n=t.currentTarget,i=Object(r.b)(n,"mdw-datatable"),a=t.target;if(a instanceof HTMLTableCellElement){var o=i.hasAttribute("mdw-cell-focusable"),s=i.hasAttribute("mdw-row-focusable");if(o){for(var l=n.querySelectorAll('[tabindex="0"]'),d=0;d<l.length;d+=1){var u=l.item(d);u!==a&&u.setAttribute("tabindex","-1")}"0"!==a.getAttribute("tabindex")&&(a.setAttribute("tabindex","0"),e.dispatchEvent(a,"mdw:tabindexchanged"))}else if(s){for(var c=n.querySelectorAll('[tabindex="0"]'),m=0;m<c.length;m+=1){var h=c.item(m);h!==a.parentElement&&h.setAttribute("tabindex","-1")}"0"!==a.parentElement.getAttribute("tabindex")&&(a.parentElement.setAttribute("tabindex","0"),e.dispatchEvent(a.parentElement,"mdw:tabindexchanged"))}}else if(a instanceof HTMLInputElement&&"checkbox"===a.getAttribute("type")){if(i.hasAttribute("mdw-adapter"))return;var f=e.findParentCell(a);if(!f.hasAttribute("mdw-selector"))return;t.stopPropagation();var v=f.parentElement,p=!1;if(a.checked)v.setAttribute("mdw-selected",""),p=!0;else{v.removeAttribute("mdw-selected");for(var b=i.querySelectorAll("td[mdw-selector] input[type=checkbox]"),w=0;w<b.length;w+=1)if(b.item(w).checked){p=!0;break}}p?i.setAttribute("mdw-has-selection",""):i.removeAttribute("mdw-has-selection")}}},{key:"findParentCell",value:function(e){for(var t=e;null!=t;){if(t instanceof HTMLTableElement)return null;if(t instanceof HTMLTableCellElement)return t;t=t.parentElement}return null}},{key:"onHeaderRowClick",value:function(t){var n=e.findParentCell(t.target);if(n&&-1!==n.cellIndex&&n.hasAttribute("mdw-sortable")){var i=Object(r.b)(t.currentTarget,"mdw-datatable");if(i&&!i.hasAttribute("mdw-adapter")){var a=!0;n.hasAttribute("mdw-sorted")&&!n.getAttribute("mdw-sorted")&&(a=!1),a?n.setAttribute("mdw-sorted",""):n.setAttribute("mdw-sorted","desc");for(var o=n.parentElement.getElementsByTagName("th"),s=0;s<o.length;s+=1){var l=o[s];l!==n&&l.removeAttribute("mdw-sorted")}for(var d=e.getTableBody(i),u=[],c=d.rows.length-1;c>=0;c-=1)u.push(d.rows.item(c)),d.deleteRow(c);u.sort(function(e,t){var i=e.cells.item(n.cellIndex),r=t.cells.item(n.cellIndex),a=i.textContent,o=r.textContent;return"number"===i.dataset.type?parseFloat(o)-parseFloat(a):o.localeCompare(a)}),a&&u.reverse();var m=document.createDocumentFragment();u.forEach(function(e){m.appendChild(e)}),d.appendChild(m),t.stopPropagation()}}}},{key:"dispatchEvent",value:function(e,t){var n=document.createEvent("Event");n.initEvent(t,!0,!0),e.dispatchEvent(n)}},{key:"onTableBodyKeyDown",value:function(t){var n=document.activeElement,i=0,a=null,o=!1;if(n instanceof HTMLTableCellElement?(i=n.cellIndex,a=n.parentElement):n instanceof HTMLTableRowElement&&(o=!0,a=n),a){var s=t.currentTarget;if("ArrowUp"===t.key||"Up"===t.key){if(0===a.sectionRowIndex)return;t.stopPropagation(),t.preventDefault();var l=a.sectionRowIndex-1,d=s.rows.item(l);return n.setAttribute("tabindex","-1"),void(o?(d.focus(),d.setAttribute("tabindex","0"),e.dispatchEvent(d,"mdw:tabindexchanged")):(d.cells.item(i).focus(),d.cells.item(i).setAttribute("tabindex","0"),e.dispatchEvent(d.cells.item(i),"mdw:tabindexchanged")))}if("ArrowDown"===t.key||"Down"===t.key){var u=a.sectionRowIndex+1;if(u>=s.rows.length)return;t.stopPropagation(),t.preventDefault();var c=s.rows.item(u);return n.setAttribute("tabindex","-1"),void(o?(c.focus(),c.setAttribute("tabindex","0"),e.dispatchEvent(c,"mdw:tabindexchanged")):(c.cells.item(i).focus(),c.cells.item(i).setAttribute("tabindex","0"),e.dispatchEvent(c.cells.item(i),"mdw:tabindexchanged")))}if(t.ctrlKey&&"Home"===t.key){if(0===a.sectionRowIndex&&0===i)return;t.stopPropagation(),t.preventDefault();var m=s.rows.item(0);return n.setAttribute("tabindex","-1"),void(o?(m.focus(),m.setAttribute("tabindex","0"),e.dispatchEvent(m,"mdw:tabindexchanged")):(m.cells.item(0).focus(),m.cells.item(0).setAttribute("tabindex","0"),e.dispatchEvent(m.cells.item(0),"mdw:tabindexchanged")))}if(t.ctrlKey&&"End"===t.key){var h=s.rows.length-1,f=0;if(o||(f=a.cells.length-1),a.sectionRowIndex===h&&i===f)return;t.stopPropagation(),t.preventDefault();var v=s.rows.item(h);return n.setAttribute("tabindex","-1"),void(o?(v.focus(),v.setAttribute("tabindex","0"),e.dispatchEvent(v,"mdw:tabindexchanged")):(v.cells.item(f).focus(),v.cells.item(f).setAttribute("tabindex","0"),e.dispatchEvent(v.cells.item(f),"mdw:tabindexchanged")))}if("Home"===t.key){if(o)return;if(0===i)return;t.stopPropagation(),t.preventDefault();var p=a.cells.item(0);return n.setAttribute("tabindex","-1"),p.focus(),p.setAttribute("tabindex","0"),void e.dispatchEvent(p,"mdw:tabindexchanged")}if("End"===t.key){if(o)return;var b=a.cells.length-1;if(b===i)return;t.stopPropagation(),t.preventDefault();var w=a.cells.item(b);return n.setAttribute("tabindex","-1"),w.focus(),w.setAttribute("tabindex","0"),void e.dispatchEvent(w,"mdw:tabindexchanged")}var g=Object(r.d)(),y=!1,k=!1;if("ArrowLeft"!==t.key&&"Left"!==t.key||(g?k=!0:y=!0),"ArrowRight"!==t.key&&"Right"!==t.key||(g?y=!0:k=!0),y){if(o)return;if(0===i)return;t.stopPropagation(),t.preventDefault();var E=i-1,x=a.cells.item(E);return n.setAttribute("tabindex","-1"),x.focus(),x.setAttribute("tabindex","0"),void e.dispatchEvent(x,"mdw:tabindexchanged")}if(k){if(o)return;var A=i+1;if(A>=a.cells.length)return;t.stopPropagation(),t.preventDefault();var C=a.cells.item(A);n.setAttribute("tabindex","-1"),C.focus(),C.setAttribute("tabindex","0"),e.dispatchEvent(C,"mdw:tabindexchanged")}}}},{key:"detach",value:function(t){t.removeAttribute("mdw-js");var n=e.getHeaderRow(t),i=e.getTableBody(t);n.removeEventListener("click",e.onHeaderRowClick),i.removeEventListener("keydown",e.onTableBodyKeyDown),i.removeEventListener("click",e.onTableBodyClick)}},{key:"getTable",value:function(e){if(e instanceof HTMLTableElement)return e;var t=e.getElementsByTagName("table")[0];if(!t){t=document.createElement("table");var n=e.getElementsByClassName("mdw-datatable__footer")[0];n?e.insertBefore(t,n):e.appendChild(t)}return t}},{key:"getHeaderRow",value:function(t){var n=t.getElementsByTagName("thead")[0];if(!n){var i=e.getTable(t);n=document.createElement("thead"),i.appendChild(n)}var r=n.getElementsByTagName("tr")[0];return r||(r=document.createElement("tr"),n.appendChild(r)),r}},{key:"getTableBody",value:function(t){var n=t.getElementsByTagName("tbody")[0];if(!n){var i=e.getTable(t);n=document.createElement("tbody"),i.appendChild(n)}return n}}]),e}(),s=n(7),l=n(2);function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function c(e,t,n){return t&&u(e.prototype,t),n&&u(e,n),e}var m=function(){function e(t){if(d(this,e),this.element=document.createElement("th"),null!=t.innerHTML?this.element.innerHTML=t.innerHTML:t.fragment&&this.element.appendChild(t.fragment),this.key=t.key,this.element.dataset.key=t.key,t.sortable){this.element.setAttribute("mdw-sortable","");var n=t.customSortIcon;n||((n=document.createElement("div")).classList.add("mdw-datatable__sort-icon","material-icons"),n.textContent="arrow_downward"),this.element.hasChildNodes()?this.element.insertBefore(this.element.firstChild,t.customSortIcon):this.element.appendChild(n)}if(t.tooltip){var i=document.createElement("span");i.classList.add("mdw-tooltip__wrapper");var r=document.createElement("span");r.classList.add("mdw-tooltip__target"),t.name?"string"==typeof t.name?r.textContent=t.name:r.appendChild(t.name):r.textContent="";var a=document.createElement("div");a.classList.add("mdw-tooltip"),a.textContent=t.tooltip,i.appendChild(r),i.appendChild(a),this.element.appendChild(i)}else if(t.name){var o;o="string"==typeof t.name?document.createTextNode(t.name):t.name,this.element.appendChild(o)}if(this.primaryColumn=t.primaryColumn,t.primaryColumn&&this.element.setAttribute("mdw-primary-column",""),this.rowSelector=t.rowSelector,this.rowSelector&&this.element.setAttribute("mdw-selector",""),t.type&&(this.element.dataset.type=t.type,this.type=t.type),this.rowSelector&&"checkbox"===this.type){var s=function(){var e=document.createElement("label");e.classList.add("mdw-selection");var t=document.createElement("input");t.classList.add("mdw-selection__input"),t.setAttribute("type","checkbox");var n=document.createElement("div");return n.classList.add("mdw-selection__icon"),e.appendChild(t),e.appendChild(n),e}();this.element.appendChild(s)}t.renderer?this.renderer=t.renderer:"checkbox"===t.type?this.renderer=e.defaultCheckboxRenderer:this.renderer=e.defaultCellRenderer,this.formatter=t.formatter||function(e){return e}}return c(e,null,[{key:"defaultCheckboxRenderer",value:function(e,t){var n=e.getElementsByTagName("input")[0],i=!!t;if(!n){var r=document.createElement("label");r.classList.add("mdw-selection"),(n=document.createElement("input")).classList.add("mdw-selection__input"),n.setAttribute("type","checkbox"),n.checked=i;var a=document.createElement("div");a.classList.add("mdw-selection__icon"),r.appendChild(n),r.appendChild(a),e.appendChild(r)}n.checked!==i&&(n.checked=i)}},{key:"defaultCellRenderer",value:function(e,t){var n;n=null==t?"":t.toString();for(var i=!1,r=e.childNodes.length-1;r>=0;r-=1){var a=e.childNodes.item(r);i||a.nodeType!==Node.TEXT_NODE?e.removeChild(a):(a.nodeValue!==n&&(a.nodeValue=n),i=!0)}if(!i){var o=document.createTextNode(n);e.appendChild(o)}}}]),e}(),h=function(){function e(t){var n=this;d(this,e),this.element=t.datatable,this.datasource=t.datasource,this.filter=t.filter,this.sorter=t.sorter,this.onValueChangeRequested=t.onValueChangeRequested||function(){return!1},this.onValueChanged=t.onValueChanged||function(){},this.onElementClickListener=function(e){n.handleClickInteraction(e)},this.element.addEventListener("click",this.onElementClickListener),this.onElementScrollListener=function(){n.onElementScroll()},this.tabindexRow=null,this.tabindexRowData=null,this.element.addEventListener("mdw:tabindexchanged",function(e){n.element.hasAttribute("mdw-row-focusable")&&(n.tabindexRow=e.target,n.tabindexRowData=n.getDataForTableRow(n.tabindexRow))}),o.attach(this.element),this.element.setAttribute("mdw-adapter",""),this.columns=[],this.page=0,this.pageLimit=0,this.debounceTimeMs=0,this.throttleTimeMs=0,this.useLazyRendering=!1}return c(e,[{key:"detach",value:function(){this.element.removeAttribute("mdw-adapter"),this.element=null,this.datasource=null,this.filteredDatasource=null}},{key:"performThrottledRender",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.performLazyRender(e),this.throttledRenderPending&&(this.throttledRenderPending=!1,this.scheduleThrottledRender())}},{key:"scheduleThrottledRender",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.throttleTimeMs<17?window.requestAnimationFrame(function(){return e.performThrottledRender(t)}):setTimeout(function(){return e.performThrottledRender(t)},this.throttleTimeMs)}},{key:"onElementScroll",value:function(){var e=this;this.debounceTimeout&&(clearTimeout(this.debounceTimeout),this.debounceTimeout=null),this.throttledRenderPending||(this.debounceTimeMs?this.debounceTimeout=setTimeout(function(){e.scheduleThrottledRender(),e.throttledRenderPending=!0},this.debounceTimeMs):(this.scheduleThrottledRender(),this.throttledRenderPending=!0))}},{key:"buildScrollListener",value:function(){this.element.addEventListener("scroll",this.onElementScrollListener)}},{key:"destroyScrollListener",value:function(){this.element.removeEventListener("scroll",this.onElementScrollListener)}},{key:"handleClickInteraction",value:function(e){var t=e.target;if(t instanceof HTMLInputElement){if(t.hasAttribute("type")&&"checkbox"===t.getAttribute("type")){e.stopPropagation();var n=this.getTableCell(t);if("th"===n.tagName.toLowerCase())return this.setCheckOnAllRows(t.checked,n.cellIndex),void this.setHasSelection(t.checked);var i=this.getTableRow(t),r=this.getDataForTableRow(i);if(this.onValueChangeRequested(r,n.dataset.key,t.checked))return void e.preventDefault();if(r[n.dataset.key]=t.checked,this.onValueChanged(r,n.dataset.key,t.checked),n.hasAttribute("mdw-selector"))if(t.checked)i.setAttribute("mdw-selected",""),this.setHasSelection(!0);else{i.removeAttribute("mdw-selected");var a=this.getSelectedRows();this.setHasSelection(0!==a.length)}}}else{var o=this.getTableCell(t);if(o&&"th"===o.tagName.toLowerCase()&&o.hasAttribute("mdw-sortable")){e.stopPropagation();var s=!0;o.hasAttribute("mdw-sorted")&&!o.getAttribute("mdw-sorted")&&(s=!1),this.updateSortIcons(o,s),this.updateSortColumn&&this.updateSortColumn(o,s)}}}},{key:"updateSortColumn",value:function(e,t){if(!e)return this.sorter=null,void this.refresh();if(-1!==e.cellIndex){var n=e.cellIndex,i=this.columns[n],r=t?1:-1;this.sorter=function(e,t){var n=e[i.key],a=t[i.key];return null==n?null==a?0:-1*r:null==a?r:"number"===i.type?(parseFloat(n)-parseFloat(a))*r:"checkbox"===i.type?((n?1:0)-(a?1:0))*r:n.localeCompare?n.localeCompare(a)*r:n==a?0:(n-a)*r},this.refresh()}}},{key:"updateSortIcons",value:function(e,t){e&&(t?e.setAttribute("mdw-sorted",""):e.setAttribute("mdw-sorted","desc"));for(var n=this.element.querySelectorAll("th"),i=0;i<n.length;i+=1){var r=n.item(i);r!==e&&r.removeAttribute("mdw-sorted")}}},{key:"setCheckOnAllRows",value:function(e,t){var n=this.columns[t];this.datasource.forEach(function(t){t[n.key]=e}),this.refresh()}},{key:"getTableRow",value:function(e){return e===this.element?null:e instanceof HTMLTableRowElement?e:e.parentElement?this.getTableRow(e.parentElement):null}},{key:"getTableCell",value:function(e){return e===this.element?null:e instanceof HTMLTableCellElement?e:e.parentElement?this.getTableCell(e.parentElement):null}},{key:"getSelectedRows",value:function(){var e=this.columns.filter(function(e){return e.rowSelector})[0];return e?this.getDatasource().filter(function(t){return t[e.key]}):[]}},{key:"setHasSelection",value:function(e){e?this.element.setAttribute("mdw-has-selection",""):this.element.removeAttribute("mdw-has-selection")}},{key:"setDatasource",value:function(e){this.datasource=e}},{key:"setUseLazyRendering",value:function(e){this.useLazyRendering=e,e?this.buildScrollListener():this.destroyScrollListener()}},{key:"addColumn",value:function(e){var t=new m(e);return this.getHeaderRow().appendChild(t.element),this.columns.push(t),t}},{key:"updatePaginator",value:function(){if(this.pageLimit){var e=this.page*this.pageLimit,t=this.getDatasource().length,n=this.pageLimit+e;n>t&&(n=t),this.paginationDetailsElement.textContent="".concat(e+1,"-").concat(n," of ").concat(t),0===e?this.previousPageButton.setAttribute("disabled",""):this.previousPageButton.removeAttribute("disabled"),n===t?this.nextPageButton.setAttribute("disabled",""):this.nextPageButton.removeAttribute("disabled")}}},{key:"setPagination",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=this.getFooter(!t.disabled);if(t.disabled)return this.pageLimit=0,this.page=0,n&&(n.style.display="none"),void(this.needsDraw=!0);n.style.display="";var r=n.getElementsByClassName("mdw-datatable__footer-options")[0];if(!r){(r=document.createElement("div")).classList.add("mdw-datatable__footer-options");var a=document.createElement("span");a.textContent="Rows per page";var o=t.limits||[10,25,50,100],s=document.createElement("label");s.classList.add("mdw-textfield"),s.setAttribute("mdw-solo","");var l=document.createElement("select");l.classList.add("mdw-textfield__input"),o.forEach(function(e){var t=document.createElement("option");t.value=e.toString(),t.textContent=e.toString(),l.appendChild(t)}),l.setAttribute("value",t.limit&&t.limit.toString()||"10");var d=document.createElement("div");d.classList.add("mdw-textfield__icon"),d.setAttribute("mdw-dropdown",""),s.appendChild(l),s.appendChild(d),r.appendChild(a),r.appendChild(s),n.appendChild(r),l.addEventListener("input",function(){e.pageLimit=parseInt(l.value,10),e.updateRowCount(!1),e.updatePaginator(),e.refreshRows()})}if(this.paginationDetailsElement||(this.paginationDetailsElement=n.getElementsByClassName("mdw-datatable__footer-details")[0]),this.paginationDetailsElement||(this.paginationDetailsElement=document.createElement("div"),this.paginationDetailsElement.classList.add("mdw-datatable__footer-details"),n.appendChild(this.paginationDetailsElement)),this.paginationControls||(this.paginationControls=n.getElementsByClassName("mdw-datatable__footer-controls")[0]),this.paginationControls||(this.paginationControls=document.createElement("div"),this.paginationControls.classList.add("mdw-datatable__footer-controls"),n.appendChild(this.paginationControls)),!this.previousPageButton||!this.nextPageButton){var u=this.paginationControls.getElementsByClassName("mdw-button");2!==u.length?(this.previousPageButton=document.createElement("button"),this.previousPageButton.classList.add("mdw-button","material-icons"),this.previousPageButton.setAttribute("mdw-icon",""),this.previousPageButton.textContent="chevron_left",this.paginationControls.appendChild(this.previousPageButton),i.a.attach(this.previousPageButton),this.nextPageButton=document.createElement("button"),this.nextPageButton.classList.add("mdw-button","material-icons"),this.nextPageButton.setAttribute("mdw-icon",""),this.nextPageButton.textContent="chevron_right",this.paginationControls.appendChild(this.nextPageButton),i.a.attach(this.nextPageButton)):(this.previousPageButton=u[0],this.nextPageButton=u[1]),this.previousPageButton.addEventListener("click",function(){e.previousPageButton.hasAttribute("disabled")||(e.page-=1,e.updateRowCount(!1),e.updatePaginator(),e.refreshRows())}),this.nextPageButton.addEventListener("click",function(){e.nextPageButton.hasAttribute("disabled")||(e.page+=1,e.updateRowCount(!1),e.updatePaginator(),e.refreshRows())})}this.pageLimit=t.limit||10,this.updateRowCount(!1),this.updatePaginator(),this.refreshRows()}},{key:"getFooter",value:function(e){var t=this.element.getElementsByClassName("mdw-datatable__footer")[0];return!t&&e&&((t=document.createElement("div")).classList.add("mdw-datatable__footer"),this.element.appendChild(t)),t}},{key:"isRowVisible",value:function(e){var t=this.element,n=e.getBoundingClientRect(),i=t.getBoundingClientRect(),r=n.top-i.top,a=r+n.height,o=i.height;return r>0&&r<o||a>0&&a<o}},{key:"clearNonvisibleRows",value:function(e){var t=this.getTableBody(),n=t.rows.length;if(e.length!==n){var i=1/0,r=-1/0;e.length&&(i=e[0].sectionRowIndex,r=e[e.length-1].sectionRowIndex);for(var a=0;a<n;a+=1)if(a<i||a>r){var o=t.rows.item(a);if(o.lastChild){var s=o.getBoundingClientRect();o.style.setProperty("height","".concat(s.height||0,"px"))}for(;o.lastChild;)o.removeChild(o.lastChild)}}}},{key:"getLazyRenderRows",value:function(){var e=this.getTableBody(),t=e.rows.length,n=[],i=window.screen.height/48;if(t<=i){for(var r=0;r<t;r+=1)n.push(e.rows.item(r));return n}for(var a=!1,o=0,s=0,l=0;l<t;l+=1){var d=e.rows.item(l);if(this.isRowVisible(d))a||(a=!0,o=l),s=l;else if(a)break}for(;s-o+1<i;)0===o?s+=1:s===t-1?o-=1:(o-=1,s+=1);for(var u=o;u<=s;u+=1)n.push(e.rows.item(u));return n}},{key:"performLazyRender",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=this.getLazyRenderRows();n.forEach(function(n){!t&&n.cells.length||e.refreshRow(n.sectionRowIndex)}),this.clearNonvisibleRows(n)}},{key:"setFilter",value:function(e){this.filter=e,this.refreshFilter()}},{key:"setSorter",value:function(e){this.sorter=e,this.refreshFilter()}},{key:"refreshFilter",value:function(){this.filter&&this.sorter?this.filteredDatasource=this.datasource.filter(this.filter).sort(this.sorter):this.filter?this.filteredDatasource=this.datasource.filter(this.filter):this.sorter?this.filteredDatasource=this.datasource.slice(0).sort(this.sorter):this.filteredDatasource=null}},{key:"getDatasource",value:function(){return this.filter||this.sorter?(null==this.filteredDatasource&&this.refreshFilter(),this.filteredDatasource):this.datasource}},{key:"updateRowCount",value:function(e){var t=this,n=this.getTableBody(),i=n.rows.length,r=this.getDatasource().length;if(this.pageLimit){var a=this.page*this.pageLimit;a>r&&(this.page=0,a=0),(r-=a)>this.pageLimit&&(r=this.pageLimit)}var o=r-i,s=[];if(o<0)for(var l=i-1;l>=r;l-=1){var d=n.rows.item(l);n.removeChild(d)}if(o>0){for(var u=document.createDocumentFragment(),c=0;c<o;c+=1){var m=document.createElement("tr");this.element.hasAttribute("mdw-row-focusable")&&m.setAttribute("tabindex","-1"),s.push(m),u.appendChild(m)}n.appendChild(u)}e&&0!==o&&(this.useLazyRendering?this.scheduleThrottledRender(!0):s.forEach(function(e){t.refreshRow(e.sectionRowIndex)}))}},{key:"refreshRows",value:function(){if(this.useLazyRendering)this.performLazyRender(!0);else for(var e=this.getTableBody().rows.length,t=0;t<e;t+=1)this.refreshRow(t);if(this.tabindexRowData){var n=this.getTableRowForData(this.tabindexRowData);n!==this.tabindexRow&&(this.tabindexRow&&this.tabindexRow.setAttribute("tabindex","-1"),n&&(n.setAttribute("tabindex","0"),document.activeElement===this.tabindexRow&&n.focus()),this.tabindexRow=n)}this.useLazyRendering&&this.scheduleThrottledRender()}},{key:"refresh",value:function(){this.refreshFilter(),this.updateRowCount(!1),this.updatePaginator(),this.refreshRows()}},{key:"getDataForTableRow",value:function(e){var t=e.sectionRowIndex+this.page*this.pageLimit;return this.getDatasource()[t]}},{key:"getTableRowForData",value:function(e){var t=this.getDatasource().indexOf(e);if(-1===t)return null;var n=this.page*this.pageLimit;return this.getTableBody().rows.item(t-n)}},{key:"refreshRow",value:function(e){this.getTableBody().rows.item(e).style.removeProperty("height");for(var t=0;t<this.columns.length;t+=1)this.refreshCell(t,e)}},{key:"refreshCell",value:function(e,t){for(var n=this.columns[e],i=this.getTableBody().rows.item(t),r=i.cells.length;r<=e;){var a=this.columns[r],o=i.insertCell();a.type&&(o.dataset.type=a.type),o.dataset.key=a.key,a.rowSelector&&o.setAttribute("mdw-selector",""),a.primaryColumn&&o.setAttribute("mdw-primary-column",""),r+=1}var s=i.cells.item(e),l=this.getDataForTableRow(i),d=l[n.key];n.rowSelector&&(d?i.hasAttribute("mdw-selected")||i.setAttribute("mdw-selected",""):i.hasAttribute("mdw-selected")&&i.removeAttribute("mdw-selected"));var u=n.formatter(d,l);n.renderer(s,u,l)}},{key:"getColumn",value:function(e){return e instanceof m?e:e instanceof HTMLTableCellElement?this.columns.filter(function(t){return t.element===e})[0]:"string"==typeof e?this.columns.filter(function(t){return t.element.dataset.key===e})[0]:this.columns[e]}},{key:"getTable",value:function(){var e=this.element.getElementsByTagName("table")[0];if(!e){e=document.createElement("table");var t=this.element.getElementsByClassName("mdw-datatable__footer")[0];t?this.element.insertBefore(e,t):this.element.appendChild(e)}return e}},{key:"getHeaderRow",value:function(){var e=this.element.getElementsByTagName("thead")[0];if(!e){var t=this.getTable();e=document.createElement("thead"),t.appendChild(e)}var n=e.getElementsByTagName("tr")[0];return n||(n=document.createElement("tr"),e.appendChild(n)),n}},{key:"getTableBody",value:function(){if(this.tbody)return this.tbody;if(this.tbody=this.element.getElementsByTagName("tbody")[0],!this.tbody){var e=this.getTable();this.tbody=document.createElement("tbody"),e.appendChild(this.tbody)}return this.tbody}},{key:"refreshColumn",value:function(e){for(var t=this.getTableBody().rows.length,n=0;n<t;n+=1)this.refreshCell(e,n)}}]),e}(),f=null;!function(){var e;e=document.querySelectorAll(".mdw-datatable");for(var t=0;t<e.length;t+=1)o.attach(e.item(t));e=document.querySelectorAll(".mdw-button");for(var n=0;n<e.length;n+=1)i.a.attach(e.item(n));e=document.querySelectorAll(".mdw-menu");for(var r=0;r<e.length;r+=1)s.a.attach(e.item(r))}(),Object(l.d)(),function(){for(var e=[],t=1,n=0;n<256;n+=1)e.push({text:Math.random().toString(36).substring(2),text2:Math.random().toString(36).substring(2),check1:Math.random()>.5,increment:t,random:Math.floor(99999*Math.random())}),t+=1;var i=document.getElementById("dynamic-table");(f=new h({datatable:i,datasource:e})).addColumn({key:"selected",type:"checkbox",rowSelector:!0}),f.addColumn({key:"text",name:"Primary Column (full-width)",primaryColumn:!0,sortable:!0,type:"text"}),f.addColumn({key:"text2",name:"Text field",sortable:!0,type:"text"}),f.addColumn({key:"check1",name:"bool",type:"checkbox",tooltip:"Non-selection boolean value",sortable:!0}),f.addColumn({key:"increment",name:"Increment",type:"number",sortable:!0}),f.addColumn({key:"random",name:"Random",sortable:!0,type:"number"}),f.setUseLazyRendering(!0),f.setPagination(),f.refresh();var r=f.element.querySelectorAll(".mdw-datatable__header-controls .mdw-button"),a=r[0],o=r[1],l=f.element.querySelectorAll(".mdw-datatable__header-controls .mdw-menu"),d=l[0],u=l[1];a.addEventListener("click",function(e){s.a.show(d,e)});var c=d.querySelectorAll(".mdw-menu__item"),m=c[0],v=c[1],p=c[2],b=c[3];function w(e,t){for(var n=0;n<e.length;n+=1){var i=e.item(n);t===n?i.setAttribute("mdw-checked",""):i.removeAttribute("mdw-checked")}}m.addEventListener("click",function(){f.setFilter(null),f.refresh(),s.a.hide(d),w(c,0),a.setAttribute("mdw-inactive",""),a.removeAttribute("mdw-active")}),v.addEventListener("click",function(){f.setFilter(function(e){return-1!==e.text.indexOf("md")||-1!==e.text2.indexOf("md")}),f.refresh(),s.a.hide(d),w(c,1),a.setAttribute("mdw-active",""),a.removeAttribute("mdw-inactive")}),p.addEventListener("click",function(){f.setFilter(function(e){return e.random%9==0}),f.refresh(),s.a.hide(d),w(c,2),a.setAttribute("mdw-active",""),a.removeAttribute("mdw-inactive")}),b.addEventListener("click",function(){f.setFilter(function(e){return e.check1}),f.refresh(),s.a.hide(d),w(c,3),a.setAttribute("mdw-active",""),a.removeAttribute("mdw-inactive")});var g=u.querySelectorAll(".mdw-menu__item"),y=g[0],k=g[1];o.addEventListener("click",function(e){s.a.show(u,e)}),y.addEventListener("click",function(){y.hasAttribute("mdw-checked")?(f.setUseLazyRendering(!1),y.removeAttribute("mdw-checked")):(f.setUseLazyRendering(!0),y.setAttribute("mdw-checked","")),s.a.hide(u),f.refresh()}),k.addEventListener("click",function(){k.hasAttribute("mdw-checked")?(f.setPagination({disabled:!0}),k.removeAttribute("mdw-checked")):(f.setPagination(),k.setAttribute("mdw-checked","")),s.a.hide(u),f.refresh()})}()}});
|
|
2
|
-
//# sourceMappingURL=datatable.min.js.map
|